This commit is contained in:
linfso 2024-05-08 21:28:32 +08:00
parent 984bbf5ea5
commit c18f053bca

View File

@ -51,7 +51,6 @@ public class EmisWaybillController extends BaseController
@Autowired
private IEmisElectronicPagService emisElectronicPagService;
/**
* 获取电子运单信息
*/
@ -227,6 +226,39 @@ public class EmisWaybillController extends BaseController
}
/**
* 查询扫描统计数据
* @param emisWaybill
* @return
*/
@JacksonFilter(include= {
"id","orderSn","billCode","orderStatus","waybillStatus",
"orderType","sendDate","customerCode","customerName",
"receiveName",
"receiveCountry","receiveCountryName",
"receiveProvince","receiveProvinceName",
"receiveCity", "receiveCityName",
"sendName",
"sendCountry","sendCountryName",
"sendProvince","sendProvinceName",
"sendCity","sendCityName",
"transLineType","transLineName",
"productType","productName"
},value= EmisWaybill.class,type= JacksonFilter.JscksonFilterType.RESPONSE)
@RequestMapping("/queryScanWaybillList")
public TableDataInfo queryScanWaybillList(EmisWaybill emisWaybill)
{
startPage();
emisWaybill.getParams().put("statSiteCode",getLoginUser().getUser().getOwnerSiteCode());
emisWaybill.getParams().put("statEmpCode",getLoginUser().getUser().getEmpCode());
List<EmisWaybill> list = emisWaybillService.selectEmisWaybillList(emisWaybill);
return getDataTable(list);
}
// /**