|
@@ -1,5 +1,7 @@
|
|
|
package nc.impl.xh.api;
|
|
|
|
|
|
+import java.util.ArrayList;
|
|
|
+
|
|
|
import nc.bs.framework.common.InvocationInfoProxy;
|
|
|
import nc.bs.framework.common.NCLocator;
|
|
|
import nc.itf.ic.m45.self.IPurchaseInMaintain;
|
|
@@ -89,18 +91,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltIc_purchasein(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("采购入库单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from ic_purchasein_h where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- PurchaseInVO purchaseInVO = (PurchaseInVO)iuap.executeQuery(sql, new BeanProcessor(PurchaseInVO.class));
|
|
|
- if(purchaseInVO == null) {
|
|
|
+ String sql="vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<PurchaseInVO> purchaseInVO = (ArrayList<PurchaseInVO>) service.queryBillOfVOByCond(PurchaseInVO.class,sql,true,false);
|
|
|
+ if(purchaseInVO.size()==0) {
|
|
|
throw new BusinessException("采购入库单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ((IPurchaseInMaintain) NCLocator.getInstance().lookup(IPurchaseInMaintain.class)).delete(new PurchaseInVO[] {purchaseInVO});
|
|
|
+ ((IPurchaseInMaintain) NCLocator.getInstance().lookup(IPurchaseInMaintain.class)).delete(new PurchaseInVO[] {purchaseInVO.get(0)});
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|
|
@@ -109,18 +112,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltIc_saleout(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("销售出库单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from ic_saleout_h where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- SaleOutVO saleOutVO = (SaleOutVO)iuap.executeQuery(sql, new BeanProcessor(SaleOutVO.class));
|
|
|
- if(saleOutVO == null) {
|
|
|
+ String sql="vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<SaleOutVO> saleOutVO = (ArrayList<SaleOutVO>) service.queryBillOfVOByCond(SaleOutVO.class,sql,true,false);
|
|
|
+ if(saleOutVO.size()==0) {
|
|
|
throw new BusinessException("销售出库单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ((ISaleOutMaintain)NCLocator.getInstance().lookup(ISaleOutMaintain.class)).delete(new SaleOutVO[] {saleOutVO});
|
|
|
+ ((ISaleOutMaintain)NCLocator.getInstance().lookup(ISaleOutMaintain.class)).delete(new SaleOutVO[] {saleOutVO.get(0)});
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|
|
@@ -129,18 +133,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltIc_transform(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("形态转换单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from ic_transform_h where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- TransformVO transformVO = (TransformVO)iuap.executeQuery(sql, new BeanProcessor(TransformVO.class));
|
|
|
- if(transformVO == null) {
|
|
|
+ String sql="vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<TransformVO> transformVO = (ArrayList<TransformVO>) service.queryBillOfVOByCond(TransformVO.class,sql,true,false);
|
|
|
+ if(transformVO.size()==0) {
|
|
|
throw new BusinessException("形态转换单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ((ITransformMaitain)NCLocator.getInstance().lookup(ITransformMaitain.class)).delete(new TransformVO[] {transformVO});
|
|
|
+ ((ITransformMaitain)NCLocator.getInstance().lookup(ITransformMaitain.class)).delete(new TransformVO[] {transformVO.get(0)});
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|
|
@@ -149,18 +154,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltIc_whstrans(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("转库单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from ic_whstrans_h where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- WhsTransBillVO whsTransBillVO = (WhsTransBillVO)iuap.executeQuery(sql, new BeanProcessor(WhsTransBillVO.class));
|
|
|
- if(whsTransBillVO == null) {
|
|
|
+ String sql="vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<WhsTransBillVO> whsTransBillVO = (ArrayList<WhsTransBillVO>) service.queryBillOfVOByCond(WhsTransBillVO.class,sql,true,false);
|
|
|
+ if(whsTransBillVO.size()==0) {
|
|
|
throw new BusinessException("转库单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ((IWhsTransMaintain)NCLocator.getInstance().lookup(IWhsTransMaintain.class)).delete(new WhsTransBillVO[] {whsTransBillVO});
|
|
|
+ ((IWhsTransMaintain)NCLocator.getInstance().lookup(IWhsTransMaintain.class)).delete(new WhsTransBillVO[] {whsTransBillVO.get(0)});
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|
|
@@ -169,18 +175,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltIc_material(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("材料出库单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from ic_material_h where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- MaterialOutVO materialOutVO = (MaterialOutVO)iuap.executeQuery(sql, new BeanProcessor(MaterialOutVO.class));
|
|
|
- if(materialOutVO == null) {
|
|
|
+ String sql="vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<MaterialOutVO> materialOutVO = (ArrayList<MaterialOutVO>) service.queryBillOfVOByCond(MaterialOutVO.class,sql,true,false);
|
|
|
+ if(materialOutVO.size()==0) {
|
|
|
throw new BusinessException("材料出库单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ((IMaterialOutMaintain)NCLocator.getInstance().lookup(IMaterialOutMaintain.class)).delete(new MaterialOutVO[] {materialOutVO});
|
|
|
+ ((IMaterialOutMaintain)NCLocator.getInstance().lookup(IMaterialOutMaintain.class)).delete(new MaterialOutVO[] {materialOutVO.get(0)});
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|
|
@@ -189,18 +196,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltIc_generalin(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("其他入库单单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from ic_generalin_h where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- GeneralInVO generalInVO = (GeneralInVO)iuap.executeQuery(sql, new BeanProcessor(GeneralInVO.class));
|
|
|
- if(generalInVO == null) {
|
|
|
+ String sql="vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<GeneralInVO> generalInVO = (ArrayList<GeneralInVO>) service.queryBillOfVOByCond(GeneralInVO.class,sql,true,false);
|
|
|
+ if(generalInVO.size()==0) {
|
|
|
throw new BusinessException("其他入库单单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ((IGeneralInMaintain)NCLocator.getInstance().lookup(IGeneralInMaintain.class)).delete(new GeneralInVO[] {generalInVO});
|
|
|
+ ((IGeneralInMaintain)NCLocator.getInstance().lookup(IGeneralInMaintain.class)).delete(new GeneralInVO[] {generalInVO.get(0)});
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|
|
@@ -209,18 +217,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltIc_generalout(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("其他出库单单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from ic_generalout_h where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- GeneralOutVO generalOutVO = (GeneralOutVO)iuap.executeQuery(sql, new BeanProcessor(GeneralOutVO.class));
|
|
|
- if(generalOutVO == null) {
|
|
|
+ String sql="vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<GeneralOutVO> generalOutVO = (ArrayList<GeneralOutVO>) service.queryBillOfVOByCond(GeneralOutVO.class,sql,true,false);
|
|
|
+ if(generalOutVO.size()==0) {
|
|
|
throw new BusinessException("其他出库单单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ((IGeneralOutMaintain)NCLocator.getInstance().lookup(IGeneralOutMaintain.class)).delete(new GeneralOutVO[] {generalOutVO});
|
|
|
+ ((IGeneralOutMaintain)NCLocator.getInstance().lookup(IGeneralOutMaintain.class)).delete(new GeneralOutVO[] {generalOutVO.get(0)});
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|
|
@@ -229,18 +238,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltAr_gatheritemExpected(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("收款单单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from ar_gatherbill where billno ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- AggGatheringBillVO aggGatheringBillVO = (AggGatheringBillVO)iuap.executeQuery(sql, new BeanProcessor(AggGatheringBillVO.class));
|
|
|
- if(aggGatheringBillVO == null) {
|
|
|
+ String sql="billno ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<AggGatheringBillVO> aggGatheringBillVO = (ArrayList<AggGatheringBillVO>) service.queryBillOfVOByCond(AggGatheringBillVO.class,sql,true,false);
|
|
|
+ if(aggGatheringBillVO.size()==0) {
|
|
|
throw new BusinessException("收款单单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ipf.processAction("DELETE", "F2", Workflownote, aggGatheringBillVO, null, null);
|
|
|
+ ipf.processAction("DELETE", "F2", Workflownote, aggGatheringBillVO.get(0), null, null);
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|
|
@@ -249,18 +259,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltAr_gatheritem(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("收款单单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from ar_gatherbill where billno ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- AggGatheringBillVO aggGatheringBillVO = (AggGatheringBillVO)iuap.executeQuery(sql, new BeanProcessor(AggGatheringBillVO.class));
|
|
|
- if(aggGatheringBillVO == null) {
|
|
|
+ String sql="billno ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<AggGatheringBillVO> aggGatheringBillVO = (ArrayList<AggGatheringBillVO>) service.queryBillOfVOByCond(AggGatheringBillVO.class,sql,true,false);
|
|
|
+ if(aggGatheringBillVO.size()==0) {
|
|
|
throw new BusinessException("收款单单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ipf.processAction("DELETE", "F2", Workflownote, aggGatheringBillVO, null, null);
|
|
|
+ ipf.processAction("DELETE", "F2", Workflownote, aggGatheringBillVO.get(0), null, null);
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|
|
@@ -269,18 +280,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltMm_pmo(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("生产订单单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from mm_pmo where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- PMOAggVO pmoAggVO = (PMOAggVO)iuap.executeQuery(sql, new BeanProcessor(PMOAggVO.class));
|
|
|
- if(pmoAggVO == null) {
|
|
|
+ String sql="vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<PMOAggVO> pmoAggVO = (ArrayList<PMOAggVO>) service.queryBillOfVOByCond(PMOAggVO.class,sql,true,false);
|
|
|
+ if(pmoAggVO.size()==0) {
|
|
|
throw new BusinessException("生产订单单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ((IPMOMaintainService)NCLocator.getInstance().lookup(IPMOMaintainService.class)).delete(new PMOAggVO[] {pmoAggVO});
|
|
|
+ ((IPMOMaintainService)NCLocator.getInstance().lookup(IPMOMaintainService.class)).delete(new PMOAggVO[] {pmoAggVO.get(0)});
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|
|
@@ -289,18 +301,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltIc_materialget(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("材料出库单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from ic_material_h where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- MaterialOutVO materialOutVO = (MaterialOutVO)iuap.executeQuery(sql, new BeanProcessor(MaterialOutVO.class));
|
|
|
- if(materialOutVO == null) {
|
|
|
+ String sql="vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<MaterialOutVO> materialOutVO = (ArrayList<MaterialOutVO>) service.queryBillOfVOByCond(MaterialOutVO.class,sql,true,false);
|
|
|
+ if(materialOutVO.size()==0) {
|
|
|
throw new BusinessException("材料出库单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ((IMaterialOutMaintain)NCLocator.getInstance().lookup(IMaterialOutMaintain.class)).delete(new MaterialOutVO[] {materialOutVO});
|
|
|
+ ((IMaterialOutMaintain)NCLocator.getInstance().lookup(IMaterialOutMaintain.class)).delete(new MaterialOutVO[] {materialOutVO.get(0)});
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|
|
@@ -309,18 +322,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltIc_materialout(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("材料出库单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from ic_material_h where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- MaterialOutVO materialOutVO = (MaterialOutVO)iuap.executeQuery(sql, new BeanProcessor(MaterialOutVO.class));
|
|
|
- if(materialOutVO == null) {
|
|
|
+ String sql="vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<MaterialOutVO> materialOutVO = (ArrayList<MaterialOutVO>) service.queryBillOfVOByCond(MaterialOutVO.class,sql,true,false);
|
|
|
+ if(materialOutVO.size()==0) {
|
|
|
throw new BusinessException("材料出库单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ((IMaterialOutMaintain)NCLocator.getInstance().lookup(IMaterialOutMaintain.class)).delete(new MaterialOutVO[] {materialOutVO});
|
|
|
+ ((IMaterialOutMaintain)NCLocator.getInstance().lookup(IMaterialOutMaintain.class)).delete(new MaterialOutVO[] {materialOutVO.get(0)});
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|
|
@@ -329,18 +343,19 @@ public class DeltBusnesDcmentsImpl {
|
|
|
* @author LP
|
|
|
* @throws BusinessException
|
|
|
*/
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
public String DltIc_finprodin(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());
|
|
|
String vbillcode = json.getString("vbillcode");
|
|
|
if (vbillcode==null) {
|
|
|
throw new BusinessException("产成品入库单单据号是必输项!");
|
|
|
}
|
|
|
- String sql="select * from ic_finprodin_h where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
- FinProdInVO finProdInVO = (FinProdInVO)iuap.executeQuery(sql, new BeanProcessor(FinProdInVO.class));
|
|
|
- if(finProdInVO == null) {
|
|
|
+ String sql="vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ ArrayList<FinProdInVO> finProdInVO = (ArrayList<FinProdInVO>) service.queryBillOfVOByCond(FinProdInVO.class,sql,true,false);
|
|
|
+ if(finProdInVO.size()==0) {
|
|
|
throw new BusinessException("产成品入库单单据号:" + vbillcode + "不存在!");
|
|
|
}
|
|
|
- ((IProductInMaitain)NCLocator.getInstance().lookup(IProductInMaitain.class)).delete(new FinProdInVO[] {finProdInVO});
|
|
|
+ ((IProductInMaitain)NCLocator.getInstance().lookup(IProductInMaitain.class)).delete(new FinProdInVO[] {finProdInVO.get(0)});
|
|
|
return vbillcode;
|
|
|
}
|
|
|
|