Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

update.php 24KB

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