Traduction en anglais de toute la classe. Refactoring de diverses fonctions. Modification rapide des modèles associés pour pouvoir tester la fonction de recherche. Mise en place d'une fonction générique findByGeneric permettant le codage rapide des fonctions de recherche pour chaque modèle.refactoring
@@ -0,0 +1,106 @@ | |||
<?php | |||
/** | |||
Copyright La boîte à pain (2018) | |||
contact@laboiteapain.net | |||
Ce logiciel est un programme informatique servant à aider les producteurs | |||
à distribuer leur production en circuits courts. | |||
Ce logiciel est régi par la licence CeCILL soumise au droit français et | |||
respectant les principes de diffusion des logiciels libres. Vous pouvez | |||
utiliser, modifier et/ou redistribuer ce programme sous les conditions | |||
de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA | |||
sur le site "http://www.cecill.info". | |||
En contrepartie de l'accessibilité au code source et des droits de copie, | |||
de modification et de redistribution accordés par cette licence, il n'est | |||
offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons, | |||
seule une responsabilité restreinte pèse sur l'auteur du programme, le | |||
titulaire des droits patrimoniaux et les concédants successifs. | |||
A cet égard l'attention de l'utilisateur est attirée sur les risques | |||
associés au chargement, à l'utilisation, à la modification et/ou au | |||
développement et à la reproduction du logiciel par l'utilisateur étant | |||
donné sa spécificité de logiciel libre, qui peut le rendre complexe à | |||
manipuler et qui le réserve donc à des développeurs et des professionnels | |||
avertis possédant des connaissances informatiques approfondies. Les | |||
utilisateurs sont donc invités à charger et tester l'adéquation du | |||
logiciel à leurs besoins dans des conditions permettant d'assurer la | |||
sécurité de leurs systèmes et ou de leurs données et, plus généralement, | |||
à l'utiliser et l'exploiter dans les mêmes conditions de sécurité. | |||
Le fait que vous puissiez accéder à cet en-tête signifie que vous avez | |||
pris connaissance de la licence CeCILL, et que vous en avez accepté les | |||
termes. | |||
*/ | |||
namespace common\components ; | |||
class ActiveRecordCommon extends \yii\db\ActiveRecord | |||
{ | |||
public static function findByGeneric($class, $pk, $with = [], $join_with = [], | |||
$params = [], $conditions = [], $orderby = '', $limit = 0) { | |||
$records = $class::find() ; | |||
// With | |||
if(is_array($with) && count($with)) { | |||
$records = $records->with($with) ; | |||
} | |||
// Join with | |||
if(is_array($join_with) && count($join_with)) { | |||
$records = $records->joinWith($join_with) ; | |||
} | |||
// Conditions | |||
if(is_array($conditions)) { | |||
if(count($conditions)) { | |||
foreach($conditions as $condition) { | |||
$records = $records->andWhere($condition); | |||
} | |||
} | |||
} | |||
else { | |||
if(strlen($conditions)) { | |||
$records = $records->andWhere($conditions); | |||
} | |||
} | |||
// Paramètres | |||
if(is_array($params) && count($params)) { | |||
foreach($params as $key => $val) { | |||
$records = $records->andWhere([$key => $val]); | |||
} | |||
} | |||
if(!isset($params[$pk])) { | |||
// Orderby | |||
if (isset($orderby) && strlen($orderby)) { | |||
$records = $records->orderBy($orderby); | |||
} | |||
// Limit | |||
if (isset($limit) && is_numeric($limit) && $limit > 0) { | |||
$records = $records->limit($limit); | |||
} | |||
} | |||
if(isset($params[$pk])) { | |||
$record = $records->one(); | |||
if($record) { | |||
return $record ; | |||
} | |||
else { | |||
throw new NotFoundHttpException( | |||
'Le modèle '.$class.' #'.((int) $params[$pk]).' n\'a pas été trouvé.'); | |||
} | |||
} | |||
else { | |||
$records = $records->all(); | |||
return $records ; | |||
} | |||
} | |||
} |
@@ -1,603 +0,0 @@ | |||
<?php | |||
/** | |||
Copyright La boîte à pain (2018) | |||
contact@laboiteapain.net | |||
Ce logiciel est un programme informatique servant à aider les producteurs | |||
à distribuer leur production en circuits courts. | |||
Ce logiciel est régi par la licence CeCILL soumise au droit français et | |||
respectant les principes de diffusion des logiciels libres. Vous pouvez | |||
utiliser, modifier et/ou redistribuer ce programme sous les conditions | |||
de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA | |||
sur le site "http://www.cecill.info". | |||
En contrepartie de l'accessibilité au code source et des droits de copie, | |||
de modification et de redistribution accordés par cette licence, il n'est | |||
offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons, | |||
seule une responsabilité restreinte pèse sur l'auteur du programme, le | |||
titulaire des droits patrimoniaux et les concédants successifs. | |||
A cet égard l'attention de l'utilisateur est attirée sur les risques | |||
associés au chargement, à l'utilisation, à la modification et/ou au | |||
développement et à la reproduction du logiciel par l'utilisateur étant | |||
donné sa spécificité de logiciel libre, qui peut le rendre complexe à | |||
manipuler et qui le réserve donc à des développeurs et des professionnels | |||
avertis possédant des connaissances informatiques approfondies. Les | |||
utilisateurs sont donc invités à charger et tester l'adéquation du | |||
logiciel à leurs besoins dans des conditions permettant d'assurer la | |||
sécurité de leurs systèmes et ou de leurs données et, plus généralement, | |||
à l'utiliser et l'exploiter dans les mêmes conditions de sécurité. | |||
Le fait que vous puissiez accéder à cet en-tête signifie que vous avez | |||
pris connaissance de la licence CeCILL, et que vous en avez accepté les | |||
termes. | |||
*/ | |||
namespace common\models; | |||
use Yii; | |||
use yii\helpers\Html; | |||
use common\models\Etablissement; | |||
/** | |||
* This is the model class for table "commande". | |||
* | |||
* @property integer $id | |||
* @property integer $id_user | |||
* @property string $date | |||
* @property string $date_update | |||
* @property integer $id_point_vente | |||
* @property integer $id_production | |||
* @property boolean $paiement_automatique | |||
*/ | |||
class Commande extends \yii\db\ActiveRecord | |||
{ | |||
var $montant = 0 ; | |||
var $montant_paye = 0 ; | |||
var $poids = 0 ; | |||
const TYPE_AUTO = 'auto'; | |||
const TYPE_USER = 'user'; | |||
const TYPE_ADMIN = 'admin'; | |||
const STATUT_PAYEE = 'payee'; | |||
const STATUT_IMPAYEE = 'impayee'; | |||
const STATUT_SURPLUS = 'surplus'; | |||
const ETAT_MODIFIABLE = 'ouverte'; | |||
const ETAT_PREPARATION = 'preparation'; | |||
const ETAT_LIVREE = 'livree'; | |||
/** | |||
* @inheritdoc | |||
*/ | |||
public static function tableName() | |||
{ | |||
return 'commande'; | |||
} | |||
/* | |||
* relations | |||
*/ | |||
public function getUser() | |||
{ | |||
return $this->hasOne(User::className(), ['id' => 'id_user']); | |||
} | |||
public function getCommandeProduits() | |||
{ | |||
return $this->hasMany(CommandeProduit::className(),['id_commande' => 'id']) | |||
->with('produit'); | |||
} | |||
public function getProduction() | |||
{ | |||
return $this->hasOne(Production::className(), ['id' => 'id_production']) | |||
->with('etablissement'); | |||
} | |||
public function getPointVente() | |||
{ | |||
return $this->hasOne(PointVente::className(), ['id' => 'id_point_vente']) | |||
->with('pointVenteUser'); | |||
} | |||
public function getCreditHistorique() | |||
{ | |||
return $this->hasMany(CreditHistorique::className(), ['id_commande' => 'id']); | |||
} | |||
/** | |||
* @inheritdoc | |||
*/ | |||
public function rules() | |||
{ | |||
return [ | |||
[['id_user', 'date', 'id_point_vente', 'id_production'], 'required', 'message' => ''], | |||
[['id_user', 'id_point_vente', 'id_production'], 'integer'], | |||
[['paiement_automatique'], 'boolean'], | |||
[['date', 'date_update', 'commentaire', 'commentaire_point_vente'], 'safe'] | |||
]; | |||
} | |||
/** | |||
* @inheritdoc | |||
*/ | |||
public function attributeLabels() | |||
{ | |||
return [ | |||
'id' => 'ID', | |||
'id_user' => 'Id User', | |||
'date' => 'Date', | |||
'date_update' => 'Date Update', | |||
'id_point_vente' => 'Point de vente', | |||
'id_production' => 'Date de production', | |||
]; | |||
} | |||
/** | |||
* Initialise le montant total, le montant déjà payé et le poids de la | |||
* commande | |||
*/ | |||
public function init() | |||
{ | |||
// Montant | |||
if (isset($this->commandeProduits)) { | |||
foreach ($this->commandeProduits as $p) { | |||
if ($p->mode_vente == 'unite') { | |||
$this->montant += $p->prix * $p->quantite; | |||
if(isset($p->produit)) { | |||
$this->poids += ($p->quantite * $p->produit->poids) / 1000 ; | |||
} | |||
} | |||
elseif ($p->mode_vente == 'poids') { | |||
$this->montant += $p->prix * $p->quantite / 1000; | |||
} | |||
} | |||
} | |||
// Montant payé | |||
if (isset($this->creditHistorique) && !$this->montant_paye) { | |||
foreach ($this->creditHistorique as $ch) { | |||
if ($ch->type == CreditHistorique::TYPE_PAIEMENT) { | |||
$this->montant_paye += $ch->montant; | |||
} | |||
elseif ($ch->type == CreditHistorique::TYPE_REMBOURSEMENT) { | |||
$this->montant_paye -= $ch->montant; | |||
} | |||
} | |||
} | |||
} | |||
/** | |||
* Retourne la quantité d'un produit donné de plusieurs commandes. | |||
* | |||
* @param integer $id_produit | |||
* @param array $commandes | |||
* | |||
* @return integer | |||
*/ | |||
public static function getQuantiteProduit($id_produit, $commandes) | |||
{ | |||
$quantite = 0; | |||
if (isset($commandes) && is_array($commandes) && count($commandes)) { | |||
foreach ($commandes as $c) { | |||
if(is_null($c->date_delete)) { | |||
foreach ($c->commandeProduits as $cp) { | |||
if ($cp->id_produit == $id_produit) { | |||
$quantite += $cp->quantite; | |||
} | |||
} | |||
} | |||
} | |||
} | |||
return $quantite; | |||
} | |||
/** | |||
* Retourne le montant payé de la commande. | |||
* | |||
* @return float | |||
*/ | |||
public function getMontantPaye() | |||
{ | |||
if ($this->montant_paye) { | |||
return $this->montant_paye; | |||
} | |||
else { | |||
$historique = CreditHistorique::find() | |||
->where(['id_commande' => $this->id]) | |||
->all(); | |||
$montant = 0; | |||
foreach ($historique as $ch) { | |||
if ($ch->type == CreditHistorique::TYPE_PAIEMENT) { | |||
$montant += $ch->montant; | |||
} | |||
elseif ($ch->type == CreditHistorique::TYPE_REMBOURSEMENT) { | |||
$montant -= $ch->montant; | |||
} | |||
} | |||
return $montant; | |||
} | |||
} | |||
/** | |||
* Retourne le montant de la commande. | |||
* | |||
* @param boolean $format | |||
* @return float | |||
*/ | |||
public function getMontant($format = false) | |||
{ | |||
if ($format) { | |||
return number_format($this->getMontant(), 2) . ' €'; | |||
} | |||
else { | |||
return $this->montant; | |||
} | |||
} | |||
/** | |||
* Retourne le montant restant à payer. | |||
* | |||
* @param boolean $format | |||
* @return float | |||
*/ | |||
public function getMontantRestant($format = false) | |||
{ | |||
$montant_restant = $this->getMontant() - $this->getMontantPaye(); | |||
if ($format) { | |||
return number_format($montant_restant, 2) . ' €'; | |||
} | |||
else { | |||
return $montant_restant; | |||
} | |||
} | |||
/** | |||
* Retourne le montant payé en surplus. | |||
* | |||
* @param boolean $format | |||
* @return float | |||
*/ | |||
public function getMontantSurplus($format = false) | |||
{ | |||
$montant_surplus = $this->getMontantPaye() - $this->getMontant(); | |||
if ($format) { | |||
return number_format($montant_surplus, 2) . ' €'; | |||
} | |||
else { | |||
return $montant_surplus; | |||
} | |||
} | |||
/** | |||
* Retourne les informations relatives à la commande au format JSON. | |||
* | |||
* @return string | |||
*/ | |||
public function getDataJson() | |||
{ | |||
$commande = Commande::find()->with('commandeProduits')->where(['id' => $this->id])->one(); | |||
$commande->init(); | |||
$json_commande = [ | |||
'produits' => [], | |||
'montant' => $commande->montant, | |||
'str_montant' => $commande->getMontant(true), | |||
'montant_paye' => $commande->getMontantPaye(), | |||
'commentaire' => $commande->commentaire, | |||
]; | |||
foreach ($commande->commandeProduits as $commande_produit) { | |||
$json_commande['produits'][$commande_produit->id_produit] = $commande_produit->quantite; | |||
} | |||
return json_encode($json_commande); | |||
} | |||
/** | |||
* Enregistre un modèle de type CreditHistorique. | |||
* | |||
* @param string $type | |||
* @param float $montant | |||
* @param integer $id_etablissement | |||
* @param integer $id_user | |||
* @param integer $id_user_action | |||
*/ | |||
public function creditHistorique($type, $montant, $id_etablissement, $id_user, $id_user_action) | |||
{ | |||
$credit_historique = new CreditHistorique; | |||
$credit_historique->id_user = $this->id_user; | |||
$credit_historique->id_commande = $this->id; | |||
$credit_historique->montant = $montant; | |||
$credit_historique->type = $type; | |||
$credit_historique->id_etablissement = $id_etablissement; | |||
$credit_historique->id_user_action = $id_user_action; | |||
$credit_historique->populateRelation('commande', $this) ; | |||
$credit_historique->populateRelation('user', User::find()->where(['id' => $this->id_user])->one()) ; | |||
$credit_historique->save(); | |||
} | |||
/** | |||
* Retourne le statut de paiement de la commande (payée, surplus, ou impayée). | |||
* | |||
* @return string | |||
*/ | |||
public function getStatutPaiement() | |||
{ | |||
// payé | |||
if ($this->getMontant() - $this->getMontantPaye() < 0.01 && | |||
$this->getMontant() - $this->getMontantPaye() >= 0) | |||
{ | |||
return self::STATUT_PAYEE; | |||
} | |||
// à rembourser | |||
elseif ($this->getMontant() - $this->getMontantPaye() <= -0.01) { | |||
return self::STATUT_SURPLUS; | |||
} | |||
// reste à payer | |||
elseif ($this->getMontant() - $this->getMontantPaye() >= 0.01) { | |||
return self::STATUT_IMPAYEE; | |||
} | |||
} | |||
/** | |||
* Retourne le résumé du panier au format HTML. | |||
* | |||
* @return string | |||
*/ | |||
public function getResumePanier() | |||
{ | |||
if (!isset($this->commandeProduits)) { | |||
$this->commandeProduits = CommandeProduit::find()->where(['id_commande' => $this->id])->all(); | |||
} | |||
$html = ''; | |||
$count = count($this->commandeProduits); | |||
$i = 0; | |||
foreach ($this->commandeProduits as $p) { | |||
if (isset($p->produit)) { | |||
$html .= $p->quantite . ' x ' . Html::encode($p->produit->nom); | |||
if (++$i != $count) { | |||
$html .= '<br />'; | |||
} | |||
} | |||
} | |||
return $html; | |||
} | |||
/** | |||
* Retourne le résumé du point de vente lié à la commande au format HTML. | |||
* | |||
* @return string | |||
*/ | |||
public function getResumePointVente() | |||
{ | |||
$html = ''; | |||
if (isset($this->pointVente)) { | |||
$html .= '<span class="nom-point-vente">' . Html::encode($this->pointVente->nom) . '</span>' | |||
. '<br /><span class="localite">' . Html::encode($this->pointVente->localite) . '</span>'; | |||
if (strlen($this->commentaire_point_vente)) { | |||
$html .= '<div class="commentaire"><span>' . Html::encode($this->commentaire_point_vente) . '</span></div>'; | |||
} | |||
} else { | |||
$html .= 'Point de vente supprimé'; | |||
} | |||
return $html; | |||
} | |||
/** | |||
* Retourne le résumé du paiement (montant, statut). | |||
* | |||
* @return string | |||
*/ | |||
public function getResumeMontant() | |||
{ | |||
$html = ''; | |||
$html .= $this->getMontant(true) . '<br />'; | |||
if ($this->montant_paye) { | |||
if ($this->getStatutPaiement() == Commande::STATUT_PAYEE) { | |||
$html .= '<span class="label label-success">Payée</span>'; | |||
} elseif ($this->getStatutPaiement() == Commande::STATUT_IMPAYEE) { | |||
$html .= '<span class="label label-danger">Non payée</span><br /> | |||
Reste <strong>' . $this->getMontantRestant(true) . '</strong> à payer'; | |||
} elseif ($this->getStatutPaiement() == Commande::STATUT_SURPLUS) { | |||
$html .= '<span class="label label-success">Payée</span>'; | |||
} | |||
} | |||
else { | |||
$html .= '<span class="label label-default">À régler sur place</span>'; | |||
} | |||
return $html; | |||
} | |||
/** | |||
* Retourne une chaine de caractère décrivant l'utilisateur lié à la commande. | |||
* | |||
* @return string | |||
*/ | |||
public function getStrUser() | |||
{ | |||
if (isset($this->user)) { | |||
return Html::encode($this->user->prenom . ' ' . $this->user->nom); | |||
} elseif (strlen($this->username)) { | |||
return Html::encode($this->username); | |||
} else { | |||
return 'Client introuvable'; | |||
} | |||
} | |||
/** | |||
* Recherche dans les commandes suivant les paramètres suivants : | |||
* - id_etablissement | |||
* - condition | |||
* - date | |||
* - type | |||
* - orderby | |||
* - limit | |||
* | |||
* @param array $params | |||
* @return array | |||
*/ | |||
public static function findBy($params = []) | |||
{ | |||
if (!isset($params['id_etablissement'])) | |||
$params['id_etablissement'] = Yii::$app->user->identity->id_etablissement; | |||
$commandes = Commande::find() | |||
->with('commandeProduits', 'creditHistorique', 'pointVente') | |||
->joinWith(['production', 'user','user.userEtablissement']) | |||
->where(['production.id_etablissement' => $params['id_etablissement']]); | |||
if (isset($params['condition'])) | |||
$commandes = $commandes->andWhere($params['condition']); | |||
if (isset($params['date'])) | |||
$commandes = $commandes->andWhere(['production.date' => $params['date']]); | |||
if (isset($params['type'])) | |||
$commandes = $commandes->andWhere(['commande.type' => $params['type']]); | |||
if (isset($params['orderby'])) | |||
$commandes = $commandes->orderBy($params['orderby']); | |||
else | |||
$commandes = $commandes->orderBy('date ASC'); | |||
if (isset($params['limit'])) | |||
$commandes = $commandes->limit($params['limit']); | |||
$commandes = $commandes->all(); | |||
return $commandes; | |||
} | |||
/** | |||
* Retourne l'état de la commande (livrée, modifiable ou en préparation) | |||
* | |||
* @return string | |||
*/ | |||
public function getEtat() | |||
{ | |||
$delai_commande = Etablissement::getConfig('delai_commande', $this->production->id_etablissement); | |||
$heure_limite = Etablissement::getConfig('heure_limite_commande', $this->production->id_etablissement); | |||
$date_commande = strtotime($this->production->date); | |||
$date_today = strtotime(date('Y-m-d')); | |||
$heure_today = date('G'); | |||
$nb_jours = (int) (($date_commande - $date_today) / (24 * 60 * 60)); | |||
if ($nb_jours <= 0) { | |||
return self::ETAT_LIVREE; | |||
} | |||
elseif ($nb_jours >= $delai_commande && | |||
($nb_jours != $delai_commande || | |||
($nb_jours == $delai_commande && $heure_today < $heure_limite))) | |||
{ | |||
return self::ETAT_MODIFIABLE; | |||
} | |||
return self::ETAT_PREPARATION; | |||
} | |||
/** | |||
* Retourne le type de la commande (client, automatique ou admin) sous forme | |||
* texte ou HTML. | |||
* | |||
* @param boolean $with_label | |||
* @return string | |||
*/ | |||
public function getStrType($with_label = false) { | |||
$class_label = ''; | |||
$str = ''; | |||
if ($this->type == self::TYPE_USER) { | |||
$class_label = 'success'; | |||
$str = 'Client'; | |||
} elseif ($this->type == self::TYPE_AUTO) { | |||
$class_label = 'default'; | |||
$str = 'Auto'; | |||
} elseif ($this->type == self::TYPE_ADMIN) { | |||
$class_label = 'warning'; | |||
$str = 'Vous'; | |||
} | |||
if ($with_label) | |||
return '<span class="label label-' . $class_label . '">' . $str . '</span>'; | |||
else | |||
return $str; | |||
} | |||
/** | |||
* Retourne l'historique de la commande (ajoutée, modifiée, supprimée) au format | |||
* HTML. | |||
* | |||
* @return string | |||
*/ | |||
public function getStrHistorique() | |||
{ | |||
$arr = [ | |||
'class' => 'create', | |||
'glyphicon' => 'plus', | |||
'str' => 'Ajoutée', | |||
'date' => $this->date | |||
] ; | |||
if(!is_null($this->date_update)) { | |||
$arr = [ | |||
'class' => 'update', | |||
'glyphicon' => 'pencil', | |||
'str' => 'Modifiée', | |||
'date' => $this->date_update | |||
] ; | |||
} | |||
if(!is_null($this->date_delete)) { | |||
$arr = [ | |||
'class' => 'delete', | |||
'glyphicon' => 'remove', | |||
'str' => 'Annulée', | |||
'date' => $this->date_delete | |||
] ; | |||
} | |||
$html = '<div class="small"><span class="'.$arr['class'].'"><span class="glyphicon glyphicon-'.$arr['glyphicon'].'"></span> '.$arr['str'].'</span> le <strong>'.date('d/m/Y à G\hi', strtotime($arr['date'])).'</strong></div>' ; | |||
return $html ; | |||
} | |||
/** | |||
* Retourne une classe identifiant l'historique de la commande (ajoutée, | |||
* modifiée, supprimée). | |||
* | |||
* @return string | |||
*/ | |||
public function getClassHistorique() | |||
{ | |||
if(!is_null($this->date_delete)) { | |||
return 'commande-delete' ; | |||
} | |||
if(!is_null($this->date_update)) { | |||
return 'commande-update' ; | |||
} | |||
return 'commande-create' ; | |||
} | |||
} |
@@ -56,26 +56,26 @@ use yii\helpers\Html; | |||
* @property integer $id_etablissement | |||
* @property string $moyen_paiement | |||
*/ | |||
class CreditHistorique extends ActiveRecord | |||
class CreditHistory extends ActiveRecord | |||
{ | |||
const TYPE_CREDIT_INITIAL = 'credit-initial'; | |||
const TYPE_INITIAL_CREDIT = 'initial-credit'; | |||
const TYPE_CREDIT = 'credit'; | |||
const TYPE_PAIEMENT = 'paiement'; | |||
const TYPE_REMBOURSEMENT = 'remboursement'; | |||
const TYPE_PAYMENT = 'payment'; | |||
const TYPE_REFUND= 'refund'; | |||
const TYPE_DEBIT = 'debit'; | |||
const MOYEN_CB = 'cb'; | |||
const MOYEN_ESPECES = 'especes'; | |||
const MOYEN_CHEQUE = 'cheque'; | |||
const MOYEN_AUTRE = 'autre'; | |||
const PAYMENT_CREDIT_CARD = 'credit-card'; | |||
const PAYMENT_MONEY = 'money'; | |||
const PAYMENT_CHEQUE = 'cheque'; | |||
const PAYMENT_OTHER = 'other'; | |||
/** | |||
* @inheritdoc | |||
*/ | |||
public static function tableName() | |||
{ | |||
return 'credit_historique'; | |||
return 'credit_history'; | |||
} | |||
/** |
@@ -0,0 +1,606 @@ | |||
<?php | |||
/** | |||
Copyright La boîte à pain (2018) | |||
contact@laboiteapain.net | |||
Ce logiciel est un programme informatique servant à aider les producteurs | |||
à distribuer leur production en circuits courts. | |||
Ce logiciel est régi par la licence CeCILL soumise au droit français et | |||
respectant les principes de diffusion des logiciels libres. Vous pouvez | |||
utiliser, modifier et/ou redistribuer ce programme sous les conditions | |||
de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA | |||
sur le site "http://www.cecill.info". | |||
En contrepartie de l'accessibilité au code source et des droits de copie, | |||
de modification et de redistribution accordés par cette licence, il n'est | |||
offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons, | |||
seule une responsabilité restreinte pèse sur l'auteur du programme, le | |||
titulaire des droits patrimoniaux et les concédants successifs. | |||
A cet égard l'attention de l'utilisateur est attirée sur les risques | |||
associés au chargement, à l'utilisation, à la modification et/ou au | |||
développement et à la reproduction du logiciel par l'utilisateur étant | |||
donné sa spécificité de logiciel libre, qui peut le rendre complexe à | |||
manipuler et qui le réserve donc à des développeurs et des professionnels | |||
avertis possédant des connaissances informatiques approfondies. Les | |||
utilisateurs sont donc invités à charger et tester l'adéquation du | |||
logiciel à leurs besoins dans des conditions permettant d'assurer la | |||
sécurité de leurs systèmes et ou de leurs données et, plus généralement, | |||
à l'utiliser et l'exploiter dans les mêmes conditions de sécurité. | |||
Le fait que vous puissiez accéder à cet en-tête signifie que vous avez | |||
pris connaissance de la licence CeCILL, et que vous en avez accepté les | |||
termes. | |||
*/ | |||
namespace common\models; | |||
use Yii; | |||
use yii\helpers\Html; | |||
use common\models\Producer; | |||
use common\components\ActiveRecordCommon ; | |||
/** | |||
* This is the model class for table "commande". | |||
* | |||
* @property integer $id | |||
* @property integer $id_user | |||
* @property string $date | |||
* @property string $date_update | |||
* @property integer $id_point_sale | |||
* @property integer $id_production | |||
* @property boolean $paiement_automatique | |||
*/ | |||
class Order extends ActiveRecordCommon | |||
{ | |||
var $amount = 0 ; | |||
var $paid_amount = 0 ; | |||
var $Weight = 0 ; | |||
const ORIGIN_AUTO = 'auto'; | |||
const ORIGIN_USER = 'user'; | |||
const ORIGIN_ADMIN = 'admin'; | |||
const PAYMENT_PAID = 'paid'; | |||
const PAYMENT_UNPAID = 'unpaid'; | |||
const PAYMENT_SURPLUS = 'surplus'; | |||
const AMOUNT_TOTAL = 'total' ; | |||
const AMOUNT_PAID = 'paid' ; | |||
const AMOUNT_REMAINING = 'remaining' ; | |||
const AMOUNT_SURPLUS = 'surplus' ; | |||
const STATE_OPEN = 'open'; | |||
const STATE_PREPARATION = 'preparation'; | |||
const STATE_DELIVERED = 'livree'; | |||
/** | |||
* @inheritdoc | |||
*/ | |||
public static function tableName() | |||
{ | |||
return 'order'; | |||
} | |||
/* | |||
* Relations | |||
*/ | |||
public function getUser() | |||
{ | |||
return $this->hasOne(User::className(), ['id' => 'id_user']); | |||
} | |||
public function getProductOrder() | |||
{ | |||
return $this->hasMany(ProductOrder::className(),['id_order' => 'id']) | |||
->with('product'); | |||
} | |||
public function getProduction() | |||
{ | |||
return $this->hasOne(Production::className(), ['id' => 'id_production']) | |||
->with('producer'); | |||
} | |||
public function getPointSale() | |||
{ | |||
return $this->hasOne(PointSale::className(), ['id' => 'id_point_sale']) | |||
->with('pointSaleUser'); | |||
} | |||
public function getCreditHistory() | |||
{ | |||
return $this->hasMany(CreditHistory::className(), ['id_order' => 'id']); | |||
} | |||
/** | |||
* @inheritdoc | |||
*/ | |||
public function rules() | |||
{ | |||
return [ | |||
[['id_user', 'date', 'id_point_sale', 'id_production'], 'required', 'message' => ''], | |||
[['id_user', 'id_point_sale', 'id_production'], 'integer'], | |||
[['payment_auto'], 'boolean'], | |||
[['date', 'date_update', 'comment', 'point_sale_comment'], 'safe'] | |||
]; | |||
} | |||
/** | |||
* @inheritdoc | |||
*/ | |||
public function attributeLabels() | |||
{ | |||
return [ | |||
'id' => 'ID', | |||
'id_user' => 'Id User', | |||
'date' => 'Date', | |||
'date_update' => 'Date de modification', | |||
'id_point_sale' => 'Point de vente', | |||
'id_production' => 'Date de production', | |||
]; | |||
} | |||
/** | |||
* Initialise le montant total, le montant déjà payé et le poids de la | |||
* commande. | |||
*/ | |||
public function init() | |||
{ | |||
$this->initAmount() ; | |||
$this->initPaidAmount() ; | |||
} | |||
/** | |||
* Initialise le montant de la commande. | |||
* | |||
*/ | |||
public function initAmount() { | |||
if (isset($this->productOrder)) { | |||
foreach ($this->productOrder as $p) { | |||
if ($p->sale_mode == Product::SALE_MODE_UNIT) { | |||
$this->amount += $p->price * $p->quantity ; | |||
if(isset($p->product)) { | |||
$this->weight += ($p->quantity * $p->product->weight) / 1000 ; | |||
} | |||
} | |||
elseif ($p->sale_mode == Product::SALE_MODE_WEIGHT) { | |||
$this->amount += $p->price * $p->quantity / 1000; | |||
} | |||
} | |||
} | |||
} | |||
/** | |||
* Initialise le montant payé de la commande et le retourne. | |||
* | |||
* @return float | |||
*/ | |||
public function initPaidAmount() | |||
{ | |||
$history = CreditHistory::find() | |||
->where(['id_order' => $this->id]) | |||
->all(); | |||
$this->paid_amount = 0 ; | |||
if(count($history)) { | |||
foreach ($history as $ch) { | |||
if ($ch->type == CreditHistory::TYPE_PAYMENT) { | |||
$this->paid_amount += $ch->amount; | |||
} | |||
elseif ($ch->type == CreditHistory::TYPE_REFUND) { | |||
$this->paid_amount -= $ch->amount; | |||
} | |||
} | |||
} | |||
} | |||
/** | |||
* Retourne le montant de la commande (total, payé, restant, ou en surplus). | |||
* | |||
* @param boolean $format | |||
* @return float | |||
*/ | |||
public function getAmount($type = self::AMOUNT_TOTAL, $format = false) | |||
{ | |||
switch($type) { | |||
case self::AMOUNT_TOTAL : | |||
$amount = $this->amount ; | |||
break ; | |||
case self::AMOUNT_PAID : | |||
$this->initPaidAmount() ; | |||
$amount = $this->paid_amount ; | |||
break ; | |||
case self::AMOUNT_REMAINING : | |||
$amount = $this->getAmount(self::AMOUNT_TOTAL) | |||
- $this->getAmount(self::AMOUNT_PAID) ; | |||
break ; | |||
case self::AMOUNT_EXCESS : | |||
$amount = $this->getAmount(self::AMOUNT_PAID) | |||
- $this->getAmount(self::AMOUNT_TOTAL) ; | |||
break ; | |||
} | |||
if ($format) { | |||
return number_format($amount, 2) . ' €'; | |||
} | |||
else { | |||
return $amount; | |||
} | |||
} | |||
/** | |||
* Retourne les informations relatives à la commande au format JSON. | |||
* | |||
* @return string | |||
*/ | |||
public function getDataJson() | |||
{ | |||
$order = Order::findBy(['order.id' => $this->id]) ; | |||
$json_order = [] ; | |||
if($order) { | |||
$json_order = [ | |||
'products' => [], | |||
'amount' => $order->montant, | |||
'str_amount' => $order->getAmount(self::TYPE_AMOUNT_TOTAL, true), | |||
'paid_amount' => $order->getPaidAmount(self::TYPE_AMOUNT_PAID), | |||
'comment' => $order->comment, | |||
]; | |||
foreach ($order->productOrder as $product_order) { | |||
$json_order['products'][$product_order->id_product] = $product_order->quantity; | |||
} | |||
} | |||
return json_encode($json_order); | |||
} | |||
/** | |||
* Enregistre un modèle de type CreditHistorique. | |||
* | |||
* @param string $type | |||
* @param float $montant | |||
* @param integer $id_producer | |||
* @param integer $id_user | |||
* @param integer $id_user_action | |||
*/ | |||
public function saveCreditHistory($type, $amount, $id_producer, $id_user, $id_user_action) | |||
{ | |||
$credit_history = new CreditHistorique; | |||
$credit_history->id_user = $this->id_user; | |||
$credit_history->id_order = $this->id; | |||
$credit_history->amount = $amount; | |||
$credit_history->type = $type; | |||
$credit_history->id_producer = $id_producer; | |||
$credit_history->id_user_action = $id_user_action; | |||
$credit_history->populateRelation('order', $this) ; | |||
$credit_history->populateRelation('user', User::find()->where(['id' => $this->id_user])->one()) ; | |||
$credit_history->save(); | |||
} | |||
/** | |||
* Retourne le statut de paiement de la commande (payée, surplus, ou impayée). | |||
* | |||
* @return string | |||
*/ | |||
public function getPaymentStatus() | |||
{ | |||
// payé | |||
if ($this->getAmount() - $this->getAmount(self::TYPE_AMOUNT_PAID) < 0.01 && | |||
$this->getAmount() - $this->getAmount(self::TYPE_AMOUNT_PAID) >= 0) | |||
{ | |||
return self::PAYMENT_PAID ; | |||
} | |||
// à rembourser | |||
elseif ($this->getAmount() - $this->getAmount(self::TYPE_AMOUNT_PAID) <= -0.01) { | |||
return self::PAYMENT_SURPLUS ; | |||
} | |||
// reste à payer | |||
elseif ($this->getAmount() - $this->getAmount(self::TYPE_AMOUNT_PAID) >= 0.01) { | |||
return self::PAYMENT_UNPAID ; | |||
} | |||
} | |||
/** | |||
* Retourne le résumé du panier au format HTML. | |||
* | |||
* @return string | |||
*/ | |||
public function getCartSummary() | |||
{ | |||
if (!isset($this->productOrder)) { | |||
$this->productOrder = productOrder::find()->where(['id_order' => $this->id])->all(); | |||
} | |||
$html = ''; | |||
$count = count($this->productOrder); | |||
$i = 0; | |||
foreach ($this->productOrder as $p) { | |||
if (isset($p->product)) { | |||
$html .= $p->quantity . ' x ' . Html::encode($p->product->name); | |||
if (++$i != $count) { | |||
$html .= '<br />'; | |||
} | |||
} | |||
} | |||
return $html; | |||
} | |||
/** | |||
* Retourne le résumé du point de vente lié à la commande au format HTML. | |||
* | |||
* @return string | |||
*/ | |||
public function getSalePointSummary() | |||
{ | |||
$html = ''; | |||
if (isset($this->salePoint)) { | |||
$html .= '<span class="nom-point-vente">' . | |||
Html::encode($this->salePoint->name) . | |||
'</span>' . | |||
'<br /><span class="localite">' | |||
. Html::encode($this->salePoint->locality) | |||
. '</span>'; | |||
if (strlen($this->sale_point_comment)) { | |||
$html .= '<div class="commentaire"><span>' | |||
. Html::encode($this->sale_point_comment) | |||
. '</span></div>'; | |||
} | |||
} else { | |||
$html .= 'Point de vente supprimé'; | |||
} | |||
return $html; | |||
} | |||
/** | |||
* Retourne le résumé du paiement (montant, statut). | |||
* | |||
* @return string | |||
*/ | |||
public function getAmountSummary() | |||
{ | |||
$html = ''; | |||
$html .= $this->getAmount(self::TYPE_AMOUNT_TOTAL, true) . '<br />'; | |||
if ($this->paid_amount) { | |||
if ($this->getPaymentStatus() == Order::PAYMENT_PAID) { | |||
$html .= '<span class="label label-success">Payée</span>'; | |||
} elseif ($this->getPaymentStatus() == Order::PAYMENT_UNPAID) { | |||
$html .= '<span class="label label-danger">Non payée</span><br /> | |||
Reste <strong>' . $this->getRemainingAmount(true) . '</strong> à payer'; | |||
} elseif ($this->getPaymentStatus() == Order::PAYMENT_SURPLUS) { | |||
$html .= '<span class="label label-success">Payée</span>'; | |||
} | |||
} | |||
else { | |||
$html .= '<span class="label label-default">À régler sur place</span>'; | |||
} | |||
return $html; | |||
} | |||
/** | |||
* Retourne une chaine de caractère décrivant l'utilisateur lié à la commande. | |||
* | |||
* @return string | |||
*/ | |||
public function getStrUser() | |||
{ | |||
if (isset($this->user)) { | |||
return Html::encode($this->user->prenom . ' ' . $this->user->nom); | |||
} elseif (strlen($this->username)) { | |||
return Html::encode($this->username); | |||
} else { | |||
return 'Client introuvable'; | |||
} | |||
} | |||
/** | |||
* Retourne l'état de la commande (livrée, modifiable ou en préparation) | |||
* | |||
* @return string | |||
*/ | |||
public function getState() | |||
{ | |||
$order_delay = Producer::getConfig( | |||
'order_delay', | |||
$this->production->id_producer | |||
); | |||
$order_deadline = Producer::getConfig( | |||
'order_deadline', | |||
$this->production->id_producer | |||
); | |||
$order_date = strtotime($this->production->date); | |||
$today = strtotime(date('Y-m-d')); | |||
$today_hour = date('G'); | |||
$nb_days = (int) (($date_order - $today) / (24 * 60 * 60)); | |||
if ($nb_days <= 0) { | |||
return self::STATE_DELIVERED; | |||
} | |||
elseif ($nb_days >= $order_delay && | |||
($nb_days != $order_delay || | |||
($nb_days == $order_delay && $today_hour < $order_deadline))) | |||
{ | |||
return self::STATE_OPEN; | |||
} | |||
return self::STATE_PREPARATION ; | |||
} | |||
/** | |||
* Retourne l'origine de la commande (client, automatique ou admin) sous forme | |||
* texte ou HTML. | |||
* | |||
* @param boolean $with_label | |||
* @return string | |||
*/ | |||
public function getStrOrigin($with_label = false) | |||
{ | |||
$class_label = ''; | |||
$str = ''; | |||
if ($this->type == self::ORIGIN_USER) { | |||
$class_label = 'success'; | |||
$str = 'Client'; | |||
} | |||
elseif ($this->type == self::ORIGIN_AUTO) { | |||
$class_label = 'default'; | |||
$str = 'Auto'; | |||
} | |||
elseif ($this->type == self::ORIGIN_ADMIN) { | |||
$class_label = 'warning'; | |||
$str = 'Vous'; | |||
} | |||
if ($with_label) { | |||
return '<span class="label label-' . $class_label . '">' . $str . '</span>'; | |||
} | |||
else { | |||
return $str; | |||
} | |||
} | |||
/** | |||
* Retourne l'historique de la commande (ajoutée, modifiée, supprimée) au | |||
* format HTML. | |||
* | |||
* @return string | |||
*/ | |||
public function getStrHistory() | |||
{ | |||
$arr = [ | |||
'class' => 'create', | |||
'glyphicon' => 'plus', | |||
'str' => 'Ajoutée', | |||
'date' => $this->date | |||
] ; | |||
if(!is_null($this->date_update)) { | |||
$arr = [ | |||
'class' => 'update', | |||
'glyphicon' => 'pencil', | |||
'str' => 'Modifiée', | |||
'date' => $this->date_update | |||
] ; | |||
} | |||
if(!is_null($this->date_delete)) { | |||
$arr = [ | |||
'class' => 'delete', | |||
'glyphicon' => 'remove', | |||
'str' => 'Annulée', | |||
'date' => $this->date_delete | |||
] ; | |||
} | |||
$html = '<div class="small"><span class="'.$arr['class'].'"><span class="glyphicon glyphicon-'.$arr['glyphicon'].'"></span> '.$arr['str'].'</span> le <strong>'.date('d/m/Y à G\hi', strtotime($arr['date'])).'</strong></div>' ; | |||
return $html ; | |||
} | |||
/** | |||
* Retourne une classe identifiant l'historique de la commande (ajoutée, | |||
* modifiée, supprimée). | |||
* | |||
* @return string | |||
*/ | |||
public function getClassHistory() | |||
{ | |||
if(!is_null($this->date_delete)) { | |||
return 'commande-delete' ; | |||
} | |||
if(!is_null($this->date_update)) { | |||
return 'commande-update' ; | |||
} | |||
return 'commande-create' ; | |||
} | |||
/** | |||
* Retourne la quantité d'un produit donné de plusieurs commandes. | |||
* | |||
* @param integer $id_produit | |||
* @param array $commandes | |||
* | |||
* @return integer | |||
*/ | |||
public static function getProductQuantity($id_product, $orders) | |||
{ | |||
$quantity = 0; | |||
if (isset($orders) && is_array($orders) && count($orders)) { | |||
foreach ($orders as $c) { | |||
if(is_null($c->date_delete)) { | |||
foreach ($c->productOrder as $po) { | |||
if ($po->id_product == $id_product) { | |||
$quantity += $po->quantity ; | |||
} | |||
} | |||
} | |||
} | |||
} | |||
return $quantity ; | |||
} | |||
/** | |||
* Recherche des commandes. | |||
* | |||
* @param array $params | |||
* @param array $conditions | |||
* @param string $orderby | |||
* @param integer $limit | |||
* @return array | |||
*/ | |||
public static function findBy($params = [], $conditions = [], $orderby = '', $limit = 0) | |||
{ | |||
if (!isset($params['production.id_producer']) && !Yii::$app->user->isGuest) { | |||
$params['production.id_producer'] = Producer::getCurrent(); | |||
} | |||
$orders = parent::findByGeneric( | |||
'Order', | |||
'order.id', | |||
['productOrder', 'creditHistory', 'pointSale'], | |||
['production', 'user', 'user.userProducer'], | |||
$params, | |||
$conditions, | |||
strlen($orderby) ? $orderby : 'date ASC', | |||
$limit | |||
) ; | |||
/* | |||
* Initialisation des commandes | |||
*/ | |||
if(is_array($orders)) { | |||
if(count($orders)) { | |||
foreach($orders as $order) { | |||
$order->init() ; | |||
} | |||
return $orders ; | |||
} | |||
} | |||
else { | |||
$order = $orders ; | |||
$order->init() ; | |||
return $order ; | |||
} | |||
return false ; | |||
} | |||
} |
@@ -51,7 +51,7 @@ use common\models\ProductionPointVente; | |||
* @property string $adresse | |||
* @property integer $id_boulangerie | |||
*/ | |||
class PointVente extends \yii\db\ActiveRecord | |||
class PointSale extends \yii\db\ActiveRecord | |||
{ | |||
var $commandes = []; | |||
var $recettes = 0; | |||
@@ -65,7 +65,7 @@ class PointVente extends \yii\db\ActiveRecord | |||
*/ | |||
public static function tableName() | |||
{ | |||
return 'point_vente'; | |||
return 'point_sale'; | |||
} | |||
/** | |||
@@ -123,14 +123,14 @@ class PointVente extends \yii\db\ActiveRecord | |||
* Relations | |||
*/ | |||
public function getPointVenteUser() | |||
public function getPointSaleUser() | |||
{ | |||
return $this->hasMany(PointVenteUser::className(), ['id_point_vente' => 'id']); | |||
return $this->hasMany(PointSaleUser::className(), ['id_point_sale' => 'id']); | |||
} | |||
public function getProductionPointVente() | |||
{ | |||
return $this->hasMany(ProductionPointVente::className(), ['id_point_vente' => 'id']); | |||
return $this->hasMany(ProductionPointVente::className(), ['id_point_sale' => 'id']); | |||
} | |||
/** |
@@ -46,7 +46,7 @@ use Yii; | |||
* @property integer $id_point_vente | |||
* @property integer $id_user | |||
*/ | |||
class PointVenteUser extends \yii\db\ActiveRecord | |||
class PointSaleUser extends \yii\db\ActiveRecord | |||
{ | |||
/** | |||
@@ -54,7 +54,7 @@ class PointVenteUser extends \yii\db\ActiveRecord | |||
*/ | |||
public static function tableName() | |||
{ | |||
return 'point_vente_user'; | |||
return 'point_sale_user'; | |||
} | |||
/** |
@@ -54,7 +54,7 @@ use yii\helpers\Html; | |||
* @property string $code_postal | |||
* @property string $ville | |||
*/ | |||
class Etablissement extends \yii\db\ActiveRecord | |||
class Producer extends \yii\db\ActiveRecord | |||
{ | |||
const PAIEMENT_OK = 'ok'; | |||
@@ -67,7 +67,7 @@ class Etablissement extends \yii\db\ActiveRecord | |||
*/ | |||
public static function tableName() | |||
{ | |||
return 'etablissement'; | |||
return 'producer'; | |||
} | |||
/** | |||
@@ -350,6 +350,21 @@ class Etablissement extends \yii\db\ActiveRecord | |||
return $user_producer ; | |||
} | |||
/** | |||
* Retourne le producteur courant (le producteur auquel l'utilisateur | |||
* connecté est rattaché). | |||
* | |||
* @return boolean | |||
*/ | |||
public static function getCurrent() | |||
{ | |||
if(!Yii::$app->user->isGuest) { | |||
return Yii::$app->user->identity->id_producer ; | |||
} | |||
return false ; | |||
} | |||
} | |||
@@ -54,17 +54,20 @@ use Yii; | |||
* @property double $poids | |||
* @property string $recette | |||
*/ | |||
class Produit extends \yii\db\ActiveRecord | |||
class Product extends \yii\db\ActiveRecord | |||
{ | |||
var $total = 0; | |||
const SALE_MODE_UNIT = 'unit' ; | |||
const SALE_MODE_WEIGHT = 'weight' ; | |||
/** | |||
* @inheritdoc | |||
*/ | |||
public static function tableName() | |||
{ | |||
return 'produit'; | |||
return 'product'; | |||
} | |||
/** |
@@ -48,7 +48,7 @@ use Yii; | |||
* @property integer $id_produit | |||
* @property double $quantite | |||
*/ | |||
class CommandeProduit extends \yii\db\ActiveRecord | |||
class ProductOrder extends \yii\db\ActiveRecord | |||
{ | |||
/** | |||
@@ -56,16 +56,16 @@ class CommandeProduit extends \yii\db\ActiveRecord | |||
*/ | |||
public static function tableName() | |||
{ | |||
return 'commande_produit'; | |||
return 'product_order'; | |||
} | |||
/* | |||
* Relations | |||
*/ | |||
public function getProduit() | |||
public function getProduct() | |||
{ | |||
return $this->hasOne(Produit::className(), ['id' => 'id_produit']); | |||
return $this->hasOne(Product::className(), ['id' => 'id_product']); | |||
} | |||
/** |
@@ -60,9 +60,9 @@ class Production extends \yii\db\ActiveRecord | |||
return 'production'; | |||
} | |||
public function getEtablissement() | |||
public function getProducer() | |||
{ | |||
return $this->hasOne(Etablissement::className(), ['id' => 'id_etablissement']); | |||
return $this->hasOne(Producer::className(), ['id' => 'id_producer']); | |||
} | |||
/** |
@@ -180,9 +180,9 @@ class User extends ActiveRecord implements IdentityInterface | |||
* Relations | |||
*/ | |||
public function getUserEtablissement() | |||
public function getUserProducer() | |||
{ | |||
return $this->hasMany(UserEtablissement::className(), ['id_user' => 'id']); | |||
return $this->hasMany(UserProducer::className(), ['id_user' => 'id']); | |||
} | |||
/** |
@@ -48,7 +48,7 @@ use Yii; | |||
* @property boolean $actif | |||
* @property boolean $favoris | |||
*/ | |||
class UserEtablissement extends \yii\db\ActiveRecord | |||
class UserProducer extends \yii\db\ActiveRecord | |||
{ | |||
/** |
@@ -134,7 +134,7 @@ class SiteController extends FrontendController | |||
* @return mixed | |||
*/ | |||
public function actionIndex() | |||
{ | |||
{ | |||
return $this->render('index'); | |||
} | |||