summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models
diff options
context:
space:
mode:
Diffstat (limited to 'indoteknik_custom/models')
-rwxr-xr-xindoteknik_custom/models/sale_order.py11
-rw-r--r--indoteknik_custom/models/stock_picking.py8
2 files changed, 12 insertions, 7 deletions
diff --git a/indoteknik_custom/models/sale_order.py b/indoteknik_custom/models/sale_order.py
index e5297011..f2bb27ad 100755
--- a/indoteknik_custom/models/sale_order.py
+++ b/indoteknik_custom/models/sale_order.py
@@ -652,8 +652,8 @@ class SaleOrder(models.Model):
product_names = '<br/>'.join(missing_weight_products)
self.message_post(body=f"Produk berikut tidak memiliki berat:<br/>{product_names}")
- # if total_weight == 0:
- # raise UserError("Tidak dapat mengestimasi ongkir tanpa berat yang valid.")
+ if total_weight == 0:
+ raise UserError("Tidak dapat mengestimasi ongkir tanpa karena berat produk = 0 kg.")
# Validasi alamat pengiriman
if not self.real_shipping_id:
@@ -674,8 +674,8 @@ class SaleOrder(models.Model):
total_weight = self._validate_for_shipping_estimate()
weight_gram = int(total_weight * 1000)
- if weight_gram < 100:
- weight_gram = 100
+ # if weight_gram < 100:
+ # weight_gram = 100
items = [{
"name": "Paket Pesanan",
@@ -683,9 +683,6 @@ class SaleOrder(models.Model):
"value": int(self.amount_untaxed),
"weight": weight_gram,
"quantity": 1,
- "height": 10,
- "width": 10,
- "length": 10
}]
shipping_address = self.real_shipping_id
diff --git a/indoteknik_custom/models/stock_picking.py b/indoteknik_custom/models/stock_picking.py
index 5548db75..4522dac0 100644
--- a/indoteknik_custom/models/stock_picking.py
+++ b/indoteknik_custom/models/stock_picking.py
@@ -617,6 +617,14 @@ class StockPicking(models.Model):
waybill_id = data.get("courier", {}).get("waybill_id", "")
+ self.message_post(
+ body=f"📦 Biteship berhasil dilakukan.<br/>"
+ f"Kurir: {self.carrier_id.name}<br/>"
+ f"Tracking ID: {self.biteship_tracking_id or '-'}<br/>"
+ f"Resi: {waybill_id or '-'}",
+ message_type="comment"
+ )
+
message = f"✅ Berhasil Order ke Biteship! Resi: {waybill_id}" if waybill_id else "⚠️ Order berhasil, tetapi tidak ada nomor resi."
return {