summaryrefslogtreecommitdiff
path: root/fixco_custom/models/account_move.py
diff options
context:
space:
mode:
authorAzka Nathan <darizkyfaz@gmail.com>2025-06-13 14:35:38 +0700
committerAzka Nathan <darizkyfaz@gmail.com>2025-06-13 14:35:38 +0700
commit55936047e729cadcd462a57c7838f77f7c57ee1a (patch)
tree9fabbef497dc1e555e88083581cf18be41c6db95 /fixco_custom/models/account_move.py
parentf4ff9e2abad82f07e039c388af5e82034ae30694 (diff)
print picking list
Diffstat (limited to 'fixco_custom/models/account_move.py')
-rw-r--r--fixco_custom/models/account_move.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/fixco_custom/models/account_move.py b/fixco_custom/models/account_move.py
index 3f52319..82223b6 100644
--- a/fixco_custom/models/account_move.py
+++ b/fixco_custom/models/account_move.py
@@ -17,4 +17,9 @@ class AccountMove(models.Model):
invoice_marketplace = fields.Char('Invoice Marketplace')
address = fields.Char('Address')
sale_id = fields.Many2one('sale.order', string='Sale Order')
- picking_id = fields.Many2one('stock.picking', string='Picking') \ No newline at end of file
+ picking_id = fields.Many2one('stock.picking', string='Picking')
+ transaction_type = fields.Selection(
+ [('digunggung', 'Digunggung'),
+ ('difaktur', 'Faktur Pajak')],
+ string='Transaction Type'
+ ) \ No newline at end of file