interface.ts 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /* eslint-disable */
  2. export enum ServiceTypeKeyEnum {
  3. PC = 'PC',
  4. Pangea = 'Pangea',
  5. PangeaTaxReimbursement = 'PangeaTaxReimbursement',
  6. AZYTaxReimbursement = 'AZYTaxReimbursement',
  7. FOTTaxReimbursement = 'FOTTaxReimbursement',
  8. }
  9. export type TypeService = {
  10. [key in ServiceTypeKeyEnum]: string[]
  11. }
  12. export interface ISelectItem {
  13. label: string | number
  14. }
  15. export interface IProduct {
  16. label: string
  17. value: string
  18. [key: string]: number | string
  19. }
  20. export interface IProductItem {
  21. name: string
  22. desc: string
  23. id: string
  24. quantity: number | string
  25. rate: number | string
  26. requirement: string
  27. amount: number | string
  28. discount: number | string
  29. candidate: IProduct[]
  30. [key: string]: number | string | IProduct | IProduct[]
  31. }
  32. export interface IForm {
  33. Order_Type: string
  34. Artwork_Link: string
  35. Currency: string
  36. PO_Date: string
  37. Supplier_Payment_Terms: string
  38. Title: string
  39. field9: string
  40. field7: string
  41. field8: string
  42. field6: string
  43. productList: IProductItem[]
  44. field12: string
  45. field13: string
  46. field10: string
  47. field11: string
  48. field4: string
  49. field5: string
  50. saleOrderId: string
  51. // 用了处理给接口发送数据前的包装格式
  52. Related_Sales_Order?: any
  53. Product_Details?: any
  54. Status?: string
  55. Subject?: string
  56. Sub_Total?: number
  57. Total_Taxes?: number
  58. Total_Discount?: number
  59. Adjustment?: number
  60. Grand_Total?: number
  61. Created_By?: any
  62. Vendor_Name?: any
  63. currentVendor?: string // 仅前端界面用到, API接口的字段是Vendor_Name
  64. Reference?: string // 用在 表单项:订单号 显示
  65. }
  66. export interface IVendorItem {
  67. value: string
  68. label: string
  69. Primary_Contact_name: string
  70. PDF_display: string
  71. PDF_display2: string
  72. Payment_Terms: string
  73. [x: string]: string | null
  74. }
  75. export interface ICompanyItem {
  76. id: string
  77. name: string
  78. addr: string
  79. phone: string
  80. label: string
  81. signPath: string
  82. fax?: string
  83. taxReimbursement?: boolean
  84. }
  85. export interface IUser {
  86. id: number
  87. email: string
  88. users_id: string
  89. full_name: string
  90. [x: string]: string | number
  91. }