Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

36 lines
1.1KB

  1. $(document).ready(function () {
  2. initDuplicateOtherToOtherMerchant();
  3. });
  4. function initDuplicateOtherToOtherMerchant() {
  5. $('.duplicate-modal-action').on('click', function (e) {
  6. $btn = $(this);
  7. e.preventDefault();
  8. $.ajax({
  9. url: $btn.prop('href'),
  10. method: "POST",
  11. dataType: "json",
  12. success: function (response) {
  13. $('body').append(response.data);
  14. SovTools.log($('#carac-modal-duplicate'));
  15. $('#carac-modal-duplicate').modal('show');
  16. //initDuplicateModal();
  17. }
  18. });
  19. });
  20. }
  21. function initDuplicateModal(){
  22. $('#carac-button-visit-merchant').on('click', function (e){
  23. SovTools.log($('form[name="duplicate_to_other_merchant_form"]'));
  24. $.ajax({
  25. url: $btn.prop('href'),
  26. data: $('form[name="duplicate_to_other_merchant_form"]').serialize(),
  27. method: "POST",
  28. dataType: "json",
  29. success: function (response) {
  30. }
  31. });
  32. });
  33. }