|
@@ -136,3 +136,58 @@ export type ForecastSummaryListResponse = Promise<AxiosResponse<ApiResponse<Page
|
|
|
export type ForecastSummaryOperationResponse = Promise<AxiosResponse<ApiResponse<ForecastSummaryRecord>>>
|
|
|
export type ForecastSummaryBatchOperationResponse = Promise<AxiosResponse<ApiResponse<boolean>>>
|
|
|
export type ForecastSummaryPageResponse = Promise<AxiosResponse<ApiResponse<PageResult<ForecastSummaryRecord>>>>
|
|
|
+
|
|
|
+// 品牌库存汇总查询参数
|
|
|
+export interface BrandStockQueryParams {
|
|
|
+ storageName?: string
|
|
|
+ brandName?: string
|
|
|
+ goodsTypeName?: string
|
|
|
+ salesCompanyName?: string
|
|
|
+ cname?: string
|
|
|
+ productDescription?: string
|
|
|
+ typeNo?: string
|
|
|
+ brandItem?: string
|
|
|
+}
|
|
|
+
|
|
|
+// 品牌库存汇总记录
|
|
|
+export interface BrandStockRecord {
|
|
|
+ id: string
|
|
|
+ createUser: string
|
|
|
+ createDept: string
|
|
|
+ createTime: string
|
|
|
+ updateUser: string | null
|
|
|
+ updateTime: string | null
|
|
|
+ status: number | null
|
|
|
+ isDeleted: number
|
|
|
+ tenantId: string
|
|
|
+ storageId: string
|
|
|
+ storageName: string
|
|
|
+ goodsId: string
|
|
|
+ code: string
|
|
|
+ cname: string
|
|
|
+ brandId: string
|
|
|
+ brandName: string
|
|
|
+ typeNo: string
|
|
|
+ brandItem: string
|
|
|
+ productDescription: string | null
|
|
|
+ goodsTypeId: string
|
|
|
+ balanceQuantity: string
|
|
|
+ balanceQuantityFinancing: string
|
|
|
+ balanceQuantityHave: string
|
|
|
+ salesCompanyId: string
|
|
|
+ salesCompanyName: string
|
|
|
+ dot: string | null
|
|
|
+ storeInventory: string
|
|
|
+ inventoryAmount: string
|
|
|
+ inventoryCostPrice: string
|
|
|
+ inventoryAlert: string | null
|
|
|
+ goodsTypeName: string
|
|
|
+ version: number
|
|
|
+ poNo: string | null
|
|
|
+ cnameInt: string | null
|
|
|
+ rebatePrice: string
|
|
|
+ rebateInventoryAmount: string
|
|
|
+}
|
|
|
+
|
|
|
+// 品牌库存汇总分页响应类型
|
|
|
+export type BrandStockListResponse = Promise<AxiosResponse<ApiResponse<PageResult<BrandStockRecord>>>>
|