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.

491 lines
24KB

  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 yii\helpers\Html;
  38. use yii\widgets\ActiveForm;
  39. use common\helpers\Url;
  40. use common\models\Producer;
  41. \backend\assets\VuejsProducerUpdateAsset::register($this);
  42. $this->setTitle('Paramètres');
  43. $this->addBreadcrumb($this->getTitle());
  44. ?>
  45. <script>
  46. var appInitValues = {
  47. isAdmin: <?= (int) User::isCurrentAdmin() ?>
  48. };
  49. </script>
  50. <div class="user-update" id="app-producer-update">
  51. <div id="nav-params">
  52. <button v-for="section in sectionsArray" v-if="!section.isAdminSection || (section.isAdminSection && isAdmin)"
  53. :class="'btn '+((currentSection == section.name) ? 'btn-primary' : 'btn-default')"
  54. @click="changeSection(section)">
  55. {{ section.nameDisplay }}
  56. <span class="glyphicon glyphicon-triangle-bottom"></span>
  57. </button>
  58. </div>
  59. <div class="user-form">
  60. <?php $form = ActiveForm::begin([
  61. 'enableClientValidation' => false,
  62. ]); ?>
  63. <div>
  64. <div v-show="currentSection == 'general'" class="panel panel-default">
  65. <div class="panel-body">
  66. <h4>Logiciel</h4>
  67. <?= $form->field($model, 'option_display_message_new_opendistrib_version')
  68. ->dropDownList([
  69. 1 => 'Oui',
  70. 0 => 'Non'
  71. ], []); ?>
  72. <h4>Accès</h4>
  73. <?= $form->field($model, 'active')
  74. ->dropDownList([
  75. 0 => 'Non',
  76. 1 => 'Oui'
  77. ], [])
  78. ->label('En ligne')
  79. ->hint('Activez cette option pour rendre votre espace visible à vos clients.'); ?>
  80. <?= $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 />"
  81. . "Ce code est à communiquer à vos clients pour qu'ils puissent ajouter votre espace à leurs favoris.<br />"
  82. . "<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.") ?>
  83. <h4>Général</h4>
  84. <?= $form->field($model, 'name') ?>
  85. <?= $form->field($model, 'type') ?>
  86. <?= $form->field($model, 'description')
  87. ->textarea(['rows' => 4])
  88. ->hint('Affiché sur la page d\'accueil') ?>
  89. <?= $form->field($model, 'address')
  90. ->textarea(['rows' => 4]) ?>
  91. <?= $form->field($model, 'postcode') ?>
  92. <?= $form->field($model, 'city') ?>
  93. <h4>Apparence</h4>
  94. <?= $form->field($model, 'background_color_logo') ?>
  95. <?= $form->field($model, 'logo')->fileInput() ?>
  96. <?php
  97. if (strlen($model->logo)) {
  98. echo '<img src="' . Yii::$app->urlManagerProducer->getHostInfo() . '/' . Yii::$app->urlManagerProducer->baseUrl . '/uploads/' . $model->logo . '" width="200px" /><br />';
  99. echo '<input type="checkbox" name="delete_logo" id="delete_logo" /> <label for="delete_logo">Supprimer le logo</label><br /><br />';
  100. }
  101. ?>
  102. <?= $form->field($model, 'photo')->fileInput()->hint('Format idéal : 900 x 150 px') ?>
  103. <?php
  104. if (strlen($model->photo)) {
  105. echo '<img src="' . Yii::$app->urlManagerProducer->getHostInfo() . '/' . Yii::$app->urlManagerProducer->baseUrl . '/uploads/' . $model->photo . '" width="400px" /><br />';
  106. echo '<input type="checkbox" name="delete_photo" id="delete_photo" /> <label for="delete_photo">Supprimer la photo</label><br /><br />';
  107. }
  108. ?>
  109. <?= $form->field($model, 'behavior_home_point_sale_day_list')
  110. ->dropDownList([
  111. Producer::BEHAVIOR_HOME_POINT_SALE_DAY_LIST_WEEK => 'Jours de la semaine',
  112. Producer::BEHAVIOR_HOME_POINT_SALE_DAY_LIST_INCOMING_DISTRIBUTIONS => 'Distributions à venir',
  113. ]); ?>
  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([
  121. 3 => '3',
  122. 6 => '6',
  123. 9 => '9',
  124. 12 => '12',
  125. 15 => '15',
  126. 18 => '18',
  127. 21 => '21',
  128. 24 => '24',
  129. 27 => '27',
  130. 30 => '30',
  131. ], []); ?>
  132. <?= $form->field($model, 'option_dashboard_date_start')->textInput([
  133. 'class' => 'datepicker form-control'
  134. ]); ?>
  135. <?= $form->field($model, 'option_dashboard_date_end')->textInput([
  136. 'class' => 'datepicker form-control'
  137. ]); ?>
  138. </div>
  139. </div>
  140. <div v-show="currentSection == 'prise-commande'" class="panel panel-default">
  141. <div class="panel-body">
  142. <h4>Horaires</h4>
  143. <?php
  144. $delaysArray = [
  145. 1 => '1 jour',
  146. 2 => '2 jours',
  147. 3 => '3 jours',
  148. 4 => '4 jours',
  149. 5 => '5 jours',
  150. 6 => '6 jours',
  151. 7 => '7 jours',
  152. ];
  153. $deadlinesArray = [
  154. 24 => 'Minuit',
  155. 23 => '23h',
  156. 22 => '22h',
  157. 21 => '21h',
  158. 20 => '20h',
  159. 19 => '19h',
  160. 18 => '18h',
  161. 17 => '17h',
  162. 16 => '16h',
  163. 15 => '15h',
  164. 14 => '14h',
  165. 13 => '13h',
  166. 12 => '12h',
  167. 11 => '11h',
  168. 10 => '10h',
  169. 9 => '9h',
  170. 8 => '8h',
  171. ];
  172. $daysArray = [
  173. 'monday' => 'Lundi',
  174. 'tuesday' => 'Mardi',
  175. 'wednesday' => 'Mercredi',
  176. 'thursday' => 'Jeudi',
  177. 'friday' => 'Vendredi',
  178. 'saturday' => 'Samedi',
  179. 'sunday' => 'Dimanche'
  180. ];
  181. ?>
  182. <div class="row">
  183. <div class="col-md-2">
  184. <strong>Par défaut</strong>
  185. </div>
  186. <div class="col-md-5">
  187. <?= $form->field($model, 'order_delay')
  188. ->dropDownList($delaysArray, ['prompt' => '--'])
  189. ->hint('Si <strong>1 jour</strong> est sélectionné, le client pourra commander jusqu\'à la veille de la production.<br />'
  190. . 'Si <strong>2 jours</strong> est sélectionné, le client pourra commander jusqu\'à l\'avant-veille de la production, etc.'); ?>
  191. </div>
  192. <div class="col-md-5">
  193. <?= $form->field($model, 'order_deadline')
  194. ->dropDownList($deadlinesArray, ['prompt' => '--'])
  195. ->hint('Heure limite jusqu\'à laquelle les clients peuvent commander pour satisfaire le délai de commande.<br />'
  196. . '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.'); ?>
  197. </div>
  198. </div>
  199. <?php foreach ($daysArray as $day => $labelDay): ?>
  200. <div class="row">
  201. <div class="col-md-2">
  202. <strong><?= $labelDay ?></strong>
  203. </div>
  204. <div class="col-md-5">
  205. <?= $form->field($model, 'order_delay_' . $day, [
  206. 'template' => '{input}',
  207. ])->dropDownList($delaysArray, ['prompt' => '--'])->label(''); ?>
  208. </div>
  209. <div class="col-md-5">
  210. <?= $form->field($model, 'order_deadline_' . $day, [
  211. 'template' => '{input}',
  212. ])->dropDownList($deadlinesArray, ['prompt' => '--'])->label(''); ?>
  213. </div>
  214. </div>
  215. <?php endforeach; ?>
  216. <h4>Informations</h4>
  217. <?= $form->field($model, 'order_infos')
  218. ->textarea(['rows' => 6])
  219. ->hint('Affichées au client lors de sa commande') ?>
  220. <?= $form->field($model, 'option_payment_info')
  221. ->textarea(['rows' => 6])
  222. ->hint('Affichées au client à la fin de la prise de commande') ?>
  223. <h4>Tunnel de commande</h4>
  224. <?= $form->field($model, 'option_order_entry_point')
  225. ->dropDownList([
  226. Producer::ORDER_ENTRY_POINT_DATE => 'Date',
  227. Producer::ORDER_ENTRY_POINT_POINT_SALE => 'Point de vente',
  228. ], []); ?>
  229. <?= $form->field($model, 'behavior_order_select_distribution')
  230. ->dropDownList([
  231. Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_CALENDAR => 'Calendrier',
  232. Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_LIST => 'Liste',
  233. ]); ?>
  234. <?= $form->field($model, 'option_delivery')
  235. ->dropDownList([
  236. 0 => 'Non',
  237. 1 => 'Oui'
  238. ], []); ?>
  239. <?php echo $form->field($model, 'option_allow_order_guest')
  240. ->dropDownList([
  241. 0 => 'Non',
  242. 1 => 'Oui'
  243. ], []); ?>
  244. <h4>Notifications</h4>
  245. <?= $form->field($model, 'option_notify_producer_order_summary')
  246. ->dropDownList([
  247. 0 => 'Non',
  248. 1 => 'Oui',
  249. ], []); ?>
  250. <?= $form->field($model, 'option_email_confirm')
  251. ->dropDownList([
  252. 0 => 'Non',
  253. 1 => 'Oui'
  254. ], []); ?>
  255. <?= $form->field($model, 'option_email_confirm_producer')
  256. ->dropDownList([
  257. 0 => 'Non',
  258. 1 => 'Oui'
  259. ], []); ?>
  260. <h4>Exports</h4>
  261. <?= $form->field($model, 'option_csv_separator')
  262. ->dropDownList([
  263. ';' => 'Point-virgule (;)',
  264. ',' => 'Virgule (,)'
  265. ], []); ?>
  266. <?= $form->field($model, 'option_csv_export_all_products')
  267. ->dropDownList([
  268. 0 => 'Non',
  269. 1 => 'Oui'
  270. ], []); ?>
  271. <?= $form->field($model, 'option_csv_export_by_piece')
  272. ->dropDownList([
  273. 0 => 'Non',
  274. 1 => 'Oui'
  275. ], []); ?>
  276. <?= $form->field($model, 'option_display_export_grid')
  277. ->dropDownList([
  278. 0 => 'Non',
  279. 1 => 'Oui'
  280. ], []); ?>
  281. <?= $form->field($model, 'option_export_display_product_reference')
  282. ->dropDownList([
  283. 0 => 'Non',
  284. 1 => 'Oui'
  285. ], []); ?>
  286. <h4>Divers</h4>
  287. <?= $form->field($model, 'option_order_reference_type')
  288. ->dropDownList([
  289. Producer::ORDER_REFERENCE_TYPE_NONE => '--',
  290. Producer::ORDER_REFERENCE_TYPE_YEARLY => 'Annuelle',
  291. ], []); ?>
  292. <?= $form->field($model, 'option_behavior_cancel_order')
  293. ->dropDownList([
  294. Producer::BEHAVIOR_DELETE_ORDER_DELETE => 'Suppression de la commande',
  295. Producer::BEHAVIOR_DELETE_ORDER_STATUS => 'Passage de la commande en statut "supprimé"',
  296. ], []); ?>
  297. </div>
  298. </div>
  299. <div v-show="currentSection == 'abonnements'" class="panel panel-default">
  300. <div class="panel-body">
  301. <h4>Abonnements</h4>
  302. <?= $form->field($model, 'user_manage_subscription')
  303. ->dropDownList([
  304. 0 => 'Non',
  305. 1 => 'Oui',
  306. ], []); ?>
  307. </div>
  308. </div>
  309. <div v-show="currentSection == 'credit-payment'" class="panel panel-default">
  310. <div class="panel-body">
  311. <h4>Crédit</h4>
  312. <?= $form->field($model, 'credit')
  313. ->dropDownList([
  314. 0 => 'Non',
  315. 1 => 'Oui',
  316. ], [])
  317. ->label('Activer le système de Crédit')
  318. ->hint('Le système de Crédit permet à vos clients d\'avoir un compte prépayé sur le site <em>distrib</em>.<br />'
  319. . '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 />'
  320. . 'Ceci fait, les clients paient leur commande directement via leur Crédit.'); ?>
  321. <?= $form->field($model, 'credit_functioning')
  322. ->dropDownList([
  323. Producer::CREDIT_FUNCTIONING_OPTIONAL => Producer::$creditFunctioningArray[ProducerModel::CREDIT_FUNCTIONING_OPTIONAL],
  324. Producer::CREDIT_FUNCTIONING_MANDATORY => Producer::$creditFunctioningArray[ProducerModel::CREDIT_FUNCTIONING_MANDATORY],
  325. Producer::CREDIT_FUNCTIONING_USER => Producer::$creditFunctioningArray[ProducerModel::CREDIT_FUNCTIONING_USER],
  326. ], [])->hint(ProducerModel::HINT_CREDIT_FUNCTIONING); ?>
  327. <?= $form->field($model, 'use_credit_checked_default')
  328. ->dropDownList([
  329. 0 => 'Non',
  330. 1 => 'Oui',
  331. ], [])->hint('Utilisation optionnelle du Crédit.'); ?>
  332. <?= $form->field($model, 'credit_limit_reminder', [
  333. 'template' => '{label}<div class="input-group">{input}<span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span></div>{hint}',
  334. ])
  335. ->hint("Une relance est envoyé au client dès que ce seuil est dépassé."); ?>
  336. <?= $form->field($model, 'credit_limit', [
  337. 'template' => '{label}<div class="input-group">{input}<span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span></div>{hint}',
  338. ])->hint('Limite de crédit que l\'utilisateur ne pourra pas dépasser. Laisser vide pour permettre un crédit négatif et infini.'); ?>
  339. <h4>Paiement en ligne</h4>
  340. <?= $form->field($model, 'online_payment')
  341. ->dropDownList([
  342. 0 => 'Non',
  343. 1 => 'Oui',
  344. ], []); ?>
  345. <?= $form->field($model, 'option_online_payment_minimum_amount')
  346. ->hint('Valeur par défaut si non défini : '.ProducerModel::ONLINE_PAYMENT_MINIMUM_AMOUNT_DEFAULT.' €')
  347. ->textInput(); ?>
  348. <?= $form->field($model, 'option_stripe_mode_test')->dropDownList([
  349. 0 => 'Non',
  350. 1 => 'Oui'
  351. ], []); ?>
  352. <?= $form->field($model, 'option_online_payment_type')
  353. ->dropDownList([
  354. 'credit' => 'Alimentation du crédit',
  355. 'order' => 'Paiement à la commande',
  356. ], []); ?>
  357. <?= $form->field($model, 'option_stripe_public_key')->textInput(); ?>
  358. <?= $form->field($model, 'option_stripe_private_key')->textInput(); ?>
  359. <?= $form->field($model, 'option_stripe_endpoint_secret')->textInput(); ?>
  360. </div>
  361. </div>
  362. <div v-show="currentSection == 'infos'" class="panel panel-default">
  363. <div class="panel-body">
  364. <h4>Informations légales</h4>
  365. <?= $form->field($model, 'mentions')
  366. ->textarea(['rows' => 15])
  367. ->hint('') ?>
  368. <?= $form->field($model, 'gcs')
  369. ->textarea(['rows' => 15])
  370. ->hint('') ?>
  371. </div>
  372. </div>
  373. <div v-show="currentSection == 'logiciels-caisse'" class="panel panel-default">
  374. <div class="panel-body">
  375. <h4>Tiller</h4>
  376. <?= $form->field($model, 'tiller')
  377. ->dropDownList([
  378. 0 => 'Non',
  379. 1 => 'Oui'
  380. ], [])
  381. ->label('Synchroniser avec Tiller'); ?>
  382. <?= $form->field($model, 'tiller_provider_token'); ?>
  383. <?= $form->field($model, 'tiller_restaurant_token'); ?>
  384. </div>
  385. </div>
  386. <div v-show="currentSection == 'facturation'" class="panel panel-default">
  387. <div class="panel-body">
  388. <h4>Facturation</h4>
  389. <?= $form->field($model, 'id_tax_rate_default')
  390. ->dropDownList(ArrayHelper::map(TaxRate::find()->all(), 'id', function ($model) {
  391. return $model->name;
  392. }))
  393. ->label('TVA à appliquer par défaut'); ?>
  394. <?= $form->field($model, 'option_tax_calculation_method')
  395. ->dropDownList(Document::$taxCalculationMethodArray); ?>
  396. <?= $form->field($model, 'option_export_evoliz')->dropDownList([
  397. 0 => 'Non',
  398. 1 => 'Oui'
  399. ]); ?>
  400. <?= $form->field($model, 'document_quotation_prefix'); ?>
  401. <?= $form->field($model, 'document_quotation_first_reference'); ?>
  402. <?= $form->field($model, 'document_quotation_duration'); ?>
  403. <?= $form->field($model, 'document_invoice_prefix'); ?>
  404. <?= $form->field($model, 'document_invoice_first_reference'); ?>
  405. <?= $form->field($model, 'document_delivery_note_prefix'); ?>
  406. <?= $form->field($model, 'document_delivery_note_first_reference'); ?>
  407. <?= $form->field($model, 'document_display_orders_invoice')->dropDownList([
  408. 0 => 'Non',
  409. 1 => 'Oui'
  410. ]); ?>
  411. <?= $form->field($model, 'document_display_orders_delivery_note')->dropDownList([
  412. 0 => 'Non',
  413. 1 => 'Oui'
  414. ]); ?>
  415. <?= $form->field($model, 'document_display_prices_delivery_note')->dropDownList([
  416. 0 => 'Non',
  417. 1 => 'Oui'
  418. ]); ?>
  419. <?= $form->field($model, 'document_display_product_description')->dropDownList([
  420. 0 => 'Non',
  421. 1 => 'Oui'
  422. ]); ?>
  423. <?= $form->field($model, 'option_document_price_decimals')->dropDownList([
  424. 2 => '2',
  425. 3 => '3'
  426. ]); ?>
  427. <?= $form->field($model, 'document_infos_bottom')
  428. ->textarea(['rows' => 15]) ?>
  429. <?= $form->field($model, 'document_infos_quotation')
  430. ->textarea(['rows' => 15]) ?>
  431. <?= $form->field($model, 'document_infos_invoice')
  432. ->textarea(['rows' => 15]) ?>
  433. <?= $form->field($model, 'document_infos_delivery_note')
  434. ->textarea(['rows' => 15]) ?>
  435. </div>
  436. </div>
  437. <div class="form-group">
  438. <?= Html::submitButton('Mettre à jour', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
  439. </div>
  440. </div>
  441. <?php ActiveForm::end(); ?>
  442. </div>
  443. </div>