KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openbravo > erpCommon > ad_forms > DocLine_Payment


1 /*
2  ******************************************************************************
3  * The contents of this file are subject to the Compiere License Version 1.1
4  * ("License"); You may not use this file except in compliance with the License
5  * You may obtain a copy of the License at http://www.compiere.org/license.html
6  * Software distributed under the License is distributed on an "AS IS" basis,
7  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
8  * the specific language governing rights and limitations under the License.
9  * The Original Code is Compiere ERP & CRM Business Solution
10  * The Initial Developer of the Original Code is Jorg Janke and ComPiere, Inc.
11  * Portions created by Jorg Janke are Copyright (C) 1999-2001 Jorg Janke, parts
12  * created by ComPiere are Copyright (C) ComPiere, Inc.; All Rights Reserved.
13  * Contributor(s): Openbravo SL
14  * Contributions are Copyright (C) 2001-2006 Openbravo S.L.
15  ******************************************************************************
16 */

17 package org.openbravo.erpCommon.ad_forms;
18
19 import org.apache.log4j.Logger ;
20
21
22
23 public class DocLine_Payment extends DocLine {
24     static Logger log4jDocLine_Payment = Logger.getLogger(DocLine_Payment.class);
25
26     String JavaDoc Line_ID = "";
27     String JavaDoc Amount = "";
28     String JavaDoc WriteOffAmt = "";
29     String JavaDoc isManual = "";
30     String JavaDoc isReceipt = "";
31     String JavaDoc isPaid = "";
32     String JavaDoc C_Settlement_Cancel_ID = "";
33     String JavaDoc C_Settlement_Generate_ID = "";
34     String JavaDoc C_GLItem_ID = "";
35     String JavaDoc IsDirectPosting = "";
36     String JavaDoc dpStatus = "";
37     String JavaDoc C_Currency_ID_From;
38     String JavaDoc conversionDate;
39     public DocLine_Payment (String JavaDoc DocumentType, String JavaDoc TrxHeader_ID, String JavaDoc TrxLine_ID){
40         super(DocumentType, TrxHeader_ID, TrxLine_ID);
41         Line_ID = TrxLine_ID;
42         m_Record_Id2 = Line_ID;
43     }
44
45
46     public String JavaDoc getServletInfo() {
47     return "Servlet for accounting";
48   } // end of getServletInfo() method
49
}
50
Popular Tags