| | |
| | | |
| | | public void callApiLogSave(ErpDetTb erpDetTb, String tableName, String response, Boolean bool) { |
| | | apiLogService.save("ERP下发订单信息", "中间表:" + tableName, "null", ip, |
| | | "订单号:" + erpDetTb.getBillNo() + "品号:" + erpDetTb.getPrdNo() + "货品特征:" + erpDetTb.getPrdMark() + "状态:" + erpDetTb.getStatus(), |
| | | "订单号:" + erpDetTb.getBillNo() + "、品号:" + erpDetTb.getPrdNo() + "、货品特征:" + erpDetTb.getPrdMark() + "、状态:" + erpDetTb.getStatus(), |
| | | response, bool); |
| | | } |
| | | } |
| | |
| | | |
| | | public void callApiLogSave(Prdt prdt, String tableName, String response, Boolean bool) { |
| | | apiLogService.save("ERP下发商品信息", "中间表:" + tableName, "null", ip, |
| | | "品号:" + prdt.getPrdNo() + "品名:" + prdt.getName() + "类型:" + prdt.getType() + "状态:" + prdt.getStatus(), |
| | | "品号:" + prdt.getPrdNo() + "、品名:" + prdt.getName() + "、类型:" + prdt.getType() + "、状态:" + prdt.getStatus(), |
| | | response, bool); |
| | | } |
| | | } |
| | |
| | | |
| | | public void callApiLogSaveLkDetTb(LkDetTb lkDetTb, String tableName, String response, Boolean bool) { |
| | | apiLogService.save("ERP下发订单信息", "中间表:" + tableName, "null", ip, |
| | | "订单号:" + lkDetTb.getBillNo() + "品号:" + lkDetTb.getPrdNo() + "货品特征:" + lkDetTb.getPrdMark() + "状态:" + lkDetTb.getStatus(), |
| | | "订单号:" + lkDetTb.getBillNo() + "、品号:" + lkDetTb.getPrdNo() + "、货品特征:" + lkDetTb.getPrdMark() + "、状态:" + lkDetTb.getStatus(), |
| | | response, bool); |
| | | } |
| | | |
| | | public void callApiLogSaveLkDetTbBak(LkDetTbBak lkDetTbBak, String tableName, String response, Boolean bool) { |
| | | apiLogService.save("ERP下发订单信息", "中间表:" + tableName, "null", ip, |
| | | "订单号:" + lkDetTbBak.getBillNo() + "品号:" + lkDetTbBak.getPrdNo() + "货品特征:" + lkDetTbBak.getPrdMark() + "状态:" + lkDetTbBak.getStatus(), |
| | | "订单号:" + lkDetTbBak.getBillNo() + "、品号:" + lkDetTbBak.getPrdNo() + "、货品特征:" + lkDetTbBak.getPrdMark() + "、状态:" + lkDetTbBak.getStatus(), |
| | | response, bool); |
| | | } |
| | | |
| | | public void callApiLogSaveOrderDetl(OrderDetl orderDetl, String response, Boolean bool) { |
| | | apiLogService.save("上报完结订单明细信息", "中间表:lk_det_tb", "null", ip, |
| | | "订单号:" + orderDetl.getOrderNo() + "品号:" + orderDetl.getMatnr() + "货品特征:" + orderDetl.getBatch(), |
| | | "订单号:" + orderDetl.getOrderNo() + "、品号:" + orderDetl.getMatnr() + "、货品特征:" + orderDetl.getBatch(), |
| | | response, bool); |
| | | } |
| | | |