= $form->field($model, 'name')->textInput(['maxlength' => 255]) ?>
= $form->field($model, 'locality')->textInput(['maxlength' => 255]) ?>
= $form->field($model, 'address')->textarea(['rows' => 6]) ?>
= $form->field($model, 'id_user', [
'template' => '{label}
Nouvel utilisateur {input}
{hint}',
])
->dropDownList(
ArrayHelper::map(User::findBy()->orderBy('type DESC')->all(), 'user_id', function ($model) {
if(strlen($model['name_legal_person'])) {
return 'Personne morale / '.$model['name_legal_person'] ;
}
else {
return $model['lastname'] . ' ' . $model['name'];
}
}),
[
'prompt' => '--',
]
)->hint('Utilisé lors de la facturation'); ?>
Attention, le système de Crédit est désactivé au niveau des ' . Html::a('paramètres globaux', ['producer/update']) . '.';
endif;
echo $form->field($model, 'credit')
->checkbox()
->hint('Cochez cette case si le client peut régler ses commandes via son compte
Crédit pour ce point de vente.'
. $addHintCredit);
?>
= $form->field($model, 'credit_functioning')
->dropDownList([
'' => 'Paramètres globaux (' . Producer::$creditFunctioningArray[Producer::getConfig('credit_functioning')] . ')',
Producer::CREDIT_FUNCTIONING_OPTIONAL => Producer::$creditFunctioningArray[Producer::CREDIT_FUNCTIONING_OPTIONAL],
Producer::CREDIT_FUNCTIONING_MANDATORY => Producer::$creditFunctioningArray[Producer::CREDIT_FUNCTIONING_MANDATORY],
Producer::CREDIT_FUNCTIONING_USER => Producer::$creditFunctioningArray[Producer::CREDIT_FUNCTIONING_USER],
], [])->hint(Producer::HINT_CREDIT_FUNCTIONING); ?>
Jours de livraison
= $form->field($model, 'delivery_monday')->checkbox() ?>
= $form->field($model, 'delivery_tuesday')->checkbox() ?>
= $form->field($model, 'delivery_wednesday')->checkbox() ?>
= $form->field($model, 'delivery_thursday')->checkbox() ?>
= $form->field($model, 'delivery_friday')->checkbox() ?>
= $form->field($model, 'delivery_saturday')->checkbox() ?>
= $form->field($model, 'delivery_sunday')->checkbox() ?>
Informations
= $form->field($model, 'infos_monday')->textarea(['rows' => 3]) ?>
= $form->field($model, 'infos_tuesday')->textarea(['rows' => 3]) ?>
= $form->field($model, 'infos_wednesday')->textarea(['rows' => 3]) ?>
= $form->field($model, 'infos_thursday')->textarea(['rows' => 3]) ?>
= $form->field($model, 'infos_friday')->textarea(['rows' => 3]) ?>
= $form->field($model, 'infos_saturday')->textarea(['rows' => 3]) ?>
= $form->field($model, 'infos_sunday')->textarea(['rows' => 3]) ?>
= $form->field($model, 'code')
->label('Code d\'accès')
->hint('Renseignez ce champs si vous souhaitez protéger ce point de vente par un code.')
?>
= $form->field($model, 'restricted_access')
->checkbox()
->hint('Cochez cette case si seulement un groupe restreint d\'utilisateurs peuvent accéder à ce point de vente.
'
. 'Dans le cas des boîtes à pain, il vous est possible de spécifier un commentaire pour chaque utilisateur sélectionné afin de lui renseigner son numéro de boîte ou son code.') ?>
= Html::activeCheckboxList($model, 'users', ArrayHelper::map($users, 'user_id', function ($model_user, $defaultValue) use ($model) {
return Html::encode($model_user['lastname'] . ' ' . $model_user['name']) . '
'
. Html::activeTextInput(
$model,
'users_comment[' . $model_user['user_id'] . ']',
[
'class' => 'form-control commentaire',
'placeholder' => 'Commentaire',
'value' => (isset($model->users_comment[$model_user['user_id']])) ? Html::encode($model->users_comment[$model_user['user_id']]) : ''
]);
}), ['encode' => false, 'class' => '']) ?>
= Html::submitButton($model->isNewRecord ? 'Ajouter' : 'Modifier', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>