ソースを参照

库位视图页面增加初始化一个空托盘按钮,点击空库位可以在此库位上生成空托库存信息

LZH 1 年間 前
コミット
ce42d2e500

+ 47 - 4
ruoyi-admin/src/main/java/com/ruoyi/web/controller/warewms/ams/LocationViewSafeController.java

@@ -1,7 +1,12 @@
 package com.ruoyi.web.controller.warewms.ams;
 
+import com.ruoyi.ams.config.domain.dto.LotattDTO;
 import com.ruoyi.ams.config.service.ILotattConfigService;
+import com.ruoyi.ams.inv.domain.InvLotAtt;
+import com.ruoyi.ams.inv.domain.InvLotLocId;
 import com.ruoyi.ams.inv.domain.vo.InvLotLocIdLotattVO;
+import com.ruoyi.ams.inv.mapper.InvLotAttMapper;
+import com.ruoyi.ams.inv.mapper.InvLotLocIdMapper;
 import com.ruoyi.ams.inv.service.IInvLotLocIdService;
 import com.ruoyi.ams.locationView.domain.form.LocationViewForm;
 import com.ruoyi.ams.locationView.domain.vo.LocationViewVO;
@@ -11,16 +16,18 @@ import com.ruoyi.base.domain.BaseLocationZone;
 import com.ruoyi.base.domain.BaseWarehouse;
 import com.ruoyi.base.domain.dto.BasLocationGuiExtDTO;
 import com.ruoyi.base.service.IBaseLocationZoneService;
+import com.ruoyi.base.utils.IdSequenceUtils;
 import com.ruoyi.common.annotation.Log;
 import com.ruoyi.common.core.controller.BaseController;
 import com.ruoyi.common.core.domain.AjaxResult;
 import com.ruoyi.common.enums.BusinessType;
+import com.ruoyi.common.utils.DateUtils;
+import org.springframework.beans.BeanUtils;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.PathVariable;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.bind.annotation.*;
 
+import java.math.BigDecimal;
+import java.util.Date;
 import java.util.List;
 
 /**
@@ -43,6 +50,12 @@ public class LocationViewSafeController extends BaseController {
     private ILotattConfigService lotattConfigService;
     @Autowired
     private IBaseLocationZoneService baseLocationZoneService;
+    @Autowired
+    private IdSequenceUtils idSequenceUtils;
+    @Autowired
+    private InvLotLocIdMapper invLotLocIdMapper;
+    @Autowired
+    private InvLotAttMapper invLotAttMapper;
 
     @GetMapping(value = "/view")
     public AjaxResult getInfo(LocationViewForm locationViewForm) {
@@ -75,6 +88,36 @@ public class LocationViewSafeController extends BaseController {
         return invLotLocIdService.adjLocationIsEmpty(id.toString(), Constant.WAREHOUSE_ID, logger.getName());
     }
 
+    @Log(title = "设置库存信息为空托", businessType = BusinessType.CLEAN)
+    @PostMapping(value = "/setIsEmptyPallent/{id}")
+    public AjaxResult setIsEmptyPallent(@PathVariable("id") Long id) {
+        // 批次表
+        String lotnum = idSequenceUtils.generateId("LOTNUMBER");
+        LotattDTO lotattDTO = new LotattDTO();
+        InvLotAtt invLotAtt = new InvLotAtt();
+        BeanUtils.copyProperties(lotattDTO, invLotAtt);
+        invLotAtt.setCustomerId("default");
+        invLotAtt.setSku("EMPTY_TRAY");
+        invLotAtt.setLotnum(lotnum);
+        invLotAtt.setCreateTime(DateUtils.getNowDate());
+        invLotAttMapper.insertInvLotAtt(invLotAtt);
+        // 库存表
+        InvLotLocId invLotLocId = new InvLotLocId();
+        invLotLocId.setLotnum(lotnum);
+        invLotLocId.setLocationId(id.toString());
+        invLotLocId.setSku("EMPTY_TRAY");
+        invLotLocId.setCustomerId("default");
+        invLotLocId.setQty(new BigDecimal("1"));
+//        invLotLocId.setQtyEach(new BigDecimal(qty));
+//        invLotLocId.setQtyallocated(BigDecimal.ZERO);
+//        invLotLocId.setQtyallocatedEach(BigDecimal.ZERO);
+//        invLotLocId.setQtypa(BigDecimal.ZERO);
+//        invLotLocId.setQtyrpin(BigDecimal.ZERO);
+        invLotLocId.setCreateTime(new Date());
+        invLotLocIdMapper.insertInvLotLocId(invLotLocId);
+        return AjaxResult.success();
+    }
+
     @GetMapping(value = "/locationLotatt/{locationId}")
     public AjaxResult locationLotatt(@PathVariable("locationId") Long locationId) {
         List<InvLotLocIdLotattVO> invLotLocIdLotattVOS = invLotLocIdService.selectInvLocIdLotattByLocationId(locationId);

+ 8 - 0
ruoyi-ui/src/api/ams/locationView.js

@@ -32,6 +32,14 @@ export function clearLocRequest(id) {
   })
 }
 
+export function submitForm(id) {
+  return request({
+    url: '/ams/safe/locationView/setIsEmptyPallent/'+id,
+    // url: '/ams/locationView/clearLoc/'+id,
+    method: 'post'
+  })
+}
+
 export function occupyLocRequest(id) {
   return request({
     url: '/ams/safe/locationView/setIsEmpty/'+id,

+ 19 - 3
ruoyi-ui/src/views/ams/inv/locationView/index.vue

@@ -96,7 +96,7 @@
             <el-button type="primary" @click="lockLoc()">锁定/解锁</el-button>
             <el-button type="primary" @click="occupyLoc()">有货/无货</el-button>
             <el-button type="primary" @click="clearLoc()">清空</el-button>
-            <!--<el-button type="primary" @click="submitForm">初始化一个空托盘</el-button>-->
+            <el-button type="primary" @click="submitForm()">初始化一个空托盘</el-button>
           </el-form-item>
         </el-form>
         <el-divider content-position="center">批次属性信息</el-divider>
@@ -120,8 +120,10 @@
     </el-container>
 </template>
 <script>
-import { clearLocRequest,locationInvView,queryLocationZoneDict,lockLocRequest,lotattConfigList
-  ,lotattInfo,occupyLocRequest,queryWarehouseDict} from "@/api/ams/locationView";
+import {
+  clearLocRequest, locationInvView, queryLocationZoneDict, lockLocRequest, lotattConfigList
+  , lotattInfo, occupyLocRequest, queryWarehouseDict, submitForm
+} from "@/api/ams/locationView";
 
   export default {
     data () {
@@ -288,6 +290,20 @@ import { clearLocRequest,locationInvView,queryLocationZoneDict,lockLocRequest,lo
           });
         });
       },
+      submitForm() {
+        let that = this
+        this.$modal.confirm('是否确认要将库存信息设置为空托?').then(function() {
+          submitForm(that.currentSelect).then(response => {
+            if (response.code === 200) {
+              that.open = false;
+              that.$modal.msgSuccess(response.msg);
+              that.search();
+            } else {
+              that.$modal.msgError(response.msg);
+            }
+          });
+        });
+      },
       getBasZoneList() {
         queryLocationZoneDict().then(response => {
           this.locationZoneCombo = response.data