星空对接接口开发:修复接口传参逻辑
This commit is contained in:
parent
6204f2e621
commit
4429894cd7
|
@ -133,7 +133,7 @@ public class ApiTask {
|
||||||
try {
|
try {
|
||||||
for (SysDictData sysDictData : oaFormid) {
|
for (SysDictData sysDictData : oaFormid) {
|
||||||
String dictValue = sysDictData.getDictValue();
|
String dictValue = sysDictData.getDictValue();
|
||||||
if ( !("SAL_DELIVERYNOTICE".equals(dictValue) && "PUR_ReceiveBill".equals(dictValue)) ) continue;
|
if ( (!"SAL_DELIVERYNOTICE".equals(dictValue)) && (!"PUR_ReceiveBill".equals(dictValue)) ) continue;
|
||||||
String oaData = getOAData(dictValue);
|
String oaData = getOAData(dictValue);
|
||||||
if (oaData != null && !oaData.isEmpty()){
|
if (oaData != null && !oaData.isEmpty()){
|
||||||
if (oaData.contains("ErrorCode")){
|
if (oaData.contains("ErrorCode")){
|
||||||
|
|
Loading…
Reference in New Issue