|
@@ -103,7 +103,7 @@ public class YfWarehouseController {
|
|
|
*/
|
|
|
@UserLoginToken
|
|
|
@RequestMapping(value = "/getYpOutDetlDetail",method = {RequestMethod.GET})
|
|
|
- public Map<String,Object> getYpOutDetlDetail(@RequestParam("drawNo") String drawNo){
|
|
|
+ public Map<String,Object> getYpOutDetlDetail(@RequestParam("drawNo") String drawNo, @RequestParam("groupNo") String groupNo){
|
|
|
Map<String, Object> resultMap = new HashMap<>();
|
|
|
try {
|
|
|
if (StringUtils.isBlank(drawNo)) {
|
|
@@ -113,6 +113,8 @@ public class YfWarehouseController {
|
|
|
}
|
|
|
YpOutDetl ypOutDetl = new YpOutDetl();
|
|
|
ypOutDetl.setDrawNo(drawNo);
|
|
|
+ // 药品接收入库(菜单)时入库房的药品来自是哪个药房
|
|
|
+ ypOutDetl.setGroupNoOut(groupNo);
|
|
|
List<YpOutDetlVo> list = ypOutDetlService.queryYpOutDetlDetail(ypOutDetl);
|
|
|
list.forEach(y ->{
|
|
|
YpZdDict ypZdDict = ypZdDictService.queryYpZdDictByCodeAndSerial(y.getChargeCode(), y.getSerial());
|