Package com.centraview.account.common

Examples of com.centraview.account.common.ItemElement


          FloatMember  TaxRate = new FloatMember("UnitTaxrate",new Float(taxRate),10,"",'T',false,20);
          FloatMember  OrderQuantity = new FloatMember("OrderQuantity",new Float(1.0f),10,"",'T',false,20);
          FloatMember  PendingQuantity = new FloatMember("PendingQuantity",new Float(0.0f),10,"",'T',false,20);


          ItemElement ie = new ItemElement(counter);
          ie.put ("LineId",LineId);
          ie.put ("ItemId",ItemId);
          ie.put ("SKU",SKU);
          ie.put ("Description",Description);
          ie.put ("Quantity",Quantity);
          ie.put ("PriceEach",PriceEach);
          ie.put ("PriceExtended",PriceExtended);
          ie.put ("UnitTax",UnitTax);
          ie.put ("UnitTaxrate",TaxRate);
          ie.put ("OrderQuantity",OrderQuantity);
          ie.put ("PendingQuantity",PendingQuantity);

          ie.setLineStatus("New");

          itemLines.put(new Integer(counter), ie);
        }catch(Exception e)
        {
          System.out.println("[Exception][AccountHelperEJB.calculateExpenseItems] Exception Thrown: "+e);
View Full Code Here

TOP

Related Classes of com.centraview.account.common.ItemElement

Copyright © 2018 www.massapicom. 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.