1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
$self{texts} = {
'Customer not on file!' => 'Debtor not on file!',
'Vendor not on file!' => 'Creditor not on file!',
};
$self{subs} = {
'add_transaction' => 'add_transaction',
'ap_transaction' => 'ap_transaction',
'ar_transaction' => 'ar_transaction',
'check_name' => 'check_name',
'check_project' => 'check_project',
'continue' => 'continue',
'gl_transaction' => 'gl_transaction',
'name_selected' => 'name_selected',
'project_selected' => 'project_selected',
'sales_invoice_' => 'sales_invoice_',
'select_name' => 'select_name',
'select_project' => 'select_project',
'vendor_invoice_' => 'vendor_invoice_',
'continue' => 'continue',
};
1;
|