[CUSTOMER - DETAIL] Added payment method (Web Site), Added member type (Install Driver)

This commit is contained in:
Hyojin Ahn 2026-02-09 10:30:29 -05:00
parent 883a46bc12
commit 80b4e63ca3
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ $yearLast = $yearNow - 1;
// Array
$arrStatus = array ('I' => 'Inactive', 'A' => 'Active', 'H' => 'Hold', 'D' => 'Delete', 'F' => 'Finish' );
$arrPaymenttype = array ('CA' => 'Cash', 'CHQ' => 'Cheque', 'DIRECT' => 'Direct Deposit', 'DONATION' => 'Donation', 'EFT' => 'EFT',
'ETR' => 'E-Transfer', 'FREE' => 'Free Account', 'GT' => 'Grease Trap Service' );
'ETR' => 'E-Transfer', 'FREE' => 'Free Account', 'GT' => 'Grease Trap Service', 'WEBSITE' => 'Web Site');
$arrBin = array ('D' => '200L Drum', '400B' => '400L Bin', '500B' => '500L Bin', '600B' => '600L Bin',
'700B' => '700L Bin', '800B' => '800L Bin', '1000B' => '1000L Bin',
@ -18,7 +18,7 @@ $arrPaymentCycle = array ('A' => 'A', 'B' => 'B', 'C' => 'C', 'D' => 'D', 'F' =>
$arrNoteType = array ('B' => 'Accounting', 'S' => 'Staff', 'D' => 'Driver', 'A' => 'All' );
$arrPaidStatus = array ('P' => 'Paid', 'N' => 'UnPaid');
$arrMemberLevel = array ('1' => 'Administrator', '5' => 'Staff', '6' => 'Accounting', '7' => 'Sales', '9' => 'Driver', '10' => 'Sales Agent' );
$arrMemberLevel = array ('1' => 'Administrator', '5' => 'Staff', '6' => 'Accounting', '7' => 'Sales', '8' => 'Install Driver', '9' => 'UCO Driver', '10' => 'Sales Agent' );
//$arrClass = array ('M' => 'Math', 'P' => 'Physics', 'C' => 'Chemistry', 'B' => 'Biology', 'S' => 'Science', 'O' => 'Others' );
//$arrLevel = array ('A' => 'All', '1' => 'Basic', '2' => 'Intermediate', '3' => 'Advanced');