♻️ refactor(location): 移除库位管理状态字段
parent
ab690c9b50
commit
36666cfdc6
|
|
@ -8,7 +8,6 @@ export interface WmWarehouseLocationVO {
|
||||||
warehouseId: number
|
warehouseId: number
|
||||||
warehouseName: string
|
warehouseName: string
|
||||||
area: number
|
area: number
|
||||||
areaStatus: number
|
|
||||||
frozen: boolean
|
frozen: boolean
|
||||||
remark: string
|
remark: string
|
||||||
createTime: string
|
createTime: string
|
||||||
|
|
|
||||||
|
|
@ -114,7 +114,6 @@
|
||||||
import { WmWarehouseApi, WmWarehouseVO } from '@/api/mes/wm/warehouse'
|
import { WmWarehouseApi, WmWarehouseVO } from '@/api/mes/wm/warehouse'
|
||||||
import { WmWarehouseLocationApi, WmWarehouseLocationVO } from '@/api/mes/wm/warehouse/location'
|
import { WmWarehouseLocationApi, WmWarehouseLocationVO } from '@/api/mes/wm/warehouse/location'
|
||||||
import { AutoCodeRecordApi } from '@/api/mes/md/autocode/record'
|
import { AutoCodeRecordApi } from '@/api/mes/md/autocode/record'
|
||||||
import { CommonStatusEnum } from '@/utils/constants'
|
|
||||||
import { MesAutoCodeRuleCode, BarcodeBizTypeEnum } from '@/views/mes/utils/constants'
|
import { MesAutoCodeRuleCode, BarcodeBizTypeEnum } from '@/views/mes/utils/constants'
|
||||||
import { BarcodeDetail } from '@/views/mes/wm/barcode/components'
|
import { BarcodeDetail } from '@/views/mes/wm/barcode/components'
|
||||||
|
|
||||||
|
|
@ -142,7 +141,6 @@ const formData = ref({
|
||||||
name: undefined,
|
name: undefined,
|
||||||
warehouseId: undefined as number | undefined,
|
warehouseId: undefined as number | undefined,
|
||||||
area: undefined,
|
area: undefined,
|
||||||
areaStatus: CommonStatusEnum.ENABLE,
|
|
||||||
frozen: false,
|
frozen: false,
|
||||||
remark: undefined
|
remark: undefined
|
||||||
})
|
})
|
||||||
|
|
@ -224,7 +222,6 @@ const resetForm = () => {
|
||||||
name: undefined,
|
name: undefined,
|
||||||
warehouseId: undefined as number | undefined,
|
warehouseId: undefined as number | undefined,
|
||||||
area: undefined,
|
area: undefined,
|
||||||
areaStatus: CommonStatusEnum.ENABLE,
|
|
||||||
frozen: false,
|
frozen: false,
|
||||||
remark: undefined
|
remark: undefined
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue