- 新增 PurchaseOrderFormItem、PurchaseOrderModal 等采购单表单项组件 - 在 OrderCostList 和 OrderSupplierList 中集成采购单选择功能 - 新增 OrderRebateList 返利列表组件 - 实现采购单数据的展示与选择逻辑 - 添加采购单相关的搜索和筛选字段 - 支持采购单详情查看及关联数据显示 - 优化订单成本列表的创建表单结构 - 增加表格行选择和批量操作功能 - 完善采购单状态标签显示及样式处理
74 lines
1.9 KiB
TypeScript
74 lines
1.9 KiB
TypeScript
// @ts-ignore
|
|
/* eslint-disable */
|
|
// API 更新时间:
|
|
// API 唯一标识:
|
|
import * as agreement from './agreement';
|
|
import * as boxBrand from './boxBrand';
|
|
import * as boxProduct from './boxProduct';
|
|
import * as boxSpec from './boxSpec';
|
|
import * as channel from './channel';
|
|
import * as company from './company';
|
|
import * as companyPaymentAccount from './companyPaymentAccount';
|
|
import * as cost from './cost';
|
|
import * as costItem from './costItem';
|
|
import * as dealer from './dealer';
|
|
import * as dealerPaymentAccount from './dealerPaymentAccount';
|
|
import * as dealerRebateCustomer from './dealerRebateCustomer';
|
|
import * as dealerWarehouse from './dealerWarehouse';
|
|
import * as dictionary from './dictionary';
|
|
import * as employee from './employee';
|
|
import * as expenseRecord from './expenseRecord';
|
|
import * as extraction from './extraction';
|
|
import * as giftBox from './giftBox';
|
|
import * as material from './material';
|
|
import * as materialCategory from './materialCategory';
|
|
import * as menu from './menu';
|
|
import * as orderCost from './orderCost';
|
|
import * as orderRebate from './orderRebate';
|
|
import * as orderShip from './orderShip';
|
|
import * as orderSupplier from './orderSupplier';
|
|
import * as permission from './permission';
|
|
import * as platform from './platform';
|
|
import * as product from './product';
|
|
import * as purchaseOrder from './purchaseOrder';
|
|
import * as role from './role';
|
|
import * as setting from './setting';
|
|
import * as supplier from './supplier';
|
|
import * as user from './user';
|
|
|
|
export default {
|
|
user,
|
|
supplier,
|
|
setting,
|
|
purchaseOrder,
|
|
product,
|
|
platform,
|
|
orderSupplier,
|
|
orderShip,
|
|
menu,
|
|
material,
|
|
materialCategory,
|
|
giftBox,
|
|
expenseRecord,
|
|
employee,
|
|
dictionary,
|
|
dealer,
|
|
dealerWarehouse,
|
|
dealerRebateCustomer,
|
|
dealerPaymentAccount,
|
|
cost,
|
|
costItem,
|
|
company,
|
|
companyPaymentAccount,
|
|
channel,
|
|
boxSpec,
|
|
boxProduct,
|
|
boxBrand,
|
|
agreement,
|
|
role,
|
|
permission,
|
|
extraction,
|
|
orderCost,
|
|
orderRebate,
|
|
};
|