parent
dce615180c
commit
bfb2d12013
|
@ -573,6 +573,10 @@ public class ApiService {
|
||||||
} else {
|
} else {
|
||||||
value = "";
|
value = "";
|
||||||
}
|
}
|
||||||
|
} else if ("associatedflownumber".equals(parts[0])) {
|
||||||
|
String receiptno = billObject.getString("receiptno");
|
||||||
|
DynamicObject[] dynamicObjects = BusinessDataServiceHelper.load("bei_transdetail_cas", "id,billno,receiptno", new QFilter("receiptno", QCP.equals, receiptno).toArray());
|
||||||
|
value = dynamicObjects[0].getString("billno");
|
||||||
} else {
|
} else {
|
||||||
value = billObject.get(parts[0]);
|
value = billObject.get(parts[0]);
|
||||||
}
|
}
|
||||||
|
@ -1036,6 +1040,7 @@ public class ApiService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 构建星空K3CloudApi对象
|
* 构建星空K3CloudApi对象
|
||||||
|
*
|
||||||
* @param dataEntity
|
* @param dataEntity
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
@ -1052,6 +1057,7 @@ public class ApiService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询星空收付款单(司库推送星空)
|
* 查询星空收付款单(司库推送星空)
|
||||||
|
*
|
||||||
* @param dataEntity API映射元数据对象
|
* @param dataEntity API映射元数据对象
|
||||||
* @param billMark 单据类型(收、付、上划、下拨)
|
* @param billMark 单据类型(收、付、上划、下拨)
|
||||||
* @param billNumber 单据编码(星瀚单据编码)
|
* @param billNumber 单据编码(星瀚单据编码)
|
||||||
|
@ -1101,6 +1107,7 @@ public class ApiService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询星空收付款单(星空推送司库)
|
* 查询星空收付款单(星空推送司库)
|
||||||
|
*
|
||||||
* @param dataEntity API映射元数据对象
|
* @param dataEntity API映射元数据对象
|
||||||
* @param billMark 单据类型(收、付、上划、下拨)
|
* @param billMark 单据类型(收、付、上划、下拨)
|
||||||
* @param billNumber 推送单据编码(星空单据编码)
|
* @param billNumber 推送单据编码(星空单据编码)
|
||||||
|
@ -1149,6 +1156,7 @@ public class ApiService {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 推送星空单据附件(测试推送附件 → 此附件为API映射元数据的单据附件)
|
* 推送星空单据附件(测试推送附件 → 此附件为API映射元数据的单据附件)
|
||||||
|
*
|
||||||
* @param dataEntity API映射元数据对象
|
* @param dataEntity API映射元数据对象
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue