選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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