You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

536 lines
30KB

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