Advertisement
tko_pb

OrderActionHandler2

Aug 13th, 2018
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5.07 KB | None | 0 0
  1. package org.wirabumi.gen.oez.porting;
  2.  
  3. import java.sql.SQLException;
  4. import java.util.List;
  5.  
  6. import org.openbravo.base.exception.OBException;
  7. import org.openbravo.base.model.Entity;
  8. import org.openbravo.base.secureApp.VariablesSecureApp;
  9. import org.openbravo.dal.service.OBDal;
  10. import org.openbravo.database.ConnectionProvider;
  11. import org.openbravo.erpCommon.utility.OBError;
  12. import org.openbravo.erpCommon.utility.Utility;
  13. import org.openbravo.model.common.order.Order;
  14. import org.openbravo.service.db.DalConnectionProvider;
  15. import org.wirabumi.gen.oez.event.DocumentRoutingHandlerAction;
  16. import org.openbravo.model.ad.ui.Tab;
  17.  
  18.  
  19.  
  20. public class OrderActionHandler extends DocumentRoutingHandlerAction {
  21.     private final String reactiveStatus="RE";
  22.     private final String completeStatus="CO";
  23.     private final String draftStatus="DR";
  24.     private final String closedStatus="CL";
  25.     private final String voidStatus="VO";
  26.     private final String orderProcessID="104";
  27.     private final String waitingRelease1="oez_waitingrelease1";
  28.     private final String waitingRelease2="oez_waitingrelease2";
  29.     private final String waitingRelease3="oez_waitingrelease3";
  30.     private final String waitingRelease4="oez_waitingrelease4";
  31.     private final String waitingRelease5="oez_waitingrelease5";
  32.  
  33.     @Override
  34.     public void doRouting(String adWindowId, String adTabId,
  35.             String doc_status_to, VariablesSecureApp vars, List<String> recordId) {
  36.  
  37.         final ConnectionProvider conn = new DalConnectionProvider();
  38.  
  39.         //berlaku untuk doComplete, doReactive, doClose, dan doVoid
  40.  
  41.         for (String orderID : recordId){
  42.  
  43.             Order order = OBDal.getInstance().get(Order.class, orderID);
  44.             String docstatus=order.getDocumentStatus();
  45.             String docaction=order.getDocumentAction();
  46.             String doc_status = order.getDocumentStatus();
  47.            
  48.             switch(doc_status_to) {
  49.             case "CO" :
  50.             {
  51.                 //cek apakah dari CL atau VO, jika ya, maka exception
  52.                 if (order.getDocumentStatus().equalsIgnoreCase(closedStatus)||
  53.                         order.getDocumentStatus().equalsIgnoreCase(voidStatus))
  54.                     throw new OBException("@ActionNotAllowedHere@");
  55.  
  56.                 //ubdah dulu docstatus menjadi DR, baru di complete
  57.                 order.setDocumentStatus(draftStatus);
  58.                 order.setDocumentAction(doc_status_to);
  59.             break;
  60.             }
  61.             case "VO":
  62.             case "CL":
  63.             case "RE":
  64.                 {
  65.                     switch (doc_status) {
  66.                     case "oez_waitingrelease1":
  67.                     case "oez_waitingrelease2":
  68.                     case "oez_waitingrelease3":
  69.                     case "oez_waitingrelease4":
  70.                     case "oez_waitingrelease5":
  71.                         order.setDocumentStatus(draftStatus);
  72.                         break;
  73.                     }
  74.                     //cek apakah doc status adalah CO, jika tidak maka exception
  75.                     if (!order.getDocumentStatus().equalsIgnoreCase(completeStatus))
  76.                         throw new OBException("@ActionNotAllowedHere@");
  77.                 }
  78.             order.setDocumentAction(doc_status_to);
  79.             break;
  80.             }
  81.  
  82.             OBDal.getInstance().save(order);
  83.             try {
  84.                 OBDal.getInstance().getConnection().commit();
  85.             } catch (SQLException e) {
  86.                 e.printStackTrace();
  87.                 throw new OBException(e.getMessage());
  88.             }
  89.  
  90.             try{
  91.                 OBError oberror = doExecuteProcedureCall(orderID, orderProcessID);
  92.                 if (oberror.getType().equalsIgnoreCase("Error")){
  93.                     String message = oberror.getMessage();
  94.                     //                  message = message.substring(8, message.length()-1);
  95.                     String convertedMessage = Utility.messageBD(conn, message, vars.getLanguage());
  96.                     throw new OBException(convertedMessage);
  97.                 }
  98.  
  99.             }
  100.             catch (OBException e){
  101.                 //exception happen, rollback doc status
  102.                 order.setDocumentStatus(docstatus);
  103.                 order.setDocumentAction(docaction);
  104.                 OBDal.getInstance().save(order);
  105.                 try {
  106.                     OBDal.getInstance().getConnection().commit();
  107.                 } catch (SQLException e2) {
  108.                     e.printStackTrace();
  109.                     throw new OBException(e.getMessage());
  110.                 }
  111.  
  112.                 //throw chain exception
  113.                 e.printStackTrace();
  114.                 throw new OBException(e.getMessage());
  115.             }
  116.  
  117.             OBDal.getInstance().refresh(order);
  118.             docstatus=order.getDocumentStatus();
  119.             boolean processed = order.isProcessed();
  120.             if (processed && !docstatus.equalsIgnoreCase(completeStatus) && doc_status_to.equalsIgnoreCase(completeStatus)){
  121.                 //terproses tapi doc status masih draft
  122.                 //maka ubah docstatus menjadi complete
  123.                 order.setDocumentStatus(doc_status_to);
  124.                 OBDal.getInstance().save(order);
  125.                 try {https://pastebin.com/EMhW1Cfv
  126.                     OBDal.getInstance().getConnection().commit();
  127.                 } catch (SQLException e) {
  128.                     e.printStackTrace();
  129.                     throw new OBException(e.getMessage());
  130.                 }
  131.             }
  132.  
  133.         }
  134.  
  135.     }
  136.  
  137.     @Override
  138.     public String getCoDocumentNo(String recordID, Tab tab) {
  139.         // TODO sementara null dulu
  140.         return null;
  141.     }
  142.  
  143.     @Override
  144.     public Boolean updateDocumentStatus(Entity entity,  List<String> RecordId, String document_status_to,String column){
  145.         if (document_status_to.equalsIgnoreCase(completeStatus)||
  146.                 document_status_to.equalsIgnoreCase(reactiveStatus)||
  147.                 document_status_to.equalsIgnoreCase(closedStatus)||
  148.                 document_status_to.equalsIgnoreCase(voidStatus))
  149.             return true;
  150.         else
  151.             return super.updateDocumentStatus(entity, RecordId, document_status_to, column);
  152.  
  153.     }
  154. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement