From dabf2a523d801ac222af046fea3bb08f9db6bf9f Mon Sep 17 00:00:00 2001 From: IT Fixcomart Date: Sat, 13 Aug 2022 10:06:30 +0700 Subject: Fix view stock.vendor dan buat model-view crm.lead (pengajuan tempo) --- indoteknik_custom/models/crm_lead.py | 4 ++++ indoteknik_custom/models/purchase_order.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'indoteknik_custom/models') diff --git a/indoteknik_custom/models/crm_lead.py b/indoteknik_custom/models/crm_lead.py index 0c53bb69..15ec4119 100644 --- a/indoteknik_custom/models/crm_lead.py +++ b/indoteknik_custom/models/crm_lead.py @@ -5,4 +5,8 @@ class CrmLead(models.Model): _inherit = "crm.lead" html_description = fields.Html(string="Descriptions") + file_npwp = fields.Binary(string="Nomor Pokok Wajib Pajak") + file_nib = fields.Binary(string="Nomor Induk Berusaha") + file_tdp = fields.Binary(string="Tanda Daftar Perusahaan") + file_siup = fields.Binary(string="Surat Izin Usaha Perdagangan") diff --git a/indoteknik_custom/models/purchase_order.py b/indoteknik_custom/models/purchase_order.py index f4d7a67a..2c589d36 100644 --- a/indoteknik_custom/models/purchase_order.py +++ b/indoteknik_custom/models/purchase_order.py @@ -18,7 +18,7 @@ class PurchaseOrder(models.Model): if product_uom_qty == sum_qty_received: status = 'Terproses' - elif product_uom_qty > sum_qty_received and sum_qty_received > 0: + elif product_uom_qty > sum_qty_received > 0: status = 'Sebagian Diproses' else: status = 'Menunggu Diproses' -- cgit v1.2.3