♻️ refactor(location): 移除库位管理状态字段

pull/871/MERGE
YunaiV 2026-04-10 22:44:50 +08:00
parent ab690c9b50
commit 36666cfdc6
2 changed files with 0 additions and 4 deletions

View File

@ -8,7 +8,6 @@ export interface WmWarehouseLocationVO {
warehouseId: number
warehouseName: string
area: number
areaStatus: number
frozen: boolean
remark: string
createTime: string

View File

@ -114,7 +114,6 @@
import { WmWarehouseApi, WmWarehouseVO } from '@/api/mes/wm/warehouse'
import { WmWarehouseLocationApi, WmWarehouseLocationVO } from '@/api/mes/wm/warehouse/location'
import { AutoCodeRecordApi } from '@/api/mes/md/autocode/record'
import { CommonStatusEnum } from '@/utils/constants'
import { MesAutoCodeRuleCode, BarcodeBizTypeEnum } from '@/views/mes/utils/constants'
import { BarcodeDetail } from '@/views/mes/wm/barcode/components'
@ -142,7 +141,6 @@ const formData = ref({
name: undefined,
warehouseId: undefined as number | undefined,
area: undefined,
areaStatus: CommonStatusEnum.ENABLE,
frozen: false,
remark: undefined
})
@ -224,7 +222,6 @@ const resetForm = () => {
name: undefined,
warehouseId: undefined as number | undefined,
area: undefined,
areaStatus: CommonStatusEnum.ENABLE,
frozen: false,
remark: undefined
}