2016-01-01 11:53:12 +00:00
|
|
|
{% extends "templates/web.html" %}
|
|
|
|
|
2017-03-23 11:18:24 +00:00
|
|
|
{% block title %} {{ _("Shopping Cart") }} {% endblock %}
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2021-01-20 12:22:54 +00:00
|
|
|
{% block header %}<h3 class="shopping-cart-header mt-2 mb-6">{{ _("Shopping Cart") }}</h1>{% endblock %}
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2019-03-19 06:18:32 +00:00
|
|
|
<!--
|
2016-01-01 11:53:12 +00:00
|
|
|
{% block script %}
|
|
|
|
<script>{% include "templates/includes/cart.js" %}</script>
|
|
|
|
{% endblock %}
|
2019-03-19 06:18:32 +00:00
|
|
|
-->
|
2016-01-01 11:53:12 +00:00
|
|
|
|
2015-09-16 13:22:52 +00:00
|
|
|
|
|
|
|
{% block header_actions %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2016-01-01 11:53:12 +00:00
|
|
|
{% block page_content %}
|
2015-09-11 13:19:59 +00:00
|
|
|
|
2015-09-16 13:22:52 +00:00
|
|
|
{% from "templates/includes/macros.html" import item_name_and_description %}
|
2015-09-11 13:19:59 +00:00
|
|
|
|
2021-01-20 12:22:54 +00:00
|
|
|
{% if doc.items %}
|
2016-05-02 06:13:44 +00:00
|
|
|
<div class="cart-container">
|
2021-01-20 12:22:54 +00:00
|
|
|
<div class="row m-0">
|
2021-05-27 13:23:11 +00:00
|
|
|
<div class="col-md-8 frappe-card p-5 mb-4">
|
2021-01-20 12:22:54 +00:00
|
|
|
<div>
|
|
|
|
<div id="cart-error" class="alert alert-danger" style="display: none;"></div>
|
|
|
|
<div class="cart-items-header">
|
|
|
|
{{ _('Items') }}
|
|
|
|
</div>
|
|
|
|
<table class="table mt-3 cart-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2021-05-27 13:23:11 +00:00
|
|
|
<th class="item-column">{{ _('Item') }}</th>
|
2021-01-20 12:22:54 +00:00
|
|
|
<th width="20%">{{ _('Quantity') }}</th>
|
|
|
|
{% if cart_settings.enable_checkout %}
|
2021-05-27 13:23:11 +00:00
|
|
|
<th width="20" class="text-right column-sm-view">{{ _('Subtotal') }}</th>
|
2021-01-20 12:22:54 +00:00
|
|
|
{% endif %}
|
2021-05-27 13:23:11 +00:00
|
|
|
<th width="10%" class="column-sm-view"></th>
|
2021-01-20 12:22:54 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="cart-items">
|
|
|
|
{% include "templates/includes/cart/cart_items.html" %}
|
|
|
|
</tbody>
|
|
|
|
{% if cart_settings.enable_checkout %}
|
|
|
|
<tfoot class="cart-tax-items">
|
|
|
|
{% include "templates/includes/order/order_taxes.html" %}
|
|
|
|
</tfoot>
|
|
|
|
{% endif %}
|
|
|
|
</table>
|
|
|
|
</div>
|
2021-05-27 13:23:11 +00:00
|
|
|
|
|
|
|
<div class="row mt-2">
|
|
|
|
<div class="col-3">
|
2021-01-20 12:22:54 +00:00
|
|
|
{% if cart_settings.enable_checkout %}
|
2021-06-08 14:10:26 +00:00
|
|
|
<a class="btn btn-outline-primary font-md" href="/orders">
|
2021-05-27 13:23:11 +00:00
|
|
|
{{ _('Past Orders') }}
|
|
|
|
</a>
|
2021-01-20 12:22:54 +00:00
|
|
|
{% else %}
|
2021-06-08 14:10:26 +00:00
|
|
|
<a class="btn btn-outline-primary font-md" href="/quotations">
|
2021-05-27 13:23:11 +00:00
|
|
|
{{ _('See past quotations') }}
|
|
|
|
</a>
|
2021-01-20 12:22:54 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2021-05-27 13:23:11 +00:00
|
|
|
<div class="col-9">
|
2021-01-20 12:22:54 +00:00
|
|
|
{% if doc.items %}
|
|
|
|
<div class="place-order-container">
|
2021-06-08 14:10:26 +00:00
|
|
|
<a class="btn btn-primary-light mr-2 font-md" href="/all-products">
|
2021-05-27 13:23:11 +00:00
|
|
|
{{ _('Back to Shop') }}
|
2021-02-05 10:47:20 +00:00
|
|
|
</a>
|
2021-01-20 12:22:54 +00:00
|
|
|
{% if cart_settings.enable_checkout %}
|
2021-06-08 14:10:26 +00:00
|
|
|
<button class="btn btn-primary btn-place-order font-md" type="button">
|
2021-05-27 13:23:11 +00:00
|
|
|
{{ _('Place Order') }}
|
2021-01-20 12:22:54 +00:00
|
|
|
</button>
|
|
|
|
{% else %}
|
2021-06-08 14:10:26 +00:00
|
|
|
<button class="btn btn-primary btn-request-for-quotation font-md" type="button">
|
2021-05-27 13:23:11 +00:00
|
|
|
{{ _('Request for Quotation') }}
|
2021-01-20 12:22:54 +00:00
|
|
|
</button>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-05-02 06:13:44 +00:00
|
|
|
|
|
|
|
|
2021-01-20 12:22:54 +00:00
|
|
|
{% if doc.items %}
|
|
|
|
{% if doc.tc_name %}
|
|
|
|
<div class="terms-and-conditions-link">
|
|
|
|
<a href class="link-terms-and-conditions" data-terms-name="{{ doc.tc_name }}">
|
|
|
|
{{ _("Terms and Conditions") }}
|
|
|
|
</a>
|
|
|
|
<script>
|
|
|
|
frappe.ready(() => {
|
|
|
|
$('.link-terms-and-conditions').click((e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
const $link = $(e.target);
|
|
|
|
const terms_name = $link.attr('data-terms-name');
|
|
|
|
show_terms_and_conditions(terms_name);
|
|
|
|
})
|
|
|
|
});
|
|
|
|
function show_terms_and_conditions(terms_name) {
|
2021-02-25 08:26:38 +00:00
|
|
|
frappe.call('erpnext.e_commerce.shopping_cart.cart.get_terms_and_conditions', { terms_name })
|
2021-01-20 12:22:54 +00:00
|
|
|
.then(r => {
|
|
|
|
frappe.msgprint({
|
|
|
|
title: terms_name,
|
|
|
|
message: r.message
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</div>
|
2020-04-07 06:48:47 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
2021-01-20 12:22:54 +00:00
|
|
|
<div class="col-md-4">
|
|
|
|
<div class="cart-addresses">
|
|
|
|
{% include "templates/includes/cart/cart_address.html" %}
|
|
|
|
</div>
|
2016-05-02 06:13:44 +00:00
|
|
|
</div>
|
2021-01-20 12:22:54 +00:00
|
|
|
{% endif %}
|
2019-03-19 06:18:32 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-01-20 12:22:54 +00:00
|
|
|
{% else %}
|
|
|
|
<div class="cart-empty frappe-card">
|
|
|
|
<div class="cart-empty-state">
|
|
|
|
<img src="/assets/erpnext/images/ui-states/cart-empty-state.png" alt="Empty State">
|
|
|
|
</div>
|
|
|
|
<div class="cart-empty-message mt-4">{{ _('Your cart is Empty') }}</p>
|
|
|
|
{% if cart_settings.enable_checkout %}
|
|
|
|
<a class="btn btn-outline-primary" href="/orders">
|
2019-03-19 06:18:32 +00:00
|
|
|
{{ _('See past orders') }}
|
|
|
|
</a>
|
|
|
|
{% else %}
|
2021-01-20 12:22:54 +00:00
|
|
|
<a class="btn btn-outline-primary" href="/quotations">
|
2019-03-19 06:18:32 +00:00
|
|
|
{{ _('See past quotations') }}
|
|
|
|
</a>
|
2021-01-20 12:22:54 +00:00
|
|
|
{% endif %}
|
2014-10-21 10:46:30 +00:00
|
|
|
</div>
|
2021-01-20 12:22:54 +00:00
|
|
|
{% endif %}
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2019-03-19 06:18:32 +00:00
|
|
|
{% endblock %}
|
2016-06-23 12:55:50 +00:00
|
|
|
|
2019-03-19 06:18:32 +00:00
|
|
|
{% block base_scripts %}
|
|
|
|
<!-- js should be loaded in body! -->
|
2021-05-07 09:23:42 +00:00
|
|
|
{{ include_script("frappe-web.bundle.js") }}
|
|
|
|
{{ include_script("controls.bundle.js") }}
|
|
|
|
{{ include_script("dialog.bundle.js") }}
|
2014-10-21 10:46:30 +00:00
|
|
|
{% endblock %}
|