Java Doc for BudgetAdjustmentDocument.java in » ERP-CRM-Financial » Kuali-Financial-System » org » kuali » module » financial » document » Java Source Code / Java DocumentationJava Source Code and Java Documentation
Java Source Code / Java Documentation
1.
6.0 JDK Core
2.
6.0 JDK Modules
3.
6.0 JDK Modules com.sun
4.
6.0 JDK Modules com.sun.java
5.
6.0 JDK Modules sun
6.
6.0 JDK Platform
7.
Ajax
8.
Apache Harmony Java SE
9.
Aspect oriented
10.
Authentication Authorization
11.
Blogger System
12.
Build
13.
Byte Code
14.
Cache
15.
Chart
16.
Chat
17.
Code Analyzer
18.
Collaboration
19.
Content Management System
20.
Database Client
21.
Database DBMS
22.
Database JDBC Connection Pool
23.
Database ORM
24.
Development
25.
EJB Server geronimo
26.
EJB Server GlassFish
27.
EJB Server JBoss 4.2.1
28.
EJB Server resin 3.1.5
29.
ERP CRM Financial
30.
ESB
31.
Forum
32.
GIS
33.
Graphic Library
34.
Groupware
35.
HTML Parser
36.
IDE
37.
IDE Eclipse
38.
IDE Netbeans
39.
Installer
40.
Internationalization Localization
41.
Inversion of Control
42.
Issue Tracking
43.
J2EE
44.
JBoss
45.
JMS
46.
JMX
47.
Library
48.
Mail Clients
49.
Net
50.
Parser
51.
PDF
52.
Portal
53.
Profiler
54.
Project Management
55.
Report
56.
RSS RDF
57.
Rule Engine
58.
Science
59.
Scripting
60.
Search Engine
61.
Security
62.
Sevlet Container
63.
Source Control
64.
Swing Library
65.
Template Engine
66.
Test Coverage
67.
Testing
68.
UML
69.
Web Crawler
70.
Web Framework
71.
Web Mail
72.
Web Server
73.
Web Services
74.
Web Services apache cxf 2.0.1
75.
Web Services AXIS2
76.
Wiki Engine
77.
Workflow Engines
78.
XML
79.
XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation
»
ERP CRM Financial
»
Kuali Financial System
»
org.kuali.module.financial.document
Source Cross Reference
Class Diagram
Java Document (Java Doc)
org.kuali.kfs.document
.AccountingDocumentBase
org.kuali.module.financial.document
.BudgetAdjustmentDocument
All known Subclasses:
org.kuali.module.financial.document
.YearEndBudgetAdjustmentDocument
,
BudgetAdjustmentDocument
public
class BudgetAdjustmentDocument extends
AccountingDocumentBase
implements
Copyable
,
Correctable
,
AmountTotaling
(Code)
This is the business object that represents the BudgetAdjustment document in Kuali.
Constructor Summary
public
BudgetAdjustmentDocument
()
Default constructor.
Method Summary
public
AccountingLineParser
getAccountingLineParser
()
public
boolean
getAllowsCopy
()
The base checks that the posting year is the current year, not a requirement for the ba document.
public
boolean
getAllowsErrorCorrection
()
The base checks that the posting year is the current year, not a requirement for the ba document.
public
String
getCurrencyFormattedSourceBaseBudgetTotal
()
This method retrieves the total base budget amount formatted as currency.
public
String
getCurrencyFormattedSourceCurrentBudgetTotal
()
This method retrieves the total current budget amount formatted as currency.
public
String
getCurrencyFormattedTargetBaseBudgetTotal
()
This method retrieves the total base budget amount formatted as currency.
public
String
getCurrencyFormattedTargetCurrentBudgetTotal
()
This method retrieves the total current budget amount formatted as currency.
public
Integer
getNextPositionSourceLineNumber
()
public
Integer
getNextPositionTargetLineNumber
()
public
List
<
GeneralLedgerPendingEntry
>
getPendingLedgerEntriesForSufficientFundsChecking
()
BA Documents should only do SF checking on PLEs with a Balance Type of 'CB' - not 'BB' or 'MB'.
public
Class
getSourceAccountingLineClass
()
public
String
getSourceAccountingLinesSectionTitle
()
public
KualiInteger
getSourceBaseBudgetExpenseTotal
()
Returns the total base budget expense amount from the source lines.
public
KualiInteger
getSourceBaseBudgetIncomeTotal
()
Returns the total base budget income amount from the source lines.
public
KualiInteger
getSourceBaseBudgetTotal
()
Returns the total base budget amount from the source lines.
public
KualiDecimal
getSourceCurrentBudgetExpenseTotal
()
Returns the total current budget expense amount from the source lines.
public
KualiDecimal
getSourceCurrentBudgetIncomeTotal
()
Returns the total current budget income amount from the source lines.
public
KualiDecimal
getSourceCurrentBudgetTotal
()
Returns the total current budget amount from the source lines.
public
Class
getTargetAccountingLineClass
()
public
String
getTargetAccountingLinesSectionTitle
()
public
KualiInteger
getTargetBaseBudgetExpenseTotal
()
Returns the total base budget expense amount from the target lines.
public
KualiInteger
getTargetBaseBudgetIncomeTotal
()
Returns the total base budget income amount from the target lines.
public
KualiInteger
getTargetBaseBudgetTotal
()
Returns the total base budget amount from the target lines.
public
KualiDecimal
getTargetCurrentBudgetExpenseTotal
()
Returns the total current budget expense amount from the target lines.
public
KualiDecimal
getTargetCurrentBudgetIncomeTotal
()
Returns the total current budget income amount from the target lines.
public
KualiDecimal
getTargetCurrentBudgetTotal
()
Returns the total current budget amount from the target lines.
public
KualiDecimal
getTotalDollarAmount
()
Same as default implementation but uses getTargetCurrentBudgetTotal and getSourceCurrentBudgetTotal instead.
public
void
initiateDocument
()
public
void
populateDocumentForRouting
()
public
void
setNextPositionSourceLineNumber
(
Integer
nextPositionSourceLineNumber)
public
void
setNextPositionTargetLineNumber
(
Integer
nextPositionTargetLineNumber)
public
void
toErrorCorrection
()
Negate accounting line budget amounts.
protected
LinkedHashMap
toStringMapper
()
Constructor Detail
BudgetAdjustmentDocument
public
BudgetAdjustmentDocument()
(Code)
Default constructor.
Method Detail
getAccountingLineParser
public
AccountingLineParser
getAccountingLineParser()
(Code)
See Also:
org.kuali.kfs.document.AccountingDocumentBase.getAccountingLineParser
getAllowsCopy
public
boolean getAllowsCopy()
(Code)
The base checks that the posting year is the current year, not a requirement for the ba document.
See Also:
org.kuali.core.document.TransactionalDocumentBase.getAllowsCopy
getAllowsErrorCorrection
public
boolean getAllowsErrorCorrection()
(Code)
The base checks that the posting year is the current year, not a requirement for the ba document.
See Also:
org.kuali.core.document.TransactionalDocumentBase.getAllowsErrorCorrection
getCurrencyFormattedSourceBaseBudgetTotal
public
String
getCurrencyFormattedSourceBaseBudgetTotal()
(Code)
This method retrieves the total base budget amount formatted as currency. String
getCurrencyFormattedSourceCurrentBudgetTotal
public
String
getCurrencyFormattedSourceCurrentBudgetTotal()
(Code)
This method retrieves the total current budget amount formatted as currency. String
getCurrencyFormattedTargetBaseBudgetTotal
public
String
getCurrencyFormattedTargetBaseBudgetTotal()
(Code)
This method retrieves the total base budget amount formatted as currency. String
getCurrencyFormattedTargetCurrentBudgetTotal
public
String
getCurrencyFormattedTargetCurrentBudgetTotal()
(Code)
This method retrieves the total current budget amount formatted as currency. String
getNextPositionSourceLineNumber
public
Integer
getNextPositionSourceLineNumber()
(Code)
Integer
getNextPositionTargetLineNumber
public
Integer
getNextPositionTargetLineNumber()
(Code)
Integer
getPendingLedgerEntriesForSufficientFundsChecking
public
List
<
GeneralLedgerPendingEntry
> getPendingLedgerEntriesForSufficientFundsChecking()
(Code)
BA Documents should only do SF checking on PLEs with a Balance Type of 'CB' - not 'BB' or 'MB'.
See Also:
org.kuali.kfs.document.AccountingDocumentBase.getPendingLedgerEntriesForSufficientFundsChecking
getSourceAccountingLineClass
public
Class
getSourceAccountingLineClass()
(Code)
See Also:
org.kuali.kfs.document.AccountingDocumentBase.getSourceAccountingLineClass
getSourceAccountingLinesSectionTitle
public
String
getSourceAccountingLinesSectionTitle()
(Code)
See Also:
org.kuali.kfs.document.AccountingDocumentBase.getSourceAccountingLinesSectionTitle
getSourceBaseBudgetExpenseTotal
public
KualiInteger
getSourceBaseBudgetExpenseTotal()
(Code)
Returns the total base budget expense amount from the source lines. KualiDecimal
getSourceBaseBudgetIncomeTotal
public
KualiInteger
getSourceBaseBudgetIncomeTotal()
(Code)
Returns the total base budget income amount from the source lines. KualiDecimal
getSourceBaseBudgetTotal
public
KualiInteger
getSourceBaseBudgetTotal()
(Code)
Returns the total base budget amount from the source lines. KualiDecimal
getSourceCurrentBudgetExpenseTotal
public
KualiDecimal
getSourceCurrentBudgetExpenseTotal()
(Code)
Returns the total current budget expense amount from the source lines. KualiDecimal
getSourceCurrentBudgetIncomeTotal
public
KualiDecimal
getSourceCurrentBudgetIncomeTotal()
(Code)
Returns the total current budget income amount from the source lines. KualiDecimal
getSourceCurrentBudgetTotal
public
KualiDecimal
getSourceCurrentBudgetTotal()
(Code)
Returns the total current budget amount from the source lines. KualiDecimal
getTargetAccountingLineClass
public
Class
getTargetAccountingLineClass()
(Code)
See Also:
org.kuali.kfs.document.AccountingDocumentBase.getTargetAccountingLineClass
getTargetAccountingLinesSectionTitle
public
String
getTargetAccountingLinesSectionTitle()
(Code)
See Also:
org.kuali.kfs.document.AccountingDocumentBase.getTargetAccountingLinesSectionTitle
getTargetBaseBudgetExpenseTotal
public
KualiInteger
getTargetBaseBudgetExpenseTotal()
(Code)
Returns the total base budget expense amount from the target lines. KualiDecimal
getTargetBaseBudgetIncomeTotal
public
KualiInteger
getTargetBaseBudgetIncomeTotal()
(Code)
Returns the total base budget income amount from the target lines. KualiDecimal
getTargetBaseBudgetTotal
public
KualiInteger
getTargetBaseBudgetTotal()
(Code)
Returns the total base budget amount from the target lines. KualiDecimal
getTargetCurrentBudgetExpenseTotal
public
KualiDecimal
getTargetCurrentBudgetExpenseTotal()
(Code)
Returns the total current budget expense amount from the target lines. KualiDecimal
getTargetCurrentBudgetIncomeTotal
public
KualiDecimal
getTargetCurrentBudgetIncomeTotal()
(Code)
Returns the total current budget income amount from the target lines. KualiDecimal
getTargetCurrentBudgetTotal
public
KualiDecimal
getTargetCurrentBudgetTotal()
(Code)
Returns the total current budget amount from the target lines. KualiDecimal
getTotalDollarAmount
public
KualiDecimal
getTotalDollarAmount()
(Code)
Same as default implementation but uses getTargetCurrentBudgetTotal and getSourceCurrentBudgetTotal instead.
See Also:
org.kuali.kfs.document.AccountingDocumentBase.getTotalDollarAmount
KualiDecimal
initiateDocument
public
void initiateDocument()
(Code)
generic, shared logic used to iniate a ba document
populateDocumentForRouting
public
void populateDocumentForRouting()
(Code)
See Also:
org.kuali.core.document.DocumentBase.populateDocumentForRouting
setNextPositionSourceLineNumber
public
void setNextPositionSourceLineNumber(
Integer
nextPositionSourceLineNumber)
(Code)
Parameters:
nextPositionSourceLineNumber -
setNextPositionTargetLineNumber
public
void setNextPositionTargetLineNumber(
Integer
nextPositionTargetLineNumber)
(Code)
Parameters:
nextPositionTargetLineNumber -
toErrorCorrection
public
void toErrorCorrection() throws
WorkflowException
(Code)
Negate accounting line budget amounts.
See Also:
org.kuali.kfs.document.AccountingDocumentBase.toErrorCorrection
toStringMapper
protected
LinkedHashMap
toStringMapper()
(Code)
See Also:
org.kuali.core.document.DocumentBase.toStringMapper
Fields inherited from
org.kuali.kfs.document.AccountingDocumentBase
protected
Integer
nextSourceLineNumber
(Code)
(Java Doc)
protected
Integer
nextTargetLineNumber
(Code)
(Java Doc)
protected
List
sourceAccountingLines
(Code)
(Java Doc)
protected
List
targetAccountingLines
(Code)
(Java Doc)
Methods inherited from
org.kuali.kfs.document.AccountingDocumentBase
public
void addSourceAccountingLine(
SourceAccountingLine
line)
(Code)
(Java Doc)
public
void addTargetAccountingLine(
TargetAccountingLine
line)
(Code)
(Java Doc)
public
List
buildListOfDeletionAwareLists()
(Code)
(Java Doc)
protected
void copyAccountingLines(boolean isErrorCorrection)
(Code)
(Java Doc)
public
List
generateSaveEvents()
(Code)
(Java Doc)
public
AccountingLineParser
getAccountingLineParser()
(Code)
(Java Doc)
public
Integer
getNextSourceLineNumber()
(Code)
(Java Doc)
public
Integer
getNextTargetLineNumber()
(Code)
(Java Doc)
protected
List
getPersistedSourceAccountingLinesForComparison()
(Code)
(Java Doc)
protected
List
getPersistedTargetAccountingLinesForComparison()
(Code)
(Java Doc)
public
SourceAccountingLine
getSourceAccountingLine(int index)
(Code)
(Java Doc)
public
Class
getSourceAccountingLineClass()
(Code)
(Java Doc)
public
String
getSourceAccountingLineEntryName()
(Code)
(Java Doc)
public
List
getSourceAccountingLines()
(Code)
(Java Doc)
protected
List
getSourceAccountingLinesForComparison()
(Code)
(Java Doc)
public
String
getSourceAccountingLinesSectionTitle()
(Code)
(Java Doc)
public
KualiDecimal
getSourceTotal()
(Code)
(Java Doc)
public
TargetAccountingLine
getTargetAccountingLine(int index)
(Code)
(Java Doc)
public
Class
getTargetAccountingLineClass()
(Code)
(Java Doc)
public
String
getTargetAccountingLineEntryName()
(Code)
(Java Doc)
public
List
getTargetAccountingLines()
(Code)
(Java Doc)
protected
List
getTargetAccountingLinesForComparison()
(Code)
(Java Doc)
public
String
getTargetAccountingLinesSectionTitle()
(Code)
(Java Doc)
public
KualiDecimal
getTargetTotal()
(Code)
(Java Doc)
public
KualiDecimal
getTotalDollarAmount()
(Code)
(Java Doc)
public
void prepareForSave(
KualiDocumentEvent
event)
(Code)
(Java Doc)
public
void setNextSourceLineNumber(
Integer
nextLineNumber)
(Code)
(Java Doc)
public
void setNextTargetLineNumber(
Integer
nextLineNumber)
(Code)
(Java Doc)
public
void setSourceAccountingLines(
List
sourceLines)
(Code)
(Java Doc)
public
void setTargetAccountingLines(
List
targetLines)
(Code)
(Java Doc)
public
void toCopy() throws
WorkflowException
(Code)
(Java Doc)
public
void toErrorCorrection() throws
WorkflowException
(Code)
(Java Doc)
www.java2java.com
|
Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.