|
@@ -354,7 +354,7 @@ public class DeltBusnesDcmentsImpl {
|
|
|
public String DltSc_order(JSONObject json) throws BusinessException {
|
|
|
String vbillcode = json.getString("vbillcode"); //删除的单据号
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());//指定集团pk
|
|
|
- String sql = "select pk_order from sc_order where vdef1='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ String sql = "select pk_order from sc_order where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
SCOrderHeaderVO sCOrderHeaderVO = (SCOrderHeaderVO) iuap.executeQuery(sql, new BeanProcessor(SCOrderHeaderVO.class));
|
|
|
if(sCOrderHeaderVO == null) {
|
|
|
throw new BusinessException("委外订单编号:" + vbillcode + "不存在!");
|
|
@@ -374,7 +374,7 @@ public class DeltBusnesDcmentsImpl {
|
|
|
public String DltMaterial(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());//指定集团pk
|
|
|
String vbillcode = json.getString("vbillcode"); //删除的单据号
|
|
|
- String sql = "select cgeneralhid from ic_material_h where vdef1='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ String sql = "select cgeneralhid from ic_material_h where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
MaterialOutHeadVO materialOutHeadVO = (MaterialOutHeadVO) iuap.executeQuery(sql, new BeanProcessor(MaterialOutHeadVO.class));
|
|
|
if(materialOutHeadVO == null) {
|
|
|
throw new BusinessException("材料出库编号:" + vbillcode + "不存在!");
|
|
@@ -393,7 +393,7 @@ public class DeltBusnesDcmentsImpl {
|
|
|
public String DltSubcontin(JSONObject json) throws BusinessException {
|
|
|
InvocationInfoProxy.getInstance().setGroupId(QueryGroup());//指定集团pk
|
|
|
String vbillcode = json.getString("vbillcode"); //删除的单据号
|
|
|
- String sql = "select cgeneralhid from ic_subcontin_h where vdef1='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
+ String sql = "select cgeneralhid from ic_subcontin_h where vbillcode ='"+vbillcode+"' and nvl(dr,0)=0";
|
|
|
SubcontInHeadVO subcontInHeadVO = (SubcontInHeadVO) iuap.executeQuery(sql, new BeanProcessor(SubcontInHeadVO.class));
|
|
|
if(subcontInHeadVO == null) {
|
|
|
throw new BusinessException("委托加工入库编号:" + vbillcode + "不存在!");
|