You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
437 B

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')