|
|
|
@ -10,15 +10,12 @@ import com.op.common.core.utils.StringUtils;
|
|
|
|
|
import com.op.common.core.utils.bean.BeanValidators;
|
|
|
|
|
import com.op.common.core.utils.uuid.IdUtils;
|
|
|
|
|
import com.op.common.security.utils.SecurityUtils;
|
|
|
|
|
import com.op.system.api.domain.sap.SapWBDemand;
|
|
|
|
|
import com.op.system.api.domain.sap.*;
|
|
|
|
|
import com.op.system.api.domain.quality.QcCheckTaskIncomeDTO;
|
|
|
|
|
import com.op.system.api.domain.sap.SapBackflushMPQuery;
|
|
|
|
|
import com.op.sap.domain.vo.SapItemQuery;
|
|
|
|
|
import com.op.system.api.domain.sap.SapMaterialPosting;
|
|
|
|
|
import com.op.sap.mapper.SapBaseProductMapper;
|
|
|
|
|
import com.op.sap.service.SapItemSyncService;
|
|
|
|
|
import com.op.system.api.RemoteUserService;
|
|
|
|
|
import com.op.system.api.domain.sap.SapBaseProduct;
|
|
|
|
|
import com.sap.conn.jco.*;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
@ -1213,4 +1210,104 @@ public class SapItemSyncImpl implements SapItemSyncService {
|
|
|
|
|
return R.fail(e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public R ObtainSapInventory(SapZmesGetMchb sapZmesGetMchb) {
|
|
|
|
|
try {
|
|
|
|
|
JCoRepository repository = dest.getRepository();
|
|
|
|
|
JCoFunction func = repository.getFunction("ZMES_GET_MCHB");
|
|
|
|
|
if (func == null) {
|
|
|
|
|
throw new RuntimeException("Function does not exist in SAP");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log.info("sapZmesGetMchb:-------" + sapZmesGetMchb.toString());
|
|
|
|
|
//物料号
|
|
|
|
|
JCoTable S_MATNR = func.getTableParameterList().getTable("S_MATNR");
|
|
|
|
|
//工厂
|
|
|
|
|
JCoTable S_WERKS = func.getTableParameterList().getTable("S_WERKS");
|
|
|
|
|
//库位
|
|
|
|
|
JCoTable S_LGORT = func.getTableParameterList().getTable("S_LGORT");
|
|
|
|
|
//批次
|
|
|
|
|
JCoTable S_CHARG = func.getTableParameterList().getTable("S_CHARG");
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// //物料号
|
|
|
|
|
// String S_MATNR = sapZmesGetMchb.getS_MATNR();//物料
|
|
|
|
|
// //工厂
|
|
|
|
|
// String S_WERKS =sapZmesGetMchb.getS_WERKS();//工厂
|
|
|
|
|
// //库位
|
|
|
|
|
// String S_LGORT = sapZmesGetMchb.getS_LGORT();//库位
|
|
|
|
|
// //批次
|
|
|
|
|
// String S_CHARG = sapZmesGetMchb.getS_CHARG();//批次
|
|
|
|
|
if (StringUtils.isNotEmpty(sapZmesGetMchb.getS_MATNR())){
|
|
|
|
|
S_MATNR.appendRow();
|
|
|
|
|
S_MATNR.setValue(Constants.SIGN, "I");
|
|
|
|
|
S_MATNR.setValue(Constants.OPTION, "BT");
|
|
|
|
|
S_MATNR.setValue(Constants.LOW, sapZmesGetMchb.getS_MATNR());
|
|
|
|
|
S_MATNR.setValue(Constants.HIGH, sapZmesGetMchb.getS_MATNR());
|
|
|
|
|
}
|
|
|
|
|
if (StringUtils.isNotEmpty(sapZmesGetMchb.getS_WERKS())){
|
|
|
|
|
S_WERKS.appendRow();
|
|
|
|
|
S_WERKS.setValue(Constants.SIGN, "I");
|
|
|
|
|
S_WERKS.setValue(Constants.OPTION, "BT");
|
|
|
|
|
S_WERKS.setValue(Constants.LOW, sapZmesGetMchb.getS_WERKS());
|
|
|
|
|
S_WERKS.setValue(Constants.HIGH, sapZmesGetMchb.getS_WERKS());
|
|
|
|
|
}
|
|
|
|
|
if (StringUtils.isNotEmpty(sapZmesGetMchb.getS_LGORT())){
|
|
|
|
|
S_LGORT.appendRow();
|
|
|
|
|
S_LGORT.setValue(Constants.SIGN, "I");
|
|
|
|
|
S_LGORT.setValue(Constants.OPTION, "BT");
|
|
|
|
|
S_LGORT.setValue(Constants.LOW, sapZmesGetMchb.getS_LGORT());
|
|
|
|
|
S_LGORT.setValue(Constants.HIGH, sapZmesGetMchb.getS_LGORT());
|
|
|
|
|
}
|
|
|
|
|
if (StringUtils.isNotEmpty(sapZmesGetMchb.getS_CHARG())){
|
|
|
|
|
S_CHARG.appendRow();
|
|
|
|
|
S_CHARG.setValue(Constants.SIGN, "I");
|
|
|
|
|
S_CHARG.setValue(Constants.OPTION, "BT");
|
|
|
|
|
S_CHARG.setValue(Constants.LOW, sapZmesGetMchb.getS_CHARG());
|
|
|
|
|
S_CHARG.setValue(Constants.HIGH, sapZmesGetMchb.getS_CHARG());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func.execute(dest);//执行调用函数
|
|
|
|
|
JCoTable maraTable = func.getTableParameterList().getTable("LT_MCHB");
|
|
|
|
|
List<Map<String,String>> mapResult=new ArrayList<>();
|
|
|
|
|
for (int i = 0; i < maraTable.getNumRows(); i++) {
|
|
|
|
|
maraTable.setRow(i);
|
|
|
|
|
Map map=new HashMap();
|
|
|
|
|
String MATNR=maraTable.getString("MATNR");//物料号
|
|
|
|
|
String WERKS=maraTable.getString("WERKS");//工厂
|
|
|
|
|
String LGORT=maraTable.getString("LGORT");//库存地点
|
|
|
|
|
String CHARG=maraTable.getString("CHARG");//批号
|
|
|
|
|
String MAKTX=maraTable.getString("MAKTX");//物料描述
|
|
|
|
|
String MATKL=maraTable.getString("MATKL");//物料组
|
|
|
|
|
String MEINS=maraTable.getString("MEINS");//基本计量单位
|
|
|
|
|
String CLABS=maraTable.getString("CLABS");//非限制库存
|
|
|
|
|
String CINSM=maraTable.getString("CINSM");//质检库存
|
|
|
|
|
String CEINM=maraTable.getString("CEINM");//限制库存
|
|
|
|
|
String CSPEM=maraTable.getString("CSPEM");//冻结库存
|
|
|
|
|
|
|
|
|
|
log.info("物料号:"+MATNR+"工厂:"+WERKS+"库存地点:"+LGORT+"批号:"+CHARG+"物料描述:"+MAKTX+"物料组:"+MATKL+
|
|
|
|
|
"基本计量单位:"+MEINS+"非限制库存:"+CLABS+"质检库存:"+CINSM+"限制库存:"+CEINM+"冻结库存:"+CSPEM);
|
|
|
|
|
map.put("MATNR",MATNR);
|
|
|
|
|
map.put("MAKTX",MAKTX);
|
|
|
|
|
map.put("WERKS",WERKS);
|
|
|
|
|
map.put("LGORT",LGORT);
|
|
|
|
|
map.put("CHARG",CHARG);
|
|
|
|
|
map.put("MATKL",MATKL);
|
|
|
|
|
map.put("CLABS",CLABS);
|
|
|
|
|
map.put("CINSM",CINSM);
|
|
|
|
|
map.put("MEINS",MEINS);
|
|
|
|
|
map.put("CEINM",CEINM);
|
|
|
|
|
map.put("CSPEM",CSPEM);
|
|
|
|
|
mapResult.add(map);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return R.ok();
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error(e.getMessage());
|
|
|
|
|
return R.fail(e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|