charles
2024-08-06 5ecb7958c96d3f0b6d47b79aff7eb306c2cf690f
src/views/reportForm/inventoryReport/index.vue
@@ -10,31 +10,37 @@
        @addCommonClick="addBtnClick"
        @searchClick="getList"
        :isDisabled="true"
        :showDownload="true"
        @downloadClick="downHttpClick"
      />
    </div>
    <div class="content_wrap">
      <div class="con_left">
        <div class="con_left_div">
        <p>仓库</p>
        <div class="stash">
          <template>
            <el-radio
              v-for="(item, index) in warehouseList"
              :key="index"
              v-model="stashRadio"
              :label="item.code"
              @change="radioHandleChange"
              >{{ item.name }}</el-radio
            >
            <!-- @click.prevent.native="checkRadio(item.code)"   取消单选项 -->
              <el-radio v-for="(item, index) in warehouseList" :key="index" v-model="stashRadio" :label="item.code" @change="radioHandleChange(item)">
                <el-tooltip class="item" effect="dark" :content="item.name" placement="bottom">
                  <span class="radio-text">{{ item.name }}</span>
                </el-tooltip>
              </el-radio>
          </template>
        </div>
        <p style="margin-top: 30px">类别</p>
        <el-checkbox-group v-model="checkList" @change="checkListHandler">
        </div>
        <div class="con_left_div">
          <p>类别</p>
          <div class="category">
            <el-tree node-key="id" :data="categoryList" show-checkbox :props="treeProps" @check="checkListHandler"></el-tree>
            <!-- <el-checkbox-group v-model="checkList" @change="checkListHandler">
          <el-checkbox v-for="item in categoryList" :key="item.id" :label="item.id">
            {{ item.name }}
                <el-tooltip class="item" effect="dark" :content="item.name" placement="bottom">
                  <span class="radio-text">{{ item.name }}</span>
                </el-tooltip>
          </el-checkbox>
        </el-checkbox-group>
          </el-checkbox-group> -->
          </div>
        </div>
      </div>
      <div class="list-view">
        <div class="table">
@@ -46,6 +52,95 @@
            :showSummary="true"
          >
            <template slot="tableButton">
              <el-table-column label="在库" prop='amount'>
                  <el-table-column v-for="unit in unitList" :label="unit.name" prop='availableNumber' min="90">
                      <template slot-scope="scope">
                          {{getUnitValue(scope.row.amountMoreUnits,unit.name,scope.row.amount,scope.row.unit)}}
                      </template>
                  </el-table-column>
                </el-table-column>
              <el-table-column label="可用库存" prop='availableNumber'>
                  <el-table-column v-for="unit in unitList" :label="unit.name" prop='amount' min="90">
                      <template slot-scope="scope">
                          {{getUnitValue(scope.row.availableNumberMoreUnits,unit.name,scope.row.availableNumber,scope.row.unit)}}
                      </template>
                  </el-table-column>
                 <!-- <el-table-column label="件" prop='availableNumber' min="90">
                    <template slot-scope="scope">
                        {{getUnitValue(scope.row.availableNumberMoreUnits,'件',scope.row.availableNumber,scope.row.unit)}}
                    </template>
                </el-table-column>
                <el-table-column label="匹" prop='availableNumber' min="90">
                    <template slot-scope="scope">
                        {{getUnitValue(scope.row.availableNumberMoreUnits,'匹',scope.row.availableNumber,scope.row.unit)}}
                    </template>
                </el-table-column>
                <el-table-column label="米数" prop='availableNumber' min="90">
                    <template slot-scope="scope">
                        {{getUnitValue(scope.row.availableNumberMoreUnits,'米数',scope.row.availableNumber,scope.row.unit)}}
                    </template>
                </el-table-column>
                <el-table-column label="重量" prop='availableNumber' min="90">
                    <template slot-scope="scope">
                        {{getUnitValue(scope.row.availableNumberMoreUnits,'重量',scope.row.availableNumber,scope.row.unit)}}
                    </template>
                </el-table-column>-->
            </el-table-column>
              <el-table-column label="入库" prop='in'>
                  <el-table-column v-for="unit in unitList" :label="unit.name" prop='in' min="90">
                      <template slot-scope="scope">
                          {{getUnitValue(scope.row.inMoreUnits,unit.name,scope.row.in,scope.row.unit)}}
                      </template>
                  </el-table-column>
                    <!--<el-table-column label="件" prop='in' min="90">
                        <template slot-scope="scope">
                            {{getUnitValue(scope.row.inMoreUnits,'件',scope.row.in,scope.row.unit)}}
                        </template>
                    </el-table-column>
                    <el-table-column label="匹" prop='in' min="90">
                        <template slot-scope="scope">
                            {{getUnitValue(scope.row.inMoreUnits,'匹',scope.row.in,scope.row.unit)}}
                        </template>
                    </el-table-column>
                    <el-table-column label="米数" prop='in' min="90">
                        <template slot-scope="scope">
                            {{getUnitValue(scope.row.inMoreUnits,'米数',scope.row.in,scope.row.unit)}}
                        </template>
                    </el-table-column>
                    <el-table-column label="重量" prop='in' min="90">
                        <template slot-scope="scope">
                            {{getUnitValue(scope.row.inMoreUnits,'重量',scope.row.in,scope.row.unit)}}
                        </template>
                    </el-table-column>-->
                </el-table-column>
              <el-table-column label="出库" prop='out'>
                  <el-table-column v-for="unit in unitList" :label="unit.name" prop='out' min="90">
                      <template slot-scope="scope">
                          {{getUnitValue(scope.row.outMoreUnits,unit.name,scope.row.out,scope.row.unit)}}
                      </template>
                    </el-table-column>
                    <!--<el-table-column label="件" prop='out' min="90">
                        <template slot-scope="scope">
                            {{getUnitValue(scope.row.outMoreUnits,'件',scope.row.out,scope.row.unit)}}
                        </template>
                    </el-table-column>
                    <el-table-column label="匹" prop='out' min="90">
                        <template slot-scope="scope">
                            {{getUnitValue(scope.row.outMoreUnits,'匹',scope.row.out,scope.row.unit)}}
                        </template>
                    </el-table-column>
                    <el-table-column label="米数" prop='out' min="90">
                        <template slot-scope="scope">
                            {{getUnitValue(scope.row.outMoreUnits,'米数',scope.row.out,scope.row.unit)}}
                        </template>
                    </el-table-column>
                    <el-table-column label="重量" prop='out' min="90">
                        <template slot-scope="scope">
                            {{getUnitValue(scope.row.outMoreUnits,'重量',scope.row.out,scope.row.unit)}}
                        </template>
                    </el-table-column>-->
                </el-table-column>
              <el-table-column label="操作" width="220" align="center">
                <template slot-scope="scope">
                  <span @click="handleHistoryClick(scope.row)" class="yes-cursor">
