2015-03-03 09:25:30 +00:00
|
|
|
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2014-10-21 10:46:30 +00:00
|
|
|
// License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
// js inside blog page
|
|
|
|
|
|
|
|
// shopping cart
|
2017-05-30 07:24:42 +00:00
|
|
|
frappe.provide("erpnext.shopping_cart");
|
|
|
|
var shopping_cart = erpnext.shopping_cart;
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
$.extend(shopping_cart, {
|
|
|
|
show_error: function(title, text) {
|
2015-07-10 04:41:07 +00:00
|
|
|
$("#cart-container").html('<div class="msg-box"><h4>' +
|
|
|
|
title + '</h4><p class="text-muted">' + text + '</p></div>');
|
2014-10-21 10:46:30 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
bind_events: function() {
|
2015-09-16 13:22:52 +00:00
|
|
|
shopping_cart.bind_address_select();
|
2015-09-17 10:58:30 +00:00
|
|
|
shopping_cart.bind_place_order();
|
2019-03-19 06:18:32 +00:00
|
|
|
shopping_cart.bind_request_quotation();
|
2015-09-17 10:58:30 +00:00
|
|
|
shopping_cart.bind_change_qty();
|
2019-03-19 06:18:32 +00:00
|
|
|
shopping_cart.bind_change_notes();
|
2016-06-22 10:21:42 +00:00
|
|
|
shopping_cart.bind_dropdown_cart_buttons();
|
2019-08-12 08:09:25 +00:00
|
|
|
shopping_cart.bind_coupon_code();
|
2015-09-16 13:22:52 +00:00
|
|
|
},
|
2017-05-30 07:24:42 +00:00
|
|
|
|
2015-09-16 13:22:52 +00:00
|
|
|
bind_address_select: function() {
|
2019-03-19 06:18:32 +00:00
|
|
|
$(".cart-addresses").on('click', '.address-card', function(e) {
|
|
|
|
const $card = $(e.currentTarget);
|
2020-03-12 09:00:28 +00:00
|
|
|
const address_type = $card.closest('[data-address-type]').attr('data-address-type');
|
2019-03-19 06:18:32 +00:00
|
|
|
const address_name = $card.closest('[data-address-name]').attr('data-address-name');
|
|
|
|
return frappe.call({
|
|
|
|
type: "POST",
|
|
|
|
method: "erpnext.shopping_cart.cart.update_cart_address",
|
|
|
|
freeze: true,
|
|
|
|
args: {
|
2020-03-12 09:00:28 +00:00
|
|
|
address_type,
|
2019-03-19 06:18:32 +00:00
|
|
|
address_name
|
|
|
|
},
|
|
|
|
callback: function(r) {
|
|
|
|
if(!r.exc) {
|
|
|
|
$(".cart-tax-items").html(r.message.taxes);
|
2015-09-16 13:22:52 +00:00
|
|
|
}
|
2019-03-19 06:18:32 +00:00
|
|
|
}
|
|
|
|
});
|
2014-10-21 10:46:30 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-09-17 10:58:30 +00:00
|
|
|
bind_place_order: function() {
|
|
|
|
$(".btn-place-order").on("click", function() {
|
|
|
|
shopping_cart.place_order(this);
|
2014-10-21 10:46:30 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2019-03-19 06:18:32 +00:00
|
|
|
bind_request_quotation: function() {
|
|
|
|
$('.btn-request-for-quotation').on('click', function() {
|
|
|
|
shopping_cart.request_quotation(this);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-09-17 10:58:30 +00:00
|
|
|
bind_change_qty: function() {
|
|
|
|
// bind update button
|
|
|
|
$(".cart-items").on("change", ".cart-qty", function() {
|
|
|
|
var item_code = $(this).attr("data-item-code");
|
2016-06-22 10:21:42 +00:00
|
|
|
var newVal = $(this).val();
|
2019-03-19 06:18:32 +00:00
|
|
|
shopping_cart.shopping_cart_update({item_code, qty: newVal});
|
2016-05-02 06:13:44 +00:00
|
|
|
});
|
2017-05-30 07:24:42 +00:00
|
|
|
|
|
|
|
$(".cart-items").on('click', '.number-spinner button', function () {
|
2016-06-22 10:16:38 +00:00
|
|
|
var btn = $(this),
|
2016-06-22 10:21:42 +00:00
|
|
|
input = btn.closest('.number-spinner').find('input'),
|
|
|
|
oldValue = input.val().trim(),
|
2016-06-22 10:16:38 +00:00
|
|
|
newVal = 0;
|
2017-05-30 07:24:42 +00:00
|
|
|
|
2016-06-22 10:16:38 +00:00
|
|
|
if (btn.attr('data-dir') == 'up') {
|
|
|
|
newVal = parseInt(oldValue) + 1;
|
|
|
|
} else {
|
|
|
|
if (oldValue > 1) {
|
|
|
|
newVal = parseInt(oldValue) - 1;
|
|
|
|
}
|
|
|
|
}
|
2016-06-22 10:21:42 +00:00
|
|
|
input.val(newVal);
|
2017-05-30 07:24:42 +00:00
|
|
|
var item_code = input.attr("data-item-code");
|
2019-03-19 06:18:32 +00:00
|
|
|
shopping_cart.shopping_cart_update({item_code, qty: newVal});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
bind_change_notes: function() {
|
|
|
|
$('.cart-items').on('change', 'textarea', function() {
|
|
|
|
const $textarea = $(this);
|
|
|
|
const item_code = $textarea.attr('data-item-code');
|
|
|
|
const qty = $textarea.closest('tr').find('.cart-qty').val();
|
|
|
|
const notes = $textarea.val();
|
|
|
|
shopping_cart.shopping_cart_update({
|
|
|
|
item_code,
|
|
|
|
qty,
|
|
|
|
additional_notes: notes
|
|
|
|
});
|
2016-06-22 10:16:38 +00:00
|
|
|
});
|
2016-05-02 06:13:44 +00:00
|
|
|
},
|
2017-05-30 07:24:42 +00:00
|
|
|
|
2014-10-21 10:46:30 +00:00
|
|
|
render_tax_row: function($cart_taxes, doc, shipping_rules) {
|
|
|
|
var shipping_selector;
|
|
|
|
if(shipping_rules) {
|
|
|
|
shipping_selector = '<select class="form-control">' + $.map(shipping_rules, function(rule) {
|
2017-05-30 07:24:42 +00:00
|
|
|
return '<option value="' + rule[0] + '">' + rule[1] + '</option>' }).join("\n") +
|
|
|
|
'</select>';
|
2014-10-21 10:46:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var $tax_row = $(repl('<div class="row">\
|
|
|
|
<div class="col-md-9 col-sm-9">\
|
|
|
|
<div class="row">\
|
|
|
|
<div class="col-md-9 col-md-offset-3">' +
|
|
|
|
(shipping_selector || '<p>%(description)s</p>') +
|
|
|
|
'</div>\
|
|
|
|
</div>\
|
|
|
|
</div>\
|
|
|
|
<div class="col-md-3 col-sm-3 text-right">\
|
|
|
|
<p' + (shipping_selector ? ' style="margin-top: 5px;"' : "") + '>%(formatted_tax_amount)s</p>\
|
|
|
|
</div>\
|
|
|
|
</div>', doc)).appendTo($cart_taxes);
|
|
|
|
|
|
|
|
if(shipping_selector) {
|
|
|
|
$tax_row.find('select option').each(function(i, opt) {
|
|
|
|
if($(opt).html() == doc.description) {
|
|
|
|
$(opt).attr("selected", "selected");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$tax_row.find('select').on("change", function() {
|
|
|
|
shopping_cart.apply_shipping_rule($(this).val(), this);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
apply_shipping_rule: function(rule, btn) {
|
|
|
|
return frappe.call({
|
|
|
|
btn: btn,
|
|
|
|
type: "POST",
|
|
|
|
method: "erpnext.shopping_cart.cart.apply_shipping_rule",
|
|
|
|
args: { shipping_rule: rule },
|
|
|
|
callback: function(r) {
|
|
|
|
if(!r.exc) {
|
|
|
|
shopping_cart.render(r.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
place_order: function(btn) {
|
|
|
|
return frappe.call({
|
|
|
|
type: "POST",
|
|
|
|
method: "erpnext.shopping_cart.cart.place_order",
|
|
|
|
btn: btn,
|
|
|
|
callback: function(r) {
|
|
|
|
if(r.exc) {
|
|
|
|
var msg = "";
|
|
|
|
if(r._server_messages) {
|
|
|
|
msg = JSON.parse(r._server_messages || []).join("<br>");
|
|
|
|
}
|
|
|
|
|
|
|
|
$("#cart-error")
|
|
|
|
.empty()
|
|
|
|
.html(msg || frappe._("Something went wrong!"))
|
|
|
|
.toggle(true);
|
|
|
|
} else {
|
2019-05-01 09:26:50 +00:00
|
|
|
$('.cart-container table').hide();
|
|
|
|
$(btn).hide();
|
2019-05-01 09:02:15 +00:00
|
|
|
window.location.href = '/orders/' + encodeURIComponent(r.message);
|
2019-03-19 06:18:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
request_quotation: function(btn) {
|
|
|
|
return frappe.call({
|
|
|
|
type: "POST",
|
|
|
|
method: "erpnext.shopping_cart.cart.request_for_quotation",
|
|
|
|
btn: btn,
|
|
|
|
callback: function(r) {
|
|
|
|
if(r.exc) {
|
|
|
|
var msg = "";
|
|
|
|
if(r._server_messages) {
|
|
|
|
msg = JSON.parse(r._server_messages || []).join("<br>");
|
|
|
|
}
|
|
|
|
|
|
|
|
$("#cart-error")
|
|
|
|
.empty()
|
|
|
|
.html(msg || frappe._("Something went wrong!"))
|
|
|
|
.toggle(true);
|
|
|
|
} else {
|
2019-05-01 09:26:50 +00:00
|
|
|
$('.cart-container table').hide();
|
|
|
|
$(btn).hide();
|
2019-05-01 09:02:15 +00:00
|
|
|
window.location.href = '/quotations/' + encodeURIComponent(r.message);
|
2014-10-21 10:46:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2019-08-12 08:09:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
bind_coupon_code: function() {
|
|
|
|
$(".bt-coupon").on("click", function() {
|
|
|
|
shopping_cart.apply_coupon_code(this);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
apply_coupon_code: function(btn) {
|
|
|
|
return frappe.call({
|
|
|
|
type: "POST",
|
|
|
|
method: "erpnext.shopping_cart.cart.apply_coupon_code",
|
|
|
|
btn: btn,
|
|
|
|
args : {
|
|
|
|
applied_code : $('.txtcoupon').val(),
|
|
|
|
applied_referral_sales_partner: $('.txtreferral_sales_partner').val()
|
|
|
|
},
|
|
|
|
callback: function(r) {
|
|
|
|
if (r && r.message){
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-10-21 10:46:30 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-06-22 10:21:42 +00:00
|
|
|
frappe.ready(function() {
|
2016-01-06 11:11:50 +00:00
|
|
|
$(".cart-icon").hide();
|
2014-10-21 10:46:30 +00:00
|
|
|
shopping_cart.bind_events();
|
|
|
|
});
|
2016-03-16 12:31:22 +00:00
|
|
|
|
|
|
|
function show_terms() {
|
2017-05-30 07:24:42 +00:00
|
|
|
var html = $(".cart-terms").html();
|
|
|
|
frappe.msgprint(html);
|
2016-03-16 12:31:22 +00:00
|
|
|
}
|