Advertisement
tko_pb

pak eko 5%

Mar 2nd, 2021
900
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.93 KB | None | 0 0
  1. if(orderMin.compareTo(BigDecimal.ZERO) > 0 ){
  2.                                     if( QtyRequisition.compareTo(orderMin) > 0){
  3.                                         if(QtyOrdered.compareTo(QtyRequisition.multiply(pembanding)) > 0 ){
  4.                                             msg = "Product atas " + mOrderLine.getProduct().getValue() + " melebihi MOQ dan 5% dari requisition || LINE NO:"+mOrderLine.getLine();
  5.                                             throw new AdempiereException(msg);
  6.                                         }
  7.                                     }else if (QtyOrdered.compareTo(orderMin) > 0){
  8.                                         msg = "Product atas " + mOrderLine.getProduct().getValue() + " melebihi MOQ || LINE NO:"+mOrderLine.getLine();
  9.                                         throw new AdempiereException(msg);
  10.                                     }
  11.                                 }
  12.                                
  13.                                 else { 
  14.                                     if(QtyRequisition.multiply(pembanding).compareTo(QtyOrdered) < 0 ){
  15.                                         msg = "Product atas " + mOrderLine.getProduct().getValue() + " melebihi MOQ dan 5% dari requisition || LINE NO:"+mOrderLine.getLine();
  16.                                         throw new AdempiereException(msg);
  17.                                     }
  18.                                 }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement