Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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