Commit Graph

7 Commits

Author SHA1 Message Date
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
Harald Welte cf9f30057f shipcloud: fix customs value representation
* per-item value_amount should be a string, not a float value
* total_value_amount should be an integer, not a float value

"Error in Shipment Data: Bitte geben Sie die Versandkosten für die
Zollabfertigung an. Der eingegebene Wert ist zu lang und wurde gekürzt."

Closes: SYS#5510
2021-11-22 21:35:36 +01:00
Harald Welte 870281afd0 Add new model for shipment pick-ups
Using this model, the user can select a number of pickings and
request them to be picked up from a user-specified address.
2021-03-16 18:52:59 +01:00
Harald Welte 34aa1bbd58 Specify recipient e-mail for notifications; remove it for sandbox 2021-02-15 15:15:43 +01:00
Harald Welte 1287ccf59d addach customs declaration, too - not just shipping label 2021-02-15 14:20:01 +01:00
Harald Welte 997b465ea9 allow specification of carrier+service 2021-02-14 23:30:05 +01:00
Harald Welte 5048d25df2 WIP: initial checkin 2021-02-14 20:20:51 +01:00