@@ -75,8 +170,8 @@
          <PagerView class="page" :pager-options="pagerOptions" :page-size="pageSizes" v-on="pagerEvents" />
        </div>
      </div>
    </div>
    </div>
    <!-- 编辑 dialog-->
    <AddOverviewDialog v-if="editConfig.visible" :edit-common-config="editConfig" :add-name="this.$route.params.name" />
  </div>
@@ -86,7 +181,11 @@
import pageMixin from "@/components/makepager/pager/mixin/pageMixin"
import AddOverviewDialog from "@/views/overview/AddOverviewDialog"
import { getInventoryData, getProductCategoryList, getWarehouseList } from "@/api/reportForm/inventoryRwport"
import { downloadInventoryForms } from "@/api/downFile"
import FileSaver from 'file-saver';
import axios from 'axios';
import _ from 'lodash'
import {getUnitInfo} from "@/api/basic/standard";
export default {
  name: "inventoryReport",
  props: {},
@@ -95,7 +194,13 @@
  computed: {},
  data() {
    return {
        unitList:[],
      keyword: "",
      treeProps: {
          label: 'name',
          value: 'id',
          children: 'children',
        },
      checkList: [],
      testArr: [],
      testArr2: [
@@ -158,15 +263,75 @@
    this.getProductCategoryList()
  },
  mounted() {
    this.countSums()
    this.countSums();
    this.getUnitInfo();
  },
  methods: {
    checkListHandler(e) {
      this.categoryListId = e
      async getUnitInfo(){
          const { code,data }=await getUnitInfo();
          if(code===200){
              this.unitList=data;
          }
      },
      getUnitValue(list,val,num,unit){
          let  string='--'
          if(list){
              if(list.length>0){
                  for(let i in list){
                      if(list[i].unit==val){
                          string=list[i].amount
                          break;
                      }
                  }
              }
          }
          if(unit==val){
              string=num
          }
          if(string.length>6){
              return string.substring(0,6);
          }
          return string
      },
    // 下载
    downHttpClick: _.debounce(function(){
        let token = document.cookie.replace(
            /(?:(?:^|.*;\s*)token\s*=\s*([^;]*).*$)|^.*$/,
            "$1",
        );
        /*axios({
            url: "/api-wms/v1/forms/downloadInventoryForms",
            method: "post",
            methodType:'down',
            headers:{
                Authorization:"Bearer " + token
            },
            data:{
                page: this.pagerOptions.currPage,
                pageSize: this.pagerOptions.pageSize,
                keyword:this.keyword,
            }
        }).then(res=>{
            console.log(decodeURIComponent(res.headers['content-disposition'].split(';')[1].split('filename=')[1]));
        })*/
      downloadInventoryForms({
        page: this.pagerOptions.currPage,
        pageSize: this.pagerOptions.pageSize,
        keyword:this.keyword,
        baseOperationType:1
      }).then(res => {
        if (res) {
          FileSaver.saveAs(res, '库存报表.xlsx');
          this.$message.success("下载成功!");
        }
      })
    }, 1000),
    checkListHandler(_, checkObj) {
        this.categoryListId = checkObj.checkedKeys
      this.getData()
    },
    radioHandleChange(e) {
      this.warehouseListName = e
      this.warehouseListName = e.id
      this.getData()
    },
    // checkRadio(val){
@@ -210,8 +375,24 @@
          // date: true, // 是否为日期格式
        },
        {
          label: "产品类别",
              label: "产品规格",
              prop: "productSpecs",
              default: true,
              width: 100,
              isShowColumn: true
              // date: true, // 是否为日期格式
          },
          {
              label: "产品型号",
          prop: "productType",
              default: true,
              width: 100,
              isShowColumn: true
              // date: true, // 是否为日期格式
          },
        {
          label: "产品类别",
          prop: "productCategory",
          default: true,
          isShowColumn: showcol.includes("产品类别")
        },
@@ -230,7 +411,7 @@
          unit: "¥",
          textAlign: "right"
        },
        {
        /*{
          label: "在库",
          prop: "amount",
          default: true,
@@ -261,7 +442,7 @@
          default: false,
          unit: "",
          textAlign: "right"
        },
        },*/
        {
          label: "预测",
          prop: "forecast",
@@ -269,12 +450,12 @@
          default: false,
          unit: ""
        },
        {
        /*{
          label: "单位",
          prop: "unit",
          default: true,
          isShowColumn: true
        }
        }*/
      ]
      return tableColumn
    },
@@ -376,19 +557,54 @@
        categoryIds: this.categoryListId,
        page: this.pagerOptions.currPage,
        pageSize: this.pagerOptions.pageSize,
        warehouseCode: this.warehouseListName
        warehouseId: this.warehouseListName||0
      }
      this.getInventoryData(params)
    },
    getTreeData(dataList, childFieldName = 'children', pIdFieldName = 'parentId', idFieldName = 'id', rootValue = 0) {
        const rootArr = []
        //1.先获取根节点列表
        dataList.forEach((item) => {
          const children = getChildrenNode(item[idFieldName], dataList)
          if (Array.isArray(children) && children.length > 0) {
            item[childFieldName] = children
          }
          if (!item.isParent) {
            rootArr.push(item)
          }
        })
        //2.递归获取根节点的所有下级节点
        function getChildrenNode(parentId, dataList) {
          //1.根据根节点获取 子节点列表
          const childrenArr = dataList.filter((item) => parentId === item[pIdFieldName])
          //2.孩子有可能还有孩子 遍历孩子进行重新递归
          childrenArr.forEach((item) => {
            const children = getChildrenNode(item[idFieldName], dataList)
            if (children.length > 0) {
              item[childFieldName] = children
            }
          })
          return childrenArr
        }
        return rootArr
    },
    // 获取产品类型列表数据
    async getProductCategoryList() {
      await getProductCategoryList({
        keyWord: "",
        page: this.pagerOptions.currPage,
        pageSize: this.pagerOptions.pageSize
        page: 0,
        pageSize: 0
      }).then((res) => {
        if (res.code === 200) {
          this.categoryList = res.data
          this.categoryList = res.data;
            (res.data||[]).forEach((item,index1)=>{
                item.isParent=res.data.some((cItem,index2)=>{
                    if(index1!==index2){
                        return item.parentId==cItem.id;
                    }
                });
            });
          this.categoryList = this.getTreeData(res.data)
        }
      })
    },
@@ -401,6 +617,8 @@
      }).then((res) => {
        if (res.code === 200) {
          this.warehouseList = res.data
        }
      })
    }
@@ -410,23 +628,35 @@
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style lang="scss" scoped>
    .radio-text{
        display:inline-block;
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
.content_wrap {
  height: calc(100% - 0px);
  display: flex;
  justify-content: space-between;
  justify-content: start;
  .con_left {
    width: 200px;
    .el-checkbox-group {
      width: 100%;
    height: calc(100% - 90px);
      width: 15%;
      overflow: hidden;
      .con_left_div {
        height: 50%;
        border: 1px solid rgba(0, 0, 0, 0);
        .stash,
        .category {
          height: calc(100% - 52px);
      display: flex;
      flex-direction: column;
          overflow: auto;
    }
    .stash {
      display: flex;
      flex-direction: column;
    }
  }
  .list-view {
      width: 85%;
    flex: 1;
  }
}
@@ -442,5 +672,15 @@
    word-wrap: break-word;
    white-space: pre-wrap !important;
  }
  .el-tree {
      background: no-repeat;
    }
  .el-tree-node > .el-tree-node__children {
      overflow: visible !important;
    }
    .el-tree-node__content:hover,
    .el-upload-list__item:hover {
      width: 100%;
    }
}
</style>