from odoo import api, fields, models,_
|
|
from odoo.exceptions import UserError,Warning
|
|
|
|
class opendons_donation_print_email_history(models.Model):
|
|
_name = 'opendons.donation.print_email_history'
|
|
_description = 'history of print or email sent to partner'
|
|
|
|
chanel=fields.Char('chanel')
|
|
date_action=fields.Date('date action')
|
|
template_name=fields.Char('Template name')
|
|
donation_id=fields.Many2one('donation.donation')
|