demand: TMS-成本管理-批量导入成本-导入支持根据批次号导入
This commit is contained in:
parent
aebd21a3d6
commit
77741b06f9
@ -97,13 +97,19 @@ public class EmisTmsSiteBatchController extends EmisBaseController
|
||||
|
||||
/**
|
||||
* 用于批次批量上传使用
|
||||
*
|
||||
* @param emisTmsSiteBatch
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("/listBySupplerAndCarNo")
|
||||
public TableDataInfo listBySupplerAndCarNo(EmisTmsSiteBatch emisTmsSiteBatch)
|
||||
{
|
||||
List<EmisTmsSiteBatch> list = emisTmsSiteBatchService.selectTmsSiteBatchBySupplerAndCarNo(emisTmsSiteBatch.getSupplierCode(),emisTmsSiteBatch.getCarNo(),emisTmsSiteBatch.getEtd());
|
||||
public TableDataInfo listBySupplerAndCarNo(EmisTmsSiteBatch emisTmsSiteBatch) {
|
||||
if (StringUtils.isNotBlank(emisTmsSiteBatch.getBatchNo())) {
|
||||
EmisTmsSiteBatch queryByBatchNo = new EmisTmsSiteBatch();
|
||||
queryByBatchNo.setBatchNo(emisTmsSiteBatch.getBatchNo());
|
||||
List<EmisTmsSiteBatch> list = emisTmsSiteBatchService.selectEmisTmsSiteBatchList(queryByBatchNo);
|
||||
return getDataTable(list);
|
||||
}
|
||||
List<EmisTmsSiteBatch> list = emisTmsSiteBatchService.selectTmsSiteBatchBySupplerAndCarNo(emisTmsSiteBatch.getSupplierCode(), emisTmsSiteBatch.getCarNo(), emisTmsSiteBatch.getEtd());
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
|
||||
@ -13,3 +13,4 @@ public @interface WaybillLightCount {
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@ -50,3 +50,4 @@ public class EmisWaybillOther extends BaseEntity {
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@ -79,3 +79,4 @@ public interface EmisWaybillOtherMapper extends BaseMapper<EmisWaybillOther> {
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user