- 将 InvoiceBatchUpload 组件重命名为 InvoiceCreate - 修改 API 调用从 batchUploadInvoice 到 createSupplierInvoice - 添加发票开具人选择功能 - 新增 OrderSupplierPicker 组件用于选择瓜农车次 - 更新发票列表页面显示发票开具人和关联车次信息 - 添加发票详情页面展示发票详细信息 - 修改开发环境 API 代理目标地址 - 更新应用版本号到 v0.0.64
74 lines
4.5 KiB
TypeScript
74 lines
4.5 KiB
TypeScript
export { default as OrderVehicle } from "./module/OrderVehicle";
|
|
export type { OrderVehicleRef } from "./module/OrderVehicle";
|
|
export { default as SupplierWeigh } from "./module/SupplierWeigh";
|
|
export type { SupplierWeighRef } from "./module/SupplierWeigh";
|
|
export { default as StallWeigh } from "./module/StallWeigh";
|
|
export type { StallWeighRef } from "./module/StallWeigh";
|
|
export { default as SupplierInfo } from "./module/SupplierInfo";
|
|
export type { SupplierInfoRef } from "./module/SupplierInfo";
|
|
export { default as StallInfo } from "./module/StallInfo";
|
|
export type { StallInfoRef } from "./module/StallInfo";
|
|
export { default as SupplierPackage } from "./module/SupplierPackage";
|
|
export type { SupplierPackageRef } from "./module/SupplierPackage";
|
|
export { default as StallPackage } from "./module/StallPackage";
|
|
export type { StallPackageRef } from "./module/StallPackage";
|
|
export { default as TicketUpload } from "./module/TicketUpload";
|
|
export { default as OrderCost } from "./module/OrderCost";
|
|
export type { OrderCostRef } from "./module/OrderCost";
|
|
export { default as OrderCostItem } from "./module/OrderCostItem";
|
|
export type { OrderCostItemRef } from "./module/OrderCostItem";
|
|
export { default as OrderPackage } from "./module/OrderPackage";
|
|
export { default as SupplierList } from "./module/SupplierList";
|
|
export { default as StallList } from "./module/StallList";
|
|
export { default as PurchasePreview } from "./module/MadePreview";
|
|
export { default as MarketPreview } from "./module/MarketPreview";
|
|
export { default as MadeOption } from "./module/MadeOption";
|
|
export type { MadeOptionRef } from "./module/MadeOption";
|
|
export { default as MarketOption } from "./module/MarketOption";
|
|
export type { MarketOptionRef } from "./module/MarketOption";
|
|
|
|
export { default as OrderRejectApprove } from "./button/OrderRejectApprove";
|
|
export { default as OrderRejectFinal } from "./button/OrderRejectFinal";
|
|
export { default as OrderSubmitReview } from "./button/OrderSubmitReview";
|
|
export { default as OrderWithdrawReview } from "./button/OrderWithdrawReview";
|
|
export { default as OrderFinalApprove } from "./button/OrderFinalApprove";
|
|
|
|
export { default as CompanyInfoSection } from "./section/CompanyInfoSection";
|
|
export { default as DealerInfoSection } from "./section/DealerInfoSection";
|
|
export { default as BasicInfoSection } from "./section/BasicInfoSection";
|
|
export { default as SupplierInfoSection } from "./section/SupplierInfoSection";
|
|
export { default as PurchaseCostInfoSection } from "./section/PurchaseCostInfoSection";
|
|
export { default as PackageInfoSection } from "./section/PackageInfoSection";
|
|
export { default as EmptyBoxInfoSection } from "./section/EmptyBoxInfoSection";
|
|
export { default as PackagingCostSection } from "./section/PackagingCostSection";
|
|
export { default as ProductionLossSection } from "./section/ProductionLossSection";
|
|
export { default as CostSummarySection } from "./section/CostSummarySection";
|
|
export { default as MarketPriceSection } from "./section/MarketPriceSection";
|
|
export { default as RebateCalcSection } from "./section/RebateCalcSection";
|
|
export { default as TaxSubsidySection } from "./section/TaxSubsidySection";
|
|
export { default as TaxProvisionSection } from "./section/TaxProvisionSection";
|
|
export { default as CostDifferenceSection } from "./section/CostDifferenceSection";
|
|
export { default as MaterialCostSection } from "./section/MaterialCostSection";
|
|
export { default as ProductionAdvanceSection } from "./section/ProductionAdvanceSection";
|
|
export { default as WorkerAdvanceSection } from "./section/WorkerAdvanceSection";
|
|
export { default as DeliveryFormSection } from "./section/DeliveryFormSection";
|
|
export { default as PurchaseFormSection } from "./section/PurchaseFormSection";
|
|
|
|
export { default as PurchaseStep1Form } from "./document/Step1Form";
|
|
export type { Step1FormRef as PurchaseStep1FormRef } from "./document/Step1Form";
|
|
export { default as PurchaseStep2Preview } from "./document/Step2Preview";
|
|
export { default as PurchaseStep3Success } from "./document/Step3Success";
|
|
|
|
export { default as OrderItem } from "./OrderItem";
|
|
export { default as OrderList } from "./OrderList";
|
|
|
|
export { default as CostCreate } from "./cost/CostCreate";
|
|
export { default as CostList } from "./cost/CostList";
|
|
export { default as CostCard } from "./cost/CostCard";
|
|
|
|
export { default as PackageList } from "./package/PackageList";
|
|
export { default as PackageCard } from "./package/PackageCard";
|
|
export { default as PackageCreate } from "./package/PackageCreate";
|
|
|
|
export { default as OrderSupplierPicker } from "./supplier/OrderSupplierPicker";
|