|
@@ -119,7 +119,7 @@ public class PowersiMiPayPlugin {
|
|
|
List<Map<String, Object>> feeList = vo.getData();
|
|
|
for (Map<String, Object> map : feeList) {
|
|
|
BillInfo billInfo = new BillInfo(map);
|
|
|
- if (billInfo.getVipFlag() == 1) {
|
|
|
+ if (billInfo.getVipFlag() != 0) {
|
|
|
continue;
|
|
|
}
|
|
|
String url = hisMipUrl + "/writeMtReceipt?hisOrdNum=" + billInfo.getBizId();
|
|
@@ -199,7 +199,9 @@ public class PowersiMiPayPlugin {
|
|
|
JSONObject clrObj = hiExtData.getJSONObject("setlinfo");
|
|
|
if (null != clrObj) {
|
|
|
String clrOptins = clrObj.getString("clrOptins");
|
|
|
+ String clrType = clrObj.getString("clrType");
|
|
|
setlinfo.setClrOptins(clrOptins);
|
|
|
+ setlinfo.setClrType(clrType);
|
|
|
}
|
|
|
}
|
|
|
int insert = dao.insert(setlinfo);
|