parent
7667e54e70
commit
64789a1aa0
|
|
@ -30,10 +30,12 @@ public class ScheduleListPlugin extends AbstractListPlugin {
|
||||||
//退单/作废调通SAP凭证退单/作废状态 退单:chargeback 作废:discard
|
//退单/作废调通SAP凭证退单/作废状态 退单:chargeback 作废:discard
|
||||||
String operateKey = args.getOperateKey();
|
String operateKey = args.getOperateKey();
|
||||||
OperationResult operationResult = args.getOperationResult();
|
OperationResult operationResult = args.getOperationResult();
|
||||||
if (operationResult.isSuccess()) {
|
if (null != operationResult) {
|
||||||
if ("chargeback".equals(operateKey) || "discard".equals(operateKey)) {
|
if (operationResult.isSuccess()) {
|
||||||
String status = "chargeback".equals(operateKey)? "04" : "05";
|
if ("chargeback".equals(operateKey) || "discard".equals(operateKey)) {
|
||||||
processRows(status);
|
String status = "chargeback".equals(operateKey)? "04" : "05";
|
||||||
|
processRows(status);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue