Browse Source

删除优化

yaoyu 2 years ago
parent
commit
7dbc7898bd

+ 9 - 6
xh/xh/src/private/nc/bs/xh/servlet/XhDeleteApiServlet.java

@@ -15,6 +15,7 @@ import nc.bs.framework.common.NCLocator;
 import nc.bs.framework.server.ISecurityTokenCallback;
 import nc.bs.servlet.service.BaseServlet;
 import nc.impl.xh.report.inoutledger.InFactorDelegator;
+import nc.impl.xh.report.inoutledger.PathService;
 import nc.log.NcLog;
 
 /**
@@ -36,9 +37,10 @@ public class XhDeleteApiServlet extends BaseServlet implements IHttpServletAdapt
 				    ISecurityTokenCallback.class);
 			sc.token("NCSystem".getBytes(),"pfxx".getBytes());
 			
-			InFactorDelegator infdor=new InFactorDelegator();
-			Map<String,String> map=infdor.initDataBase();
-			String methodName=map.get(datatype);
+			//InFactorDelegator infdor=new InFactorDelegator();
+			//Map<String,String> map=infdor.initDataBase();
+			//String methodName=map.get(datatype);
+			String methodName = PathService.GetPath(datatype);
 			String className = "nc.impl.xh.api.DeltBusnesDcmentsImpl";
 			Class clz = Class.forName(className);
 			Object obj = clz.newInstance();	
@@ -47,14 +49,15 @@ public class XhDeleteApiServlet extends BaseServlet implements IHttpServletAdapt
 			resp.getWriter().write(formatRSJsonData("成功","",vbillcode).toString());
 			
 		} catch (Exception e) {
-			//前端控制台打印xml数据
-			resp.getWriter().write(formatRSJsonData("失败",
-					e.getCause().getMessage()==null?e.getCause().toString():e.getCause().getMessage(),"").toString());
 			StringWriter stringWriter = new StringWriter();
 			e.printStackTrace(new PrintWriter(stringWriter));
 			//获取详细信息
 			String msg=stringWriter.getBuffer().toString();
 			NcLog.info("接口返回值提示:"+msg);
+			//前端控制台打印xml数据
+			resp.getWriter().write(formatRSJsonData("失败",
+					e.getCause().getMessage()==null?e.getCause().toString():e.getCause().getMessage(),"").toString());
+			
 		}
 		
 	}

+ 3 - 3
xh/xh/src/private/nc/impl/xh/api/DeltBusnesDcmentsImpl.java

@@ -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 + "不存在!");

+ 33 - 0
xh/xh/src/private/nc/impl/xh/report/inoutledger/PathService.java

@@ -0,0 +1,33 @@
+package nc.impl.xh.report.inoutledger;
+
+import java.io.File;
+import java.io.FileInputStream;
+import java.util.Properties;
+
+import nc.bs.framework.common.RuntimeEnv;
+
+public  class PathService{
+
+	public static String GetPath(String mes){
+		String path = RuntimeEnv.getInstance().getNCHome()
+			      +File.separator + "ierp" + File.separator + "bin" + File.separator
+			      +"xh.properties"; //È¡µÃÅäÖ÷¾¶£º{NCHome}/ierp/bin/mes.properties
+			    String httpUrl = getProperties(path, mes);
+		return httpUrl;
+		
+	}
+	
+	public static String getProperties(String filePath, String keyWord) {
+		  String url=null;
+		  try{
+		   FileInputStream input = new FileInputStream(filePath);
+		   Properties properties = new Properties();
+		   properties.load(input);
+		   url = properties.getProperty(keyWord);
+		  }catch(Exception e){
+		   e.printStackTrace();
+		  }
+		  return url;
+		 }
+
+}