Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CI / CI OK (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
72 lines
1.9 KiB
TypeScript
72 lines
1.9 KiB
TypeScript
import type { PageParam, PageResult } from '@vben/request';
|
|
|
|
import { requestClient } from '#/api/request';
|
|
|
|
export namespace ErpWarehouseApi {
|
|
/** 仓库信息 */
|
|
export interface Warehouse {
|
|
id?: number; // 仓库编号
|
|
name: string; // 仓库名称
|
|
address: string; // 仓库地址
|
|
sort: number; // 排序
|
|
remark: string; // 备注
|
|
principal: string; // 负责人
|
|
warehousePrice: number; // 仓储费,单位:元
|
|
truckagePrice: number; // 搬运费,单位:元
|
|
status: number; // 开启状态
|
|
defaultStatus: boolean; // 是否默认
|
|
}
|
|
}
|
|
|
|
/** 查询仓库分页 */
|
|
export function getWarehousePage(params: PageParam) {
|
|
return requestClient.get<PageResult<ErpWarehouseApi.Warehouse>>(
|
|
'/erp/warehouse/page',
|
|
{ params },
|
|
);
|
|
}
|
|
|
|
/** 查询仓库精简列表 */
|
|
export function getWarehouseSimpleList() {
|
|
return requestClient.get<ErpWarehouseApi.Warehouse[]>(
|
|
'/erp/warehouse/simple-list',
|
|
);
|
|
}
|
|
|
|
/** 查询仓库详情 */
|
|
export function getWarehouse(id: number) {
|
|
return requestClient.get<ErpWarehouseApi.Warehouse>(
|
|
`/erp/warehouse/get?id=${id}`,
|
|
);
|
|
}
|
|
|
|
/** 新增仓库 */
|
|
export function createWarehouse(data: ErpWarehouseApi.Warehouse) {
|
|
return requestClient.post('/erp/warehouse/create', data);
|
|
}
|
|
|
|
/** 修改仓库 */
|
|
export function updateWarehouse(data: ErpWarehouseApi.Warehouse) {
|
|
return requestClient.put('/erp/warehouse/update', data);
|
|
}
|
|
|
|
/** 修改仓库默认状态 */
|
|
export function updateWarehouseDefaultStatus(
|
|
id: number,
|
|
defaultStatus: boolean,
|
|
) {
|
|
return requestClient.put('/erp/warehouse/update-default-status', null, {
|
|
params: { id, defaultStatus },
|
|
});
|
|
}
|
|
|
|
/** 删除仓库 */
|
|
export function deleteWarehouse(id: number) {
|
|
return requestClient.delete(`/erp/warehouse/delete?id=${id}`);
|
|
}
|
|
|
|
/** 导出仓库 Excel */
|
|
export function exportWarehouse(params: any) {
|
|
return requestClient.download('/erp/warehouse/export-excel', { params });
|
|
}
|