Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

557 linhas
31KB

  1. <?php
  2. /**
  3. * Copyright La boîte à pain (2018)
  4. *
  5. * contact@souke.fr
  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 domain\Config\TaxRate\TaxRate;
  40. use domain\Distribution\Distribution\DistributionModule;
  41. use domain\Distribution\Distribution\ExportManager;
  42. use domain\Document\Document\Document;
  43. use domain\Feature\Feature\Feature;
  44. use domain\Feature\Feature\FeatureModule;
  45. use domain\Producer\Producer\Producer;
  46. use domain\User\User\UserModule;
  47. use domain\User\UserGroup\UserGroupModule;
  48. use yii\helpers\ArrayHelper;
  49. use yii\helpers\Html;
  50. use yii\widgets\ActiveForm;
  51. $userModule = UserModule::getInstance();
  52. $userGroupModule = UserGroupModule::getInstance();
  53. $distributionExportManager = DistributionModule::getInstance()->getExportManager();
  54. $featureChecker = FeatureModule::getInstance()->getChecker();
  55. $userCurrent = GlobalParam::getCurrentUser();
  56. $this->setTitle('Paramètres');
  57. $this->addBreadcrumb($this->getTitle());
  58. ?>
  59. <script>
  60. var appInitValues = {
  61. isAdmin: <?= (int)$userModule->getAuthorizationChecker()->isGrantedAsAdministrator($userCurrent) ?>
  62. };
  63. </script>
  64. <div class="user-update" id="app-producer-update">
  65. <div id="nav-params">
  66. <a v-for="section in sectionsArray" v-if="!section.isAdminSection || (section.isAdminSection && isAdmin)"
  67. :class="'btn '+((currentSection == section.name) ? 'btn-primary' : 'btn-default')"
  68. @click="changeSection(section)" :href="'#'+section.name">
  69. {{ section.nameDisplay }}
  70. </a>
  71. </div>
  72. <div class="user-form">
  73. <?php $form = ActiveForm::begin([
  74. 'enableClientValidation' => false,
  75. ]); ?>
  76. <div>
  77. <div v-show="currentSection == 'general'" class="panel panel-default">
  78. <div class="panel-body">
  79. <h4>Accès</h4>
  80. <?= $form->field($model, 'active')
  81. ->dropDownList(Dropdown::noYesChoices())
  82. ->label('En ligne')
  83. ->hint('Activez cette option pour rendre votre espace visible à vos clients.'); ?>
  84. <?= $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 />"
  85. . "Ce code est à communiquer à vos clients pour qu'ils puissent ajouter votre espace à leurs favoris.<br />"
  86. . "<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.") ?>
  87. <h4>Général</h4>
  88. <?= $form->field($model, 'name') ?>
  89. <?= $form->field($model, 'type') ?>
  90. <?php /*$form->field($model, 'description')
  91. ->textarea(['rows' => 4])
  92. ->hint('Affiché sur la page d\'accueil')*/ ?>
  93. <?= $form->field($model, 'description')->widget(letyii\tinymce\Tinymce::class, [
  94. 'configs' => [
  95. 'plugins' => Yii::$app->parameterBag->get('tinyMcePlugins'),
  96. ]
  97. ])->hint('Affiché sur la page d\'accueil') ; ?>
  98. <?= $form->field($model, 'address')
  99. ->textarea(['rows' => 4]) ?>
  100. <?= $form->field($model, 'postcode') ?>
  101. <?= $form->field($model, 'city') ?>
  102. <h4>Contact</h4>
  103. <?= $form->field($model, 'contact_email') ?>
  104. <?= $form->field($model, 'website') ?>
  105. <h4>Apparence</h4>
  106. <?= $form->field($model, 'option_main_color') ?>
  107. <?= $form->field($model, 'background_color_logo') ?>
  108. <?= $form->field($model, 'logoFile')->fileInput() ?>
  109. <?php
  110. if (strlen($model->logo)) {
  111. echo '<img src="' . Yii::$app->urlManagerProducer->getHostInfo() . '/' . Yii::$app->urlManagerProducer->baseUrl . '/uploads/' . $model->logo . '" width="200px" /><br />';
  112. echo '<input type="checkbox" name="delete_logo" id="delete_logo" /> <label for="delete_logo">Supprimer le logo</label><br /><br />';
  113. }
  114. ?>
  115. <?= $form->field($model, 'photoFile')->fileInput(); ?>
  116. <?php
  117. if (strlen($model->photo)) {
  118. echo '<img src="' . Yii::$app->urlManagerProducer->getHostInfo() . '/' . Yii::$app->urlManagerProducer->baseUrl . '/uploads/' . $model->photo . '" width="400px" /><br />';
  119. echo '<input type="checkbox" name="delete_photo" id="delete_photo" /> <label for="delete_photo">Supprimer la photo</label><br /><br />';
  120. }
  121. ?>
  122. <?= $form->field($model, 'behavior_home_point_sale_day_list')
  123. ->dropDownList([
  124. Producer::BEHAVIOR_HOME_POINT_SALE_DAY_LIST_WEEK => 'Jours de la semaine',
  125. Producer::BEHAVIOR_HOME_POINT_SALE_DAY_LIST_INCOMING_DISTRIBUTIONS => 'Distributions à venir',
  126. ]); ?>
  127. <?= $form->field($model, 'option_point_sale_wording') ?>
  128. <h4>Congés</h4>
  129. <?= $form->field($model, 'option_leave_period_start')->textInput([
  130. 'class' => 'datepicker form-control'
  131. ]); ?>
  132. <?= $form->field($model, 'option_leave_period_end')->textInput([
  133. 'class' => 'datepicker form-control'
  134. ]); ?>
  135. <?= $form->field($model, 'option_leave_period_message_display')
  136. ->dropDownList(Dropdown::noYesChoices()); ?>
  137. <?= $form->field($model, 'option_leave_period_message_title')->textInput(); ?>
  138. <?= $form->field($model, 'option_leave_period_message')->textarea(); ?>
  139. <h4>Groupes utilisateurs</h4>
  140. <?= $form->field($model, 'id_user_group_default')
  141. ->dropDownList($userGroupModule->getRepository()->populateUserGroupDropdownList()); ?>
  142. </div>
  143. </div>
  144. <div v-show="currentSection == 'tableau-bord'" class="panel panel-default">
  145. <div class="panel-body">
  146. <h4>Tableau de bord administration</h4>
  147. <?= $form->field($model, 'option_dashboard_number_distributions')
  148. ->dropDownList(Dropdown::numberChoices(3, 30, false, '', 3)); ?>
  149. <?= $form->field($model, 'option_dashboard_date_start')->textInput([
  150. 'class' => 'datepicker form-control'
  151. ]); ?>
  152. <?= $form->field($model, 'option_dashboard_date_end')->textInput([
  153. 'class' => 'datepicker form-control'
  154. ]); ?>
  155. </div>
  156. </div>
  157. <div v-show="currentSection == 'prise-commande'" class="panel panel-default">
  158. <div class="panel-body">
  159. <h4>Horaires</h4>
  160. <?php
  161. $delaysArray = [
  162. 1 => '1 jour',
  163. 2 => '2 jours',
  164. 3 => '3 jours',
  165. 4 => '4 jours',
  166. 5 => '5 jours',
  167. 6 => '6 jours',
  168. 7 => '7 jours',
  169. ];
  170. $deadlinesArray = [
  171. 24 => 'Minuit',
  172. 23 => '23h',
  173. 22 => '22h',
  174. 21 => '21h',
  175. 20 => '20h',
  176. 19 => '19h',
  177. 18 => '18h',
  178. 17 => '17h',
  179. 16 => '16h',
  180. 15 => '15h',
  181. 14 => '14h',
  182. 13 => '13h',
  183. 12 => '12h',
  184. 11 => '11h',
  185. 10 => '10h',
  186. 9 => '9h',
  187. 8 => '8h',
  188. ];
  189. $daysArray = [
  190. 'monday' => 'Lundi',
  191. 'tuesday' => 'Mardi',
  192. 'wednesday' => 'Mercredi',
  193. 'thursday' => 'Jeudi',
  194. 'friday' => 'Vendredi',
  195. 'saturday' => 'Samedi',
  196. 'sunday' => 'Dimanche'
  197. ];
  198. ?>
  199. <div class="row">
  200. <div class="col-md-2">
  201. <strong>Par défaut</strong>
  202. </div>
  203. <div class="col-md-5">
  204. <?= $form->field($model, 'order_delay')
  205. ->dropDownList($delaysArray, ['prompt' => '--'])
  206. ->hint('Si <strong>1 jour</strong> est sélectionné, le client pourra commander jusqu\'à la veille de la production.<br />'
  207. . 'Si <strong>2 jours</strong> est sélectionné, le client pourra commander jusqu\'à l\'avant-veille de la production, etc.'); ?>
  208. </div>
  209. <div class="col-md-5">
  210. <?= $form->field($model, 'order_deadline')
  211. ->dropDownList($deadlinesArray, ['prompt' => '--'])
  212. ->hint('Heure limite jusqu\'à laquelle les clients peuvent commander pour satisfaire le délai de commande.<br />'
  213. . '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.'); ?>
  214. </div>
  215. </div>
  216. <?php foreach ($daysArray as $day => $labelDay): ?>
  217. <div class="row">
  218. <div class="col-md-2">
  219. <strong><?= $labelDay ?></strong>
  220. </div>
  221. <div class="col-md-5">
  222. <?= $form->field($model, 'order_delay_' . $day, [
  223. 'template' => '{input}',
  224. ])->dropDownList($delaysArray, ['prompt' => '--'])->label(''); ?>
  225. </div>
  226. <div class="col-md-5">
  227. <?= $form->field($model, 'order_deadline_' . $day, [
  228. 'template' => '{input}',
  229. ])->dropDownList($deadlinesArray, ['prompt' => '--'])->label(''); ?>
  230. </div>
  231. </div>
  232. <?php endforeach; ?>
  233. <h4>Informations</h4>
  234. <?= $form->field($model, 'order_infos')
  235. ->textarea(['rows' => 6])
  236. ->hint('Affichées au client lors de sa commande') ?>
  237. <?= $form->field($model, 'option_payment_info')
  238. ->textarea(['rows' => 6])
  239. ->hint('Affichées au client à la fin de la prise de commande') ?>
  240. <h4>Tunnel de commande</h4>
  241. <?= $form->field($model, 'option_order_entry_point')
  242. ->dropDownList([
  243. Producer::ORDER_ENTRY_POINT_DATE => 'Date',
  244. Producer::ORDER_ENTRY_POINT_POINT_SALE => 'Point de vente',
  245. ], []); ?>
  246. <?= $form->field($model, 'behavior_order_select_distribution')
  247. ->dropDownList([
  248. Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_CALENDAR => 'Calendrier',
  249. Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_LIST => 'Liste',
  250. ]); ?>
  251. <?= $form->field($model, 'option_delivery')
  252. ->dropDownList(Dropdown::noYesChoices()); ?>
  253. <?php echo $form->field($model, 'option_allow_order_guest')
  254. ->dropDownList(Dropdown::noYesChoices()); ?>
  255. <h4>Notifications</h4>
  256. <?= $form->field($model, 'option_notify_producer_order_summary')
  257. ->dropDownList(Dropdown::noYesChoices()); ?>
  258. <?= $form->field($model, 'option_email_confirm')
  259. ->dropDownList(Dropdown::noYesChoices()); ?>
  260. <?= $form->field($model, 'option_email_confirm_producer')
  261. ->dropDownList(Dropdown::noYesChoices()); ?>
  262. <h4>Divers</h4>
  263. <?php
  264. $choicesWeeksDistributionsActivatedInAdvanceArray = [null => '--'];
  265. for ($i = 1; $i < 13; $i++) {
  266. $choicesWeeksDistributionsActivatedInAdvanceArray[$i] = $i . ' semaine' . (($i > 1) ? 's' : '');
  267. }
  268. ?>
  269. <?= $form->field($model, 'option_weeks_distributions_activated_in_advance')
  270. ->dropDownList($choicesWeeksDistributionsActivatedInAdvanceArray)
  271. ->hint("Attention, les premières semaines doivent être activées manuellement."); ?>
  272. <?php
  273. // Fonctionnalité désactivée car elle crée des bugs
  274. // @TODO : à réactiver quand tous les problèmes seront résolus
  275. /*$form->field($model, 'option_order_reference_type')
  276. ->dropDownList([
  277. Producer::ORDER_REFERENCE_TYPE_NONE => '--',
  278. Producer::ORDER_REFERENCE_TYPE_YEARLY => 'Annuelle',
  279. ], []);*/ ?>
  280. <?= $form->field($model, 'option_behavior_cancel_order')
  281. ->dropDownList([
  282. Producer::BEHAVIOR_DELETE_ORDER_DELETE => 'Suppression de la commande',
  283. Producer::BEHAVIOR_DELETE_ORDER_STATUS => 'Passage de la commande en statut "annulée"',
  284. ], []); ?>
  285. </div>
  286. </div>
  287. <div v-show="currentSection == 'exports'" class="panel panel-default">
  288. <div class="panel-body">
  289. <h4>Exports affichés dans les distributions</h4>
  290. <?= $distributionExportManager->getProducerFormCheckboxes($form, $model) ?>
  291. <h4>Options exports</h4>
  292. <?= $form->field($model, 'option_csv_separator')
  293. ->dropDownList([
  294. ';' => 'Point-virgule (;)',
  295. ',' => 'Virgule (,)'
  296. ], []); ?>
  297. <?= $form->field($model, 'option_export_display_product_reference')
  298. ->dropDownList(Dropdown::noYesChoices()); ?>
  299. <?= $form->field($model, 'option_export_display_column_delivery_note')
  300. ->dropDownList(Dropdown::noYesChoices()); ?>
  301. <?= $form->field($model, 'option_csv_export_all_products')
  302. ->dropDownList(Dropdown::noYesChoices()); ?>
  303. <?= $form->field($model, 'option_csv_export_by_piece')
  304. ->dropDownList(Dropdown::noYesChoices()); ?>
  305. <?php if($featureChecker->isEnabled(Feature::ALIAS_EXPORT_SHOPPING_CART_LABELS_ADVANCED)): ?>
  306. <?= $form->field($model, 'export_shopping_cart_labels_format')
  307. ->dropDownList($distributionExportManager->getGenerator(ExportManager::SHOPPING_CART_LABELS_PDF)->populateDropdownSpecificFormats()); ?>
  308. <?php else: ?>
  309. <?= $form->field($model, 'export_shopping_cart_labels_number_per_column')
  310. ->dropDownList(Dropdown::numberChoices(1, 20)); ?>
  311. <?php endif; ?>
  312. </div>
  313. </div>
  314. <div v-show="currentSection == 'abonnements'" class="panel panel-default">
  315. <div class="panel-body">
  316. <h4>Abonnements</h4>
  317. <?= $form->field($model, 'user_manage_subscription')
  318. ->dropDownList(Dropdown::noYesChoices()); ?>
  319. </div>
  320. </div>
  321. <div v-show="currentSection == 'communication'" class="panel panel-default">
  322. <div class="panel-body">
  323. <h4>Boutique</h4>
  324. <?= $form->field($model, 'option_newsletter_description')
  325. ->hint('Description affichée sur la page "Infolettre" de la boutique')
  326. ->textarea(); ?>
  327. <h4>Envoi d'emails</h4>
  328. <?= $form->field($model, 'option_communicate_email_default_subject')->textInput(); ?>
  329. <?= $form->field($model, 'option_communicate_email_default_message')->widget(letyii\tinymce\Tinymce::class, [
  330. 'configs' => [
  331. 'plugins' => Yii::$app->parameterBag->get('tinyMcePlugins'),
  332. ]
  333. ]); ?>
  334. </div>
  335. </div>
  336. <div v-show="currentSection == 'credit-payment'" class="panel panel-default">
  337. <div class="panel-body">
  338. <h4>Cagnotte</h4>
  339. <?= $form->field($model, 'credit')
  340. ->dropDownList(Dropdown::noYesChoices())
  341. ->label('Activer le système de cagnotte')
  342. ->hint('Le système de cagnotte permet à vos clients d\'avoir un compte prépayé sur le site <em>Souke</em>.<br />'
  343. . '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 cagnotte en ligne.<br />'
  344. . 'Ceci fait, les clients paient leur commande directement via leur cagnotte.'); ?>
  345. <?= $form->field($model, 'use_credit_checked_default')
  346. ->dropDownList(Dropdown::noYesChoices())
  347. ->hint('Utilisation optionnelle de la cagnotte.'); ?>
  348. <?= $form->field($model, 'credit_limit_reminder', [
  349. 'template' => '{label}<div class="input-group">{input}<span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span></div>{hint}',
  350. ])
  351. ->hint("Une relance est envoyé au client dès que ce seuil est dépassé."); ?>
  352. <?= $form->field($model, 'credit_limit', [
  353. 'template' => '{label}<div class="input-group">{input}<span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span></div>{hint}',
  354. ])->hint('Limite de cagnotte que l\'utilisateur ne pourra pas dépasser. Laisser vide pour permettre un montant de cagnotte négatif et infini.'); ?>
  355. <?= $form->field($model, 'option_check_by_default_prevent_user_credit')
  356. ->dropDownList(Dropdown::noYesChoices()); ?>
  357. <?= $form->field($model, 'option_credit_description')
  358. ->hint('Description affichée sur la page "Cagnotte" de la boutique')
  359. ->textarea(); ?>
  360. <?php if($featureChecker->isEnabled(Feature::ALIAS_ONLINE_PAYMENT)): ?>
  361. <h4>Paiement en ligne</h4>
  362. <?php if($userModule->getAuthorizationChecker()->isGrantedAsAdministrator($userCurrent)): ?>
  363. <?= $form->field($model, 'online_payment')
  364. ->dropDownList(Dropdown::noYesChoices()); ?>
  365. <?= $form->field($model, 'option_stripe_mode_test')->dropDownList(Dropdown::noYesChoices()); ?>
  366. <?php /*$form->field($model, 'option_online_payment_type')
  367. ->dropDownList([
  368. 'credit' => 'Alimentation de la cagnotte',
  369. 'order' => 'Paiement à la commande',
  370. ], []);*/ ?>
  371. <?= $form->field($model, 'option_stripe_public_key')->textInput(); ?>
  372. <?= $form->field($model, 'option_stripe_private_key')->textInput(); ?>
  373. <?= $form->field($model, 'option_stripe_endpoint_secret')->textInput(); ?>
  374. <?php endif; ?>
  375. <?= $form->field($model, 'option_online_payment_minimum_amount')
  376. ->hint('Valeur par défaut si non défini : ' . Producer::ONLINE_PAYMENT_MINIMUM_AMOUNT_DEFAULT . ' €')
  377. ->textInput(); ?>
  378. <?php endif; ?>
  379. </div>
  380. </div>
  381. <div v-show="currentSection == 'infos'" class="panel panel-default">
  382. <div class="panel-body">
  383. <h4>Informations légales</h4>
  384. <?= $form->field($model, 'mentions')
  385. ->textarea(['rows' => 15])
  386. ->hint('') ?>
  387. <?= $form->field($model, 'gcs')
  388. ->textarea(['rows' => 15])
  389. ->hint('') ?>
  390. </div>
  391. </div>
  392. <div v-show="currentSection == 'logiciels-caisse'" class="panel panel-default">
  393. <div class="panel-body">
  394. <h4>Tiller</h4>
  395. <?= $form->field($model, 'tiller')
  396. ->dropDownList(Dropdown::noYesChoices())
  397. ->label('Synchroniser avec Tiller'); ?>
  398. <?= $form->field($model, 'tiller_api_version')
  399. ->dropDownList([
  400. 'v2' => 'v2',
  401. 'v3' => 'v3'
  402. ]); ?>
  403. <h4>API V2</h4>
  404. <?= $form->field($model, 'tiller_provider_token'); ?>
  405. <?= $form->field($model, 'tiller_restaurant_token'); ?>
  406. <h4>API V3</h4>
  407. <?= $form->field($model, 'tiller_store_id'); ?>
  408. <?= $form->field($model, 'tiller_redirect_uri'); ?>
  409. <?= $form->field($model, 'tiller_client_id'); ?>
  410. <?= $form->field($model, 'tiller_client_secret'); ?>
  411. </div>
  412. </div>
  413. <div v-show="currentSection == 'facturation'" class="panel panel-default">
  414. <div class="panel-body">
  415. <h4>Facturation</h4>
  416. <?= $form->field($model, 'id_tax_rate_default')
  417. ->dropDownList(ArrayHelper::map(TaxRate::find()->all(), 'id', function ($model) {
  418. return $model->name;
  419. }))
  420. ->label('TVA à appliquer par défaut'); ?>
  421. <?= $form->field($model, 'option_tax_calculation_method')
  422. ->dropDownList(Document::$taxCalculationMethodArray); ?>
  423. <?php if($featureChecker->isEnabled(Feature::ALIAS_BRIDGE_EVOLIZ)): ?>
  424. <?= $form->field($model, 'option_export_evoliz')->dropDownList(Dropdown::noYesChoices()); ?>
  425. <?php endif; ?>
  426. <?php $hintKeywordsPrefix = "Saisissez [ANNEE] pour intégrer l'année courante"; ?>
  427. <?= $form->field($model, 'document_quotation_prefix')->hint($hintKeywordsPrefix); ?>
  428. <?= $form->field($model, 'document_quotation_first_reference'); ?>
  429. <?= $form->field($model, 'document_quotation_duration'); ?>
  430. <?= $form->field($model, 'document_invoice_prefix')->hint($hintKeywordsPrefix);; ?>
  431. <?= $form->field($model, 'document_invoice_first_reference'); ?>
  432. <?= $form->field($model, 'document_delivery_note_prefix')->hint($hintKeywordsPrefix);; ?>
  433. <?= $form->field($model, 'document_delivery_note_first_reference'); ?>
  434. <?= $form->field($model, 'delivery_note_automatic_validation')->dropDownList(Dropdown::noYesChoices()); ?>
  435. <?= $form->field($model, 'option_invoice_only_based_on_delivery_notes')->dropDownList(Dropdown::noYesChoices()); ?>
  436. <?= $form->field($model, 'option_document_width_logo')
  437. ->dropDownList(Dropdown::numberChoices(50, 250, true, 'px', 50)); ?>
  438. <?= $form->field($model, 'document_display_orders_invoice')->dropDownList(Dropdown::noYesChoices()); ?>
  439. <?= $form->field($model, 'document_display_orders_delivery_note')->dropDownList(Dropdown::noYesChoices()); ?>
  440. <?= $form->field($model, 'document_display_prices_delivery_note')->dropDownList(Dropdown::noYesChoices()); ?>
  441. <?= $form->field($model, 'document_display_product_description')->dropDownList(Dropdown::noYesChoices()); ?>
  442. <?= $form->field($model, 'option_document_price_decimals')->dropDownList([
  443. 2 => '2',
  444. 3 => '3'
  445. ]); ?>
  446. <?= $form->field($model, 'option_document_display_price_unit_reference')
  447. ->dropDownList(Dropdown::noYesChoices()); ?>
  448. <?= $form->field($model, 'document_infos_top')
  449. ->textarea(['rows' => 8])
  450. ->hint("Affichées juste en dessous de l'adresse"); ?>
  451. <?= $form->field($model, 'document_infos_bottom')
  452. ->textarea(['rows' => 8]) ?>
  453. <?= $form->field($model, 'document_image_bottomFile')->fileInput()->hint('') ?>
  454. <?php
  455. if (strlen($model->document_image_bottom)) {
  456. echo '<img src="' . Yii::$app->urlManagerProducer->getHostInfo() . '/' . Yii::$app->urlManagerProducer->baseUrl . '/uploads/' . $model->document_image_bottom . '" width="400px" /><br />';
  457. echo '<input type="checkbox" name="delete_document_image_bottom" id="delete_document_image_bottom" /> <label for="delete_document_image_bottom">Supprimer l\'image</label><br /><br />';
  458. }
  459. ?>
  460. <?= $form->field($model, 'document_infos_quotation')
  461. ->textarea(['rows' => 8]) ?>
  462. <?= $form->field($model, 'document_infos_invoice')
  463. ->textarea(['rows' => 8]) ?>
  464. <?= $form->field($model, 'document_infos_delivery_note')
  465. ->textarea(['rows' => 8]) ?>
  466. </div>
  467. </div>
  468. <div v-show="currentSection == 'software'" class="panel panel-default">
  469. <div class="panel-body">
  470. <h4>Souke</h4>
  471. <?= $form->field($model, 'option_display_message_new_opendistrib_version')
  472. ->dropDownList(Dropdown::noYesChoices()); ?>
  473. <?= $form->field($model, 'agree_contact_about_software_development')
  474. ->dropDownList(Dropdown::noYesChoices()); ?>
  475. <?php $urlAboutPage = Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/about']); ?>
  476. <?= $form->field($model, 'option_testimony')
  477. ->textarea(['rows' => 7])
  478. ->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."); ?>
  479. <?= $form->field($model, 'option_time_saved')
  480. ->dropDownList([
  481. null => '--',
  482. 0.5 => '30 minutes',
  483. 1 => '1 heure',
  484. 2 => '2 heures',
  485. 3 => '3 heures',
  486. 4 => '4 heures',
  487. 5 => '5 heures',
  488. 6 => '6 heures',
  489. 7 => '7 heures',
  490. 8 => '8 heures',
  491. ])
  492. ->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."); ?>
  493. </div>
  494. </div>
  495. <div class="form-group form-actions">
  496. <?= Html::submitButton('Mettre à jour', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
  497. </div>
  498. </div>
  499. <?php ActiveForm::end(); ?>
  500. </div>
  501. </div>