review:【erp 系统】相关代码

This commit is contained in:
YunaiV
2025-09-02 23:16:28 +08:00
parent 744eef46f4
commit 41583c5e41
38 changed files with 70 additions and 85 deletions

View File

@@ -50,6 +50,7 @@ export namespace ErpPurchaseInApi {
status?: number;
}
// TODO @nehcupdatePurchaseInStatus 是不是需要?
/** 采购入库状态更新参数 */
export interface PurchaseInStatusParams {
id: number;

View File

@@ -24,7 +24,6 @@ export namespace ErpSaleOrderApi {
depositPrice?: number; // 定金金额,单位:元
items?: SaleOrderItem[]; // 销售订单产品明细列表
}
/** ERP 销售订单产品明细 */
export interface SaleOrderItem {
id?: number; // 订单项编号
orderId?: number; // 采购订单编号

View File

@@ -17,7 +17,6 @@ export namespace ErpStockCheckApi {
creatorName?: string; // 创建人
items?: StockCheckItem[]; // 盘点产品清单
}
// 库存盘点单产品信息
export interface StockCheckItem {
id?: number; // 编号
warehouseId?: number; // 仓库编号
@@ -33,6 +32,7 @@ export namespace ErpStockCheckApi {
stockCount?: number; // 账面库存
remark?: string; // 备注
}
/** 库存盘点单分页查询参数 */
export interface StockCheckPageParams extends PageParam {
no?: string;