This commit is contained in:
linfso 2024-05-22 06:12:42 +08:00
parent 73f879551a
commit 5a10811c56
3 changed files with 6 additions and 11 deletions

View File

@ -360,6 +360,8 @@ public class EmisWaybillController extends BaseController
emisWaybill.getParams().put("currentEmpCode",getLoginUser().getUser().getEmpCode());
emisWaybill.getParams().put("currentEmpName",getLoginUser().getUser().getEmpName());
}
List<EmisWaybill> list = emisWaybillService.selectEmisWaybillList(emisWaybill);
return getDataTable(list);
}

View File

@ -403,14 +403,7 @@ public class EmisWaybill extends BaseEntity
private String salesmenName;
private String payeeName;
// 最近一条扫描记录
private EmisTmsScanRecord lastScanRecord;
}

View File

@ -369,12 +369,12 @@ public class EmisBaseService {
}
/**
* 获取问题件
* 获取问题件类型
* @param problemType
* @return
*/
public EmisProblemType getEmisProblemTypeByType(String problemType){
return emisProblemTypeMapper.selectEmisProblemTypeById(Long.valueOf(problemType))
return emisProblemTypeMapper.selectEmisProblemTypeById(Long.valueOf(problemType));
}
/**