|
- <?php
-
- namespace common\models;
-
- use Yii;
- use common\helpers\Departements ;
- use yii\helpers\Html ;
-
- /**
- * This is the model class for table "etablissement".
- *
- * @property integer $id
- * @property string $nom
- * @property string $siret
- * @property string $logo
- * @property string $photo
- * @property string $description
- * @property string $code_postal
- * @property string $ville
- */
- class Etablissement extends \yii\db\ActiveRecord
- {
- const PAIEMENT_OK = 'ok' ;
- const PAIEMENT_ESSAI = 'essai' ;
- const PAIEMENT_ESSAI_TERMINE = 'essai-terminee' ;
- const PAIEMENT_RETARD = 'retard-paiement' ;
-
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'etablissement';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['nom', 'siret','code', 'heure_limite_commande'], 'required'],
- ['heure_limite_commande','integer'],
- ['heure_limite_commande','in', 'range' => [18, 19, 20, 21, 22, 23, 24]],
- ['code', function($attribute, $params)
- {
- $code = $this->$attribute ;
-
- $etablissement = Etablissement::findOne(['code' => $code]) ;
-
- if($etablissement && $etablissement->id != $this->id)
- {
- $this->addError($attribute, 'Ce code est déjà utilisé par une autre boulangerie.');
- }
- }],
- [['description'], 'string'],
- [['nom', 'siret', 'logo', 'photo', 'code_postal', 'ville','code'], 'string', 'max' => 255],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'nom' => 'Nom',
- 'siret' => 'Siret',
- 'logo' => 'Logo',
- 'photo' => 'Photo',
- 'description' => 'Description',
- 'code_postal' => 'Code postal',
- 'ville' => 'Ville',
- 'code' => 'Code',
- 'heure_limite_commande' => 'Heure limite de commande'
- ];
- }
-
- public static function getEtablissementsPopulateDropdown()
- {
-
- $etablissements_dispos = Etablissement::find()
- ->orderby('code_postal, ville ASC')
- ->all() ;
-
- $departements = Departements::get() ;
- $data_etablissements_dispos = [] ;
- $options_etablissements_dispos = [] ;
- foreach($etablissements_dispos as $e)
- {
- if($e->etatPaiement() == self::PAIEMENT_OK || $e->etatPaiement() == self::PAIEMENT_ESSAI)
- {
- if(!key_exists('d'. substr($e->code_postal, 0, 2), $data_etablissements_dispos))
- {
- $data_etablissements_dispos['d'. substr($e->code_postal, 0, 2)] = '<strong>'.$departements[substr($e->code_postal, 0, 2)].'</strong>' ;
- $options_etablissements_dispos['d'. substr($e->code_postal, 0, 2)] = ['disabled' => true] ;
- }
-
- $data_etablissements_dispos[$e->id] = Html::encode($e->nom).' - '.Html::encode($e->code_postal).' '.Html::encode($e->ville) ;
-
- }
- }
-
- return ['data' => $data_etablissements_dispos, 'options' => $options_etablissements_dispos] ;
- }
-
- public function etatPaiement()
- {
- $date_limite = strtotime($this->date_creation) + 30*24*60*60 ;
- $date = time() ;
- $date_paiement = strtotime($this->date_paiement) ;
-
- if($date < $date_paiement + 30*24*60*60 || $this->gratuit)
- {
- return 'ok' ;
- }
- else {
- if($date < $date_limite)
- {
- return 'essai' ;
- }
- else {
- if(!$this->date_paiement)
- return 'essai-terminee' ;
- else
- return 'retard-paiement' ;
- }
- }
- }
- }
|