@dhyasama/totem-models 8.31.1 → 8.31.2
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 +3 -3
- package/package.json +1 -1
package/lib/Financials.js
CHANGED
|
@@ -313,7 +313,7 @@ module.exports = function(mongoose, config) {
|
|
|
313
313
|
|
|
314
314
|
results.push({
|
|
315
315
|
'snapshot': snapshot,
|
|
316
|
-
'customer':
|
|
316
|
+
'customer': snapshot.customer,
|
|
317
317
|
'organization': snapshot.organization
|
|
318
318
|
});
|
|
319
319
|
|
|
@@ -377,7 +377,7 @@ module.exports = function(mongoose, config) {
|
|
|
377
377
|
|
|
378
378
|
results.push({
|
|
379
379
|
'snapshot': snapshot,
|
|
380
|
-
'customer':
|
|
380
|
+
'customer': snapshot.customer,
|
|
381
381
|
'organization': snapshot.organization
|
|
382
382
|
});
|
|
383
383
|
|
|
@@ -434,7 +434,7 @@ module.exports = function(mongoose, config) {
|
|
|
434
434
|
|
|
435
435
|
results.push({
|
|
436
436
|
'snapshot': snapshot,
|
|
437
|
-
'customer':
|
|
437
|
+
'customer': snapshot.customer,
|
|
438
438
|
'organization': snapshot.organization
|
|
439
439
|
});
|
|
440
440
|
|