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.

469 lines
26KB

  1. <?php
  2. /**
  3. * Copyright La boîte à pain (2018)
  4. *
  5. * contact@opendistrib.net
  6. *
  7. * Ce logiciel est un programme informatique servant à aider les producteurs
  8. * à distribuer leur production en circuits courts.
  9. *
  10. * Ce logiciel est régi par la licence CeCILL soumise au droit français et
  11. * respectant les principes de diffusion des logiciels libres. Vous pouvez
  12. * utiliser, modifier et/ou redistribuer ce programme sous les conditions
  13. * de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  14. * sur le site "http://www.cecill.info".
  15. *
  16. * En contrepartie de l'accessibilité au code source et des droits de copie,
  17. * de modification et de redistribution accordés par cette licence, il n'est
  18. * offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  19. * seule une responsabilité restreinte pèse sur l'auteur du programme, le
  20. * titulaire des droits patrimoniaux et les concédants successifs.
  21. *
  22. * A cet égard l'attention de l'utilisateur est attirée sur les risques
  23. * associés au chargement, à l'utilisation, à la modification et/ou au
  24. * développement et à la reproduction du logiciel par l'utilisateur étant
  25. * donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  26. * manipuler et qui le réserve donc à des développeurs et des professionnels
  27. * avertis possédant des connaissances informatiques approfondies. Les
  28. * utilisateurs sont donc invités à charger et tester l'adéquation du
  29. * logiciel à leurs besoins dans des conditions permettant d'assurer la
  30. * sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  31. * à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  32. *
  33. * Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  34. * pris connaissance de la licence CeCILL, et que vous en avez accepté les
  35. * termes.
  36. */
  37. use common\helpers\Dropdown;
  38. use common\helpers\GlobalParam;
  39. use common\logic\Distribution\Distribution\Module\DistributionModule;
  40. use common\logic\User\User\Module\UserModule;
  41. use yii\helpers\Html;
  42. use yii\widgets\ActiveForm;
  43. use common\logic\Producer\Producer\Model\Producer;
  44. use common\logic\Config\TaxRate\Model\TaxRate;
  45. use common\logic\Document\Document\Model\Document;
  46. use yii\helpers\ArrayHelper;
  47. \backend\assets\VuejsProducerUpdateAsset::register($this);
  48. $userModule = UserModule::getInstance();
  49. $userCurrent = GlobalParam::getCurrentUser();
  50. $distributionExportManager = DistributionModule::getInstance()->getExportManager();
  51. $this->setTitle('Paramètres');
  52. $this->addBreadcrumb($this->getTitle());
  53. ?>
  54. <script>
  55. var appInitValues = {
  56. isAdmin: <?= (int) $userModule->getAuthorizationChecker()->isGrantedAsAdministrator($userCurrent) ?>
  57. };
  58. </script>
  59. <div class="user-update" id="app-producer-update">
  60. <div id="nav-params">
  61. <a v-for="section in sectionsArray" v-if="!section.isAdminSection || (section.isAdminSection && isAdmin)"
  62. :class="'btn '+((currentSection == section.name) ? 'btn-primary' : 'btn-default')"
  63. @click="changeSection(section)" :href="'#'+section.name">
  64. {{ section.nameDisplay }}
  65. </a>
  66. </div>
  67. <div class="user-form">
  68. <?php $form = ActiveForm::begin([
  69. 'enableClientValidation' => false,
  70. ]); ?>
  71. <div>
  72. <div v-show="currentSection == 'general'" class="panel panel-default">
  73. <div class="panel-body">
  74. <h4>Accès</h4>
  75. <?= $form->field($model, 'active')
  76. ->dropDownList(Dropdown::noYesChoices())
  77. ->label('En ligne')
  78. ->hint('Activez cette option pour rendre votre espace visible à vos clients.'); ?>
  79. <?= $form->field($model, 'code')->hint("Saisissez ce champs si vous souhaitez protéger l'accès à votre espace par un code, sinon laissez-le vide.<br />"
  80. . "Ce code est à communiquer à vos clients pour qu'ils puissent ajouter votre espace à leurs favoris.<br />"
  81. . "<a href=\"" . Yii::$app->urlManager->createUrl(['communicate/index']) . "\">Cliquez ici</a> pour télécharger un mode d'emploi comprenant ce code à distribuer à vos clients.") ?>
  82. <h4>Général</h4>
  83. <?= $form->field($model, 'name') ?>
  84. <?= $form->field($model, 'type') ?>
  85. <?= $form->field($model, 'description')
  86. ->textarea(['rows' => 4])
  87. ->hint('Affiché sur la page d\'accueil') ?>
  88. <?= $form->field($model, 'address')
  89. ->textarea(['rows' => 4]) ?>
  90. <?= $form->field($model, 'postcode') ?>
  91. <?= $form->field($model, 'city') ?>
  92. <h4>Apparence</h4>
  93. <?= $form->field($model, 'background_color_logo') ?>
  94. <?= $form->field($model, 'logoFile')->fileInput() ?>
  95. <?php
  96. if (strlen($model->logo)) {
  97. echo '<img src="' . Yii::$app->urlManagerProducer->getHostInfo() . '/' . Yii::$app->urlManagerProducer->baseUrl . '/uploads/' . $model->logo . '" width="200px" /><br />';
  98. echo '<input type="checkbox" name="delete_logo" id="delete_logo" /> <label for="delete_logo">Supprimer le logo</label><br /><br />';
  99. }
  100. ?>
  101. <?= $form->field($model, 'photoFile')->fileInput()->hint('Format idéal : 900 x 150 px') ?>
  102. <?php
  103. if (strlen($model->photo)) {
  104. echo '<img src="' . Yii::$app->urlManagerProducer->getHostInfo() . '/' . Yii::$app->urlManagerProducer->baseUrl . '/uploads/' . $model->photo . '" width="400px" /><br />';
  105. echo '<input type="checkbox" name="delete_photo" id="delete_photo" /> <label for="delete_photo">Supprimer la photo</label><br /><br />';
  106. }
  107. ?>
  108. <?= $form->field($model, 'behavior_home_point_sale_day_list')
  109. ->dropDownList([
  110. Producer::BEHAVIOR_HOME_POINT_SALE_DAY_LIST_WEEK => 'Jours de la semaine',
  111. Producer::BEHAVIOR_HOME_POINT_SALE_DAY_LIST_INCOMING_DISTRIBUTIONS => 'Distributions à venir',
  112. ]); ?>
  113. <?= $form->field($model, 'option_point_sale_wording') ?>
  114. </div>
  115. </div>
  116. <div v-show="currentSection == 'tableau-bord'" class="panel panel-default">
  117. <div class="panel-body">
  118. <h4>Tableau de bord administration</h4>
  119. <?= $form->field($model, 'option_dashboard_number_distributions')
  120. ->dropDownList(Dropdown::numberChoices(3, 30, false, '', 3)); ?>
  121. <?= $form->field($model, 'option_dashboard_date_start')->textInput([
  122. 'class' => 'datepicker form-control'
  123. ]); ?>
  124. <?= $form->field($model, 'option_dashboard_date_end')->textInput([
  125. 'class' => 'datepicker form-control'
  126. ]); ?>
  127. </div>
  128. </div>
  129. <div v-show="currentSection == 'prise-commande'" class="panel panel-default">
  130. <div class="panel-body">
  131. <h4>Horaires</h4>
  132. <?php
  133. $delaysArray = [
  134. 1 => '1 jour',
  135. 2 => '2 jours',
  136. 3 => '3 jours',
  137. 4 => '4 jours',
  138. 5 => '5 jours',
  139. 6 => '6 jours',
  140. 7 => '7 jours',
  141. ];
  142. $deadlinesArray = [
  143. 24 => 'Minuit',
  144. 23 => '23h',
  145. 22 => '22h',
  146. 21 => '21h',
  147. 20 => '20h',
  148. 19 => '19h',
  149. 18 => '18h',
  150. 17 => '17h',
  151. 16 => '16h',
  152. 15 => '15h',
  153. 14 => '14h',
  154. 13 => '13h',
  155. 12 => '12h',
  156. 11 => '11h',
  157. 10 => '10h',
  158. 9 => '9h',
  159. 8 => '8h',
  160. ];
  161. $daysArray = [
  162. 'monday' => 'Lundi',
  163. 'tuesday' => 'Mardi',
  164. 'wednesday' => 'Mercredi',
  165. 'thursday' => 'Jeudi',
  166. 'friday' => 'Vendredi',
  167. 'saturday' => 'Samedi',
  168. 'sunday' => 'Dimanche'
  169. ];
  170. ?>
  171. <div class="row">
  172. <div class="col-md-2">
  173. <strong>Par défaut</strong>
  174. </div>
  175. <div class="col-md-5">
  176. <?= $form->field($model, 'order_delay')
  177. ->dropDownList($delaysArray, ['prompt' => '--'])
  178. ->hint('Si <strong>1 jour</strong> est sélectionné, le client pourra commander jusqu\'à la veille de la production.<br />'
  179. . 'Si <strong>2 jours</strong> est sélectionné, le client pourra commander jusqu\'à l\'avant-veille de la production, etc.'); ?>
  180. </div>
  181. <div class="col-md-5">
  182. <?= $form->field($model, 'order_deadline')
  183. ->dropDownList($deadlinesArray, ['prompt' => '--'])
  184. ->hint('Heure limite jusqu\'à laquelle les clients peuvent commander pour satisfaire le délai de commande.<br />'
  185. . 'Par exemple, si <strong>2 jours</strong> est sélectionné dans le délai de commande, le client devra commander l\'avant-veille de la production avant l\'heure précisée ici.'); ?>
  186. </div>
  187. </div>
  188. <?php foreach ($daysArray as $day => $labelDay): ?>
  189. <div class="row">
  190. <div class="col-md-2">
  191. <strong><?= $labelDay ?></strong>
  192. </div>
  193. <div class="col-md-5">
  194. <?= $form->field($model, 'order_delay_' . $day, [
  195. 'template' => '{input}',
  196. ])->dropDownList($delaysArray, ['prompt' => '--'])->label(''); ?>
  197. </div>
  198. <div class="col-md-5">
  199. <?= $form->field($model, 'order_deadline_' . $day, [
  200. 'template' => '{input}',
  201. ])->dropDownList($deadlinesArray, ['prompt' => '--'])->label(''); ?>
  202. </div>
  203. </div>
  204. <?php endforeach; ?>
  205. <h4>Informations</h4>
  206. <?= $form->field($model, 'order_infos')
  207. ->textarea(['rows' => 6])
  208. ->hint('Affichées au client lors de sa commande') ?>
  209. <?= $form->field($model, 'option_payment_info')
  210. ->textarea(['rows' => 6])
  211. ->hint('Affichées au client à la fin de la prise de commande') ?>
  212. <h4>Tunnel de commande</h4>
  213. <?= $form->field($model, 'option_order_entry_point')
  214. ->dropDownList([
  215. Producer::ORDER_ENTRY_POINT_DATE => 'Date',
  216. Producer::ORDER_ENTRY_POINT_POINT_SALE => 'Point de vente',
  217. ], []); ?>
  218. <?= $form->field($model, 'behavior_order_select_distribution')
  219. ->dropDownList([
  220. Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_CALENDAR => 'Calendrier',
  221. Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_LIST => 'Liste',
  222. ]); ?>
  223. <?= $form->field($model, 'option_delivery')
  224. ->dropDownList(Dropdown::noYesChoices()); ?>
  225. <?php echo $form->field($model, 'option_allow_order_guest')
  226. ->dropDownList(Dropdown::noYesChoices()); ?>
  227. <h4>Notifications</h4>
  228. <?= $form->field($model, 'option_notify_producer_order_summary')
  229. ->dropDownList(Dropdown::noYesChoices()); ?>
  230. <?= $form->field($model, 'option_email_confirm')
  231. ->dropDownList(Dropdown::noYesChoices()); ?>
  232. <?= $form->field($model, 'option_email_confirm_producer')
  233. ->dropDownList(Dropdown::noYesChoices()); ?>
  234. <h4>Divers</h4>
  235. <?php
  236. $choicesWeeksDistributionsActivatedInAdvanceArray = [null => '--'];
  237. for($i = 1; $i < 13; $i++) {
  238. $choicesWeeksDistributionsActivatedInAdvanceArray[$i] = $i.' semaine'.(($i > 1) ? 's' : '');
  239. }
  240. ?>
  241. <?= $form->field($model, 'option_weeks_distributions_activated_in_advance')
  242. ->dropDownList($choicesWeeksDistributionsActivatedInAdvanceArray)
  243. ->hint("Attention, les premières semaines doivent être activées manuellement."); ?>
  244. <?= $form->field($model, 'option_order_reference_type')
  245. ->dropDownList([
  246. Producer::ORDER_REFERENCE_TYPE_NONE => '--',
  247. Producer::ORDER_REFERENCE_TYPE_YEARLY => 'Annuelle',
  248. ], []); ?>
  249. <?= $form->field($model, 'option_behavior_cancel_order')
  250. ->dropDownList([
  251. Producer::BEHAVIOR_DELETE_ORDER_DELETE => 'Suppression de la commande',
  252. Producer::BEHAVIOR_DELETE_ORDER_STATUS => 'Passage de la commande en statut "supprimé"',
  253. ], []); ?>
  254. </div>
  255. </div>
  256. <div v-show="currentSection == 'exports'" class="panel panel-default">
  257. <div class="panel-body">
  258. <h4>Exports affichés dans les distributions</h4>
  259. <?= $distributionExportManager->getProducerFormCheckboxes($form, $model) ?>
  260. <h4>Options exports</h4>
  261. <?= $form->field($model, 'option_csv_separator')
  262. ->dropDownList([
  263. ';' => 'Point-virgule (;)',
  264. ',' => 'Virgule (,)'
  265. ], []); ?>
  266. <?= $form->field($model, 'option_export_display_product_reference')
  267. ->dropDownList(Dropdown::noYesChoices()); ?>
  268. <?= $form->field($model, 'option_export_display_column_delivery_note')
  269. ->dropDownList(Dropdown::noYesChoices()); ?>
  270. <?= $form->field($model, 'option_csv_export_all_products')
  271. ->dropDownList(Dropdown::noYesChoices()); ?>
  272. <?= $form->field($model, 'option_csv_export_by_piece')
  273. ->dropDownList(Dropdown::noYesChoices()); ?>
  274. <?= $form->field($model, 'export_shopping_cart_labels_number_per_column')
  275. ->dropDownList(Dropdown::numberChoices(1, 20)); ?>
  276. </div>
  277. </div>
  278. <div v-show="currentSection == 'abonnements'" class="panel panel-default">
  279. <div class="panel-body">
  280. <h4>Abonnements</h4>
  281. <?= $form->field($model, 'user_manage_subscription')
  282. ->dropDownList(Dropdown::noYesChoices()); ?>
  283. </div>
  284. </div>
  285. <div v-show="currentSection == 'credit-payment'" class="panel panel-default">
  286. <div class="panel-body">
  287. <h4>Crédit</h4>
  288. <?= $form->field($model, 'credit')
  289. ->dropDownList(Dropdown::noYesChoices())
  290. ->label('Activer le système de Crédit')
  291. ->hint('Le système de Crédit permet à vos clients d\'avoir un compte prépayé sur le site <em>distrib</em>.<br />'
  292. . 'Ils créditent leur compte en vous donnant la somme de leur choix et c\'est ensuite à vous de ' . Html::a('mettre à jour', ['user/index']) . ' leur Crédit en ligne.<br />'
  293. . 'Ceci fait, les clients paient leur commande directement via leur Crédit.'); ?>
  294. <?= $form->field($model, 'credit_functioning')
  295. ->dropDownList([
  296. Producer::CREDIT_FUNCTIONING_OPTIONAL => Producer::$creditFunctioningArray[Producer::CREDIT_FUNCTIONING_OPTIONAL],
  297. Producer::CREDIT_FUNCTIONING_MANDATORY => Producer::$creditFunctioningArray[Producer::CREDIT_FUNCTIONING_MANDATORY],
  298. Producer::CREDIT_FUNCTIONING_USER => Producer::$creditFunctioningArray[Producer::CREDIT_FUNCTIONING_USER],
  299. ], [])->hint(Producer::HINT_CREDIT_FUNCTIONING); ?>
  300. <?= $form->field($model, 'use_credit_checked_default')
  301. ->dropDownList(Dropdown::noYesChoices())
  302. ->hint('Utilisation optionnelle du Crédit.'); ?>
  303. <?= $form->field($model, 'credit_limit_reminder', [
  304. 'template' => '{label}<div class="input-group">{input}<span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span></div>{hint}',
  305. ])
  306. ->hint("Une relance est envoyé au client dès que ce seuil est dépassé."); ?>
  307. <?= $form->field($model, 'credit_limit', [
  308. 'template' => '{label}<div class="input-group">{input}<span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span></div>{hint}',
  309. ])->hint('Limite de crédit que l\'utilisateur ne pourra pas dépasser. Laisser vide pour permettre un crédit négatif et infini.'); ?>
  310. <h4>Paiement en ligne</h4>
  311. <?= $form->field($model, 'online_payment')
  312. ->dropDownList(Dropdown::noYesChoices()); ?>
  313. <?= $form->field($model, 'option_online_payment_minimum_amount')
  314. ->hint('Valeur par défaut si non défini : '.Producer::ONLINE_PAYMENT_MINIMUM_AMOUNT_DEFAULT.' €')
  315. ->textInput(); ?>
  316. <?= $form->field($model, 'option_stripe_mode_test')->dropDownList(Dropdown::noYesChoices()); ?>
  317. <?= $form->field($model, 'option_online_payment_type')
  318. ->dropDownList([
  319. 'credit' => 'Alimentation du crédit',
  320. 'order' => 'Paiement à la commande',
  321. ], []); ?>
  322. <?= $form->field($model, 'option_stripe_public_key')->textInput(); ?>
  323. <?= $form->field($model, 'option_stripe_private_key')->textInput(); ?>
  324. <?= $form->field($model, 'option_stripe_endpoint_secret')->textInput(); ?>
  325. </div>
  326. </div>
  327. <div v-show="currentSection == 'infos'" class="panel panel-default">
  328. <div class="panel-body">
  329. <h4>Informations légales</h4>
  330. <?= $form->field($model, 'mentions')
  331. ->textarea(['rows' => 15])
  332. ->hint('') ?>
  333. <?= $form->field($model, 'gcs')
  334. ->textarea(['rows' => 15])
  335. ->hint('') ?>
  336. </div>
  337. </div>
  338. <div v-show="currentSection == 'logiciels-caisse'" class="panel panel-default">
  339. <div class="panel-body">
  340. <h4>Tiller</h4>
  341. <?= $form->field($model, 'tiller')
  342. ->dropDownList(Dropdown::noYesChoices())
  343. ->label('Synchroniser avec Tiller'); ?>
  344. <?= $form->field($model, 'tiller_provider_token'); ?>
  345. <?= $form->field($model, 'tiller_restaurant_token'); ?>
  346. </div>
  347. </div>
  348. <div v-show="currentSection == 'facturation'" class="panel panel-default">
  349. <div class="panel-body">
  350. <h4>Facturation</h4>
  351. <?= $form->field($model, 'id_tax_rate_default')
  352. ->dropDownList(ArrayHelper::map(TaxRate::find()->all(), 'id', function ($model) {
  353. return $model->name;
  354. }))
  355. ->label('TVA à appliquer par défaut'); ?>
  356. <?= $form->field($model, 'option_tax_calculation_method')
  357. ->dropDownList(Document::$taxCalculationMethodArray); ?>
  358. <?= $form->field($model, 'option_export_evoliz')->dropDownList(Dropdown::noYesChoices()); ?>
  359. <?php $hintKeywordsPrefix = "Saisissez [ANNEE] pour intégrer l'année courante"; ?>
  360. <?= $form->field($model, 'document_quotation_prefix')->hint($hintKeywordsPrefix); ?>
  361. <?= $form->field($model, 'document_quotation_first_reference'); ?>
  362. <?= $form->field($model, 'document_quotation_duration'); ?>
  363. <?= $form->field($model, 'document_invoice_prefix')->hint($hintKeywordsPrefix);; ?>
  364. <?= $form->field($model, 'document_invoice_first_reference'); ?>
  365. <?= $form->field($model, 'document_delivery_note_prefix')->hint($hintKeywordsPrefix);; ?>
  366. <?= $form->field($model, 'document_delivery_note_first_reference'); ?>
  367. <?= $form->field($model, 'option_invoice_only_based_on_delivery_notes')->dropDownList([
  368. 0 => 'Non',
  369. 1 => 'Oui'
  370. ]); ?>
  371. <?= $form->field($model, 'option_document_width_logo')
  372. ->dropDownList(Dropdown::numberChoices(50, 250, true, 'px', 50)); ?>
  373. <?= $form->field($model, 'document_display_orders_invoice')->dropDownList(Dropdown::noYesChoices()); ?>
  374. <?= $form->field($model, 'document_display_orders_delivery_note')->dropDownList(Dropdown::noYesChoices()); ?>
  375. <?= $form->field($model, 'document_display_prices_delivery_note')->dropDownList(Dropdown::noYesChoices()); ?>
  376. <?= $form->field($model, 'document_display_product_description')->dropDownList(Dropdown::noYesChoices()); ?>
  377. <?= $form->field($model, 'option_document_price_decimals')->dropDownList([
  378. 2 => '2',
  379. 3 => '3'
  380. ]); ?>
  381. <?= $form->field($model, 'option_document_display_price_unit_reference')
  382. ->dropDownList(Dropdown::noYesChoices()); ?>
  383. <?= $form->field($model, 'document_infos_top')
  384. ->textarea(['rows' => 8])
  385. ->hint("Affichées juste en dessous de l'adresse"); ?>
  386. <?= $form->field($model, 'document_infos_bottom')
  387. ->textarea(['rows' => 8]) ?>
  388. <?= $form->field($model, 'document_infos_quotation')
  389. ->textarea(['rows' => 8]) ?>
  390. <?= $form->field($model, 'document_infos_invoice')
  391. ->textarea(['rows' => 8]) ?>
  392. <?= $form->field($model, 'document_infos_delivery_note')
  393. ->textarea(['rows' => 8]) ?>
  394. </div>
  395. </div>
  396. <div v-show="currentSection == 'software'" class="panel panel-default">
  397. <div class="panel-body">
  398. <h4>Opendistrib</h4>
  399. <?php $urlAboutPage = Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/about']); ?>
  400. <?= $form->field($model, 'option_testimony')
  401. ->textarea(['rows' => 7])
  402. ->hint("Écrivez ici votre témoignage concernant l'utilisation du logiciel. Il sera publié sur la page <a href=\"".$urlAboutPage."\" target=\"_blanck\">À propos</a> du site.") ; ?>
  403. <?= $form->field($model, 'option_time_saved')
  404. ->dropDownList([
  405. null => '--',
  406. 0.5 => '30 minutes',
  407. 1 => '1 heure',
  408. 2 => '2 heures',
  409. 3 => '3 heures',
  410. 4 => '4 heures',
  411. 5 => '5 heures',
  412. 6 => '6 heures',
  413. 7 => '7 heures',
  414. 8 => '8 heures',
  415. ])
  416. ->hint("Sélectionnez le temps que vous estimez gagner chaque semaine en utilisant ce logiciel. Cette donnée sera utilisée sur la page <a href=\"".$urlAboutPage."\" target=\"_blanck\">À propos</a> du site.") ; ?>
  417. <?= $form->field($model, 'option_display_message_new_opendistrib_version')
  418. ->dropDownList(Dropdown::noYesChoices()); ?>
  419. </div>
  420. </div>
  421. <div class="form-group">
  422. <?= Html::submitButton('Mettre à jour', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
  423. </div>
  424. </div>
  425. <?php ActiveForm::end(); ?>
  426. </div>
  427. </div>