diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2025-05-30 15:06:15 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2025-05-30 15:06:15 +0700 |
| commit | acd06377bb5c4b375fadf3ad37a7ad5853ed79b3 (patch) | |
| tree | aef72c07173801e6836e5a8bc3ad87763dd9b0ad /fixco_custom/models/account_move.py | |
| parent | c7f63c374488c2f28dedc070308dadb5cfc1f9bd (diff) | |
push
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 |
