Commit 8f5aa9cb by NitefullWind

1. 修复支付接口中"已付金额"错误的Bug.

parent 3ce0db3e
...@@ -57,6 +57,7 @@ void TaskPay::setWindow() ...@@ -57,6 +57,7 @@ void TaskPay::setWindow()
{ {
_window = new FMVipOrder; _window = new FMVipOrder;
session()->addData(PosProps.OrderAmount, getPosJsonValue(PosProps.OrderAmount).toInt()); session()->addData(PosProps.OrderAmount, getPosJsonValue(PosProps.OrderAmount).toInt());
session()->addData(PosProps.PaidAmount, getPosJsonValue(PosProps.PaidAmount).toInt());
connect(qobject_cast<FMVipOrder*>(_window), SIGNAL(pay()), this, SLOT(onPay())); connect(qobject_cast<FMVipOrder*>(_window), SIGNAL(pay()), this, SLOT(onPay()));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment