|
|
@@ -757,3 +757,14 @@ export const dimensionType = [
|
|
|
{ code: 2, label: '批次维度' },
|
|
|
{ code: 3, label: '包装维度' }
|
|
|
];
|
|
|
+
|
|
|
+// 发票管理 来源类型(与后端 FinInvoiceSourceTypeEnum 对齐)
|
|
|
+// 1对账单 2合同 3订单 4应付 5应收 99其他无订单无合同
|
|
|
+export const finInvoiceSourceTypeOp = [
|
|
|
+ { value: 1, label: '对账单' },
|
|
|
+ { value: 2, label: '合同' },
|
|
|
+ { value: 3, label: '订单' },
|
|
|
+ { value: 4, label: '应付' },
|
|
|
+ { value: 5, label: '应收' },
|
|
|
+ { value: 99, label: '其他无订单无合同' }
|
|
|
+];
|