| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393 |
- <template>
- <el-dialog
- :visible.sync="visible"
- title="仓库"
- @before-close="cancel"
- width="1000px"
- :close-on-click-modal="false"
- >
- <el-form :model="formData" label-width="100px">
- <el-row>
- <el-col :span="8">
- <el-form-item label="选择仓库">
- <el-select
- disabled
- filterable
- v-model="warehouse"
- @change="warehouseChange"
- >
- <el-option
- v-for="(item, index) in warehouseList"
- :key="index"
- :label="item.name"
- :value="item.id"
- @click.native="changeWarehouse(item)"
- ></el-option>
- </el-select> </el-form-item
- ></el-col>
- <el-col :span="8">
- <el-form-item label="选择库区">
- <el-select filterable v-model="area" @change="getshelvesList">
- <el-option
- v-for="(item, index) in areaList"
- :key="index"
- :label="item.name"
- :value="item.id"
- @click.native="formData.area = item"
- ></el-option>
- </el-select> </el-form-item
- ></el-col>
- <el-col :span="8">
- <el-form-item label="选择货架">
- <el-select filterable v-model="shelves" @change="changeshelvesList">
- <el-option
- v-for="(item, index) in shelvesList"
- :key="index"
- :label="item.goodsshelvesCode"
- :value="item.goodsshelvesCode"
- @click.native="formData.shelves = item"
- ></el-option>
- </el-select> </el-form-item
- ></el-col>
- </el-row>
- </el-form>
- <div class="status-legend">
- <div
- v-for="(item, index) in warehouseDefinition_locationStatus"
- :key="index"
- >
- <span :style="{ 'background-color': item.color }"></span
- >{{ item.label }}
- </div>
- </div>
- <div class="content-box">
- <div
- v-for="p in locationList"
- :key="p.id"
- class="box"
- @click="handlCur(p)"
- :class="{ active: cur.goodsAllocationCode == p.goodsAllocationCode }"
- :style="{
- 'background-color': getStatus(p.allocationStatus).color,
- cursor: [1, 2].includes(p.allocationStatus)
- ? 'pointer'
- : 'not-allowed'
- }"
- >
- {{ p.goodsAllocationCode }}
- </div>
- </div>
- <el-table :data="tableList" style="width: 940px">
- <el-table-column label="序号" type="index"></el-table-column>
- <el-table-column label="货位位置" prop="position" width="600">
- <template slot-scope="scope">
- {{ scope.row.warehouseName }} - {{ scope.row.areaName }} -
- {{ scope.row.shelfCode }} - {{ scope.row.cargoSpaceCode }}
- </template>
- </el-table-column>
- <el-table-column label="包装数量" prop="packingQuantity" width="170">
- </el-table-column>
- <el-table-column width="120" label="操作" fixed="right">
- <template slot-scope="scope">
- <el-button type="text" @click="delItem(scope.$index)" size="small"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <template slot="footer">
- <el-button @click="handleSelect" type="primary">确认</el-button>
- <el-button @click="cancel">关闭</el-button>
- </template>
- </el-dialog>
- </template>
- <script>
- import warehouseDefinition from '@/api/warehouseManagement/warehouseDefinition';
- import { warehouseDefinition_locationStatus } from '@/utils/dict/warehouseDefinition';
- import { useDict } from '@/utils/dict/index';
- export default {
- data() {
- return {
- warehouseDefinition_locationStatus: [
- { code: 1, label: '空置', color: 'rgba(202, 249, 130, 1)' },
- { code: 2, label: '在用', color: 'rgba(129, 211, 248, 1)' },
- { code: 3, label: '已满', color: 'rgba(255, 14, 14, 1)' },
- { code: 4, label: '失效', color: 'rgba(215, 215, 215, 1)' }
- ],
- visible: false,
- warehouseList: [], //仓库
- areaList: [], //库区
- areaGoodsshelvesList: [], //货架
- allocationReqList: [], //货位
- value: '',
- row: {},
- formData: {
- warehouse: {},
- area: {},
- shelves: {}
- },
- warehouse: '',
- area: '',
- shelves: '',
- cur: {
- cargoSpaceId: ''
- },
- shelvesList: [],
- locationList: [],
- tableList: [],
- idx: null,
- type: ''
- };
- },
- created() {},
- methods: {
- delItem(index) {
- // if (index == 0 && this.tableList.length == 1) {
- // return this.$message.warning('请至少保存一条数据!');
- // }
- this.tableList.splice(index, 1);
- },
- handlCur(row, num) {
- if (this.tableList.length > 0) {
- return false;
- }
- if (![1, 2].includes(row.allocationStatus)) {
- return;
- }
- this.cur = { ...row };
- console.log('==this.formData', this.formData);
- // 仓库
- const { area, shelves, warehouse } = this.formData;
- let warehouseId = warehouse.id;
- let warehouseName = warehouse.name;
- // 区域
- let areaId = area.id;
- let areaName = area.name;
- // 货架
- let shelfId = shelves.id;
- let shelfCode = shelves.goodsshelvesCode;
- // 货位
- let cargoSpaceId = this.cur.id;
- let cargoSpaceCode = this.cur.goodsAllocationCode;
- // let flag = true;
- // this.tableList.forEach((f) => {
- // if (f.cargoSpaceId == cargoSpaceId && f.shelfId == shelfId) {
- // this.$message.info('请勿重复选择');
- // flag = false;
- // }
- // });
- // if (flag) {
- this.tableList.push({
- warehouseId: warehouseId,
- warehouseName,
- areaId,
- areaName,
- shelfId,
- shelfCode,
- cargoSpaceId,
- cargoSpaceCode,
- packingQuantity: num ? num : this.row.packingQuantity
- });
- // }
- },
- warehouseChange() {
- this.cur = {};
- this.shelves = '';
- this.locationList = [];
- this.area = '';
- },
- async getshelvesList(e) {
- this.cur = {};
- this.shelves = '';
- this.locationList = [];
- this.shelvesList = this.areaGoodsshelvesList.filter(
- (i) => i.reservoirAreaCode === this.area
- );
- const rep = await warehouseDefinition.getListByAreaId(e);
- this.shelvesList = rep;
- },
- async changeshelvesList(id) {
- this.cur = {};
- // this.locationList = this.allocationReqList.filter(
- // (i) => i.goodsAllocationCode === this.shelves
- // );
- const goodsId = this.shelvesList.filter((item) => {
- return item.goodsshelvesCode == id;
- })[0].id;
- const res = await warehouseDefinition.getListByGoodId(goodsId);
- this.locationList = res;
- },
- getStatus: useDict(warehouseDefinition_locationStatus),
- async open(row, idx, type) {
- this.locationList = [];
- this.tableList = [];
- console.log('===123', row);
- this.row = row;
- this.idx = idx;
- this.type = type;
- this.visible = true;
- await this._getWarehouseChildren(); // 获取仓库列表
- if (this.row?.warehouseId) {
- this.warehouse = this.row.warehouseId;
- this.formData.warehouse = this.warehouseList.find(
- (w) => w.id == this.row.warehouseId
- );
- // const res = await warehouseDefinition.getById({
- // id: this.row.warehouseId
- // });
- // 区域
- const rep = await warehouseDefinition.getListByWarehouseId(
- this.row.warehouseId
- );
- this.areaList = rep || [];
- console.log('区域列表·······', rep);
- if (this.row?.areaId) {
- this.formData.area = this.areaList.find(
- (w) => w.id == this.row.areaId
- );
- this.area = this.row.areaId;
- // 货架
- const result = await warehouseDefinition.getListByAreaId(
- this.row.areaId
- );
- this.areaGoodsshelvesList = result || [];
- this.shelvesList = this.areaGoodsshelvesList.filter(
- (i) => i.id === this.row.houseList[0].shelfId
- );
- this.formData.shelves = this.areaGoodsshelvesList.find(
- (w) => w.id == this.row.goodsShelfId
- );
- this.shelves = this.row.goodsShelfId;
- // 货位
- const loca = await warehouseDefinition.getListByGoodId(
- this.row.goodsShelfId
- );
- this.locationList = loca;
- const items = loca.filter(
- (item) => item.id == this.row.houseList[0].goodsAllocationId
- );
- this.handlCur(items[0]);
- }
- }
- },
- async changeWarehouse(val) {
- this.formData.warehouse = val;
- const res = await warehouseDefinition.getListByWarehouseId(val.id);
- this.area = '';
- this.shelves = '';
- this.areaList = res || [];
- this.areaGoodsshelvesList = res.goodsShelvesList || [];
- this.allocationReqList = res.goodsAllocationList || [];
- this.row.warehouseId = val.id;
- await this.seachWareHouse();
- },
- // 查仓库
- async seachWareHouse() {
- if (this.row?.warehouseId) {
- this.warehouse = this.row.warehouseId;
- this.formData.warehouse = this.warehouseList.find(
- (w) => w.id == this.row.warehouseId
- );
- const res = await warehouseDefinition.warehouseDetail(
- this.row.warehouseId
- );
- this.areaList = res.warehouseAreasSaveList || [];
- this.formData.area = this.areaList.find(
- (w) => w.id == this.row.areaId
- ); // this.row.areaId
- this.area = this.row.areaCode;
- this.areaGoodsshelvesList = res.areaGoodsshelvesList || [];
- this.shelvesList = this.areaGoodsshelvesList.filter(
- (i) => i.reservoirAreaCode === this.area
- );
- this.formData.shelves = this.areaGoodsshelvesList.find(
- (w) => w.code == this.row.shelfCode
- );
- this.shelves = this.row.shelfCode;
- this.allocationReqList = res.allocationReqList || [];
- this.locationList = this.allocationReqList.filter(
- (i) => i.goodsAllocationCode === this.shelves
- );
- this.cur = this.allocationReqList.find(
- (w) => w.goodsAllocationCode === this.row.cargoSpaceCode
- );
- }
- },
- handleSelect() {
- if (this.tableList.length > 0) {
- this.$emit('houseData', this.tableList, this.idx, this.type);
- this.cancel();
- } else {
- this.$message.error('请选择货位');
- }
- },
- async _getWarehouseChildren() {
- const res = await warehouseDefinition.list({});
- console.log(res);
- this.warehouseList = res.map((item) => {
- return { ...item, name: item.name };
- });
- },
- cancel() {
- this.row = {};
- this.formData = {};
- this.warehouse = '';
- this.area = '';
- this.shelves = '';
- this.visible = false;
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .status-legend {
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 12px 0;
- div {
- margin: 0 12px;
- }
- span {
- display: inline-block;
- width: 13px;
- height: 13px;
- margin: 0 4px;
- }
- }
- .content-box {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- max-height: 40vh;
- overflow: auto;
- .box {
- cursor: pointer;
- width: 134px;
- height: 64px;
- background-clip: content-box;
- margin-bottom: 4px;
- line-height: 64px;
- text-align: center;
- &:hover,
- &.active {
- box-shadow: 2px 2px 2px 2px #ccc;
- }
- }
- .placeholder-box {
- width: 134px;
- }
- }
- </style>
|