|
|
@ -137,4 +137,20 @@ public class CheckOutBillServiceImpl implements CheckOutBillService { |
|
|
|
.getResultJSONArray(0); |
|
|
|
return jo; |
|
|
|
} |
|
|
|
@Override |
|
|
|
public JSONArray getOutBillTask(Map whereJson) { |
|
|
|
HashMap<String, String> map = new HashMap<>(whereJson); |
|
|
|
map.put("flag", "10"); |
|
|
|
if ("true".equals(map.get("checked"))) { |
|
|
|
map.put("task_status", "99"); |
|
|
|
} |
|
|
|
JSONArray jo = new JSONArray(); |
|
|
|
if (map.containsKey("iostorinvdtl_id")) { |
|
|
|
jo = WQL.getWO("QST_IVT_CHECKOUTBILL") |
|
|
|
.addParamMap(map) |
|
|
|
.process() |
|
|
|
.getResultJSONArray(0); |
|
|
|
} |
|
|
|
return jo; |
|
|
|
} |
|
|
|
} |
|
|
|