|
@@ -1,7 +1,9 @@
|
|
|
package com.yh.saas.plugin.yiliangyiyun.controller;
|
|
|
|
|
|
|
|
|
+import com.yh.saas.plugin.yiliangyiyun.entity.ContractManagementInfo;
|
|
|
import com.yh.saas.plugin.yiliangyiyun.entity.WarehouseInOutInfo;
|
|
|
+import com.yh.saas.plugin.yiliangyiyun.service.IContractManagementInfoService;
|
|
|
import com.yh.saas.plugin.yiliangyiyun.service.IWarehouseInOutInfoService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
@@ -86,5 +88,15 @@ public class WarehouseInOutInfoController {
|
|
|
return warehouseInOutInfoService.selectInfoTemporary(warehouseInOutInfo);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 出入库合同编号下拉列表
|
|
|
+ * @param compId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping("/selectContractNoList")
|
|
|
+ public List<ContractManagementInfo> selectContractNoList(String compId) {
|
|
|
+ return warehouseInOutInfoService.selectContractNoList(compId);
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|