summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2025-04-22 06:07:09 +0000
committerIT Fixcomart <it@fixcomart.co.id>2025-04-22 06:07:09 +0000
commit166d16ebf44deb2a30389bd6c22e002530893078 (patch)
treeab05aaae62cc52ff3d106ead7c3d00dedb8ecc76
parent0e15dd668f8604589820399ad7b7481ecb9868b4 (diff)
parent71e47cc88e250600c2975a114dd420f27fda36b3 (diff)
Merged in min-deliv-amt-afp (pull request #277)
(andri) change min dev amt from 5000 to 100
-rwxr-xr-xindoteknik_custom/models/sale_order.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/sale_order.py b/indoteknik_custom/models/sale_order.py
index 4affb35f..bef2b00a 100755
--- a/indoteknik_custom/models/sale_order.py
+++ b/indoteknik_custom/models/sale_order.py
@@ -704,7 +704,7 @@ class SaleOrder(models.Model):
else:
raise UserError('Untuk Shipping Covered Indoteknik, estimasi ongkos kirim belum diisi.')
- if self.delivery_amt < 5000:
+ if self.delivery_amt < 100:
if self.carrier_id.id == 1:
raise UserError('Untuk Kurir Indoteknik Delivery, estimasi ongkos kirim belum memenuhi tarif minimum.')
else: