Package org.compiere.model

Examples of org.compiere.model.MPaySelectionLine.save()


        BigDecimal PayAmt = (BigDecimal)miniTable.getValueAt(i, 9);
        boolean isSOTrx = false;
        //
        psl.setInvoice(C_Invoice_ID, isSOTrx,
          OpenAmt, PayAmt, OpenAmt.subtract(PayAmt));
        if (!psl.save(trxName))
        {
          return Msg.translate(Env.getCtx(), "C_PaySelectionLine_ID");
        }
        log.fine("C_Invoice_ID=" + C_Invoice_ID + ", PayAmt=" + PayAmt);
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.