summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIndoteknik . <it@fixcomart.co.id>2025-06-18 10:48:42 +0700
committerIndoteknik . <it@fixcomart.co.id>2025-06-18 10:48:42 +0700
commite2678c3729217dc3f6d3fe9053b53c06c6890fbb (patch)
tree03d015d09973e89a542d06e81b9c3c7ea46fd46d
parentf4486625017ee5edae369a6be283863a30066b3b (diff)
(andri) fix address shipping biteship
-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 68beffbc..7dc33133 100755
--- a/indoteknik_custom/models/sale_order.py
+++ b/indoteknik_custom/models/sale_order.py
@@ -1071,7 +1071,7 @@ class SaleOrder(models.Model):
message_lines.append("<br/>")
origin_address = "Jl. Bandengan Utara Komp A & BRT. Penjaringan, Kec. Penjaringan, Jakarta (BELAKANG INDOMARET) KOTA JAKARTA UTARA PENJARINGAN"
- destination_address = shipping_address.alamat_lengkap_text or shipping_address.street or shipping_address.name or ''
+ destination_address = shipping_address.street or shipping_address.name or ''
if use_coordinate:
origin_suffix = f"(Koordinat: {origin_data.get('origin_latitude')}, {origin_data.get('origin_longitude')})"
destination_suffix = f"(Koordinat: {destination_data.get('destination_latitude')}, {destination_data.get('destination_longitude')})"