Advertisement
tko_pb

orderActionHandler final TIKO 23 agustus

Aug 23rd, 2018
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5.02 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.                         return;
  72.                     }
  73.                     //cek apakah doc status adalah CO, jika tidak maka exception
  74.                     if (!order.getDocumentStatus().equalsIgnoreCase(completeStatus))
  75.                         throw new OBException("@ActionNotAllowedHere@");
  76.                 }
  77.             order.setDocumentAction(doc_status_to);
  78.             break;
  79.             }
  80.  
  81.             OBDal.getInstance().save(order);
  82.             try {
  83.                 OBDal.getInstance().getConnection().commit();
  84.             } catch (SQLException e) {
  85.                 e.printStackTrace();
  86.                 throw new OBException(e.getMessage());
  87.             }
  88.  
  89.             try{
  90.                 OBError oberror = doExecuteProcedureCall(orderID, orderProcessID);
  91.                 if (oberror.getType().equalsIgnoreCase("Error")){
  92.                     String message = oberror.getMessage();
  93.                     //                  message = message.substring(8, message.length()-1);
  94.                     String convertedMessage = Utility.messageBD(conn, message, vars.getLanguage());
  95.                     throw new OBException(convertedMessage);
  96.                 }
  97.  
  98.             }
  99.             catch (OBException e){
  100.                 //exception happen, rollback doc status
  101.                 order.setDocumentStatus(docstatus);
  102.                 order.setDocumentAction(docaction);
  103.                 OBDal.getInstance().save(order);
  104.                 try {
  105.                     OBDal.getInstance().getConnection().commit();
  106.                 } catch (SQLException e2) {
  107.                     e.printStackTrace();
  108.                     throw new OBException(e.getMessage());
  109.                 }
  110.  
  111.                 //throw chain exception
  112.                 e.printStackTrace();
  113.                 throw new OBException(e.getMessage());
  114.             }
  115.  
  116.             OBDal.getInstance().refresh(order);
  117.             docstatus=order.getDocumentStatus();
  118.             boolean processed = order.isProcessed();
  119.             if (processed && !docstatus.equalsIgnoreCase(completeStatus) && doc_status_to.equalsIgnoreCase(completeStatus)){
  120.                 //terproses tapi doc status masih draft
  121.                 //maka ubah docstatus menjadi complete
  122.                 order.setDocumentStatus(doc_status_to);
  123.                 OBDal.getInstance().save(order);
  124.                 try {https://pastebin.com/EMhW1Cfv
  125.                     OBDal.getInstance().getConnection().commit();
  126.                 } catch (SQLException e) {
  127.                     e.printStackTrace();
  128.                     throw new OBException(e.getMessage());
  129.                 }
  130.             }
  131.  
  132.         }
  133.  
  134.     }
  135.  
  136.     @Override
  137.     public String getCoDocumentNo(String recordID, Tab tab) {
  138.         // TODO sementara null dulu
  139.         return null;
  140.     }
  141.  
  142.     @Override
  143.     public Boolean updateDocumentStatus(Entity entity,  List<String> RecordId, String document_status_to,String column){
  144.         if (document_status_to.equalsIgnoreCase(completeStatus)||
  145.                 document_status_to.equalsIgnoreCase(reactiveStatus)||
  146.                 document_status_to.equalsIgnoreCase(closedStatus)||
  147.                 document_status_to.equalsIgnoreCase(voidStatus))
  148.             return true;
  149.         else
  150.             return super.updateDocumentStatus(entity, RecordId, document_status_to, column);
  151.  
  152.     }
  153. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement