From 2841c2133d4ad3c6774822c64df6e9d146bd194d Mon Sep 17 00:00:00 2001 From: "maxw@mesnac.com" Date: Tue, 14 Jan 2025 19:02:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=93=E5=82=A8=E5=8D=8A=E6=88=90=E5=93=81?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/wms/hppInStockDetail/index.ts | 77 +++++ src/api/wms/hppInStockDetail/types.ts | 151 +++++++++ src/api/wms/hppOutStockDetail/index.ts | 77 +++++ src/api/wms/hppOutStockDetail/types.ts | 121 ++++++++ src/api/wms/hppStorageDetail/index.ts | 77 +++++ src/api/wms/hppStorageDetail/types.ts | 136 +++++++++ src/api/wms/hppStore/index.ts | 77 +++++ src/api/wms/hppStore/types.ts | 136 +++++++++ src/api/wms/hppStorePlace/index.ts | 77 +++++ src/api/wms/hppStorePlace/types.ts | 121 ++++++++ src/api/wms/hsmTooling/index.ts | 77 +++++ src/api/wms/hsmTooling/types.ts | 166 ++++++++++ src/views/wms/hppInStockDetail/index.vue | 353 ++++++++++++++++++++++ src/views/wms/hppOutStockDetail/index.vue | 315 +++++++++++++++++++ src/views/wms/hppStorageDetail/index.vue | 314 +++++++++++++++++++ src/views/wms/hppStore/index.vue | 320 ++++++++++++++++++++ src/views/wms/hppStorePlace/index.vue | 312 +++++++++++++++++++ src/views/wms/hsmTooling/index.vue | 285 +++++++++++++++++ 18 files changed, 3192 insertions(+) create mode 100644 src/api/wms/hppInStockDetail/index.ts create mode 100644 src/api/wms/hppInStockDetail/types.ts create mode 100644 src/api/wms/hppOutStockDetail/index.ts create mode 100644 src/api/wms/hppOutStockDetail/types.ts create mode 100644 src/api/wms/hppStorageDetail/index.ts create mode 100644 src/api/wms/hppStorageDetail/types.ts create mode 100644 src/api/wms/hppStore/index.ts create mode 100644 src/api/wms/hppStore/types.ts create mode 100644 src/api/wms/hppStorePlace/index.ts create mode 100644 src/api/wms/hppStorePlace/types.ts create mode 100644 src/api/wms/hsmTooling/index.ts create mode 100644 src/api/wms/hsmTooling/types.ts create mode 100644 src/views/wms/hppInStockDetail/index.vue create mode 100644 src/views/wms/hppOutStockDetail/index.vue create mode 100644 src/views/wms/hppStorageDetail/index.vue create mode 100644 src/views/wms/hppStore/index.vue create mode 100644 src/views/wms/hppStorePlace/index.vue create mode 100644 src/views/wms/hsmTooling/index.vue diff --git a/src/api/wms/hppInStockDetail/index.ts b/src/api/wms/hppInStockDetail/index.ts new file mode 100644 index 0000000..d164985 --- /dev/null +++ b/src/api/wms/hppInStockDetail/index.ts @@ -0,0 +1,77 @@ +import request from '@/utils/request'; +import { AxiosPromise } from 'axios'; +import { HppInStockDetailVO, HppInStockDetailForm, HppInStockDetailQuery } from '@/api/wms/hppInStockDetail/types'; + +/** + * 查询半制品入库列表 + * @param query + * @returns {*} + */ + +export const listHppInStockDetail = (query?: HppInStockDetailQuery): AxiosPromise => { + return request({ + url: '/wms/hppInStockDetail/list', + method: 'get', + params: query + }); +}; + +/** + * 查询半制品入库详细 + * @param objId + */ +export const getHppInStockDetail = (objId: string | number): AxiosPromise => { + return request({ + url: '/wms/hppInStockDetail/' + objId, + method: 'get' + }); +}; + +/** + * 新增半制品入库 + * @param data + */ +export const addHppInStockDetail = (data: HppInStockDetailForm) => { + return request({ + url: '/wms/hppInStockDetail', + method: 'post', + data: data + }); +}; + +/** + * 修改半制品入库 + * @param data + */ +export const updateHppInStockDetail = (data: HppInStockDetailForm) => { + return request({ + url: '/wms/hppInStockDetail', + method: 'put', + data: data + }); +}; + +/** + * 删除半制品入库 + * @param objId + */ +export const delHppInStockDetail = (objId: string | number | Array) => { + return request({ + url: '/wms/hppInStockDetail/' + objId, + method: 'delete' + }); +}; + + +/** + * 下拉框查询半制品入库列表 + * @param query + * @returns {*} + */ +export function getWmsHppInStockDetailList (query) { + return request({ + url: '/wms/hppInStockDetail/getWmsHppInStockDetailList', + method: 'get', + params: query + }); +}; diff --git a/src/api/wms/hppInStockDetail/types.ts b/src/api/wms/hppInStockDetail/types.ts new file mode 100644 index 0000000..5590e72 --- /dev/null +++ b/src/api/wms/hppInStockDetail/types.ts @@ -0,0 +1,151 @@ +export interface HppInStockDetailVO { + /** + * 主键id + */ + objId: string | number; + + /** + * 流水卡号 + */ + cardNo: string; + + /** + * 工装架子号 + */ + shelfNo: string; + + /** + * 库位id + */ + storePlaceId: string | number; + + /** + * 品级编号,0:合格,1:不合格 + */ + gradeCode: string; + + /** + * 产品类别:0:半成品,1:成型 + */ + productCategory: string; + + /** + * 物料 + */ + materialId: string | number; + + /** + * 物料规格 + */ + materialSpec: string; + + /** + * 入库类型,0:半制品产出,2:入半制品线边库3:入成型线边库 + */ + instockType: string; + +} + +export interface HppInStockDetailForm extends BaseEntity { + /** + * 主键id + */ + objId?: string | number; + + /** + * 流水卡号 + */ + cardNo?: string; + + /** + * 工装架子号 + */ + shelfNo?: string; + + /** + * 库位id + */ + storePlaceId?: string | number; + + /** + * 品级编号,0:合格,1:不合格 + */ + gradeCode?: string; + + /** + * 产品类别:0:半成品,1:成型 + */ + productCategory?: string; + + /** + * 物料 + */ + materialId?: string | number; + + /** + * 物料规格 + */ + materialSpec?: string; + + /** + * 入库类型,0:半制品产出,2:入半制品线边库3:入成型线边库 + */ + instockType?: string; + +} + +export interface HppInStockDetailQuery extends PageQuery { + + /** + * 主键id + */ + objId?: string | number; + + /** + * 流水卡号 + */ + cardNo?: string; + + /** + * 工装架子号 + */ + shelfNo?: string; + + /** + * 库位id + */ + storePlaceId?: string | number; + + /** + * 品级编号,0:合格,1:不合格 + */ + gradeCode?: string; + + /** + * 产品类别:0:半成品,1:成型 + */ + productCategory?: string; + + /** + * 物料 + */ + materialId?: string | number; + + /** + * 物料规格 + */ + materialSpec?: string; + + /** + * 入库类型,0:半制品产出,2:入半制品线边库3:入成型线边库 + */ + instockType?: string; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/src/api/wms/hppOutStockDetail/index.ts b/src/api/wms/hppOutStockDetail/index.ts new file mode 100644 index 0000000..730f101 --- /dev/null +++ b/src/api/wms/hppOutStockDetail/index.ts @@ -0,0 +1,77 @@ +import request from '@/utils/request'; +import { AxiosPromise } from 'axios'; +import { HppOutStockDetailVO, HppOutStockDetailForm, HppOutStockDetailQuery } from '@/api/wms/hppOutStockDetail/types'; + +/** + * 查询半成品出库列表 + * @param query + * @returns {*} + */ + +export const listHppOutStockDetail = (query?: HppOutStockDetailQuery): AxiosPromise => { + return request({ + url: '/wms/hppOutStockDetail/list', + method: 'get', + params: query + }); +}; + +/** + * 查询半成品出库详细 + * @param objId + */ +export const getHppOutStockDetail = (objId: string | number): AxiosPromise => { + return request({ + url: '/wms/hppOutStockDetail/' + objId, + method: 'get' + }); +}; + +/** + * 新增半成品出库 + * @param data + */ +export const addHppOutStockDetail = (data: HppOutStockDetailForm) => { + return request({ + url: '/wms/hppOutStockDetail', + method: 'post', + data: data + }); +}; + +/** + * 修改半成品出库 + * @param data + */ +export const updateHppOutStockDetail = (data: HppOutStockDetailForm) => { + return request({ + url: '/wms/hppOutStockDetail', + method: 'put', + data: data + }); +}; + +/** + * 删除半成品出库 + * @param objId + */ +export const delHppOutStockDetail = (objId: string | number | Array) => { + return request({ + url: '/wms/hppOutStockDetail/' + objId, + method: 'delete' + }); +}; + + +/** + * 下拉框查询半成品出库列表 + * @param query + * @returns {*} + */ +export function getWmsHppOutStockDetailList (query) { + return request({ + url: '/wms/hppOutStockDetail/getWmsHppOutStockDetailList', + method: 'get', + params: query + }); +}; diff --git a/src/api/wms/hppOutStockDetail/types.ts b/src/api/wms/hppOutStockDetail/types.ts new file mode 100644 index 0000000..6149c08 --- /dev/null +++ b/src/api/wms/hppOutStockDetail/types.ts @@ -0,0 +1,121 @@ +export interface HppOutStockDetailVO { + /** + * 主键id + */ + objId: string | number; + + /** + * 流水卡号 + */ + cardNo: string; + + /** + * 工装架子号 + */ + shelfNo: string; + + /** + * 库位id + */ + storePlaceId: string | number; + + /** + * 品级编号,0:合格,1:不合格 + */ + gradeCode: string; + + /** + * 出库类型 + */ + outType: string; + + /** + * 目的库位 + */ + targetStorePlaceId: string | number; + +} + +export interface HppOutStockDetailForm extends BaseEntity { + /** + * 主键id + */ + objId?: string | number; + + /** + * 流水卡号 + */ + cardNo?: string; + + /** + * 工装架子号 + */ + shelfNo?: string; + + /** + * 库位id + */ + storePlaceId?: string | number; + + /** + * 品级编号,0:合格,1:不合格 + */ + gradeCode?: string; + + /** + * 出库类型 + */ + outType?: string; + + /** + * 目的库位 + */ + targetStorePlaceId?: string | number; + +} + +export interface HppOutStockDetailQuery extends PageQuery { + + /** + * 主键id + */ + objId?: string | number; + + /** + * 流水卡号 + */ + cardNo?: string; + + /** + * 工装架子号 + */ + shelfNo?: string; + + /** + * 库位id + */ + storePlaceId?: string | number; + + /** + * 品级编号,0:合格,1:不合格 + */ + gradeCode?: string; + + /** + * 出库类型 + */ + outType?: string; + + /** + * 目的库位 + */ + targetStorePlaceId?: string | number; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/src/api/wms/hppStorageDetail/index.ts b/src/api/wms/hppStorageDetail/index.ts new file mode 100644 index 0000000..efe87f1 --- /dev/null +++ b/src/api/wms/hppStorageDetail/index.ts @@ -0,0 +1,77 @@ +import request from '@/utils/request'; +import { AxiosPromise } from 'axios'; +import { HppStorageDetailVO, HppStorageDetailForm, HppStorageDetailQuery } from '@/api/wms/hppStorageDetail/types'; + +/** + * 查询半成品库存列表 + * @param query + * @returns {*} + */ + +export const listHppStorageDetail = (query?: HppStorageDetailQuery): AxiosPromise => { + return request({ + url: '/wms/hppStorageDetail/list', + method: 'get', + params: query + }); +}; + +/** + * 查询半成品库存详细 + * @param objId + */ +export const getHppStorageDetail = (objId: string | number): AxiosPromise => { + return request({ + url: '/wms/hppStorageDetail/' + objId, + method: 'get' + }); +}; + +/** + * 新增半成品库存 + * @param data + */ +export const addHppStorageDetail = (data: HppStorageDetailForm) => { + return request({ + url: '/wms/hppStorageDetail', + method: 'post', + data: data + }); +}; + +/** + * 修改半成品库存 + * @param data + */ +export const updateHppStorageDetail = (data: HppStorageDetailForm) => { + return request({ + url: '/wms/hppStorageDetail', + method: 'put', + data: data + }); +}; + +/** + * 删除半成品库存 + * @param objId + */ +export const delHppStorageDetail = (objId: string | number | Array) => { + return request({ + url: '/wms/hppStorageDetail/' + objId, + method: 'delete' + }); +}; + + +/** + * 下拉框查询半成品库存列表 + * @param query + * @returns {*} + */ +export function getWmsHppStorageDetailList (query) { + return request({ + url: '/wms/hppStorageDetail/getWmsHppStorageDetailList', + method: 'get', + params: query + }); +}; diff --git a/src/api/wms/hppStorageDetail/types.ts b/src/api/wms/hppStorageDetail/types.ts new file mode 100644 index 0000000..e87d816 --- /dev/null +++ b/src/api/wms/hppStorageDetail/types.ts @@ -0,0 +1,136 @@ +export interface HppStorageDetailVO { + /** + * 主键 + */ + objId: string | number; + + /** + * 流水卡号 + */ + cardNo: string; + + /** + * 工装架子号 + */ + shelfNo: string; + + /** + * 入库类型 + */ + instockType: string; + + /** + * 物料Id + */ + materialId: string | number; + + /** + * 库位id + */ + storePlaceId: string | number; + + /** + * 密炼来料数量 + */ + sourceNum: number; + + /** + * 库存数量 + */ + storageNum: number; + +} + +export interface HppStorageDetailForm extends BaseEntity { + /** + * 主键 + */ + objId?: string | number; + + /** + * 流水卡号 + */ + cardNo?: string; + + /** + * 工装架子号 + */ + shelfNo?: string; + + /** + * 入库类型 + */ + instockType?: string; + + /** + * 物料Id + */ + materialId?: string | number; + + /** + * 库位id + */ + storePlaceId?: string | number; + + /** + * 密炼来料数量 + */ + sourceNum?: number; + + /** + * 库存数量 + */ + storageNum?: number; + +} + +export interface HppStorageDetailQuery extends PageQuery { + + /** + * 主键 + */ + objId?: string | number; + + /** + * 流水卡号 + */ + cardNo?: string; + + /** + * 工装架子号 + */ + shelfNo?: string; + + /** + * 入库类型 + */ + instockType?: string; + + /** + * 物料Id + */ + materialId?: string | number; + + /** + * 库位id + */ + storePlaceId?: string | number; + + /** + * 密炼来料数量 + */ + sourceNum?: number; + + /** + * 库存数量 + */ + storageNum?: number; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/src/api/wms/hppStore/index.ts b/src/api/wms/hppStore/index.ts new file mode 100644 index 0000000..c22db52 --- /dev/null +++ b/src/api/wms/hppStore/index.ts @@ -0,0 +1,77 @@ +import request from '@/utils/request'; +import { AxiosPromise } from 'axios'; +import { HppStoreVO, HppStoreForm, HppStoreQuery } from '@/api/wms/hppStore/types'; + +/** + * 查询【请填写功能名称】列表 + * @param query + * @returns {*} + */ + +export const listHppStore = (query?: HppStoreQuery): AxiosPromise => { + return request({ + url: '/wms/hppStore/list', + method: 'get', + params: query + }); +}; + +/** + * 查询【请填写功能名称】详细 + * @param createBy + */ +export const getHppStore = (objId: string | number): AxiosPromise => { + return request({ + url: '/wms/hppStore/' + objId, + method: 'get' + }); +}; + +/** + * 新增【请填写功能名称】 + * @param data + */ +export const addHppStore = (data: HppStoreForm) => { + return request({ + url: '/wms/hppStore', + method: 'post', + data: data + }); +}; + +/** + * 修改【请填写功能名称】 + * @param data + */ +export const updateHppStore = (data: HppStoreForm) => { + return request({ + url: '/wms/hppStore', + method: 'put', + data: data + }); +}; + +/** + * 删除【请填写功能名称】 + * @param createBy + */ +export const delHppStore = (objId: string | number | Array) => { + return request({ + url: '/wms/hppStore/' + objId, + method: 'delete' + }); +}; + + +/** + * 下拉框查询【请填写功能名称】列表 + * @param query + * @returns {*} + */ +export function getWmsHppStoreList (query) { + return request({ + url: '/wms/hppStore/getWmsHppStoreList', + method: 'get', + params: query + }); +}; diff --git a/src/api/wms/hppStore/types.ts b/src/api/wms/hppStore/types.ts new file mode 100644 index 0000000..3b28a1b --- /dev/null +++ b/src/api/wms/hppStore/types.ts @@ -0,0 +1,136 @@ +export interface HppStoreVO { + /** + * 主键 + */ + objId: string | number; + + /** + * 仓库名 + */ + storeName: string; + + /** + * 仓库代码 + */ + storeCode: string; + + /** + * 仓库类型 + */ + storeType: number; + + /** + * 使用状态 + */ + usedFlag: string; + + /** + * sap代码 + */ + sapCode: string; + + /** + * 仓库等级 + */ + storeLevel: number; + + /** + * 上级目录 + */ + storeHigherLevel: number; + +} + +export interface HppStoreForm extends BaseEntity { + /** + * 主键 + */ + objId?: string | number; + + /** + * 仓库名 + */ + storeName?: string; + + /** + * 仓库代码 + */ + storeCode?: string; + + /** + * 仓库类型 + */ + storeType?: number; + + /** + * 使用状态 + */ + usedFlag?: string; + + /** + * sap代码 + */ + sapCode?: string; + + /** + * 仓库等级 + */ + storeLevel?: number; + + /** + * 上级目录 + */ + storeHigherLevel?: number; + +} + +export interface HppStoreQuery extends PageQuery { + + /** + * 主键 + */ + objId?: string | number; + + /** + * 仓库名 + */ + storeName?: string; + + /** + * 仓库代码 + */ + storeCode?: string; + + /** + * 仓库类型 + */ + storeType?: number; + + /** + * 使用状态 + */ + usedFlag?: string; + + /** + * sap代码 + */ + sapCode?: string; + + /** + * 仓库等级 + */ + storeLevel?: number; + + /** + * 上级目录 + */ + storeHigherLevel?: number; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/src/api/wms/hppStorePlace/index.ts b/src/api/wms/hppStorePlace/index.ts new file mode 100644 index 0000000..1e4f47a --- /dev/null +++ b/src/api/wms/hppStorePlace/index.ts @@ -0,0 +1,77 @@ +import request from '@/utils/request'; +import { AxiosPromise } from 'axios'; +import { HppStorePlaceVO, HppStorePlaceForm, HppStorePlaceQuery } from '@/api/wms/hppStorePlace/types'; + +/** + * 查询半成品库位列表 + * @param query + * @returns {*} + */ + +export const listHppStorePlace = (query?: HppStorePlaceQuery): AxiosPromise => { + return request({ + url: '/wms/hppStorePlace/list', + method: 'get', + params: query + }); +}; + +/** + * 查询半成品库位详细 + * @param objId + */ +export const getHppStorePlace = (objId: string | number): AxiosPromise => { + return request({ + url: '/wms/hppStorePlace/' + objId, + method: 'get' + }); +}; + +/** + * 新增半成品库位 + * @param data + */ +export const addHppStorePlace = (data: HppStorePlaceForm) => { + return request({ + url: '/wms/hppStorePlace', + method: 'post', + data: data + }); +}; + +/** + * 修改半成品库位 + * @param data + */ +export const updateHppStorePlace = (data: HppStorePlaceForm) => { + return request({ + url: '/wms/hppStorePlace', + method: 'put', + data: data + }); +}; + +/** + * 删除半成品库位 + * @param objId + */ +export const delHppStorePlace = (objId: string | number | Array) => { + return request({ + url: '/wms/hppStorePlace/' + objId, + method: 'delete' + }); +}; + + +/** + * 下拉框查询半成品库位列表 + * @param query + * @returns {*} + */ +export function getWmsHppStorePlaceList (query) { + return request({ + url: '/wms/hppStorePlace/getWmsHppStorePlaceList', + method: 'get', + params: query + }); +}; diff --git a/src/api/wms/hppStorePlace/types.ts b/src/api/wms/hppStorePlace/types.ts new file mode 100644 index 0000000..e35b2cc --- /dev/null +++ b/src/api/wms/hppStorePlace/types.ts @@ -0,0 +1,121 @@ +export interface HppStorePlaceVO { + /** + * 主键id + */ + objId: string | number; + + /** + * 库位名 + */ + storePlaceName: string; + + /** + * 库位代码 + */ + storePlaceCode: string; + + /** + * 仓库id + */ + storeId: string | number; + + /** + * 使用状态 + */ + usedFlag: string; + + /** + * 特殊库位 + */ + specitialType: string; + + /** + * 位置类型 + */ + positionType: string; + +} + +export interface HppStorePlaceForm extends BaseEntity { + /** + * 主键id + */ + objId?: string | number; + + /** + * 库位名 + */ + storePlaceName?: string; + + /** + * 库位代码 + */ + storePlaceCode?: string; + + /** + * 仓库id + */ + storeId?: string | number; + + /** + * 使用状态 + */ + usedFlag?: string; + + /** + * 特殊库位 + */ + specitialType?: string; + + /** + * 位置类型 + */ + positionType?: string; + +} + +export interface HppStorePlaceQuery extends PageQuery { + + /** + * 主键id + */ + objId?: string | number; + + /** + * 库位名 + */ + storePlaceName?: string; + + /** + * 库位代码 + */ + storePlaceCode?: string; + + /** + * 仓库id + */ + storeId?: string | number; + + /** + * 使用状态 + */ + usedFlag?: string; + + /** + * 特殊库位 + */ + specitialType?: string; + + /** + * 位置类型 + */ + positionType?: string; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/src/api/wms/hsmTooling/index.ts b/src/api/wms/hsmTooling/index.ts new file mode 100644 index 0000000..618e48d --- /dev/null +++ b/src/api/wms/hsmTooling/index.ts @@ -0,0 +1,77 @@ +import request from '@/utils/request'; +import { AxiosPromise } from 'axios'; +import { HsmToolingVO, HsmToolingForm, HsmToolingQuery } from '@/api/wms/hsmTooling/types'; + +/** + * 查询半成品工装列表 + * @param query + * @returns {*} + */ + +export const listHsmTooling = (query?: HsmToolingQuery): AxiosPromise => { + return request({ + url: '/wms/hsmTooling/list', + method: 'get', + params: query + }); +}; + +/** + * 查询半成品工装详细 + * @param OBJID + */ +export const getHsmTooling = (OBJID: string | number): AxiosPromise => { + return request({ + url: '/wms/hsmTooling/' + OBJID, + method: 'get' + }); +}; + +/** + * 新增半成品工装 + * @param data + */ +export const addHsmTooling = (data: HsmToolingForm) => { + return request({ + url: '/wms/hsmTooling', + method: 'post', + data: data + }); +}; + +/** + * 修改半成品工装 + * @param data + */ +export const updateHsmTooling = (data: HsmToolingForm) => { + return request({ + url: '/wms/hsmTooling', + method: 'put', + data: data + }); +}; + +/** + * 删除半成品工装 + * @param OBJID + */ +export const delHsmTooling = (OBJID: string | number | Array) => { + return request({ + url: '/wms/hsmTooling/' + OBJID, + method: 'delete' + }); +}; + + +/** + * 下拉框查询半成品工装列表 + * @param query + * @returns {*} + */ +export function getWmsHsmToolingList (query) { + return request({ + url: '/wms/hsmTooling/getWmsHsmToolingList', + method: 'get', + params: query + }); +}; diff --git a/src/api/wms/hsmTooling/types.ts b/src/api/wms/hsmTooling/types.ts new file mode 100644 index 0000000..c9fd219 --- /dev/null +++ b/src/api/wms/hsmTooling/types.ts @@ -0,0 +1,166 @@ +export interface HsmToolingVO { + /** + * $column.columnComment + */ + OBJID: number; + + /** + * $column.columnComment + */ + createdBy: string; + + /** + * $column.columnComment + */ + createdTime: string; + + /** + * $column.columnComment + */ + updatedBy: string; + + /** + * $column.columnComment + */ + updatedTime: string; + + /** + * $column.columnComment + */ + toolingBarcode: string; + + /** + * $column.columnComment + */ + tenantId: string | number; + + /** + * $column.columnComment + */ + toolingRfidBarcode: string | number; + + /** + * $column.columnComment + */ + toolingType: string; + + /** + * $column.columnComment + */ + isUsed: string; + +} + +export interface HsmToolingForm extends BaseEntity { + /** + * $column.columnComment + */ + OBJID?: number; + + /** + * $column.columnComment + */ + createdBy?: string; + + /** + * $column.columnComment + */ + createdTime?: string; + + /** + * $column.columnComment + */ + updatedBy?: string; + + /** + * $column.columnComment + */ + updatedTime?: string; + + /** + * $column.columnComment + */ + toolingBarcode?: string; + + /** + * $column.columnComment + */ + tenantId?: string | number; + + /** + * $column.columnComment + */ + toolingRfidBarcode?: string | number; + + /** + * $column.columnComment + */ + toolingType?: string; + + /** + * $column.columnComment + */ + isUsed?: string; + +} + +export interface HsmToolingQuery extends PageQuery { + + /** + * $column.columnComment + */ + OBJID?: number; + + /** + * $column.columnComment + */ + createdBy?: string; + + /** + * $column.columnComment + */ + createdTime?: string; + + /** + * $column.columnComment + */ + updatedBy?: string; + + /** + * $column.columnComment + */ + updatedTime?: string; + + /** + * $column.columnComment + */ + toolingBarcode?: string; + + /** + * $column.columnComment + */ + tenantId?: string | number; + + /** + * $column.columnComment + */ + toolingRfidBarcode?: string | number; + + /** + * $column.columnComment + */ + toolingType?: string; + + /** + * $column.columnComment + */ + isUsed?: string; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/src/views/wms/hppInStockDetail/index.vue b/src/views/wms/hppInStockDetail/index.vue new file mode 100644 index 0000000..91d8c63 --- /dev/null +++ b/src/views/wms/hppInStockDetail/index.vue @@ -0,0 +1,353 @@ + + + diff --git a/src/views/wms/hppOutStockDetail/index.vue b/src/views/wms/hppOutStockDetail/index.vue new file mode 100644 index 0000000..b32d3b5 --- /dev/null +++ b/src/views/wms/hppOutStockDetail/index.vue @@ -0,0 +1,315 @@ + + + diff --git a/src/views/wms/hppStorageDetail/index.vue b/src/views/wms/hppStorageDetail/index.vue new file mode 100644 index 0000000..2dd85eb --- /dev/null +++ b/src/views/wms/hppStorageDetail/index.vue @@ -0,0 +1,314 @@ + + + diff --git a/src/views/wms/hppStore/index.vue b/src/views/wms/hppStore/index.vue new file mode 100644 index 0000000..5f667ab --- /dev/null +++ b/src/views/wms/hppStore/index.vue @@ -0,0 +1,320 @@ + + + diff --git a/src/views/wms/hppStorePlace/index.vue b/src/views/wms/hppStorePlace/index.vue new file mode 100644 index 0000000..c3d5aec --- /dev/null +++ b/src/views/wms/hppStorePlace/index.vue @@ -0,0 +1,312 @@ + + + diff --git a/src/views/wms/hsmTooling/index.vue b/src/views/wms/hsmTooling/index.vue new file mode 100644 index 0000000..c691ae6 --- /dev/null +++ b/src/views/wms/hsmTooling/index.vue @@ -0,0 +1,285 @@ + + +