This commit is contained in:
linfso 2024-05-21 07:38:39 +08:00
parent eddef42593
commit d2ffd40847

View File

@ -321,8 +321,14 @@ public class EmisWaybillController extends BaseController
public TableDataInfo queryScanWaybillList(EmisWaybill emisWaybill)
{
startPage();
emisWaybill.getParams().put("squeryScanWaybillListtatSiteCode",getLoginUser().getUser().getOwnerSiteCode());
emisWaybill.getParams().put("queryScanWaybillListtatSiteCode",getLoginUser().getUser().getOwnerSiteCode());
emisWaybill.getParams().put("statEmpCode",getLoginUser().getUser().getEmpCode());
if(!getLoginUser().getUser().isTopSite()){
emisWaybill.getParams().put("innerQuery","1");
emisWaybill.getParams().put("currentSiteCode",getLoginUser().getUser().getOwnerSiteCode());
emisWaybill.getParams().put("currentEmpCode",getLoginUser().getUser().getEmpCode());
emisWaybill.getParams().put("currentEmpName",getLoginUser().getUser().getEmpName());
}
List<EmisWaybill> list = emisWaybillService.selectEmisWaybillList(emisWaybill);
return getDataTable(list);
}