From 4351e71d782741143a98f86f6648acd16689165f Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Fri, 27 May 2022 19:48:02 +0800
Subject: [PATCH] Merge branch 'developer' into hive2.0

---
 zq-erp/src/main/java/com/matrix/system/app/action/ApiStoreAction.java |   35 ++++++++++++++++++++++++++---------
 1 files changed, 26 insertions(+), 9 deletions(-)

diff --git a/zq-erp/src/main/java/com/matrix/system/app/action/ApiStoreAction.java b/zq-erp/src/main/java/com/matrix/system/app/action/ApiStoreAction.java
index d05dbe5..3be8eb5 100644
--- a/zq-erp/src/main/java/com/matrix/system/app/action/ApiStoreAction.java
+++ b/zq-erp/src/main/java/com/matrix/system/app/action/ApiStoreAction.java
@@ -4,23 +4,23 @@
 import com.matrix.core.pojo.AjaxResult;
 import com.matrix.core.pojo.PaginationVO;
 import com.matrix.core.tools.WebUtil;
+import com.matrix.system.app.dto.StoreInOutListDto;
 import com.matrix.system.app.dto.StoreListDto;
 import com.matrix.system.app.mapper.SysStoreInfoMapper;
+import com.matrix.system.app.vo.StoreInOutListVo;
 import com.matrix.system.app.vo.StoreListVo;
 import com.matrix.system.common.bean.SysUsers;
 import com.matrix.system.common.tools.DataAuthUtil;
 import com.matrix.system.hive.bean.SysStoreInfo;
 import com.matrix.system.hive.dao.SysStoreInfoDao;
+import com.matrix.system.hive.pojo.StoreInOutRecordVO;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiOperation;
 import io.swagger.annotations.ApiResponse;
 import io.swagger.annotations.ApiResponses;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.bind.annotation.*;
 
 import java.util.List;
 
@@ -44,11 +44,9 @@
     public AjaxResult findStoreList(@RequestBody @Validated StoreListDto storeListDto) {
         SysStoreInfo sysStoreInfo = new SysStoreInfo();
 
-        if (!DataAuthUtil.hasAllShopAuth()) {
-            SysUsers users = WebUtil.getSessionAttribute(MatrixConstance.LOGIN_KEY);
-            sysStoreInfo.setShopId(users.getShopId());
-            sysStoreInfo.setCompanyId(users.getCompanyId());
-        }
+        SysUsers users = WebUtil.getSessionAttribute(MatrixConstance.LOGIN_KEY);
+        sysStoreInfo.setShopId(users.getShopId());
+        sysStoreInfo.setCompanyId(users.getCompanyId());
         sysStoreInfo.setQueryKey(storeListDto.getQueryKey());
         PaginationVO pageVo = new PaginationVO();
         pageVo.setOffset((storeListDto.getPageNum() - 1) * storeListDto.getPageSize());
@@ -62,4 +60,23 @@
         return new AjaxResult(AjaxResult.STATUS_SUCCESS,  resultList, sysStoreInfoDao.selectCountTotalRecord(sysStoreInfo));
     }
 
+    @ApiOperation(value = "获取商品出入库列表", notes = "获取商品出入库列表")
+    @ApiResponses({
+            @ApiResponse(code = 200, message = "ok", response = StoreInOutListVo.class)
+    })
+    @PostMapping(value = "/findGoodsInOutInfo")
+    public AjaxResult findGoodsInOutInfo(@RequestBody @Validated StoreInOutListDto storeInOutListDto) {
+        StoreInOutRecordVO inOutRecordVO = new StoreInOutRecordVO();
+        inOutRecordVO.setBeginTime(storeInOutListDto.getStartTime());
+        inOutRecordVO.setEndTime(storeInOutListDto.getEndTime());
+        inOutRecordVO.setName(storeInOutListDto.getCode());
+
+        PaginationVO pageVo = new PaginationVO();
+        pageVo.setOffset((storeInOutListDto.getPageNum() - 1) * storeInOutListDto.getPageSize());
+        pageVo.setLimit(storeInOutListDto.getPageSize());
+        List<StoreInOutRecordVO> dataList =sysStoreInfoDao.findStoreInOutRecord(inOutRecordVO,pageVo);
+        List<StoreInOutListVo> list = SysStoreInfoMapper.INSTANCE.recordVosToInOutListVos(dataList);
+        return AjaxResult.buildSuccessInstance(list,sysStoreInfoDao.findStoreInOutTotal(inOutRecordVO));
+    }
+
 }

--
Gitblit v1.9.1