mayf
2024-09-08 80a53a817a70e34c412c133d56cf3b9918b35212
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<template>
  <div class="flex w-full h-full overflow-hidden">
    <content-wrapper title="区" class="w-250 mr-20 overflow-auto">
      <template #header-right>
        <el-button
          circle
          icon="el-icon-plus"
          type="primary"
          @click="newArea"
        ></el-button>
      </template>
      <el-bus-crud ref="areaCrudRef" v-bind="areaTableConfig">
        <template #table="{ list }">
          <template v-if="list && list.length > 0">
            <div
              v-for="item in list"
              :key="item.id"
              class="area-item"
              :class="{ 'is-active': selectedArea === item.id }"
              @click="onSelectArea(item.id)"
            >
              <span class="area-item__label">{{ item.name }}</span>
              <el-dropdown>
                <i class="el-icon-more-outline"></i>
                <el-dropdown-menu slot="dropdown">
                  <el-dropdown-item @click.native="editArea(item)"
                    >编辑</el-dropdown-item
                  >
                  <el-dropdown-item @click.native="deleteArea(item)"
                    >删除</el-dropdown-item
                  >
                </el-dropdown-menu>
              </el-dropdown>
            </div>
          </template>
          <el-bus-empty v-else />
        </template>
      </el-bus-crud>
    </content-wrapper>
    <content-wrapper title="仓位" class="flex-1 overflow-auto">
      <template #header-right>
        <el-button
          circle
          icon="el-icon-plus"
          type="primary"
          @click="newLocation"
        ></el-button>
      </template>
      <el-bus-crud
        ref="locationCrudRef"
        v-bind="locationTableConfig"
        :key="selectedArea"
        :extra-query="locationExtra"
      >
        <template #table="{ list }">
          <el-row v-if="list && list.length > 0" :gutter="20">
            <el-col v-for="item in list" :key="item.id" :span="8">
              <location-item
                :info="item"
                @edit="onEditLocation(item)"
                @delete="onDeleteLocation(item)"
                @addOrder="addOrder(item)"
              ></location-item>
            </el-col>
          </el-row>
          <el-bus-empty v-else />
        </template>
      </el-bus-crud>
    </content-wrapper>
  </div>
</template>
 
<script>
import { getSortConfig } from '@/utils/form-item-config'
import LocationItem from '@/components/warehouse/location-item.vue'
import SelectOrder from '@/components/warehouse/select-order.vue'
export default {
  components: {
    LocationItem,
  },
  data() {
    return {
      selectedArea: null,
      areaTableConfig: {
        url: 'flower/api/warehouse/list',
        hasNew: false,
        newText: '新增区',
        hasPagination: false,
        form: [
          {
            label: '区号:',
            id: 'name',
            type: 'input',
            rules: { required: true, message: '请输入区号', trigger: 'blur' },
          },
          {
            ...getSortConfig('seq'),
          },
        ],
      },
      locationTableConfig: {
        url: 'flower/api/warehouse/location/list',
        hasNew: false,
        newText: '新增仓位',
        hasPagination: false,
        extraParentKeys: ['warehouseId'],
        afterRequest: (list) => {
          return list.map((item) => {
            const orderList = item.orderDTO || []
            const goodsItems = orderList.reduce((total, current) => {
              total = total.concat(
                current.items.map((i) => ({
                  ...i,
                  orderNo: current.orderNo,
                }))
              )
              return total
            }, [])
            return { ...item, goodsItems }
          })
        },
        searchForm: [
          {
            type: 'row',
            items: [{ label: '仓位号', id: 'code', type: 'input' }],
          },
        ],
        form: [
          {
            label: '区号:',
            id: 'warehouseId',
            type: 'bus-select',
            el: {
              interfaceUri: 'flower/api/warehouse/list',
              props: {
                label: 'name',
                value: 'id',
              },
              style: 'width:100%',
            },
            rules: { required: true, message: '请选择区号' },
          },
          {
            label: '仓位号:',
            id: 'code',
            type: 'input',
            rules: { required: true, message: '请输入仓位号', trigger: 'blur' },
          },
          {
            ...getSortConfig('seq'),
          },
        ],
        extraDialogs: [
          {
            title: '添加订单',
            hiddenReverseItems: [],
            dialogAttrs: {
              width: '80%',
              destroyOnClose: true,
            },
            form: [
              {
                label: '',
                id: 'orderId',
                component: SelectOrder,
                rules: { required: true, message: '请选择一个订单' },
              },
            ],
            atConfirm: async (val) => {
              const { code } = await this.$elBusHttp.request(
                'flower/api/warehouse/location/list/addOrder',
                {
                  params: {
                    ...val,
                    warehouseLocationId: val.id,
                  },
                }
              )
              if (code === 0) {
                this.$message.success('添加订单成功')
              }
            },
          },
        ],
      },
    }
  },
  head() {
    return {
      title: '仓库管理',
    }
  },
  computed: {
    locationExtra() {
      return {
        warehouseId: this.selectedArea,
      }
    },
  },
  methods: {
    onSelectArea(id) {
      if (this.selectedArea === id) {
        this.selectedArea = null
      } else {
        this.selectedArea = id
      }
    },
    newArea() {
      if (this.$refs.areaCrudRef) {
        this.$refs.areaCrudRef.onDefaultNew()
      }
    },
    editArea(item) {
      if (this.$refs.areaCrudRef) {
        this.$refs.areaCrudRef.onDefaultEdit(item)
      }
    },
    deleteArea(item) {
      if (this.$refs.areaCrudRef) {
        this.$refs.areaCrudRef.onDefaultDelete(item)
      }
    },
    newLocation() {
      if (this.$refs.locationCrudRef) {
        if (this.selectedArea) {
          this.$refs.locationCrudRef.onDefaultNew(
            { warehouseId: this.selectedArea },
            true
          )
        } else {
          this.$refs.locationCrudRef.onDefaultNew()
        }
      }
    },
    onEditLocation(item) {
      if (this.$refs.locationCrudRef) {
        this.$refs.locationCrudRef.onDefaultEdit(item)
      }
    },
    onDeleteLocation(item) {
      if (this.$refs.locationCrudRef) {
        this.$refs.locationCrudRef.onDefaultDelete(item)
      }
    },
    addOrder(item) {
      this.$refs.locationCrudRef.$refs.extraDialog[0].show(item)
    },
  },
}
</script>
 
<style lang="scss" scoped>
::v-deep {
  .el-bus-crud {
    &__card,
    &__body {
      padding: 0;
    }
    &__filter {
      padding-top: 0;
      border-bottom: none;
    }
  }
}
.area-item {
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  padding: 0 10px;
  color: $main-title-color;
  font-size: 14px;
  display: flex;
  align-items: center;
  &__label {
    flex: 1;
  }
  .el-icon-more-outline {
    color: $primary-color;
    display: none;
  }
  &:hover {
    background-color: #f5f7fa;
    .el-icon-more-outline {
      display: block;
    }
  }
  &.is-active {
    background-color: #edf0ff;
  }
}
</style>