|
@@ -388,3 +388,69 @@ export type SalesOrderItemFullListQueryParams = Omit<SalesOrderItemListQueryPara
|
|
|
* @description 返回所有记录的数组,不分页
|
|
|
*/
|
|
|
export type SalesOrderItemFullListResponse = AxiosResponse<ApiResponseData<SalesOrderItemListRecord[]>>;
|
|
|
+
|
|
|
+// 用户关联商品查询(品牌与库存)
|
|
|
+export interface PjpfBrandDesc {
|
|
|
+ id: string;
|
|
|
+ createUser: string;
|
|
|
+ createDept: string;
|
|
|
+ createTime: string;
|
|
|
+ updateUser: string | null;
|
|
|
+ updateTime: string | null;
|
|
|
+ status: number | null;
|
|
|
+ isDeleted: 0 | 1;
|
|
|
+ tenantId: string;
|
|
|
+ enableOrNot: 0 | 1;
|
|
|
+ cname: string;
|
|
|
+ salesCompanyId: string;
|
|
|
+ salesCompanyName: string;
|
|
|
+ type: string;
|
|
|
+ sort: number;
|
|
|
+ whetherIntegral: string;
|
|
|
+}
|
|
|
+
|
|
|
+export interface PjpfStockDesc {
|
|
|
+ id: string;
|
|
|
+ createUser: string;
|
|
|
+ createDept: string;
|
|
|
+ createTime: string;
|
|
|
+ updateUser: string | null;
|
|
|
+ updateTime: string | null;
|
|
|
+ status: number | null;
|
|
|
+ isDeleted: 0 | 1;
|
|
|
+ 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 interface UserLinkGoodsData {
|
|
|
+ pjpfBrandDescList: PjpfBrandDesc[];
|
|
|
+ pjpfStockDescList: PjpfStockDesc[];
|
|
|
+}
|
|
|
+
|
|
|
+export type GetUserLinkGoodsResponse = AxiosResponse<ApiResponseData<UserLinkGoodsData>>;
|