2015-09-11 13:19:59 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
import frappe
|
|
|
|
from frappe import _
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2021-02-16 13:15:36 +00:00
|
|
|
from erpnext.e_commerce.doctype.e_commerce_settings.e_commerce_settings import show_attachments
|
2015-09-11 13:19:59 +00:00
|
|
|
|
2022-01-31 19:09:14 +00:00
|
|
|
|
2015-09-11 13:19:59 +00:00
|
|
|
def get_context(context):
|
|
|
|
context.no_cache = 1
|
2016-04-20 10:50:49 +00:00
|
|
|
context.show_sidebar = True
|
2015-09-11 13:19:59 +00:00
|
|
|
context.doc = frappe.get_doc(frappe.form_dict.doctype, frappe.form_dict.name)
|
2015-09-16 13:22:52 +00:00
|
|
|
if hasattr(context.doc, "set_indicator"):
|
|
|
|
context.doc.set_indicator()
|
|
|
|
|
2017-05-19 10:34:10 +00:00
|
|
|
if show_attachments():
|
2017-08-10 15:36:09 +00:00
|
|
|
context.attachments = get_attachments(frappe.form_dict.doctype, frappe.form_dict.name)
|
2017-05-19 10:34:10 +00:00
|
|
|
|
2015-09-11 13:19:59 +00:00
|
|
|
context.parents = frappe.form_dict.parents
|
2017-07-28 13:24:22 +00:00
|
|
|
context.title = frappe.form_dict.name
|
2016-10-12 05:01:08 +00:00
|
|
|
context.payment_ref = frappe.db.get_value(
|
2016-01-04 12:07:54 +00:00
|
|
|
"Payment Request", {"reference_name": frappe.form_dict.name}, "name"
|
|
|
|
)
|
2016-09-21 11:19:58 +00:00
|
|
|
|
2021-02-16 13:15:36 +00:00
|
|
|
context.enabled_checkout = frappe.get_doc("E Commerce Settings").enable_checkout
|
2016-09-21 11:19:58 +00:00
|
|
|
|
2017-12-01 10:49:45 +00:00
|
|
|
default_print_format = frappe.db.get_value(
|
|
|
|
"Property Setter",
|
|
|
|
dict(property="default_print_format", doc_type=frappe.form_dict.doctype),
|
|
|
|
"value",
|
|
|
|
)
|
|
|
|
if default_print_format:
|
|
|
|
context.print_format = default_print_format
|
|
|
|
else:
|
|
|
|
context.print_format = "Standard"
|
|
|
|
|
2016-10-12 05:01:08 +00:00
|
|
|
if not frappe.has_website_permission(context.doc):
|
2015-09-11 13:19:59 +00:00
|
|
|
frappe.throw(_("Not Permitted"), frappe.PermissionError)
|
2021-08-19 08:11:10 +00:00
|
|
|
|
2018-07-06 07:06:57 +00:00
|
|
|
# check for the loyalty program of the customer
|
|
|
|
customer_loyalty_program = frappe.db.get_value(
|
|
|
|
"Customer", context.doc.customer, "loyalty_program"
|
|
|
|
)
|
|
|
|
if customer_loyalty_program:
|
2018-08-01 12:15:05 +00:00
|
|
|
from erpnext.accounts.doctype.loyalty_program.loyalty_program import (
|
|
|
|
get_loyalty_program_details_with_points,
|
2021-09-02 11:14:59 +00:00
|
|
|
)
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2018-08-01 12:15:05 +00:00
|
|
|
loyalty_program_details = get_loyalty_program_details_with_points(
|
|
|
|
context.doc.customer, customer_loyalty_program
|
|
|
|
)
|
2018-07-06 07:06:57 +00:00
|
|
|
context.available_loyalty_points = int(loyalty_program_details.get("loyalty_points"))
|
2017-05-19 10:34:10 +00:00
|
|
|
|
2022-03-28 13:22:46 +00:00
|
|
|
|
2017-05-19 10:34:10 +00:00
|
|
|
def get_attachments(dt, dn):
|
2017-08-10 15:36:09 +00:00
|
|
|
return frappe.get_all(
|
|
|
|
"File",
|
|
|
|
fields=["name", "file_name", "file_url", "is_private"],
|
|
|
|
filters={"attached_to_name": dn, "attached_to_doctype": dt, "is_private": 0},
|
|
|
|
)
|