- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2017
01:33 AM
07-17-2017
01:33 AM
after i upgrade to version 1.9.3.4 from 1.9.2.2, i have this error now when i am creating shipments for my orders
Solved! Go to Solution.
Labels:
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2017
02:12 AM
07-17-2017
02:12 AM
under js/mage/adminhtml/sales/packaging.js
edit the
pack.id = 'package_block_' + ++this.packageIncrement;
to
pack.id = 'package_block_' + (++this.packageIncrement);
so it wont be generated as
pack.id='package_block_'+++this.packageIncrement;
that will cause an error: Invalid left-hand side expression in postfix operation -> +++
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2017
02:12 AM
07-17-2017
02:12 AM
under js/mage/adminhtml/sales/packaging.js
edit the
pack.id = 'package_block_' + ++this.packageIncrement;
to
pack.id = 'package_block_' + (++this.packageIncrement);
so it wont be generated as
pack.id='package_block_'+++this.packageIncrement;
that will cause an error: Invalid left-hand side expression in postfix operation -> +++