How to Print PICKING or PACKING Slips Before Shipping - Magento 2.0?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
We ship large items and we have to configure the shipment on a pallet (or pallets).
When we get the order, based on ship to location and carrier chosen, we may send on one pallet, two pallets or just parcel.
The PICKING SLIP - which is the same as the PACKING SLIP needs to be generated a few days before the shipment is actually ready but after invoicing. Some times the Shipment is done third party - which means we do not generate the label for it (based on customer).
How can I decouple creating a PICKING/ PACKING Slip from the actual SHIPMENT (entering tracking number, informing customer with tracking number etc.).?
magento-2.1 packing-slip
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
We ship large items and we have to configure the shipment on a pallet (or pallets).
When we get the order, based on ship to location and carrier chosen, we may send on one pallet, two pallets or just parcel.
The PICKING SLIP - which is the same as the PACKING SLIP needs to be generated a few days before the shipment is actually ready but after invoicing. Some times the Shipment is done third party - which means we do not generate the label for it (based on customer).
How can I decouple creating a PICKING/ PACKING Slip from the actual SHIPMENT (entering tracking number, informing customer with tracking number etc.).?
magento-2.1 packing-slip
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
We ship large items and we have to configure the shipment on a pallet (or pallets).
When we get the order, based on ship to location and carrier chosen, we may send on one pallet, two pallets or just parcel.
The PICKING SLIP - which is the same as the PACKING SLIP needs to be generated a few days before the shipment is actually ready but after invoicing. Some times the Shipment is done third party - which means we do not generate the label for it (based on customer).
How can I decouple creating a PICKING/ PACKING Slip from the actual SHIPMENT (entering tracking number, informing customer with tracking number etc.).?
magento-2.1 packing-slip
We ship large items and we have to configure the shipment on a pallet (or pallets).
When we get the order, based on ship to location and carrier chosen, we may send on one pallet, two pallets or just parcel.
The PICKING SLIP - which is the same as the PACKING SLIP needs to be generated a few days before the shipment is actually ready but after invoicing. Some times the Shipment is done third party - which means we do not generate the label for it (based on customer).
How can I decouple creating a PICKING/ PACKING Slip from the actual SHIPMENT (entering tracking number, informing customer with tracking number etc.).?
magento-2.1 packing-slip
magento-2.1 packing-slip
edited Sep 26 '16 at 15:11
Amit Bera♦
60k1677178
60k1677178
asked Sep 26 '16 at 14:24
samregsamreg
13138
13138
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This is the default Magento behavior to print a packing slip AFTER a shipment document was made (because packing slip uses shipment details).
In your case you want to use packing slip as a picking list, so there is no need in the shipment document (an order's data could be used to generate a picking slip). But this functionality is not available in Magento 2 (and even Magento 1).
However, there is the extension which fixes that issue. It allows to do exactly what you are looking for - to print packing slips BEFORE shipment. It uses orders information to generate packing slips if the shipment documents are not available yet.
It's very simple to use. Just install it, and you don't need even to configure anything after that. Simply use the same "Print Packing Slips" action to print packing slips of the orders with any status (processing, pending, completed, etc). It generates packing slips from the shipments (if they are available), otherwise it uses order's information instead. It uses native Magento PDF template, so its packing slips look exactly the same as regular packing slips.
Extension for Magento 2: Pre Shipment Packing Slip
Also, there is the similar extension for Magento 1: Print Magento Packing Slip before shipping
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f138106%2fhow-to-print-picking-or-packing-slips-before-shipping-magento-2-0%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is the default Magento behavior to print a packing slip AFTER a shipment document was made (because packing slip uses shipment details).
In your case you want to use packing slip as a picking list, so there is no need in the shipment document (an order's data could be used to generate a picking slip). But this functionality is not available in Magento 2 (and even Magento 1).
However, there is the extension which fixes that issue. It allows to do exactly what you are looking for - to print packing slips BEFORE shipment. It uses orders information to generate packing slips if the shipment documents are not available yet.
It's very simple to use. Just install it, and you don't need even to configure anything after that. Simply use the same "Print Packing Slips" action to print packing slips of the orders with any status (processing, pending, completed, etc). It generates packing slips from the shipments (if they are available), otherwise it uses order's information instead. It uses native Magento PDF template, so its packing slips look exactly the same as regular packing slips.
Extension for Magento 2: Pre Shipment Packing Slip
Also, there is the similar extension for Magento 1: Print Magento Packing Slip before shipping
add a comment |
This is the default Magento behavior to print a packing slip AFTER a shipment document was made (because packing slip uses shipment details).
In your case you want to use packing slip as a picking list, so there is no need in the shipment document (an order's data could be used to generate a picking slip). But this functionality is not available in Magento 2 (and even Magento 1).
However, there is the extension which fixes that issue. It allows to do exactly what you are looking for - to print packing slips BEFORE shipment. It uses orders information to generate packing slips if the shipment documents are not available yet.
It's very simple to use. Just install it, and you don't need even to configure anything after that. Simply use the same "Print Packing Slips" action to print packing slips of the orders with any status (processing, pending, completed, etc). It generates packing slips from the shipments (if they are available), otherwise it uses order's information instead. It uses native Magento PDF template, so its packing slips look exactly the same as regular packing slips.
Extension for Magento 2: Pre Shipment Packing Slip
Also, there is the similar extension for Magento 1: Print Magento Packing Slip before shipping
add a comment |
This is the default Magento behavior to print a packing slip AFTER a shipment document was made (because packing slip uses shipment details).
In your case you want to use packing slip as a picking list, so there is no need in the shipment document (an order's data could be used to generate a picking slip). But this functionality is not available in Magento 2 (and even Magento 1).
However, there is the extension which fixes that issue. It allows to do exactly what you are looking for - to print packing slips BEFORE shipment. It uses orders information to generate packing slips if the shipment documents are not available yet.
It's very simple to use. Just install it, and you don't need even to configure anything after that. Simply use the same "Print Packing Slips" action to print packing slips of the orders with any status (processing, pending, completed, etc). It generates packing slips from the shipments (if they are available), otherwise it uses order's information instead. It uses native Magento PDF template, so its packing slips look exactly the same as regular packing slips.
Extension for Magento 2: Pre Shipment Packing Slip
Also, there is the similar extension for Magento 1: Print Magento Packing Slip before shipping
This is the default Magento behavior to print a packing slip AFTER a shipment document was made (because packing slip uses shipment details).
In your case you want to use packing slip as a picking list, so there is no need in the shipment document (an order's data could be used to generate a picking slip). But this functionality is not available in Magento 2 (and even Magento 1).
However, there is the extension which fixes that issue. It allows to do exactly what you are looking for - to print packing slips BEFORE shipment. It uses orders information to generate packing slips if the shipment documents are not available yet.
It's very simple to use. Just install it, and you don't need even to configure anything after that. Simply use the same "Print Packing Slips" action to print packing slips of the orders with any status (processing, pending, completed, etc). It generates packing slips from the shipments (if they are available), otherwise it uses order's information instead. It uses native Magento PDF template, so its packing slips look exactly the same as regular packing slips.
Extension for Magento 2: Pre Shipment Packing Slip
Also, there is the similar extension for Magento 1: Print Magento Packing Slip before shipping
edited Sep 15 '17 at 7:08
answered Dec 21 '16 at 16:00
DennisDennis
12
12
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f138106%2fhow-to-print-picking-or-packing-slips-before-shipping-magento-2-0%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown