3 Commits

2 changed files with 12 additions and 10 deletions

View File

@@ -219,8 +219,8 @@ type ApproveRecord struct {
SourceSystem string `json:"source_system"` // 來源系統別 SourceSystem string `json:"source_system"` // 來源系統別
ObjID string `json:"objid"` // 識別碼 ObjID string `json:"objid"` // 識別碼
TransNo string `json:"trans_no"` // 交易序號 TransNo string `json:"trans_no"` // 交易序號
Price int `json:"price"` // 單價 Price float64 `json:"price"` // 單價
Copayment int `json:"copayment"` // 自付額 Copayment float64 `json:"copayment"` // 自付額
} }
// ASvcRecord 是 A 碼加成資料區 // ASvcRecord 是 A 碼加成資料區
@@ -228,7 +228,7 @@ type ASvcRecord struct {
RefSourceSystem string `json:"ref_source_system"` // 審核通過服務記錄來源系統別 RefSourceSystem string `json:"ref_source_system"` // 審核通過服務記錄來源系統別
RefObjID string `json:"ref_objid"` // 審核通過服務記錄識別碼 RefObjID string `json:"ref_objid"` // 審核通過服務記錄識別碼
AGovItemCode string `json:"a_gov_item_cd"` // A 碼 AGovItemCode string `json:"a_gov_item_cd"` // A 碼
Price int `json:"price"` // 單價 Price float64 `json:"price"` // 單價
} }
// AppCancelUpload 是 AppCancel 的傳送資料 // AppCancelUpload 是 AppCancel 的傳送資料

View File

@@ -90,6 +90,8 @@ func (f *FeeAuditUtils) httpsPost(funcName string, writeoffRequest WriteoffReque
client := &http.Client{ client := &http.Client{
Transport: &http.Transport{ Transport: &http.Transport{
TLSClientConfig: &tls.Config{ TLSClientConfig: &tls.Config{
// Maxwell 2025-05-30 Current CA cert probably outdated, skip verification based on PO's request
InsecureSkipVerify: true,
RootCAs: caCertPool, RootCAs: caCertPool,
}, },
}, },