[CUSTOMER_DETAIL] Removed required option on main container.

This commit is contained in:
Hyojin Ahn 2026-02-04 11:59:04 -05:00
parent 69f9f24eb5
commit 883a46bc12
2 changed files with 2 additions and 2 deletions

View File

@ -1151,7 +1151,7 @@ $(document).ready(function()
<td class="td-title-info">Main Container</td> <td class="td-title-info">Main Container</td>
<td class="td-text-info"> <td class="td-text-info">
<select name="c_maincontainer" id="c_maincontainer" class="custom-select" required='required'> <select name="c_maincontainer" id="c_maincontainer" class="custom-select">
<option value=''>Select</option> <option value=''>Select</option>
<?=$c_maincontainerSTR?> <?=$c_maincontainerSTR?>
</select> </select>

View File

@ -8,7 +8,7 @@ $arrPaymenttype = array ('CA' => 'Cash', 'CHQ' => 'Cheque', 'DIRECT' => 'Direct
$arrBin = array ('D' => '200L Drum', '400B' => '400L Bin', '500B' => '500L Bin', '600B' => '600L Bin', $arrBin = array ('D' => '200L Drum', '400B' => '400L Bin', '500B' => '500L Bin', '600B' => '600L Bin',
'700B' => '700L Bin', '800B' => '800L Bin', '1000B' => '1000L Bin', '700B' => '700L Bin', '800B' => '800L Bin', '1000B' => '1000L Bin',
'OD' => 'Owner\'s Bin/Drum' ,'P' => 'Bucket', 'CB' => 'Customized Bin'); 'OB' => 'Owner\'s Bin' ,'OD' => 'Owner\'s Drum' , 'P' => 'Bucket', 'CB' => 'Customized Bin');
$arrForm = array ('Not Yet' => 'Not Yet', 'Paper' => 'Paper', 'Electronic' => 'Electronic' ); $arrForm = array ('Not Yet' => 'Not Yet', 'Paper' => 'Paper', 'Electronic' => 'Electronic' );
$arrSchedule = array ('None' => 'None', '1W' => '1W', '2W' => '2W', '3W' => '3W', '4W' => '4W', '5W' => '5W', '6W' => '6W', 'Will Call' => 'Will Call' ); $arrSchedule = array ('None' => 'None', '1W' => '1W', '2W' => '2W', '3W' => '3W', '4W' => '4W', '5W' => '5W', '6W' => '6W', 'Will Call' => 'Will Call' );