12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* eslint-disable */
- export enum ServiceTypeKeyEnum {
- PC = 'PC',
- Pangea = 'Pangea',
- PangeaTaxReimbursement = 'PangeaTaxReimbursement',
- AZYTaxReimbursement = 'AZYTaxReimbursement',
- FOTTaxReimbursement = 'FOTTaxReimbursement',
- }
- export type TypeService = {
- [key in ServiceTypeKeyEnum]: string[]
- }
- export interface ISelectItem {
- label: string | number
- }
- export interface IProduct {
- label: string
- value: string
- [key: string]: number | string
- }
- export interface IProductItem {
- name: string
- desc: string
- id: string
- quantity: number | string
- rate: number | string
- requirement: string
- amount: number | string
- discount: number | string
- candidate: IProduct[]
- [key: string]: number | string | IProduct | IProduct[]
- }
- export interface IForm {
- Order_Type: string
- Artwork_Link: string
- Currency: string
- PO_Date: string
- Supplier_Payment_Terms: string
- Title: string
- field9: string
- field7: string
- field8: string
- field6: string
- productList: IProductItem[]
- field12: string
- field13: string
- field10: string
- field11: string
- field4: string
- field5: string
- saleOrderId: string
- // 用了处理给接口发送数据前的包装格式
- Related_Sales_Order?: any
- Product_Details?: any
- Status?: string
- Subject?: string
- Sub_Total?: number
- Total_Taxes?: number
- Total_Discount?: number
- Adjustment?: number
- Grand_Total?: number
- Created_By?: any
- Vendor_Name?: any
- currentVendor?: string // 仅前端界面用到, API接口的字段是Vendor_Name
- Reference?: string // 用在 表单项:订单号 显示
- }
- export interface IVendorItem {
- value: string
- label: string
- Primary_Contact_name: string
- PDF_display: string
- PDF_display2: string
- Payment_Terms: string
- [x: string]: string | null
- }
- export interface ICompanyItem {
- id: string
- name: string
- addr: string
- phone: string
- label: string
- signPath: string
- fax?: string
- taxReimbursement?: boolean
- }
- export interface IUser {
- id: number
- email: string
- users_id: string
- full_name: string
- [x: string]: string | number
- }
|