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