From eb76823f06f4e552ad6b259e9c27b128779cfff5 Mon Sep 17 00:00:00 2001 From: kanade Date: Thu, 13 Aug 2026 09:24:24 +0800 Subject: [PATCH] =?UTF-8?q?feat(expense):=20=E4=B8=BA=E5=B7=AE=E6=97=85?= =?UTF-8?q?=E8=B4=B9=E7=94=A8=E6=B7=BB=E5=8A=A0=E4=B8=93=E9=97=A8=E7=9A=84?= =?UTF-8?q?=E6=94=AF=E4=BB=98=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在常量中定义新的差旅费支付类型 PaymentTypeTravel - 根据费用类型动态设置支付类型,差旅费用使用新支付类型 - 非差旅费用仍使用原有的报销付款单类型 --- ik3cloud/constant/constant.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ik3cloud/constant/constant.go b/ik3cloud/constant/constant.go index 2069c18..dbe6a08 100644 --- a/ik3cloud/constant/constant.go +++ b/ik3cloud/constant/constant.go @@ -79,6 +79,7 @@ const ( PaymentTypePurchase PaymentType = "FKDLX09_SYS" // 采购付款单 PaymentTypeCost PaymentType = "FKDLX10_SYS" // 费用付款单 PaymentTypeRequest PaymentType = "FKDLX11_SYS" // 报销付款单 + PaymentTypeTravel PaymentType = "FKDLX12_SYS" // 差旅费 ) type PaymentPurpose = string