@dhyasama/totem-models 8.31.3 → 8.31.4
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.
- package/lib/Financials.js +8 -8
- package/package.json +1 -1
package/lib/Financials.js
CHANGED
|
@@ -313,8 +313,8 @@ module.exports = function(mongoose, config) {
|
|
|
313
313
|
|
|
314
314
|
results.push({
|
|
315
315
|
'snapshot': snapshot,
|
|
316
|
-
'customer':
|
|
317
|
-
'organization':
|
|
316
|
+
'customer': financial.customer,
|
|
317
|
+
'organization': financial.organization
|
|
318
318
|
});
|
|
319
319
|
|
|
320
320
|
}
|
|
@@ -377,8 +377,8 @@ module.exports = function(mongoose, config) {
|
|
|
377
377
|
|
|
378
378
|
results.push({
|
|
379
379
|
'snapshot': snapshot,
|
|
380
|
-
'customer':
|
|
381
|
-
'organization':
|
|
380
|
+
'customer': financial.customer,
|
|
381
|
+
'organization': financial.organization
|
|
382
382
|
});
|
|
383
383
|
|
|
384
384
|
}
|
|
@@ -434,8 +434,8 @@ module.exports = function(mongoose, config) {
|
|
|
434
434
|
|
|
435
435
|
results.push({
|
|
436
436
|
'snapshot': snapshot,
|
|
437
|
-
'customer':
|
|
438
|
-
'organization':
|
|
437
|
+
'customer': financial.customer,
|
|
438
|
+
'organization': financial.organization
|
|
439
439
|
});
|
|
440
440
|
|
|
441
441
|
}
|
|
@@ -498,7 +498,7 @@ module.exports = function(mongoose, config) {
|
|
|
498
498
|
results.push({
|
|
499
499
|
'snapshot': snapshot,
|
|
500
500
|
'stakeholder': stakeholder,
|
|
501
|
-
'organization':
|
|
501
|
+
'organization': financial.organization
|
|
502
502
|
});
|
|
503
503
|
|
|
504
504
|
return callback3();
|
|
@@ -571,7 +571,7 @@ module.exports = function(mongoose, config) {
|
|
|
571
571
|
results.push({
|
|
572
572
|
'snapshot': snapshot,
|
|
573
573
|
'stakeholder': stakeholder,
|
|
574
|
-
'organization':
|
|
574
|
+
'organization': financial.organization
|
|
575
575
|
});
|
|
576
576
|
|
|
577
577
|
return callback3();
|