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
|
#=====================================================================
# SQL-Ledger ERP
# Copyright (c) 2006
#
# Author: DWS Systems Inc.
# Web: http://www.sql-ledger.com
#
#======================================================================
#
# Accounts Receivable
#
#======================================================================
use SL::PE;
use SL::IS;
require "$form->{path}/arap.pl";
require "$form->{path}/arapprn.pl";
require "$form->{path}/aa.pl";
$form->{vc} = 'customer';
$form->{ARAP} = 'AR';
1;
# end of main
|