ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<template>
  <a-drawer
    title="库位详情"
    wrapClassName="weiben-private-drawer"
    :width="400"
    :closable="false"
    :maskClosable="true"
    :visible="visible"
    :after-visible-change="afterVisibleChange"
    @close="onClose"
  >
    <a-spin :spinning="loading">
      <div class="wms-warehouse-location-view-detail-div">
        <div class="btns-row">
          <a-button
            type="primary"
            :disabled="!(locationObj.islock === 0 && (locationObj.placestatus === 1 || locationObj.placestatus === 3))"
            @click.stop="onUpdateLock"
            >锁定</a-button
          >
          <a-button
            type="primary"
            :disabled="!(locationObj.islock === 1 && (locationObj.placestatus === 1 || locationObj.placestatus === 3))"
            @click.stop="onUpdateLock"
            >解锁</a-button
          >
          <a-button type="primary" @click.stop="deleteBalance">删除库存</a-button>
          <a-button type="primary" @click.stop="openList">添加库存</a-button>
        </div>
        <div class="location-detail-box">
          <div class="base-info info-box">
            <p>库位编号:{{ locationObj.placecode }}</p>
            <p>小车编号:{{ containercode }}</p>
          </div>
          <!-- 物料列表 start -->
          <div class="location-materials">
            <a-card v-for="(item, index) in materialList" :key="'material-item-' + index">
              <div class="info-box">
                <p>零件编号:{{ item.partCode }}</p>
                <p>零件名称:{{ item.partName }}</p>
                <p>车 型:{{ item.carType }}</p>
                <p>生 产 线:{{ item.lineType }}</p>
              </div>
            </a-card>
          </div>
          <!-- 物料列表 end -->
        </div>
      </div>
      <a-modal title="选择小车编号" :visible="showList" @ok="addBalance()" @cancel="showList = false">
        小车编号:
        <a-select v-model="cCode" style="width: 200px" show-search>
          <a-select-option v-for="(item,index) in  WmsMaterialData" :key="index" :value="item.code">{{ item.name }}</a-select-option>
        </a-select>
      </a-modal>
    </a-spin>
  </a-drawer>
</template>
 
<script>
import { GetLocationDetail, UpdateLock } from '@/api/modular/main/LocationViewManage'
import { WmsDeleteBalance,WmsAddBalance } from '@/api/modular/main/WmsTaskManage'
import {
    WmsMaterialList
  } from '@/api/modular/main/WmsMaterialManage'
import { refresh } from 'less'
export default {
  name: 'wmsWarehouseLocationViewDetailDrawer',
  emits: ['update:visible', 'callback'],
  props: {
    visible: {
      type: Boolean,
      default: false,
    },
    row: {
      type: Object,
      default: function () {
        return {}
      },
    },
  },
  data() {
    return {
      loading: false,
      locationObj: {
        placestatus: null,
        islock: null,
      },
      containercode: '',
      materialList: [],
      actionFlag: false,
      showList: false,
      WmsMaterialData: [],
      cCode:''
    }
  },
  methods: {
    WmsMaterialList() {
        WmsMaterialList().then(res => {
            this.WmsMaterialData = res.data
          })
      },
    openList() {
      this.showList = true
    },
    addBalance() {
      if(this.cCode != null && this.cCode != ''){
        WmsAddBalance({ containerCode: this.cCode,fromLocationCode:this.locationObj.placecode }).then((d) => {
          if (d.success) {
            this.cCode = null
            this.showList = false
            this.getLocationDetail()
            this.$message.success('操作成功')
          }
        })
        .catch(() => {
          callback && callback(false)
        })
      }else{
        this.$message.warning('请选择小车号')
      }
    },
    deleteBalance() {
      this.$confirm({
        title: '操作确认',
        content: '确定要进行删除吗?',
        okText: '确认',
        cancelText: '取消',
        onOk: () => {
          this.deleteMethod()
        },
      })
    },
    deleteMethod() {
      WmsDeleteBalance({ containerCode: this.containercode, fromLocationCode:this.locationObj.placecode})
        .then((d) => {
          if (d.success) {
            this.getLocationDetail()
            this.$message.success('操作成功')
          }
        })
        .catch(() => {
          callback && callback(false)
        })
    },
    onClose() {
      this.close()
    },
    close() {
      this.$emit('update:visible', false)
      this.$emit('ree', false)
    },
    afterVisibleChange(visible) {
      if (visible) {
        this.initShow()
      } else {
        this.afterClsoe()
      }
    },
    initShow() {
      this.loading = true
      this.WmsMaterialList()
      this.getLocationDetail(() => {
        this.loading = false
      })
    },
    getLocationDetail(callback) {
      let params = { ID: this.row.id }
      GetLocationDetail(params)
        .then((d) => {
          this.locationObj = d.data.palceDetails || {}
          this.containercode = d.data.containercode || ''
          this.materialList = d.data.wmsMaterialStocks || []
          callback && callback(true)
        })
        .catch(() => {
          callback && callback(false)
        })
    },
    afterClsoe() {
      this.locationObj = {
        placestatus: null,
        islock: null,
      }
      this.containercode = ''
      this.materialList = []
      if (this.actionFlag) {
        this.$emit('callback')
      }
      this.actionFlag = false
    },
    onUpdateLock() {
      this.loading = true
      let params = { ID: this.row.id }
      UpdateLock(params)
        .then(() => {
          this.actionFlag = true
          this.getLocationDetail(() => {
            this.loading = false
            this.$message.success('操作成功!')
          })
        })
        .catch(() => {
          this.loading = false
        })
    },
  },
}
</script>
 
<style lang="less" scoped>
.wms-warehouse-location-view-detail-div {
  height: 100%;
  display: flex;
  flex-direction: column;
  & > .btns-row {
    flex-shrink: 0;
    padding: 12px 16px;
    .ant-btn + .ant-btn {
      margin-left: 10px;
    }
  }
  .location-detail-box {
    flex-grow: 1;
    overflow: auto;
  }
  .info-box {
    line-height: 1.5;
    p {
      margin-bottom: 0;
    }
  }
  .base-info,
  .location-materials {
    padding: 0 16px;
    margin-bottom: 16px;
  }
}
</style>