This commit is contained in:
Mrx
2026-03-02 11:56:47 +08:00
parent 7bf9150cfc
commit 9a32387b21

View File

@@ -29,10 +29,12 @@ func ProcessQYGL5S1IRequest(ctx context.Context, params []byte, deps *processors
var enterpriseNo, enterpriseName string var enterpriseNo, enterpriseName string
if paramsDto.EntName != "" { if paramsDto.EntName != "" {
enterpriseName = paramsDto.EntName enterpriseName = paramsDto.EntName
} }
if enterpriseNo !="" { if paramsDto.EntCode != "" {
enterpriseNo = paramsDto.EntCode enterpriseNo = paramsDto.EntCode
}else enterpriseNo="not null" } else {
enterpriseNo = "not null"
}
reqData := map[string]interface{}{ reqData := map[string]interface{}{
"enterpriseNo": enterpriseNo, "enterpriseNo": enterpriseNo,