From 552fda4967d0f762fae21fae54c5f8b57b8eb3ea Mon Sep 17 00:00:00 2001
From: yxj <yxj@hz-kingdee.com>
Date: 星期一, 30 三月 2026 13:28:45 +0800
Subject: [PATCH] 凯贝立讯客户标签内箱码生成时流水号回填修正,金蝶云生成委外工序发出单调用方法修正
---
WebAPI/InvokeHelper.cs | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 deletions(-)
diff --git a/WebAPI/InvokeHelper.cs b/WebAPI/InvokeHelper.cs
index 35b5972..1f188e6 100644
--- a/WebAPI/InvokeHelper.cs
+++ b/WebAPI/InvokeHelper.cs
@@ -229,7 +229,25 @@
}
/// <summary>
- /// 闄勪欢涓婁紶
+ /// 鏌ヨ
+ /// </summary>
+ /// <param name="formId"></param>
+ /// <param name="content"></param>
+ /// <returns></returns>
+ public static string ExecuteBillQuery(string formId, string content)
+ {
+ HttpClient httpClient = new HttpClient();
+ httpClient.Url = string.Concat(CloudUrl, "Kingdee.BOS.WebApi.ServicesStub.DynamicFormService.ExecuteBillQuery.common.kdsvc");
+
+ List<object> Parameters = new List<object>();
+ //Json瀛椾覆
+ Parameters.Add(content);
+ httpClient.Content = JsonConvert.SerializeObject(Parameters);
+ return httpClient.SyncRequest();
+ }
+
+ /// <summary>
+ /// 闄勪欢涓婁紶 閫傜敤浜� 8.0 浠ヤ笂鐗堟湰
/// </summary>
/// <param name="formId"></param>
/// <param name="content"></param>
--
Gitblit v1.9.1