-
-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32a2123
commit f38d652
Showing
9 changed files
with
94 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["whool"] | ||
build-backend = "whool.buildapi" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
- David BEAL \<<david.beal@akretion.com>\> | ||
- Sébastien BEAU \<<sebastien.beau@akretion.com>\> | ||
- Yannick Vaucher \<<yannick.vaucher@camptocamp.com>\> | ||
- Alexis de Lattre \<<alexis.delattre@akretion.com>\> | ||
- Angel Moya \<<angel.moya@pesol.es>\> | ||
- Ismael Calvo \<<ismael.calvo@factorlibre.com>\> | ||
- Dave Lasley \<<dave@laslabs.com>\> | ||
- Timothée Ringeard \<<timothee.ringeard@camptocamp.com>\> | ||
- Pimolnat Suntian \<<pimolnats@ecosoft.co.th>\> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
This module adds some function and generic stuff to help for carrier | ||
label generation. For example it adds the concept of option on carriers | ||
that can differ depending on the picking or class to store carrier | ||
accounts This module doesn't do anything by itself, it serves as a base | ||
module for other carrier-specific modules. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
\*\* How does it works ? \*\* | ||
|
||
In picking UI a button "Send to shipper" trigger label generation | ||
calling send_to_shipper() in models/stock.picking.py | ||
|
||
\*\* How to implement my own carrier ? \*\* | ||
|
||
Define a method {carrier}\_send_shipping() which is called by | ||
\_send_shipping native method. Make it return a list of dict of this | ||
form : | ||
|
||
``` python | ||
{ | ||
"exact_price": price, | ||
"tracking_number": 'number' | ||
"labels": [{ | ||
"package_id": package_id, | ||
"name": filename, | ||
"datas": file_content (base64), | ||
"file_type": extension, | ||
"tracking_number": package_number | ||
}] | ||
} | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters