getChecker(); ?>
false ]); ?>

Général

field($model, 'name')->textInput(['maxlength' => 255]) ?> field($model, 'locality')->textInput(['maxlength' => 255]) ?> field($model, 'address')->textarea(['rows' => 4]) ?> field($model, 'minimum_order_amount')->textInput() ?>

Modes de paiement

field($model, 'payment_method_onsite')->widget(Toggle::class, [ 'options' => [ 'data-id' => $model->id, 'data-on' => 'Oui', 'data-off' => 'Non', ], ] ); $addHintCredit = ''; if (!$producerModule->getConfig('credit')): $addHintCredit = 'Attention, le système de cagnotte est désactivé au niveau des ' . Html::a('paramètres globaux', ['producer/update']); endif; echo '
'; echo '
'; echo $form->field($model, 'payment_method_credit')->widget(Toggle::class, [ 'options' => [ 'data-id' => $model->id, 'data-on' => 'Oui', 'data-off' => 'Non', ], ] )->hint($addHintCredit); echo '
'; echo '
'; echo $form->field($model, 'credit_functioning') ->label('Fonctionnement de la cagnotte ') ->dropDownList([ 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], ]); echo '
'; echo '
'; if($featureChecker->isEnabled(Feature::ALIAS_ONLINE_PAYMENT)) { echo $form->field($model, 'payment_method_online')->widget(Toggle::class, [ 'options' => [ 'data-id' => $model->id, 'data-on' => 'Oui', 'data-off' => 'Non', ], ] ); } ?>
field($model, 'product_price_percent') ->dropDownList( ProductPrice::percentValues(), [])->hint('Pourcentage appliqué aux prix de chaque produit dans ce point de vente.');*/ ?>

Livraison à domicile

field($model, 'is_home_delivery')->widget(Toggle::class, [ 'options' => [ 'data-id' => $model->id, 'data-on' => 'Oui', 'data-off' => 'Non', ], ] ); ?>

Boîte à pain

field($model, 'is_bread_box')->widget(Toggle::class, [ 'options' => [ 'data-id' => $model->id, 'data-on' => 'Oui', 'data-off' => 'Non', ], ] ); ?> field($model, 'bread_box_code')->textInput() ?> field($model, 'maximum_number_orders')->textInput() ?>

Jours de livraison

2, 'placeholder' => 'Informations'] ?>
field($model, 'delivery_monday')->checkbox() ?> field($model, 'infos_monday')->textarea($optionsTextareaInfos) ?>
field($model, 'delivery_tuesday')->checkbox() ?> field($model, 'infos_tuesday')->textarea($optionsTextareaInfos) ?>
field($model, 'delivery_wednesday')->checkbox() ?> field($model, 'infos_wednesday')->textarea($optionsTextareaInfos) ?>
field($model, 'delivery_thursday')->checkbox() ?> field($model, 'infos_thursday')->textarea($optionsTextareaInfos) ?>
field($model, 'delivery_friday')->checkbox() ?> field($model, 'infos_friday')->textarea($optionsTextareaInfos) ?>
field($model, 'delivery_saturday')->checkbox() ?> field($model, 'infos_saturday')->textarea($optionsTextareaInfos) ?>
field($model, 'delivery_sunday')->checkbox() ?> field($model, 'infos_sunday')->textarea($optionsTextareaInfos) ?>

Accès

field($model, 'code') ->label('Code d\'accès') ->hint('Renseignez ce champs si vous souhaitez protéger ce point de vente par un code.') ?> 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.') ?>
getUsernameFromArray($model_user)) . '
' . 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' => '']) ?>

Facturation

field($model, 'id_user', [ 'template' => '{label} Nouvel utilisateur
{input}
{hint}', ]) ->dropDownList($userModule->populateUserDropdownList(), ['class' => 'select2']) ->hint('Utilisateur au nom duquel les factures de ce point de vente seront éditées'); ?>

Génération des bons de livraison

field($model, 'button_generate_delivery_note_point_sale')->checkbox() ?> field($model, 'button_generate_delivery_note_each_user')->checkbox() ?>
getExportManager()->isEnabled(ExportManager::SHOPPING_CART_LABELS_PDF)): ?>

Exports

field($model, 'exclude_export_shopping_cart_labels')->checkbox(); ?>
render('@backend/views/_include/form_actions.php',[ 'model' => $model, ]); ?>