123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- <template>
- <el-container>
- <el-header style="height: 40px">
- <div>
- <div class="divLeft colorYellow">
- 任务中
- </div>
- <div class="divLeft colorGreen">
- 空
- </div>
- <div class="divLeft colorRed">
- 占用
- </div>
- <!-- <div class="divLeft">-->
- <!-- 库存<icon-svg name="steel" class="site-sidebar__menu-icon"></icon-svg>-->
- <!-- </div>-->
- <div class="divLeft">
- 空托盘<svg-icon class-name="pallet-icon" icon-class="pallet" @click.stop="click" />
- </div>
- </div>
- </el-header>
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="600px" label-position="right">
- <el-form-item label="仓库" prop="warehouseId" v-show="false">
- <el-select v-model="queryParams.warehouseId" placeholder="请选择所属仓库" clearable size="small" style="width: 100%" >
- <el-option
- v-for="dict in this.warehouseCombo"
- :key="dict.warehouseId"
- :label="dict.warehouseName"
- :value="dict.warehouseId"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="区域" prop="zoneId">
- <el-select v-model="queryParams.zoneId" placeholder="请选择库区" clearable size="small" style="width: 100%">
- <el-option
- v-for="dict in this.locationZoneCombo"
- :key="dict.zoneId"
- :label="dict.zoneName"
- :value="dict.zoneId"
- />
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <el-main>
- <el-card v-for="zone in locationZoneList" v-bind:key="zone.zoneName" class="box-card">
- <div slot="header" class="clearfix">
- <span style="font-weight: bold">{{zone.zoneName}}</span>
- </div>
- <div class="divBoxCol" v-for="col in zone.basLocationGuiColDTOS">
- <div v-for="o in col.baseLocationGuiDTOList" v-bind:key="o.id" class="text item divBox" @click="changeLocation(o)">
- <div class="divMinBox" v-show="o.locationNo!=null">
- {{o.locationNo}}<!--(<font class="pointcss">{{o.agvStation}}</font>)-->
- </div>
- <div>
- <div v-show="o.isEmpty=='Y'" :class="{'locDiv': true,'colorGreen': true, 'colorYellow': o.stockStatus!='00'}">
- </div>
- <div v-show="o.isEmpty=='N'" :class="{'locDiv': true,'colorRed': o.isEmptyPlate != 'Y', 'colorYellow': o.stockStatus!='00'}">
- <div class="divMinFontBox" v-show="o.isEmpty=='N' && o.isEmptyPlate != 'Y' ">
- <!-- <div style="color: #FFFFFF;font-size:10px;">{{o.lotatt01}} </div>-->
- <div v-show="o.skuName!=null" style="color: #FFFFFF;font-size:10px;">{{o.skuName}}</div>
- <!-- <div v-show="o.lotatt01!=null" style="color: #FFFFFF">{{o.lotatt01}}</div>-->
- <!-- <div v-show="o.lotatt05!=null" style="color: #FFFFFF">{{o.lotatt05}}</div>-->
- <!-- <div v-show="o.lotatt08!=null" style="color: #FFFFFF">{{o.lotatt08}}</div>-->
- </div>
- <div class="divMinFontBoxEmptyPlate" v-show="o.isEmptyPlate == 'Y'">
- <svg-icon class-name="pallet-icon" icon-class="pallet" @click.stop="click" style="width: 60px;height: 35px;">{{o.id}}</svg-icon>
- <div style="color: #191970;font-size:12px;">{{o.skuName}} </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </el-card>
- </el-main>
- <!-- 点击库位弹出展示框做修改 -->
- <el-dialog title="操作" :visible.sync="open" width="1000px" append-to-body>
- <el-form>
- <el-form-item>
- <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-form-item>
- </el-form>
- <el-divider content-position="center">批次属性信息</el-divider>
- <el-table v-loading="loading" :data="form.lotattList">
- <el-table-column label="物料" align="center" prop="sku" width="200"/>
- <el-table-column label="物料名称" align="center" prop="skuName" width="200"/>
- <el-table-column label="库位" align="center" prop="locationNo" width="200"/>
- <el-table-column label="库存数量" align="center" prop="qty"/>
- <el-table-column label="已分配数量" align="center" prop="qtyallocated" width="200"/>
- <el-table-column
- v-for="(item, index) in itemOption"
- :key="index_back"
- :label="item.label"
- align="center" :prop="item.prop" width="200">
- </el-table-column>
- </el-table>
- <!--<el-descriptions title="批次属性" :column="2" border>
- <el-descriptions-item v-for="(item, index) in itemOption" :label="item.label">{{form[`${item.prop}`]}}</el-descriptions-item>
- </el-descriptions>-->
- </el-dialog>
- </el-container>
- </template>
- <script>
- import {clearLocRequest, locationInvView, lockLocRequest, occupyLocRequest} from "@/api/ams/locationView";
- import {lotattInfo} from "@/api/ams/invLotLocId";
- import {lotattConfigList} from "@/api/ams/config";
- import {queryWarehouseDict} from "@/api/base/warehouse";
- import {queryLocationZoneDict} from "@/api/base/locationZone";
- export default {
- data () {
- return {
- open: false,
- showSearch: true,
- dataForm: {
- zoneId: ''
- },
- queryParams: {
- zoneId: '',
- warehouseId: ''
- },
- locationZoneList: [],
- locationList: {'a': [1, 2, 3]},
- locationClearVisible: false,
- // 表单参数
- form: {
- lotatt01: '',
- lotatt02: '',
- lotatt03: '',
- lotatt04: '',
- lotatt05: '',
- lotatt06: '',
- lotatt07: '',
- lotatt08: '',
- lotatt09: '',
- lotatt10: '',
- lotatt11: '',
- lotatt12: '',
- lotatt13: '',
- lotatt14: '',
- lotatt15: '',
- lotatt16: '',
- lotatt17: '',
- lotatt18: '',
- lotattList: null
- },
- itemOption: []
- }
- },
- mounted () {
- },
- activated () {
- },
- created () {
- this.getDataList()
- this.timer = setInterval(this.getDataList, 5000)
- },
- beforeDestroy () {
- clearInterval(this.timer)
- },
- methods: {
- getDataList () {
- this.dataListLoading = true
- queryWarehouseDict().then(response => {
- this.warehouseCombo = response.data
- });
- queryLocationZoneDict().then(response => {
- this.locationZoneCombo = response.data
- })
- locationInvView(this.queryParams).then(response => {
- this.locationZoneList = response.data
- })
- this.dataListLoading = false
- },
- changeLocation(o){
- this.selected(o)
- // alert(o.locationNo);
- },
- resetQuery() {//重置搜索
- this.resetForm("queryForm");
- this.getDataList();
- this.handleQuery();
- },
- selected(item) {
- if (item.locationNo) {
- this.currentSelect = parseInt(item.id)
- this.open = true;
- lotattInfo(this.currentSelect).then(response => {
- this.form.lotattList = response.data
- this.loading = false;
- })
- }
- lotattConfigList().then(response => {
- let data = response.data
- for(let i=0;i<data.length;i++) {
- let obj = new Object();
- obj.label = data[i].lotattName
- obj.prop = data[i].lotattId
- this.itemOption.push(obj)
- }
- })
- },
- lockLoc() {
- let that = this
- this.$modal.confirm('是否确认要锁定/解锁?').then(function() {
- lockLocRequest(that.currentSelect).then(response => {
- if (response.code === 200) {
- that.open = false;
- that.$modal.msgSuccess(response.msg);
- that.search();
- } else {
- that.$modal.msgError(response.msg);
- }
- });
- });
- },
- occupyLoc() {
- let that = this
- this.$modal.confirm('是否确认要修改库位状态?').then(function() {
- occupyLocRequest(that.currentSelect).then(response => {
- if (response.code === 200) {
- that.open = false;
- that.$modal.msgSuccess(response.msg);
- that.search();
- } else {
- that.$modal.msgError(response.msg);
- }
- });
- });
- },
- clearLoc() {
- let that = this
- this.$modal.confirm('是否确认要清空库存?').then(function() {
- clearLocRequest(that.currentSelect).then(response => {
- if (response.code === 200) {
- that.open = false;
- that.$modal.msgSuccess(response.msg);
- that.search();
- } else {
- that.$modal.msgError(response.msg);
- }
- });
- });
- },
- }
- }
- </script>
- <style>
- .pointcss{
- color: hotpink;
- }
- .divBoxCol {
- width: 150px;
- display: block;
- float: left;
- }
- .divBox {
- width: 130px;
- height: 90px;
- display: block;
- float: left;
- margin-left: 2px;
- }
- .divMinBox {
- margin-top: 0px;
- height: 15px;
- width: 100%;
- text-align: center;
- font-weight: bold;
- }
- .divMinFontBox {
- margin-top: 2px;
- height: 10px;
- width: 100%;
- text-align: center;
- /*font-size: 1px;*/
- }
- .locDiv {
- float: left;
- display: inline-block;
- width: 130px;
- height: 70px;
- margin-top: 1px;
- text-align: center;
- margin-left: 1px;
- border: solid 1px;
- }
- .colorGreen {
- background-color: #19a708;
- }
- .colorRed {
- background-color: #c73c2d;
- }
- .colorYellow {
- background-color: #e2cd0f;
- }
- .divLeft {
- border-top: 1px;
- border-color: #2b373d;
- text-align: left;
- display: inline-block;
- height: 30px;
- width: 80px;
- text-align: center;
- margin-top: 42.5px;
- padding-top: 5px;
- }
- .box-card{
- width: 100%;
- display:inline-block;
- overflow: hidden;
- }
- </style>
|