Blame view

web/js/order.js 1.34 KB
8b1e29a6   Alexey Boroda   -Orders fixed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  $(
      function() {
          $(document)
              .on(
                  'click', '.remove-order-product', function(e) {
                      e.preventDefault();
                      $(this)
                          .parents('.row-order-product')
                          .remove();
                  }
              );
          $(document)
              .on(
                  'click', '.variant-to-order', function(e) {
                      e.preventDefault();
                      var id = $('#add-to-order');
                      var count = $('#count-to-order');
                      if (id.val()) {
                          $.ajax(
                              {
                                  url: '/admin/order/add-to-order',
                                  type: "POST",
                                  data: {
                                      'id': id.val(),
                                      'count': count.val()
                                  },
                                  success: function(data) {
                                      if (data.success) {
                                          $('#product-rows')
                                              .append(data.row);
                                      }
                                  }
                              }
                          );
                      }
                  }
              );
      }
  );