Commit 5cd7d40a by NitefullWind

1. 修正结算时"线上会员"的POS支付类型编号。 2.支付是虚拟键盘点确认不直接进行支付,避免误支付。

parent 43bcd057
...@@ -30,7 +30,7 @@ void TaskFinal::packageServerReq() ...@@ -30,7 +30,7 @@ void TaskFinal::packageServerReq()
QString type = pay_ob[PosProps.Pay_id].toString(); QString type = pay_ob[PosProps.Pay_id].toString();
if(type == "01") { if(type == "01") {
cashAmount = pay_ob[PosProps.Paid_total_amount].toInt(); cashAmount = pay_ob[PosProps.Paid_total_amount].toInt();
} else if(type == "22") { } else if(type == "20") {
codeAmount = pay_ob[PosProps.Paid_total_amount].toInt(); codeAmount = pay_ob[PosProps.Paid_total_amount].toInt();
} else if(type == "20002") { // 积分,暂无 } else if(type == "20002") { // 积分,暂无
scoreAmount = pay_ob[PosProps.Paid_total_amount].toInt(); scoreAmount = pay_ob[PosProps.Paid_total_amount].toInt();
......
...@@ -264,5 +264,6 @@ void FMVipOrder::on_clear_clicked() ...@@ -264,5 +264,6 @@ void FMVipOrder::on_clear_clicked()
} }
void FMVipOrder::on_confirm_clicked() void FMVipOrder::on_confirm_clicked()
{ {
on_pay_btn_clicked(); // on_pay_btn_clicked();
numpad->close();
} }
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