This commit is contained in:
linfso 2024-08-24 10:24:56 +08:00
parent b1b40e9cb2
commit a710bd9db0
3 changed files with 3 additions and 3 deletions

View File

@ -132,7 +132,7 @@ public class EmisTmsScanRecordController extends EmisBaseController
try {
ScanResult scanResult=emisTmsScanRecordService.scan(scanInfo);
ScanResult scanResult=emisTmsScanRecordService.scan(scanInfo,getLoginUser().getUser().getEmpCode(),getLoginUser().getUser().getOwnerSiteCode());
return AjaxResult.success("扫描成功",scanResult);
}catch (Exception ex){
ex.printStackTrace();

View File

@ -213,7 +213,7 @@ public class EmisWaybillAttachmentController extends EmisBaseController
scanInfo.setScanData(scanDataList);
try {
emisTmsScanRecordService.scan(scanInfo);
emisTmsScanRecordService.scan(scanInfo,getLoginUser().getUser().getEmpCode(),getLoginUser().getUser().getOwnerSiteCode());
} catch (Exception e) {
e.printStackTrace();
return AjaxResult.error("上传异常!");

View File

@ -197,7 +197,7 @@ public class EmisWaybillProblemInfoController extends EmisBaseController
scanDataList.add(scanDateItem);
scanInfo.setScanData(scanDataList);
emisTmsScanRecordService.scan(scanInfo);
emisTmsScanRecordService.scan(scanInfo,getLoginUser().getUser().getEmpCode(),getLoginUser().getUser().getOwnerSiteCode());
return AjaxResult.success("登记成功");
} catch (Exception e) {
e.printStackTrace();