提交内容:推送BIP数据公共类代码修改

备注:调整整体代码逻辑,推送逻辑
提交人:邹江涛
This commit is contained in:
zoujiangtao 2024-12-10 15:24:43 +08:00
parent f0335a90a6
commit 500443fe00
2 changed files with 3 additions and 3 deletions

View File

@ -161,7 +161,7 @@ public class ApiService {
* 组装推送BIP付款单JSON
*
* @param dynamic 某个单据的 某条需要推送的数据 映射字段必须包含在其中缺失字段会报错
* @param systemName 推送系统名称
* @param systemName 推送系统标识
* @return
*/
public static String paymentSlipsJson(DynamicObject dynamic, String systemName) {
@ -169,7 +169,7 @@ public class ApiService {
String billMark = dynamic.getDataEntityType().getName();
DynamicObject[] objects = BusinessDataServiceHelper.load("shkd_apimapping", "id,billno," +
"shkd_name,shkd_sourcenumber,shkd_domainname,shkd_token,shkd_url,shkd_systemname," +
"shkd_name,shkd_sourcenumber,shkd_domainname,shkd_token,shkd_url," +
"shkd_sourcebill,shkd_targetsystem,entryentity,entryentity.shkd_tarfield,entryentity.shkd_tartier," +
"entryentity.shkd_tartype,entryentity.shkd_parentfield,entryentity.shkd_soufield,entryentity.shkd_defaultdata," +
"entryentity.shkd_required,entryentity.shkd_remarks",

View File

@ -108,7 +108,7 @@ public class ApiMappingBillPlugin extends AbstractFormPlugin implements Plugin {
}
if ("shkd_testapi".equals(itemKey)) {
String responseBody = ApiService.paymentSlipsJson(billObject, dataEntity.getString("shkd_systemname"));
String responseBody = ApiService.paymentSlipsJson(billObject, "BIP");
this.getView().showTipNotification("返回结果:" + responseBody);
}