shipcloud.io integration to odoo (as delivery carrier)
Go to file
Harald Welte 38c2442567 Add ability to add 'description' field to package, not just shipment
seit Januar 2023 muss für den Versand nach Mexiko eine Paketbeschreibung übergeben werden.

UPS schreibt dazu:

Hide quoted text

    However, as of January of 2023, the Mexican Tax Authority adopted the Carta Porte requirements, which mandate that all shipments to and within Mexico include a Package Description field that accurately describes the contents of the shipment.

Sie übergeben die Beschreibung derzeit auf der shipment-Ebene:

},
"carrier": "ups",
"package": {
"type": "parcel",
"width": 20,
"height": 4,
"length": 27,
"weight": 0.48
},
"service": "one_day",
"incoterm": "dap",
"description": "sim cards",
"reference_number": "AM93\\OUT\\07008",
"notification_mail": "roman.rohleder@gmail.com",
"create_shipping_label": true
}

Sie müssen aber sowohl auf shipment-Ebene, als auch auf package-Ebene eine description angeben, damit ein Label erstellt wird.
Z.B.:

},
"carrier": "ups",
"package": {
"type": "parcel",
"width": 20,
"height": 4,
"length": 27,
"weight": 0.48",
"description": "sim cards"
},
"service": "one_day",
"incoterm": "dap",
"description": "sim cards",
"reference_number": "AM93\\OUT\\07008",
"notification_mail": "roman.rohleder@gmail.com",
"create_shipping_label": true
}
2023-11-28 20:58:00 +01:00
data allow specification of carrier+service 2021-02-14 23:30:05 +01:00
models Add ability to add 'description' field to package, not just shipment 2023-11-28 20:58:00 +01:00
security Add new model for shipment pick-ups 2021-03-16 18:52:59 +01:00
views shipcloud_pickup: meaningful default order + coloring rules 2023-11-28 20:58:00 +01:00
__init__.py WIP: initial checkin 2021-02-14 20:20:51 +01:00
__openerp__.py Add new model for shipment pick-ups 2021-03-16 18:52:59 +01:00