|
@@ -15,6 +15,7 @@ import nc.bs.framework.common.InvocationInfoProxy;
|
|
|
import nc.bs.framework.common.NCLocator;
|
|
|
import nc.bs.framework.server.ISecurityTokenCallback;
|
|
|
import nc.bs.servlet.service.BaseServlet;
|
|
|
+import nc.bs.yp.plugin.DataSourceUtil;
|
|
|
import nc.itf.so.m4331.IDeliveryAssitFunc;
|
|
|
import nc.itf.uap.IUAPQueryBS;
|
|
|
import nc.jdbc.framework.processor.ColumnProcessor;
|
|
@@ -27,6 +28,11 @@ import nc.vo.so.m4331.entity.DeliveryVO;
|
|
|
import nc.vo.so.pub.SOParameterVO;
|
|
|
import net.sf.json.JSONObject;
|
|
|
|
|
|
+/**
|
|
|
+ *
|
|
|
+ * ·¢»õµ¥¹Ø±Õ
|
|
|
+ *
|
|
|
+ */
|
|
|
public class DeliveryCloseImpl extends BaseServlet implements IHttpServletAdaptor{
|
|
|
|
|
|
IUAPQueryBS iuap= (IUAPQueryBS) NCLocator.getInstance().lookup(IUAPQueryBS.class.getName());
|
|
@@ -36,10 +42,10 @@ public class DeliveryCloseImpl extends BaseServlet implements IHttpServletAdapto
|
|
|
@Override
|
|
|
public void doAction(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
|
|
|
// TODO Auto-generated method stub
|
|
|
- InvocationInfoProxy.getInstance().setUserDataSource("sypnctest");
|
|
|
- pk_group = this.qryGroup();
|
|
|
- InvocationInfoProxy.getInstance().setGroupId(pk_group);
|
|
|
- NCLocator.getInstance().lookup(ISecurityTokenCallback.class).token("NCSystem".getBytes(),"pfxx".getBytes());
|
|
|
+// InvocationInfoProxy.getInstance().setUserDataSource("sypnctest");
|
|
|
+// pk_group = this.qryGroup();
|
|
|
+// InvocationInfoProxy.getInstance().setGroupId(pk_group);
|
|
|
+// NCLocator.getInstance().lookup(ISecurityTokenCallback.class).token("NCSystem".getBytes(),"pfxx".getBytes());
|
|
|
String createStr = buildJson(req, resp, this.getClass().getName());
|
|
|
JSONObject json = JSONObject.fromObject(createStr);
|
|
|
String vbillcode = "";
|
|
@@ -47,6 +53,10 @@ public class DeliveryCloseImpl extends BaseServlet implements IHttpServletAdapto
|
|
|
PrintWriter out = resp.getWriter();
|
|
|
vbillcode = json.getString("vbillcode");
|
|
|
try {
|
|
|
+ DataSourceUtil.setDataSource();//ÉèÖÃÊý¾ÝÔ´
|
|
|
+ pk_group = this.qryGroup();
|
|
|
+ InvocationInfoProxy.getInstance().setGroupId(pk_group);
|
|
|
+ NCLocator.getInstance().lookup(ISecurityTokenCallback.class).token("NCSystem".getBytes(),"pfxx".getBytes());
|
|
|
checkJson(json);
|
|
|
String qrysql = "select cdeliveryid from so_delivery where nvl(dr,0)=0 and vbillcode = '"+vbillcode+"'";
|
|
|
cdeliveryid = iuap.executeQuery(qrysql, new ColumnProcessor());
|