diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-08-13 10:30:20 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-08-13 10:30:20 +0700 |
| commit | 39495df4a7abaf16e0b4b5453d11fffb43d2a499 (patch) | |
| tree | 2be9426c650f0a3e519d0fdf33ddb3bac3218757 | |
| parent | 1fb0b646ecff155204208b25d8127428e380e613 (diff) | |
fix purchase pricelist custom with no return in default code
| -rw-r--r-- | indoteknik_custom/models/purchase_order_line.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/purchase_order_line.py b/indoteknik_custom/models/purchase_order_line.py index 6b7bbfc1..74b46e4c 100644 --- a/indoteknik_custom/models/purchase_order_line.py +++ b/indoteknik_custom/models/purchase_order_line.py @@ -53,7 +53,7 @@ class PurchaseOrderLine(models.Model): ) self.price_unit = price_unit - return + #return price_unit = self.env['account.tax']._fix_tax_included_price_company(seller.price, self.product_id.supplier_taxes_id, |
