@@ -653,6 +653,9 @@ public class InvoiceServiceImpl implements InvoiceService {
if (invoice == null) {
throw new IllegalOperatorException("没有传入有效的订单信息");
}
+ if (invoice.getStatus().intValue() != Status.INBOUND.value()) {
+ return ResultMap.success("");
+ }
User user = SystemSession.getUser();
Long useruu = null;
if (user == null) {