|
@@ -116,7 +116,7 @@ class LessonStudentService extends CrudService {
|
|
|
// 有余额扣款部分,查账单把钱加上
|
|
|
const billId = _.get(payOrder, 'config,bill');
|
|
|
const bill = await this.billModel.findById(billId);
|
|
|
- obj.money = _.get(obj, 'money', 0) + _.get(bill, 'money', 0);
|
|
|
+ // obj.money = _.get(obj, 'money', 0) + _.get(bill, 'money', 0);
|
|
|
bill.is_pay = '-3';
|
|
|
await bill.save();
|
|
|
}
|