diff options
| -rwxr-xr-x | indoteknik_custom/models/__init__.py | 1 | ||||
| -rw-r--r-- | indoteknik_custom/models/account_move.py | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/indoteknik_custom/models/__init__.py b/indoteknik_custom/models/__init__.py index 8da36ce1..f4b2f27d 100755 --- a/indoteknik_custom/models/__init__.py +++ b/indoteknik_custom/models/__init__.py @@ -17,3 +17,4 @@ from . import purchase_order_line from . import sale_order from . import sale_monitoring_detail from . import sale_monitoring +from . import account_move diff --git a/indoteknik_custom/models/account_move.py b/indoteknik_custom/models/account_move.py new file mode 100644 index 00000000..224e22ec --- /dev/null +++ b/indoteknik_custom/models/account_move.py @@ -0,0 +1,7 @@ +from odoo import models, api, fields + + +class AccountMove(models.Model): + _inherit = 'account.move' + date_send_fp = fields.Datetime(string="Tanggal Kirim Faktur Pajak") + last_log_fp = fields.Char(string="Log Terakhir Faktur Pajak") |
