Skip to content

Commit

Permalink
Merge branch 'release/v1.2.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
ysg410 committed Oct 5, 2016
2 parents 0ec7030 + dea6aa0 commit 642905b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v1.2.3 - Oct 05,2016
- Bug fix for additional checking required for backordered items

v1.2.2 - Sep 28, 2016
- Hotfix bug for excel file feature which had issue of naming of products in reports not according to Vend

Expand Down
2 changes: 1 addition & 1 deletion common/models/container.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ module.exports = function(Container) {

orders.forEach(function (singleOrder) {
excelRows.forEach(function (row) {
if (row.SalesOrderNumber == singleOrder.orderNumber) {
if (row.QtyBackordered==0 && row.SalesOrderNumber == singleOrder.orderNumber) {
singleOrder.items.push({
sku: row.ItemNumber,
orderQuantity: row.QtyOrdered,
Expand Down
2 changes: 1 addition & 1 deletion npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shoppinpal-warehouse-mongo",
"version": "1.2.2",
"version": "1.2.3",
"dependencies": {
"bluebird": "2.9.14",
"compression": "^1.0.3",
Expand Down

0 comments on commit 642905b

Please sign in to comment.