-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCreateAndPostFreeTextInvoice.xpp
162 lines (79 loc) · 3 KB
/
CreateAndPostFreeTextInvoice.xpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
//Author:Mafigu Huggins
//Tel: +263 782 326 160
//Email: mafiguhuggins@gmail.com
//Create and post a freetext invoice
public void xtest()
{
Dialog dialog;
DialogField dlgCustAcc;
DialogGroup dialogPeriodLengthGroup, dialogPeriodLengthGroup1;
DialogField dlgLedgerAcc;
;
dialog = new Dialog("Free-Text Invoice");
dialogPeriodLengthGroup1 = dialog.addGroup(‘Cust Table’);
dlgCustAcc = dialog.addField(typeid(CustAccount));
dialogPeriodLengthGroup = dialog.addGroup(‘Ledger Table’);
dlgLedgerAcc = dialog.addField(typeid(LedgerAccount));
if(dialog.run())
{
if(dlgCustAcc.value() && dlgLedgerAcc.value() != ”)
FreeTxtInvoiceCreatePost::main(dlgCustAcc.value(), dlgLedgerAcc.value());
else
throw error(strfmt("Either CustAccount or LedgerAccount info is missing."));
}
}
/// <summary>
/// The <c>Job_FreeTxtInvoice</c> class is implemented to create/post <c>Free Text Invoice</c>.
/// </summary>
class FreeTxtInvoiceCreatePost
{
}
static void main(CustAccount _custAccount, LedgerAccount _ledgerAccount)
{
CustInvoiceTable custInvoiceTable;
CustInvoiceLine custInvoiceLine;
CustTable custTable;
LedgerTable ledgerTable;
CustPostInvoice custPostInvoice;
LineNum lineNum;
int i;
;
/// <summary>
/// The <c>CustInvoiceTable</c> logic is implemented to create single <c>Header</c>.
/// </summary>
ttsbegin;
custTable = CustTable::find(_custAccount);
custInvoiceTable.initFromCustTable(custTable);
custInvoiceTable.insert();
ttscommit;
/// <summary>
/// The <c>CustInvoiceLine</c> logic is implemented to create multiple <c>Invoice Lines</c>.
/// </summary>
for(i=1; i<=100; i++)
{
ttsbegin;
ledgerTable = LedgerTable::find(_ledgerAccount);
custInvoiceLine.clear();
custInvoiceLine.initValue();
custInvoiceLine.LedgerAccount = ledgerTable.AccountNum;
custInvoiceLine.initFromCustInvoiceTable(custInvoiceTable);
custInvoiceLine.AmountCur = 10.00;
custInvoiceLine.Description = ‘FreeTxIv’ + int2str(i);
custInvoiceLine.TaxItemGroup = ‘full’;
custInvoiceLine.ParentRecId = custInvoiceTable.RecId;
//LINE NUM LOGIC.
if(!lineNum)
{
lineNum = CustInvoiceLine::lastLineNum(custInvoiceLine.ParentRecId);
}
lineNum += 1;
custInvoiceLine.LineNum = lineNum;
custInvoiceLine.insert();
ttscommit;
}
/// <summary>
/// The <c>custPostInvoice</c> class is called for posting <c>Free-TextInvoice.</c> records.
/// </summary>
custPostInvoice = new CustPostInvoice(custInvoiceTable);
custPostInvoice.run();
}