cashTransaction remove raw in list
This commit is contained in:
parent
a4040197af
commit
3899531e33
@ -14,9 +14,9 @@ module.exports = {
|
|||||||
var month = splitDate[1];
|
var month = splitDate[1];
|
||||||
year = parseInt(year);
|
year = parseInt(year);
|
||||||
month = parseInt(month);
|
month = parseInt(month);
|
||||||
transactions = await cashTransactionModel.find({ year, month }, { _id: 0, __v: 0 });
|
transactions = await cashTransactionModel.find({ year, month }, { _id: 0, __v: 0, raw: 0 });
|
||||||
} else {
|
} else {
|
||||||
transactions = await cashTransactionModel.find({}, { _id: 0, __v: 0 });
|
transactions = await cashTransactionModel.find({}, { _id: 0, __v: 0, raw: 0 });
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = { transactions: transactions, types: types };
|
const data = { transactions: transactions, types: types };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user