Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

541 lines
30KB

  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>Communication</h4>
  140. <?= $form->field($model, 'option_newsletter_description')
  141. ->hint('Description affichée sur la page "Infolettre" de la boutique')
  142. ->textarea(); ?>
  143. <h4>Groupes utilisateurs</h4>
  144. <?= $form->field($model, 'id_user_group_default')
  145. ->dropDownList($userGroupModule->getRepository()->populateUserGroupDropdownList()); ?>
  146. </div>
  147. </div>
  148. <div v-show="currentSection == 'tableau-bord'" class="panel panel-default">
  149. <div class="panel-body">
  150. <h4>Tableau de bord administration</h4>
  151. <?= $form->field($model, 'option_dashboard_number_distributions')
  152. ->dropDownList(Dropdown::numberChoices(3, 30, false, '', 3)); ?>
  153. <?= $form->field($model, 'option_dashboard_date_start')->textInput([
  154. 'class' => 'datepicker form-control'
  155. ]); ?>
  156. <?= $form->field($model, 'option_dashboard_date_end')->textInput([
  157. 'class' => 'datepicker form-control'
  158. ]); ?>
  159. </div>
  160. </div>
  161. <div v-show="currentSection == 'prise-commande'" class="panel panel-default">
  162. <div class="panel-body">
  163. <h4>Horaires</h4>
  164. <?php
  165. $delaysArray = [
  166. 1 => '1 jour',
  167. 2 => '2 jours',
  168. 3 => '3 jours',
  169. 4 => '4 jours',
  170. 5 => '5 jours',
  171. 6 => '6 jours',
  172. 7 => '7 jours',
  173. ];
  174. $deadlinesArray = [
  175. 24 => 'Minuit',
  176. 23 => '23h',
  177. 22 => '22h',
  178. 21 => '21h',
  179. 20 => '20h',
  180. 19 => '19h',
  181. 18 => '18h',
  182. 17 => '17h',
  183. 16 => '16h',
  184. 15 => '15h',
  185. 14 => '14h',
  186. 13 => '13h',
  187. 12 => '12h',
  188. 11 => '11h',
  189. 10 => '10h',
  190. 9 => '9h',
  191. 8 => '8h',
  192. ];
  193. $daysArray = [
  194. 'monday' => 'Lundi',
  195. 'tuesday' => 'Mardi',
  196. 'wednesday' => 'Mercredi',
  197. 'thursday' => 'Jeudi',
  198. 'friday' => 'Vendredi',
  199. 'saturday' => 'Samedi',
  200. 'sunday' => 'Dimanche'
  201. ];
  202. ?>
  203. <div class="row">
  204. <div class="col-md-2">
  205. <strong>Par défaut</strong>
  206. </div>
  207. <div class="col-md-5">
  208. <?= $form->field($model, 'order_delay')
  209. ->dropDownList($delaysArray, ['prompt' => '--'])
  210. ->hint('Si <strong>1 jour</strong> est sélectionné, le client pourra commander jusqu\'à la veille de la production.<br />'
  211. . 'Si <strong>2 jours</strong> est sélectionné, le client pourra commander jusqu\'à l\'avant-veille de la production, etc.'); ?>
  212. </div>
  213. <div class="col-md-5">
  214. <?= $form->field($model, 'order_deadline')
  215. ->dropDownList($deadlinesArray, ['prompt' => '--'])
  216. ->hint('Heure limite jusqu\'à laquelle les clients peuvent commander pour satisfaire le délai de commande.<br />'
  217. . '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.'); ?>
  218. </div>
  219. </div>
  220. <?php foreach ($daysArray as $day => $labelDay): ?>
  221. <div class="row">
  222. <div class="col-md-2">
  223. <strong><?= $labelDay ?></strong>
  224. </div>
  225. <div class="col-md-5">
  226. <?= $form->field($model, 'order_delay_' . $day, [
  227. 'template' => '{input}',
  228. ])->dropDownList($delaysArray, ['prompt' => '--'])->label(''); ?>
  229. </div>
  230. <div class="col-md-5">
  231. <?= $form->field($model, 'order_deadline_' . $day, [
  232. 'template' => '{input}',
  233. ])->dropDownList($deadlinesArray, ['prompt' => '--'])->label(''); ?>
  234. </div>
  235. </div>
  236. <?php endforeach; ?>
  237. <h4>Informations</h4>
  238. <?= $form->field($model, 'order_infos')
  239. ->textarea(['rows' => 6])
  240. ->hint('Affichées au client lors de sa commande') ?>
  241. <?= $form->field($model, 'option_payment_info')
  242. ->textarea(['rows' => 6])
  243. ->hint('Affichées au client à la fin de la prise de commande') ?>
  244. <h4>Tunnel de commande</h4>
  245. <?= $form->field($model, 'option_order_entry_point')
  246. ->dropDownList([
  247. Producer::ORDER_ENTRY_POINT_DATE => 'Date',
  248. Producer::ORDER_ENTRY_POINT_POINT_SALE => 'Point de vente',
  249. ], []); ?>
  250. <?= $form->field($model, 'behavior_order_select_distribution')
  251. ->dropDownList([
  252. Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_CALENDAR => 'Calendrier',
  253. Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_LIST => 'Liste',
  254. ]); ?>
  255. <?= $form->field($model, 'option_delivery')
  256. ->dropDownList(Dropdown::noYesChoices()); ?>
  257. <?php echo $form->field($model, 'option_allow_order_guest')
  258. ->dropDownList(Dropdown::noYesChoices()); ?>
  259. <h4>Notifications</h4>
  260. <?= $form->field($model, 'option_notify_producer_order_summary')
  261. ->dropDownList(Dropdown::noYesChoices()); ?>
  262. <?= $form->field($model, 'option_email_confirm')
  263. ->dropDownList(Dropdown::noYesChoices()); ?>
  264. <?= $form->field($model, 'option_email_confirm_producer')
  265. ->dropDownList(Dropdown::noYesChoices()); ?>
  266. <h4>Divers</h4>
  267. <?php
  268. $choicesWeeksDistributionsActivatedInAdvanceArray = [null => '--'];
  269. for ($i = 1; $i < 13; $i++) {
  270. $choicesWeeksDistributionsActivatedInAdvanceArray[$i] = $i . ' semaine' . (($i > 1) ? 's' : '');
  271. }
  272. ?>
  273. <?= $form->field($model, 'option_weeks_distributions_activated_in_advance')
  274. ->dropDownList($choicesWeeksDistributionsActivatedInAdvanceArray)
  275. ->hint("Attention, les premières semaines doivent être activées manuellement."); ?>
  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 "annulée"',
  285. ], []); ?>
  286. </div>
  287. </div>
  288. <div v-show="currentSection == 'exports'" class="panel panel-default">
  289. <div class="panel-body">
  290. <h4>Exports affichés dans les distributions</h4>
  291. <?= $distributionExportManager->getProducerFormCheckboxes($form, $model) ?>
  292. <h4>Options exports</h4>
  293. <?= $form->field($model, 'option_csv_separator')
  294. ->dropDownList([
  295. ';' => 'Point-virgule (;)',
  296. ',' => 'Virgule (,)'
  297. ], []); ?>
  298. <?= $form->field($model, 'option_export_display_product_reference')
  299. ->dropDownList(Dropdown::noYesChoices()); ?>
  300. <?= $form->field($model, 'option_export_display_column_delivery_note')
  301. ->dropDownList(Dropdown::noYesChoices()); ?>
  302. <?= $form->field($model, 'option_csv_export_all_products')
  303. ->dropDownList(Dropdown::noYesChoices()); ?>
  304. <?= $form->field($model, 'option_csv_export_by_piece')
  305. ->dropDownList(Dropdown::noYesChoices()); ?>
  306. <?php if($featureChecker->isEnabled(Feature::ALIAS_EXPORT_SHOPPING_CART_LABELS_ADVANCED)): ?>
  307. <?= $form->field($model, 'export_shopping_cart_labels_format')
  308. ->dropDownList($distributionExportManager->getGenerator(ExportManager::SHOPPING_CART_LABELS_PDF)->populateDropdownSpecificFormats()); ?>
  309. <?php else: ?>
  310. <?= $form->field($model, 'export_shopping_cart_labels_number_per_column')
  311. ->dropDownList(Dropdown::numberChoices(1, 20)); ?>
  312. <?php endif; ?>
  313. </div>
  314. </div>
  315. <div v-show="currentSection == 'abonnements'" class="panel panel-default">
  316. <div class="panel-body">
  317. <h4>Abonnements</h4>
  318. <?= $form->field($model, 'user_manage_subscription')
  319. ->dropDownList(Dropdown::noYesChoices()); ?>
  320. </div>
  321. </div>
  322. <div v-show="currentSection == 'credit-payment'" class="panel panel-default">
  323. <div class="panel-body">
  324. <h4>Cagnotte</h4>
  325. <?= $form->field($model, 'credit')
  326. ->dropDownList(Dropdown::noYesChoices())
  327. ->label('Activer le système de cagnotte')
  328. ->hint('Le système de cagnotte permet à vos clients d\'avoir un compte prépayé sur le site <em>Souke</em>.<br />'
  329. . '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 />'
  330. . 'Ceci fait, les clients paient leur commande directement via leur cagnotte.'); ?>
  331. <?= $form->field($model, 'use_credit_checked_default')
  332. ->dropDownList(Dropdown::noYesChoices())
  333. ->hint('Utilisation optionnelle de la cagnotte.'); ?>
  334. <?= $form->field($model, 'credit_limit_reminder', [
  335. 'template' => '{label}<div class="input-group">{input}<span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span></div>{hint}',
  336. ])
  337. ->hint("Une relance est envoyé au client dès que ce seuil est dépassé."); ?>
  338. <?= $form->field($model, 'credit_limit', [
  339. 'template' => '{label}<div class="input-group">{input}<span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span></div>{hint}',
  340. ])->hint('Limite de cagnotte que l\'utilisateur ne pourra pas dépasser. Laisser vide pour permettre un montant de cagnotte négatif et infini.'); ?>
  341. <?= $form->field($model, 'option_check_by_default_prevent_user_credit')
  342. ->dropDownList(Dropdown::noYesChoices()); ?>
  343. <?= $form->field($model, 'option_credit_description')
  344. ->hint('Description affichée sur la page "Cagnotte" de la boutique')
  345. ->textarea(); ?>
  346. <?php if($featureChecker->isEnabled(Feature::ALIAS_ONLINE_PAYMENT)): ?>
  347. <h4>Paiement en ligne</h4>
  348. <?php if($userModule->getAuthorizationChecker()->isGrantedAsAdministrator($userCurrent)): ?>
  349. <?= $form->field($model, 'online_payment')
  350. ->dropDownList(Dropdown::noYesChoices()); ?>
  351. <?= $form->field($model, 'option_stripe_mode_test')->dropDownList(Dropdown::noYesChoices()); ?>
  352. <?php /*$form->field($model, 'option_online_payment_type')
  353. ->dropDownList([
  354. 'credit' => 'Alimentation de la cagnotte',
  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. <?php endif; ?>
  361. <?= $form->field($model, 'option_online_payment_minimum_amount')
  362. ->hint('Valeur par défaut si non défini : ' . Producer::ONLINE_PAYMENT_MINIMUM_AMOUNT_DEFAULT . ' €')
  363. ->textInput(); ?>
  364. <?php endif; ?>
  365. </div>
  366. </div>
  367. <div v-show="currentSection == 'infos'" class="panel panel-default">
  368. <div class="panel-body">
  369. <h4>Informations légales</h4>
  370. <?= $form->field($model, 'mentions')
  371. ->textarea(['rows' => 15])
  372. ->hint('') ?>
  373. <?= $form->field($model, 'gcs')
  374. ->textarea(['rows' => 15])
  375. ->hint('') ?>
  376. </div>
  377. </div>
  378. <div v-show="currentSection == 'logiciels-caisse'" class="panel panel-default">
  379. <div class="panel-body">
  380. <h4>Tiller</h4>
  381. <?= $form->field($model, 'tiller')
  382. ->dropDownList(Dropdown::noYesChoices())
  383. ->label('Synchroniser avec Tiller'); ?>
  384. <?= $form->field($model, 'tiller_api_version')
  385. ->dropDownList([
  386. 'v2' => 'v2',
  387. 'v3' => 'v3'
  388. ]); ?>
  389. <h4>API V2</h4>
  390. <?= $form->field($model, 'tiller_provider_token'); ?>
  391. <?= $form->field($model, 'tiller_restaurant_token'); ?>
  392. <h4>API V3</h4>
  393. <?= $form->field($model, 'tiller_store_id'); ?>
  394. <?= $form->field($model, 'tiller_redirect_uri'); ?>
  395. <?= $form->field($model, 'tiller_client_id'); ?>
  396. <?= $form->field($model, 'tiller_client_secret'); ?>
  397. </div>
  398. </div>
  399. <div v-show="currentSection == 'facturation'" class="panel panel-default">
  400. <div class="panel-body">
  401. <h4>Facturation</h4>
  402. <?= $form->field($model, 'id_tax_rate_default')
  403. ->dropDownList(ArrayHelper::map(TaxRate::find()->all(), 'id', function ($model) {
  404. return $model->name;
  405. }))
  406. ->label('TVA à appliquer par défaut'); ?>
  407. <?= $form->field($model, 'option_tax_calculation_method')
  408. ->dropDownList(Document::$taxCalculationMethodArray); ?>
  409. <?= $form->field($model, 'option_export_evoliz')->dropDownList(Dropdown::noYesChoices()); ?>
  410. <?php $hintKeywordsPrefix = "Saisissez [ANNEE] pour intégrer l'année courante"; ?>
  411. <?= $form->field($model, 'document_quotation_prefix')->hint($hintKeywordsPrefix); ?>
  412. <?= $form->field($model, 'document_quotation_first_reference'); ?>
  413. <?= $form->field($model, 'document_quotation_duration'); ?>
  414. <?= $form->field($model, 'document_invoice_prefix')->hint($hintKeywordsPrefix);; ?>
  415. <?= $form->field($model, 'document_invoice_first_reference'); ?>
  416. <?= $form->field($model, 'document_delivery_note_prefix')->hint($hintKeywordsPrefix);; ?>
  417. <?= $form->field($model, 'document_delivery_note_first_reference'); ?>
  418. <?= $form->field($model, 'delivery_note_automatic_validation')->dropDownList(Dropdown::noYesChoices()); ?>
  419. <?= $form->field($model, 'option_invoice_only_based_on_delivery_notes')->dropDownList(Dropdown::noYesChoices()); ?>
  420. <?= $form->field($model, 'option_document_width_logo')
  421. ->dropDownList(Dropdown::numberChoices(50, 250, true, 'px', 50)); ?>
  422. <?= $form->field($model, 'document_display_orders_invoice')->dropDownList(Dropdown::noYesChoices()); ?>
  423. <?= $form->field($model, 'document_display_orders_delivery_note')->dropDownList(Dropdown::noYesChoices()); ?>
  424. <?= $form->field($model, 'document_display_prices_delivery_note')->dropDownList(Dropdown::noYesChoices()); ?>
  425. <?= $form->field($model, 'document_display_product_description')->dropDownList(Dropdown::noYesChoices()); ?>
  426. <?= $form->field($model, 'option_document_price_decimals')->dropDownList([
  427. 2 => '2',
  428. 3 => '3'
  429. ]); ?>
  430. <?= $form->field($model, 'option_document_display_price_unit_reference')
  431. ->dropDownList(Dropdown::noYesChoices()); ?>
  432. <?= $form->field($model, 'document_infos_top')
  433. ->textarea(['rows' => 8])
  434. ->hint("Affichées juste en dessous de l'adresse"); ?>
  435. <?= $form->field($model, 'document_infos_bottom')
  436. ->textarea(['rows' => 8]) ?>
  437. <?= $form->field($model, 'document_image_bottomFile')->fileInput()->hint('') ?>
  438. <?php
  439. if (strlen($model->document_image_bottom)) {
  440. echo '<img src="' . Yii::$app->urlManagerProducer->getHostInfo() . '/' . Yii::$app->urlManagerProducer->baseUrl . '/uploads/' . $model->document_image_bottom . '" width="400px" /><br />';
  441. 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 />';
  442. }
  443. ?>
  444. <?= $form->field($model, 'document_infos_quotation')
  445. ->textarea(['rows' => 8]) ?>
  446. <?= $form->field($model, 'document_infos_invoice')
  447. ->textarea(['rows' => 8]) ?>
  448. <?= $form->field($model, 'document_infos_delivery_note')
  449. ->textarea(['rows' => 8]) ?>
  450. </div>
  451. </div>
  452. <div v-show="currentSection == 'software'" class="panel panel-default">
  453. <div class="panel-body">
  454. <h4>Souke</h4>
  455. <?= $form->field($model, 'option_display_message_new_opendistrib_version')
  456. ->dropDownList(Dropdown::noYesChoices()); ?>
  457. <?= $form->field($model, 'agree_contact_about_software_development')
  458. ->dropDownList(Dropdown::noYesChoices()); ?>
  459. <?php $urlAboutPage = Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/about']); ?>
  460. <?= $form->field($model, 'option_testimony')
  461. ->textarea(['rows' => 7])
  462. ->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."); ?>
  463. <?= $form->field($model, 'option_time_saved')
  464. ->dropDownList([
  465. null => '--',
  466. 0.5 => '30 minutes',
  467. 1 => '1 heure',
  468. 2 => '2 heures',
  469. 3 => '3 heures',
  470. 4 => '4 heures',
  471. 5 => '5 heures',
  472. 6 => '6 heures',
  473. 7 => '7 heures',
  474. 8 => '8 heures',
  475. ])
  476. ->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."); ?>
  477. </div>
  478. </div>
  479. <div class="form-group form-actions">
  480. <?= Html::submitButton('Mettre à jour', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
  481. </div>
  482. </div>
  483. <?php ActiveForm::end(); ?>
  484. </div>
  485. </div>