Authored by Lixiaodi

bug修改

... ... @@ -367,11 +367,11 @@ public class MerchantOrderPaymentService extends AbstractOrderPaymentService {
} else {
result.put("amount", detail.getAmount().setScale(2).toString());
}
result.put("type", sw.getType());
if (sw.getType() == 1) {
result.put("type", detail.getType());
if (detail.getType() == 1) {
result.put("name", "充值保证金");
}
if (sw.getType() / 10 == 3 || sw.getType() == 61) {
if (detail.getType() / 10 == 3 || detail.getType() == 61) {
result.put("name", "支付保证金");
}
result.put("info", SellerWalletDetail.Type.of(sw.getType()).getName());
... ...