diff options
Diffstat (limited to 'bin/mozilla/ap.pl')
-rwxr-xr-x | bin/mozilla/ap.pl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/bin/mozilla/ap.pl b/bin/mozilla/ap.pl new file mode 100755 index 00000000..41ac1702 --- /dev/null +++ b/bin/mozilla/ap.pl @@ -0,0 +1,28 @@ +#===================================================================== +# LedgerSMB +# Small Medium Business Accounting software +# +# See COPYRIGHT file for copyright information +#====================================================================== +# +# This file has NOT undergone whitespace cleanup. +# +#====================================================================== +# +# Accounts Payable +# +#====================================================================== + +use LedgerSMB::PE; +use LedgerSMB::IR; + +require "$form->{path}/arap.pl"; +require "$form->{path}/arapprn.pl"; +require "$form->{path}/aa.pl"; + +$form->{vc} = 'vendor'; +$form->{ARAP} = 'AP'; + +1; +# end of main + |