Removed mardi added dimanche

This commit is contained in:
lars 2019-05-01 22:21:28 +02:00
parent 3fe15cac88
commit 6393e46ed2

View File

@ -31,12 +31,12 @@ require_once 'vendor/autoload.php';
die();
}
$prices = array(
'mar' => array('nor' => 60, 'vip' => 40, 'label' => 'Mardi 5 juin'),
'mer' => array('nor' => 60, 'vip' => 40, 'label' => 'Mercredi 6 juin'),
'jeu' => array('nor' => 60, 'vip' => 40, 'label' => 'Jeudi 7 juin'),
'ven' => array('nor' => 60, 'vip' => 40, 'label' => 'Vendredi 8 juin'),
'sam' => array('nor' => 60, 'vip' => 40, 'label' => 'Samedi 9 juin'),
// 'dim' => array('nor' => 40, 'vip' => 42, 'label' => 'Dimanche 11 juin')
// 'mar' => array('nor' => 60, 'vip' => 40, 'label' => 'Mardi 4 juin'),
'mer' => array('nor' => 60, 'vip' => 40, 'label' => 'Mercredi 5 juin'),
'jeu' => array('nor' => 60, 'vip' => 40, 'label' => 'Jeudi 6 juin'),
'ven' => array('nor' => 60, 'vip' => 40, 'label' => 'Vendredi 7 juin'),
'sam' => array('nor' => 60, 'vip' => 40, 'label' => 'Samedi 8 juin'),
'dim' => array('nor' => 40, 'vip' => 42, 'label' => 'Dimanche 9 juin')
);
?>
@ -291,7 +291,7 @@ die();
$obj = $form->add('text', 'presta_tot',$ar['presta_tot'],array('readonly' => 'readonly', 'size' => '5'));
$obj->set_attributes(array('class'=>'num'), false);
$days = array('mar','mer','jeu','ven','sam');
$days = array('mer','jeu','ven','sam','dim');
foreach($days as $one) {
$form->add('label', 'label_digits', $one.'_nor', 'Digits:');
$obj = $form->add('text', $one.'_nor', $ar[$one.'_nor']);