丽知:update
This commit is contained in:
parent
3000fecb14
commit
366ccb7812
|
@ -10,10 +10,12 @@ import com.hzya.frame.base.PluginBaseEntity;
|
|||
import com.hzya.frame.plugin.lets.constant.OverallConstant;
|
||||
import com.hzya.frame.plugin.lets.constant.ProfilesActiveConstant;
|
||||
import com.hzya.frame.plugin.lets.dao.IBdRdclDao;
|
||||
import com.hzya.frame.plugin.lets.dao.IBdSetpartDao;
|
||||
import com.hzya.frame.plugin.lets.ofsvo.QueryOfsAdjustOrderRequestVO;
|
||||
import com.hzya.frame.plugin.lets.ofsvo.QueryOfsStockinOrderRequestVO;
|
||||
import com.hzya.frame.plugin.lets.u8cdto.GeneralBillVO_4ADto;
|
||||
import com.hzya.frame.plugin.lets.u8cdto.ReusltStrDto;
|
||||
import com.hzya.frame.plugin.lets.u8cdto.SpecialbillVO;
|
||||
import com.hzya.frame.plugin.lets.util.PushDataByU8cUtil;
|
||||
import com.hzya.frame.plugin.lets.util.SaveOrUpdateBusinessLogUtil;
|
||||
import com.hzya.frame.plugin.lets.util.pushData.Attribute;
|
||||
|
@ -90,6 +92,8 @@ public class AdjustInZZPluginInitializer extends PluginBaseEntity {
|
|||
|
||||
@Autowired
|
||||
private IBdRdclDao iBdRdclDao;
|
||||
@Autowired
|
||||
private IBdSetpartDao bdSetpartDao;
|
||||
|
||||
@Override
|
||||
public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
|
||||
|
@ -276,16 +280,27 @@ public class AdjustInZZPluginInitializer extends PluginBaseEntity {
|
|||
String ofsCode = "";
|
||||
try {
|
||||
//主表
|
||||
SpecialbillVO specialbillVO = new SpecialbillVO();
|
||||
SpecialbillVO.Parentvo parentvo = new SpecialbillVO.Parentvo();
|
||||
|
||||
//pk_corp 公司
|
||||
//dbilldate 单据日期
|
||||
//coperatorid 制单人
|
||||
//cinwarehouseid 入库仓库(审批,3.6及上版本支持)
|
||||
|
||||
|
||||
|
||||
|
||||
//子表
|
||||
List<SpecialbillVO.Childrenvo> childrenvo =new ArrayList<>();
|
||||
SpecialbillVO.Childrenvo children = new SpecialbillVO.Childrenvo();
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// String dataJson = JSONUtil.toJsonStr(generalBillVO_4A);
|
||||
// mapStr = "{\"GeneralBillVO_4A\":[" + dataJson + "]}";
|
||||
String dataJson = JSONUtil.toJsonStr(specialbillVO);
|
||||
mapStr = "{\"specialbillvo\":[" + dataJson + "]}";
|
||||
|
||||
//推送
|
||||
// ZTResult ztResult = pushU8CByApiCode.pushByCode(OverallConstant.getOverAllValue("special4lSaveCode"), mapStr);
|
||||
|
|
Loading…
Reference in New Issue