We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcd6279 commit 881562fCopy full SHA for 881562f
1 file changed
erpnext/public/js/controllers/transaction.js
@@ -3131,10 +3131,16 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe
3131
3132
set_warehouse() {
3133
this.autofill_warehouse(this.frm.doc.items, "warehouse", this.frm.doc.set_warehouse);
3134
+ this.autofill_warehouse(this.frm.doc.packed_items, "warehouse", this.frm.doc.set_warehouse);
3135
}
3136
3137
set_target_warehouse() {
3138
this.autofill_warehouse(this.frm.doc.items, "target_warehouse", this.frm.doc.set_target_warehouse);
3139
+ this.autofill_warehouse(
3140
+ this.frm.doc.packed_items,
3141
+ "target_warehouse",
3142
+ this.frm.doc.set_target_warehouse
3143
+ );
3144
3145
3146
set_from_warehouse() {
0 commit comments