diff options
Diffstat (limited to 'fixco_custom/models/account_move.py')
| -rw-r--r-- | fixco_custom/models/account_move.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/fixco_custom/models/account_move.py b/fixco_custom/models/account_move.py new file mode 100644 index 0000000..73eb851 --- /dev/null +++ b/fixco_custom/models/account_move.py @@ -0,0 +1,17 @@ +from odoo import models, api, fields +from odoo.exceptions import AccessError, UserError, ValidationError +from datetime import timedelta, date, datetime +from pytz import timezone, utc +import logging +import base64 +import PyPDF2 +import os +import re + +_logger = logging.getLogger(__name__) + + +class AccountMove(models.Model): + _inherit = 'account.move' + + invoice_marketplace = fields.Char('Invoice Marketplace')
\ No newline at end of file |
