You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
762 B

<?php
class CreateComboNo{
public $comboarr = [
'week'=>'BW002',
'month'=>'EM002',
'quarter'=>'EQ002',
'half'=>'HY002',
'year'=>'EY002'
];
public $bwarr = [
'week','month','week','month','week','quarter',
'week','month','week','month','week','half',
'week','month','week','month','week','quarter',
'week','month','week','month','week','year'
];
public $emarr = [
'month','month','quarter','month','month','half',
'month','month','quarter','month','month','year'
];
public $combo;
public $startdate;
public $enddate;
public function __construct($combo, $startdate, $enddate){
}
public function getComboNo(){
}
}