Commit d8944893 authored by 李尚科's avatar 李尚科

Fix

parent 938ac3a5
Pipeline #13726 passed with stage
in 26 seconds
......@@ -288,7 +288,7 @@ class OrderService extends Service {
ctx.failed('订单已支付无需重复支付');
}
ctx.logger.info('11111111111111111111111111111111111');
const price = ((order.price - order.preferential_price) * 100).toFixed(2);
const price = ((order.price - order.preferential_price) * 100).toFixed();
if (price <= 0) {
ctx.failed('error price');
......@@ -296,7 +296,7 @@ class OrderService extends Service {
if (type === 'wxpay') {
let body = '黑名单报告检测支付';
if (order.type === 2) {
if (order.type === 2) {
body = '个人通话风险检测支付';
}
const data = {
......
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