|
|
|
@ -27,6 +27,7 @@ import com.glxp.api.service.auth.CustomerService;
|
|
|
|
|
import com.glxp.api.service.inout.IoOrderDetailBizService;
|
|
|
|
|
import com.glxp.api.service.inout.IoOrderDetailCodeService;
|
|
|
|
|
import com.glxp.api.service.inout.impl.IoOrderInvoiceService;
|
|
|
|
|
import org.apache.commons.collections.CollectionUtils;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
@ -193,4 +194,20 @@ public class IoOrderInvoiceController {
|
|
|
|
|
else
|
|
|
|
|
return ResultVOUtils.error(500, "删除失败!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/udiwms/inout/invoice/checkInvoiceCode")
|
|
|
|
|
public BaseResponse checkInvoiceCode(@RequestBody DeleteRequest deleteRequest) {
|
|
|
|
|
if (StrUtil.isEmpty(deleteRequest.getInvoiceEncode()))
|
|
|
|
|
return ResultVOUtils.error(500, "发票编码不能为空");
|
|
|
|
|
|
|
|
|
|
List<IoOrderInvoiceEntity> ioOrderInvoiceEntityList = ioOrderInvoiceService.list(new QueryWrapper<IoOrderInvoiceEntity>().eq("invoiceEncode", deleteRequest.getInvoiceEncode()));
|
|
|
|
|
if (CollectionUtils.isNotEmpty(ioOrderInvoiceEntityList) && ioOrderInvoiceEntityList.size()>0){
|
|
|
|
|
return ResultVOUtils.error(999,"发票编码已存在!");
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|