|
@@ -11,7 +11,7 @@ module.exports = app => {
|
|
|
|
|
|
async getValidDetails(tr_id) {
|
|
|
const details = await this.db.select(this.tableName, {
|
|
|
- column: ['id', 'in_time', 'tr_id', 'uid', 'status', 'order', 'times', 'code', 's_time', 'decimal'],
|
|
|
+ column: ['id', 'in_time', 'tr_id', 'uid', 'status', 'order', 'times', 'code', 's_time', 'bills_decimal'],
|
|
|
where: { tr_id },
|
|
|
orders: [['order', 'desc']],
|
|
|
});
|
|
@@ -36,7 +36,7 @@ module.exports = app => {
|
|
|
|
|
|
async getDetail(id) {
|
|
|
const details = await this.db.select(this.tableName, {
|
|
|
- column: ['id', 'in_time', 'tr_id', 'uid', 'status', 'order', 'times', 'code', 's_time', 'decimal'],
|
|
|
+ column: ['id', 'in_time', 'tr_id', 'uid', 'status', 'order', 'times', 'code', 's_time', 'bills_decimal'],
|
|
|
where: { id },
|
|
|
orders: [['order', 'desc']],
|
|
|
});
|
|
@@ -91,7 +91,7 @@ module.exports = app => {
|
|
|
report_json: JSON.stringify(pageRst),
|
|
|
in_time: new Date(),
|
|
|
};
|
|
|
- if (preDetail) newDetail.decimal = preDetail.decimal;
|
|
|
+ if (preDetail) newDetail.bills_decimal = preDetail.bills_decimal;
|
|
|
const result = await transaction.insert(this.tableName, newDetail);
|
|
|
if (result.affectedRows === 1) {
|
|
|
newDetail.id = result.insertId;
|