Compare commits

..

No commits in common. "b6bc9b5dd3386ffd4805d67cd51521bfcbfc7516" and "06ab659ff19cb2b43be2ad3d12eea05b4a2039d9" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View File

@ -130,7 +130,7 @@ def gen_customs_item(origin, desc, hts, qty, value, net_weight):
'description': desc,
'hs_tariff_number': str(hts),
'quantity': qty,
'value_amount': '%.2f' % value,
'value_amount': value,
'net_weight': net_weight,
#'gross_weight': ,
}
@ -144,7 +144,7 @@ def gen_customs_decl(currency, invoice_nr, net_total, items, importer_ref=None,
#'contents_explanation': ,
'currency' : currency,
'invoice_number': str(invoice_nr),
'total_value_amount': int(net_total),
'total_value_amount': net_total,
'items': customs_items,
}
if importer_ref:

View File

@ -10,8 +10,8 @@ class SMCShippingShipcloud(models.Model):
# extend stock.picking with fields related to shipcloud
class SMCStockPickingShipclodu(models.Model):
_inherit = 'stock.picking'
sc_shipment_id = fields.Char(string='shipcloud shipment ID', readonly=True, copy=False)
sc_tracking_url = fields.Char(string='shipcloud tracking URL', readonly=True, copy=False)
sc_shipment_id = fields.Char(string='shipcloud shipment ID', readonly=True)
sc_tracking_url = fields.Char(string='shipcloud tracking URL', readonly=True)
sc_content_desc = fields.Char(string='Description of Contents')