From 55936047e729cadcd462a57c7838f77f7c57ee1a Mon Sep 17 00:00:00 2001 From: Azka Nathan Date: Fri, 13 Jun 2025 14:35:38 +0700 Subject: print picking list --- fixco_custom/models/account_move.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'fixco_custom/models/account_move.py') 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 -- cgit v1.2.3