@softwear/latestcollectioncore 1.0.148 → 1.0.149

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -70,7 +70,7 @@ function addTransactionToAggregations(beginTimestamp, endTimestamp, aggregateKey
70
70
  aggregateVector[MAX_RECIEVE_TIMESTAMP] = transaction.time;
71
71
  if (transaction.time <= beginTimestamp) {
72
72
  addVectors(aggregateVector, v, BEGIN_STOCK_VECTOR_START, BEGIN_STOCK_VECTOR_END);
73
- addVectors(aggregateVector, v, QTY_CONSIGNMENT, COSTPRICE_PICKLIST + 1);
73
+ // addVectors(aggregateVector, v, QTY_CONSIGNMENT, COSTPRICE_PICKLIST + 1)
74
74
  return;
75
75
  }
76
76
  if (transaction.time > endTimestamp)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.148",
3
+ "version": "1.0.149",
4
4
  "description": "Core functions for LatestCollections applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -133,7 +133,7 @@ function addTransactionToAggregations(beginTimestamp: number, endTimestamp: numb
133
133
  if (transaction.type == transactionTypeE.RECEIVING && transaction.time > aggregateVector[MAX_RECIEVE_TIMESTAMP]) aggregateVector[MAX_RECIEVE_TIMESTAMP] = transaction.time
134
134
  if (transaction.time <= beginTimestamp) {
135
135
  addVectors(aggregateVector, v, BEGIN_STOCK_VECTOR_START, BEGIN_STOCK_VECTOR_END)
136
- addVectors(aggregateVector, v, QTY_CONSIGNMENT, COSTPRICE_PICKLIST + 1)
136
+ // addVectors(aggregateVector, v, QTY_CONSIGNMENT, COSTPRICE_PICKLIST + 1)
137
137
  return
138
138
  }
139
139
  if (transaction.time > endTimestamp) return