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.

659 rindas
22KB

  1. /**
  2. Copyright Guillaume Bourgeois (2018)
  3. contact@souke.fr
  4. Ce logiciel est un programme informatique servant à aider les producteurs
  5. à distribuer leur production en circuits courts.
  6. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  7. respectant les principes de diffusion des logiciels libres. Vous pouvez
  8. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  9. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  10. sur le site "http://www.cecill.info".
  11. En contrepartie de l'accessibilité au code source et des droits de copie,
  12. de modification et de redistribution accordés par cette licence, il n'est
  13. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  14. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  15. titulaire des droits patrimoniaux et les concédants successifs.
  16. A cet égard l'attention de l'utilisateur est attirée sur les risques
  17. associés au chargement, à l'utilisation, à la modification et/ou au
  18. développement et à la reproduction du logiciel par l'utilisateur étant
  19. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  20. manipuler et qui le réserve donc à des développeurs et des professionnels
  21. avertis possédant des connaissances informatiques approfondies. Les
  22. utilisateurs sont donc invités à charger et tester l'adéquation du
  23. logiciel à leurs besoins dans des conditions permettant d'assurer la
  24. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  25. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  26. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  27. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  28. termes.
  29. */
  30. $(document).ready(function () {
  31. opendistrib_datepicker();
  32. opendistrib_popover();
  33. opendistrib_points_vente_acces();
  34. opendistrib_tooltip();
  35. opendistrib_ordre_produits();
  36. opendistrib_ordre_categories();
  37. opendistrib_products();
  38. opendistrib_product_prices();
  39. opendistrib_product_index();
  40. opendistrib_confirm_delete();
  41. opendistrib_product_availability_points_sale();
  42. opendistrib_user_index();
  43. opendistrib_menu_treeview();
  44. opendistrib_select2();
  45. opendistrib_dropdown_producers();
  46. opendistrib_gridview_pagesize();
  47. opendistrib_producers_admin();
  48. opendistrib_user_form();
  49. opendistrib_user_credit();
  50. opendistrib_features_index();
  51. opendistrib_point_sale_form();
  52. opendistrib_check_all_checkboxes();
  53. opendistrib_dashboard_admin_statistics();
  54. opendistrib_tinymce_responsive();
  55. opendistrib_sponsorship();
  56. opendistrib_clipboard_paste();
  57. opendistrib_automatic_email();
  58. });
  59. function opendistrib_automatic_email() {
  60. if($('.automatic-email-form').size()) {
  61. opendistrib_automatic_email_form_event();
  62. $('#automaticemail-day').change(function() {
  63. opendistrib_automatic_email_form_event();
  64. });
  65. }
  66. }
  67. function opendistrib_automatic_email_form_event() {
  68. var day = parseFloat($('#automaticemail-day').val());
  69. if(day) {
  70. $('.field-automaticemail-sending_day').hide();
  71. $('.field-automaticemail-delay_before_distribution').show();
  72. }
  73. else {
  74. $('.field-automaticemail-sending_day').show();
  75. $('.field-automaticemail-delay_before_distribution').hide();
  76. }
  77. }
  78. function label_unit_reference(unit) {
  79. if(unit == 'piece') {
  80. return 'p.';
  81. }
  82. else if(unit == 'g' || unit == 'kg') {
  83. return 'kg';
  84. }
  85. else {
  86. return 'litre(s)';
  87. }
  88. }
  89. function opendistrib_clipboard_paste() {
  90. $('.clipboard-paste').click(function() {
  91. navigator.clipboard.writeText($(this).attr('data-clipboard-paste'));
  92. appAlerts.alert('success', 'Copié dans le presse-papier');
  93. return false;
  94. });
  95. }
  96. function opendistrib_sponsorship() {
  97. $('#sponsorship-link-copy').click(function() {
  98. navigator.clipboard.writeText($(this).attr('href'));
  99. appAlerts.alert('success', 'Lien de parrainage copié');
  100. return false;
  101. });
  102. }
  103. function saveData (data, fileName) {
  104. var a = document.createElement("a");
  105. document.body.appendChild(a);
  106. a.style = "display: none";
  107. var blob = new Blob([data], {type: "octet/stream"}),
  108. url = window.URL.createObjectURL(blob);
  109. a.href = url;
  110. a.download = fileName;
  111. a.click();
  112. window.URL.revokeObjectURL(url);
  113. }
  114. var UrlManager = {
  115. getBaseUrl: function () {
  116. return $('meta[name=baseurl]').attr('content') + '/';
  117. },
  118. getBaseUrlAbsolute: function () {
  119. return $('meta[name=baseurl-absolute]').attr('content') + '/';
  120. }
  121. };
  122. function opendistrib_tinymce_responsive() {
  123. // tinymce.activeEditor.mode.set('readonly');
  124. //tinymce.activeEditor.hide();
  125. //tinymce.EditorManager.execCommand('mceRemoveEditor',true, 'textarea#mailform-message');
  126. //tinyMCE.init({readonly : 1});
  127. //tinymce.activeEditor.getBody().setAttribute('contenteditable', false);
  128. //tinyMCE.get('mailform-message').getBody().setAttribute('contenteditable', false);
  129. }
  130. function opendistrib_dashboard_admin_statistics() {
  131. var selector = '#dashboard-admin-statistics-html';
  132. if($(selector).length) {
  133. $(selector+' .btn-load').click(function() {
  134. $(selector).html('Chargement ...');
  135. $.get(UrlManager.getBaseUrl() + 'dashboard-admin/ajax-statistics-html', {}, function(result) {
  136. $(selector).html(result);
  137. });
  138. });
  139. }
  140. }
  141. function opendistrib_check_all_checkboxes() {
  142. $('.check-all-checkboxes').change(function() {
  143. var selector = $(this).data('selector');
  144. var checked = $(this).prop('checked');
  145. $(selector).prop('checked', checked);
  146. if(checked){
  147. $(selector).unbind('change').change(function() {
  148. if(!$(this).prop('checked')) {
  149. $('.check-all-checkboxes').prop('checked', false);
  150. }
  151. });
  152. }
  153. });
  154. }
  155. function opendistrib_point_sale_form() {
  156. if($('.point-sale-form').length) {
  157. opendistrib_point_sale_form_days_distribution_event();
  158. $('#days-distribution .day input[type=checkbox]').change(function() {
  159. opendistrib_point_sale_form_days_distribution_event();
  160. });
  161. }
  162. }
  163. function opendistrib_point_sale_form_days_distribution_event() {
  164. $('#days-distribution .day').each(function() {
  165. var isChecked = $(this).find('input[type=checkbox]').prop('checked');
  166. var $textareaInfos = $(this).find('textarea');
  167. if(isChecked) {
  168. $textareaInfos.show();
  169. }
  170. else {
  171. $textareaInfos.hide();
  172. }
  173. });
  174. }
  175. function opendistrib_user_form() {
  176. if($('#app-user-form').length) {
  177. var $fieldUserEmail = $('#app-user-form .field-user-email input');
  178. var $fieldSendMailWelcome = $('#app-user-form .field-user-send_mail_welcome');
  179. opendistrib_user_form_event($fieldUserEmail, $fieldSendMailWelcome);
  180. $fieldUserEmail.keyup(function () {
  181. opendistrib_user_form_event($fieldUserEmail, $fieldSendMailWelcome);
  182. });
  183. }
  184. }
  185. function opendistrib_user_form_event($fieldUserEmail, $fieldSendMailWelcome) {
  186. var val = $fieldUserEmail.val();
  187. if (val.length > 0) {
  188. $fieldSendMailWelcome.show();
  189. }
  190. else {
  191. $fieldSendMailWelcome.hide();
  192. }
  193. }
  194. function opendistrib_user_credit() {
  195. if($('body.user-credit').length) {
  196. $('#creditform-amount').focus();
  197. }
  198. }
  199. function opendistrib_producers_admin() {
  200. $('.producer-admin-index .btn-alwaysdata, .producer-admin-index .btn-dolibarr').click(function () {
  201. var $button = $(this);
  202. $button.attr('disabled', 'disabled');
  203. axios.get($button.attr('href'), {})
  204. .then(function (response) {
  205. appAlerts.alertResponse(response);
  206. $button.removeAttr('disabled');
  207. });
  208. return false;
  209. });
  210. }
  211. function opendistrib_gridview_pagesize() {
  212. $('.gridview-pagesize select').change(function () {
  213. $(this).parent().parent().submit();
  214. });
  215. }
  216. function opendistrib_dropdown_producers() {
  217. $('.producer-menu .dropdown-toggle').click(function () {
  218. setTimeout(function() { $('.producer-menu .search-producer').focus(); }, 100);
  219. });
  220. $('.producer-menu .search-producer').keyup(function (event) {
  221. var $alertNoResults = $('.producer-menu .li-alert-no-results');
  222. var searchWords = $(this).val().toLowerCase();
  223. var count = 0;
  224. if (searchWords && searchWords.length > 0) {
  225. $('.producer-menu li.producer').each(function () {
  226. if ($(this).find('a').text().toLowerCase().indexOf(searchWords) >= 0 || !searchWords) {
  227. $(this).show();
  228. count++;
  229. } else {
  230. $(this).hide();
  231. }
  232. });
  233. if (count) {
  234. $alertNoResults.hide();
  235. } else {
  236. $alertNoResults.show();
  237. }
  238. } else {
  239. $alertNoResults.hide();
  240. $('.producer-menu li.producer').show();
  241. }
  242. if(event.key == 'Enter') {
  243. $firstProducer = $('.producer-menu li.producer:visible:first');
  244. if($firstProducer.length > 0) {
  245. window.location = $firstProducer.find('a').attr('href');
  246. }
  247. }
  248. });
  249. $('#link-display-producers-offline').click(function () {
  250. $(this).hide();
  251. $('.producer-menu .offline').show();
  252. return false;
  253. });
  254. }
  255. function opendistrib_popover() {
  256. $('button[data-toggle=popover], a[data-toggle=popover]').popover();
  257. }
  258. function opendistrib_select2() {
  259. $('.select2').select2({
  260. width: 'resolve'
  261. });
  262. }
  263. function opendistrib_user_index() {
  264. if ($('body').hasClass('user-index')) {
  265. $('#w0-filters input:first').focus();
  266. }
  267. }
  268. function opendistrib_menu_treeview() {
  269. $('li.treeview a').unbind('click').click(function () {
  270. var href = $(this).attr('href');
  271. if (href != '#') {
  272. $(location).attr('href', href);
  273. }
  274. });
  275. }
  276. function opendistrib_product_index() {
  277. $('body.product-index .toggle input').change(function () {
  278. var id = $(this).data('id');
  279. var checked = $(this).prop('checked');
  280. $.get(UrlManager.getBaseUrl() + 'product/ajax-toggle-status', {
  281. id: id,
  282. status: checked ? 1 : 0
  283. });
  284. })
  285. }
  286. function opendistrib_product_availability_points_sale() {
  287. $('input[name="Product[available_on_points_sale]"]').change(function () {
  288. var available = parseInt($(this).val());
  289. var label = 'disponible';
  290. if (available == 1) {
  291. label = 'indisponible';
  292. }
  293. $('#label-availability-points-sale span').html(label);
  294. });
  295. }
  296. function opendistrib_confirm_delete() {
  297. $('.btn-confirm-delete').click(function (event) {
  298. if (!confirm('Souhaitez-vous vraiment supprimer cette entrée ?')) {
  299. event.stopPropagation();
  300. return false;
  301. }
  302. });
  303. }
  304. function opendistrib_products() {
  305. if ($('.product-create').size() || $('.product-update').size()) {
  306. opendistrib_products_event_unit(false);
  307. $('#product-unit').change(function () {
  308. opendistrib_products_event_unit(true);
  309. });
  310. opendistrib_products_event_price_with_tax();
  311. $('#product-price').change(opendistrib_products_event_price_with_tax);
  312. $('#product-price-with-tax').change(opendistrib_products_event_price);
  313. $('#product-id_tax_rate').change(opendistrib_products_event_price_with_tax);
  314. }
  315. }
  316. function opendistrib_products_event_price_with_tax() {
  317. taxRateSelected = $('#product-id_tax_rate').find('option:selected').data('tax-rate-value');
  318. if (typeof taxRateSelected == 'undefined') {
  319. taxRateSelected = 0;
  320. }
  321. if ($('#product-price').length) {
  322. var price = $('#product-price').val().replace(',', '.');
  323. if (price) {
  324. $('#product-price-with-tax').val(getPriceWithTax(price, taxRateSelected));
  325. // formattage
  326. $('#product-price').val(parseFloat(price).toFixed(5));
  327. }
  328. }
  329. }
  330. function opendistrib_products_event_price() {
  331. taxRateSelected = $('#product-id_tax_rate').find('option:selected').data('tax-rate-value');
  332. if (typeof taxRateSelected == 'undefined') {
  333. taxRateSelected = 0;
  334. }
  335. var priceWithTax = $('#product-price-with-tax').val();
  336. if (priceWithTax) {
  337. $('#product-price').val(getPrice(priceWithTax, taxRateSelected));
  338. // formattage
  339. $('#product-price-with-tax').val(parseFloat(priceWithTax).toFixed(2));
  340. }
  341. }
  342. function opendistrib_products_event_unit(change) {
  343. var unit = $('#product-unit').val();
  344. if (unit == 'piece') {
  345. $('.field-product-step').hide();
  346. $('.field-product-weight label').html('Poids (g)');
  347. } else {
  348. $('.field-product-step').show();
  349. //$('.field-product-weight label').html('Poids (' + $('#product-unit').val() + ')');
  350. $('.field-product-weight label').html('Poids (g)');
  351. }
  352. var label_price_ttc = $('.field-product-price .control-label.with-tax');
  353. var label_price_ht = $('.field-product-price .control-label.without-tax');
  354. var label_step = $('.field-product-step .control-label');
  355. var label_quantity_max = $('.field-product-quantity_max .control-label');
  356. if (unit == 'piece') {
  357. label_price_ttc.html('Prix (la pièce) TTC');
  358. label_price_ht.html('Prix (la pièce) HT');
  359. label_quantity_max.html('Par défaut (pièces)');
  360. } else if (unit == 'g' || unit == 'kg') {
  361. label_price_ttc.html('Prix (au kg) TTC');
  362. label_price_ht.html('Prix (au kg) HT');
  363. label_quantity_max.html('Par défaut (kg)');
  364. label_step.html('Pas (' + unit + ')');
  365. } else if (unit == 'mL' || unit == 'L') {
  366. label_price_ttc.html('Prix (au litre) TTC');
  367. label_price_ht.html('Prix (au litre) HT');
  368. label_quantity_max.html('Par défaut (litres)');
  369. label_step.html('Pas (' + unit + ')');
  370. }
  371. if (change) {
  372. if (unit == 'piece') {
  373. $('#product-step').val(1);
  374. } else {
  375. $('#product-step').val('');
  376. }
  377. }
  378. }
  379. function opendistrib_product_prices() {
  380. if ($('.product-prices-create').size() || $('.product-prices-update').size()) {
  381. opendistrib_product_prices_event_price_with_tax();
  382. $('#productprice-price').change(opendistrib_product_prices_event_price_with_tax);
  383. $('#productprice-price-with-tax').change(opendistrib_product_prices_event_price);
  384. $('#reduction-increase-percent').change(function () {
  385. opendistrib_product_prices_event_reduction_increase();
  386. });
  387. }
  388. }
  389. function opendistrib_product_prices_event_price_with_tax() {
  390. var taxRateValue = $('#productprice-price-with-tax').data('tax-rate-value');
  391. var price = $('#productprice-price').val().replace(',', '.');
  392. if (price) {
  393. $('#productprice-price-with-tax').val(getPriceWithTax(price, taxRateValue));
  394. // formattage
  395. $('#productprice-price').val(parseFloat(price).toFixed(5));
  396. opendistrib_product_prices_update_reduction_increase();
  397. }
  398. }
  399. function opendistrib_product_prices_event_price() {
  400. var taxRateValue = $('#productprice-price-with-tax').data('tax-rate-value');
  401. var priceWithTax = $('#productprice-price-with-tax').val().replace(',', '.');
  402. if (priceWithTax) {
  403. $('#productprice-price').val(getPrice(priceWithTax, taxRateValue));
  404. // formattage
  405. $('#productprice-price-with-tax').val(parseFloat(priceWithTax).toFixed(2));
  406. opendistrib_product_prices_update_reduction_increase();
  407. }
  408. }
  409. function opendistrib_product_prices_update_reduction_increase() {
  410. var productPriceBase = $('#reduction-increase-percent').data('price-base');
  411. var productPriceSpecific = $('#productprice-price').val().replace(',', '.');
  412. var reductionIncreasePercent = (productPriceSpecific / productPriceBase) * 100 - 100;
  413. $('#reduction-increase-percent').val(parseFloat(reductionIncreasePercent).toFixed(5));
  414. }
  415. function opendistrib_product_prices_event_reduction_increase() {
  416. var productPriceBase = $('#reduction-increase-percent').data('price-base');
  417. var reductionIncreasePercent = $('#reduction-increase-percent').val();
  418. if (reductionIncreasePercent) {
  419. var newPrice = productPriceBase + productPriceBase * (reductionIncreasePercent / 100);
  420. $('#productprice-price').val(parseFloat(newPrice).toFixed(5));
  421. opendistrib_product_prices_event_price_with_tax();
  422. }
  423. }
  424. function opendistrib_tooltip() {
  425. $('[data-toggle="tooltip"]').tooltip({
  426. container: 'body'
  427. });
  428. }
  429. function opendistrib_nl2br(str, is_xhtml) {
  430. var breakTag = (is_xhtml || typeof is_xhtml === 'undefined') ? '<br />' : '<br>';
  431. return (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1' + breakTag + '$2');
  432. }
  433. function opendistrib_points_vente_acces() {
  434. // affichage du bloc acces restreint
  435. $('#pointsale-restricted_access').change(function () {
  436. opendistrib_points_vente_acces_event();
  437. });
  438. opendistrib_points_vente_acces_event();
  439. // affichage du champs commentaire
  440. $('#pointsale-users input[type=checkbox]').change(function () {
  441. opendistrib_points_vente_commentaire_event();
  442. });
  443. opendistrib_points_vente_commentaire_event();
  444. }
  445. function opendistrib_points_vente_commentaire_event() {
  446. $('#pointsale-users input[type=checkbox]').each(function () {
  447. if ($(this).prop('checked')) {
  448. $(this).parent().find('.commentaire').fadeIn();
  449. } else {
  450. $(this).parent().find('.commentaire').hide();
  451. }
  452. });
  453. }
  454. function opendistrib_points_vente_acces_event() {
  455. if ($('#pointsale-restricted_access').prop('checked')) {
  456. $('#pointsale-users').fadeIn();
  457. } else {
  458. $('#pointsale-users').hide();
  459. }
  460. }
  461. function opendistrib_sortable_list(element_selector, button_selector, route_ajax) {
  462. var fixHelper = function (e, ui) {
  463. ui.children().each(function () {
  464. $(this).width($(this).width());
  465. });
  466. return ui;
  467. };
  468. $(element_selector + " table tbody").sortable({
  469. items: "> tr",
  470. appendTo: "parent",
  471. cursor: "move",
  472. placeholder: "ui-state-highlight",
  473. handle: button_selector,
  474. helper: fixHelper,
  475. stop: function (event, ui) {
  476. var tab_ordre = {};
  477. var ordre = 1;
  478. if ($('ul.pagination').size()) {
  479. var page = parseInt($('ul.pagination li.active a').html());
  480. var nb_items_by_page = parseInt($('#page-size').html());
  481. if (page != 1) {
  482. ordre = (page - 1) * nb_items_by_page;
  483. }
  484. }
  485. $(element_selector + " table tbody tr").each(function () {
  486. tab_ordre[$(this).attr('data-key')] = ordre;
  487. ordre++;
  488. });
  489. $.post(UrlManager.getBaseUrl() + route_ajax, {
  490. array: JSON.stringify(tab_ordre)
  491. });
  492. }
  493. }).disableSelection();
  494. }
  495. function opendistrib_ordre_categories() {
  496. opendistrib_sortable_list(
  497. '.product-category-index',
  498. '.btn-position',
  499. 'product-category/position'
  500. );
  501. }
  502. function opendistrib_ordre_produits() {
  503. opendistrib_sortable_list(
  504. '.product-index',
  505. '.btn-order',
  506. 'product/order'
  507. );
  508. }
  509. function opendistrib_features_index() {
  510. $('body.feature-admin-index .toggle input').change(function () {
  511. var id = $(this).data('id');
  512. var checked = $(this).prop('checked');
  513. /*$.get(UrlManager.getBaseUrl() + 'feature-admin/ajax-toggle-status', {
  514. id: id,
  515. status: checked ? 1 : 0
  516. });*/
  517. axios.get(UrlManager.getBaseUrlAbsolute() + "feature-admin/ajax-toggle-status", {
  518. params: {
  519. id: id,
  520. status: checked ? 1 : 0
  521. }
  522. })
  523. .then(function (response) {
  524. appAlerts.alertResponse(response);
  525. });
  526. });
  527. opendistrib_sortable_list(
  528. '.feature-admin-index',
  529. '.btn-position',
  530. 'feature-admin/position'
  531. );
  532. }
  533. function opendistrib_datepicker() {
  534. $('#subscriptionform-date_begin, #subscriptionform-date_end').datepicker();
  535. $('input.datepicker').datepicker({dateFormat: 'dd/mm/yy'});
  536. }
  537. /* French initialisation for the jQuery UI date picker plugin. */
  538. /* Written by Keith Wood (kbwood{at}iinet.com.au),
  539. Stéphane Nahmani (sholby@sholby.net),
  540. Stéphane Raimbault <stephane.raimbault@gmail.com> */
  541. (function (factory) {
  542. if (typeof define === "function" && define.amd) {
  543. // AMD. Register as an anonymous module.
  544. define(["../jquery.ui.datepicker"], factory);
  545. } else {
  546. // Browser globals
  547. factory(jQuery.datepicker);
  548. }
  549. }(function (datepicker) {
  550. datepicker.regional['fr'] = {
  551. closeText: 'Fermer',
  552. prevText: 'Précédent',
  553. nextText: 'Suivant',
  554. currentText: 'Aujourd\'hui',
  555. monthNames: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin',
  556. 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
  557. monthNamesShort: ['janv.', 'févr.', 'mars', 'avril', 'mai', 'juin',
  558. 'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'],
  559. dayNames: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'],
  560. dayNamesShort: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'],
  561. dayNamesMin: ['D', 'L', 'M', 'M', 'J', 'V', 'S'],
  562. weekHeader: 'Sem.',
  563. dateFormat: 'dd/mm/yy',
  564. firstDay: 1,
  565. isRTL: false,
  566. showMonthAfterYear: false,
  567. yearSuffix: ''
  568. };
  569. datepicker.setDefaults(datepicker.regional['fr']);
  570. return datepicker.regional['fr'];
  571. }));