Merge branch 'develop' into in_global_search
This commit is contained in:
commit
589f4656ad
@ -2,7 +2,7 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
import frappe
|
import frappe
|
||||||
|
|
||||||
__version__ = '7.2.21'
|
__version__ = '7.2.22'
|
||||||
|
|
||||||
def get_default_company(user=None):
|
def get_default_company(user=None):
|
||||||
'''Get default company for user'''
|
'''Get default company for user'''
|
||||||
|
@ -28,7 +28,9 @@ frappe.ui.form.on('Payment Entry', {
|
|||||||
|
|
||||||
frm.set_query("party_type", function() {
|
frm.set_query("party_type", function() {
|
||||||
return{
|
return{
|
||||||
query: "erpnext.setup.doctype.party_type.party_type.get_party_type"
|
"filters": {
|
||||||
|
"name": ["in",["Customer","Supplier"]],
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ import frappe
|
|||||||
import datetime
|
import datetime
|
||||||
from frappe import _, msgprint, scrub
|
from frappe import _, msgprint, scrub
|
||||||
from frappe.defaults import get_user_permissions
|
from frappe.defaults import get_user_permissions
|
||||||
from frappe.utils import add_days, getdate, formatdate, get_first_day, date_diff, add_years
|
from frappe.utils import add_days, getdate, formatdate, get_first_day, date_diff, add_years, get_timestamp
|
||||||
from frappe.geo.doctype.address.address import get_address_display, get_default_address
|
from frappe.geo.doctype.address.address import get_address_display, get_default_address
|
||||||
from frappe.email.doctype.contact.contact import get_contact_details, get_default_contact
|
from frappe.email.doctype.contact.contact import get_contact_details, get_default_contact
|
||||||
from erpnext.exceptions import PartyFrozen, InvalidCurrency, PartyDisabled, InvalidAccountCurrency
|
from erpnext.exceptions import PartyFrozen, InvalidCurrency, PartyDisabled, InvalidAccountCurrency
|
||||||
@ -353,8 +353,17 @@ def validate_party_frozen_disabled(party_type, party_name):
|
|||||||
def get_timeline_data(doctype, name):
|
def get_timeline_data(doctype, name):
|
||||||
'''returns timeline data for the past one year'''
|
'''returns timeline data for the past one year'''
|
||||||
from frappe.desk.form.load import get_communication_data
|
from frappe.desk.form.load import get_communication_data
|
||||||
|
|
||||||
|
out = {}
|
||||||
data = get_communication_data(doctype, name,
|
data = get_communication_data(doctype, name,
|
||||||
fields = 'unix_timestamp(date(creation)), count(name)',
|
fields = 'date(creation), count(name)',
|
||||||
after = add_years(None, -1).strftime('%Y-%m-%d'), limit = 366,
|
after = add_years(None, -1).strftime('%Y-%m-%d'),
|
||||||
group_by='group by date(creation)', as_dict=False)
|
group_by='group by date(creation)', as_dict=False)
|
||||||
return dict(data)
|
|
||||||
|
timeline_items = dict(data)
|
||||||
|
|
||||||
|
for date, count in timeline_items.iteritems():
|
||||||
|
timestamp = get_timestamp(date)
|
||||||
|
out.update({ timestamp: count })
|
||||||
|
|
||||||
|
return out
|
@ -178,6 +178,9 @@ class BuyingController(StockController):
|
|||||||
for item in self.get("items"):
|
for item in self.get("items"):
|
||||||
item.rm_supp_cost = 0.0
|
item.rm_supp_cost = 0.0
|
||||||
|
|
||||||
|
if self.is_subcontracted == "No" and self.get("supplied_items"):
|
||||||
|
self.set('supplied_items', [])
|
||||||
|
|
||||||
def update_raw_materials_supplied(self, item, raw_material_table):
|
def update_raw_materials_supplied(self, item, raw_material_table):
|
||||||
bom_items = self.get_items_from_bom(item.item_code, item.bom)
|
bom_items = self.get_items_from_bom(item.item_code, item.bom)
|
||||||
raw_materials_cost = 0
|
raw_materials_cost = 0
|
||||||
|
@ -370,4 +370,5 @@ erpnext.patches.v7_2.set_null_value_to_fields
|
|||||||
erpnext.patches.v7_2.update_guardian_name_in_student_master
|
erpnext.patches.v7_2.update_guardian_name_in_student_master
|
||||||
erpnext.patches.v7_2.update_abbr_in_salary_slips
|
erpnext.patches.v7_2.update_abbr_in_salary_slips
|
||||||
erpnext.patches.v7_2.rename_evaluation_criteria
|
erpnext.patches.v7_2.rename_evaluation_criteria
|
||||||
erpnext.patches.v7_2.update_party_type
|
erpnext.patches.v7_2.update_party_type
|
||||||
|
erpnext.patches.v7_2.empty_supplied_items_for_non_subcontracted
|
||||||
|
@ -0,0 +1,14 @@
|
|||||||
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
||||||
|
# License: GNU General Public License v3. See license.txt
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
import frappe
|
||||||
|
|
||||||
|
def execute():
|
||||||
|
for doctype in ["Purchase Order", "Purchase Invoice", "Purchase Receipt"]:
|
||||||
|
child_table = 'Purchase Receipt Item Supplied' if doctype != 'Purchase Order' else 'Purchase Order Item Supplied'
|
||||||
|
for data in frappe.db.sql(""" select distinct `tab{doctype}`.name from `tab{doctype}` , `tab{child_table}`
|
||||||
|
where `tab{doctype}`.name = `tab{child_table}`.parent and `tab{doctype}`.docstatus != 2
|
||||||
|
and `tab{doctype}`.is_subcontracted = 'No' """.format(doctype = doctype, child_table = child_table), as_dict=1):
|
||||||
|
frappe.db.sql(""" delete from `tab{child_table}`
|
||||||
|
where parent = %s and parenttype = %s""".format(child_table= child_table), (data.name, doctype))
|
@ -100,7 +100,12 @@ function load_erpnext_slides() {
|
|||||||
fy = ["01-01", "12-31"];
|
fy = ["01-01", "12-31"];
|
||||||
next_year = current_year;
|
next_year = current_year;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var year_start_date = current_year + "-" + fy[0];
|
||||||
|
if(year_start_date > get_today()) {
|
||||||
|
next_year = current_year
|
||||||
|
current_year -= 1;
|
||||||
|
}
|
||||||
slide.get_field("fy_start_date").set_input(current_year + "-" + fy[0]);
|
slide.get_field("fy_start_date").set_input(current_year + "-" + fy[0]);
|
||||||
slide.get_field("fy_end_date").set_input(next_year + "-" + fy[1]);
|
slide.get_field("fy_end_date").set_input(next_year + "-" + fy[1]);
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,13 @@
|
|||||||
frappe.provide("erpnext.item");
|
frappe.provide("erpnext.item");
|
||||||
|
|
||||||
frappe.ui.form.on("Item", {
|
frappe.ui.form.on("Item", {
|
||||||
|
setup: function(frm) {
|
||||||
|
frm.add_fetch('attribute', 'numeric_values', 'numeric_values');
|
||||||
|
frm.add_fetch('attribute', 'from_range', 'from_range');
|
||||||
|
frm.add_fetch('attribute', 'to_range', 'to_range');
|
||||||
|
frm.add_fetch('attribute', 'increment', 'increment');
|
||||||
|
frm.add_fetch('tax_type', 'tax_rate', 'tax_rate');
|
||||||
|
},
|
||||||
onload: function(frm) {
|
onload: function(frm) {
|
||||||
erpnext.item.setup_queries(frm);
|
erpnext.item.setup_queries(frm);
|
||||||
if (frm.doc.variant_of){
|
if (frm.doc.variant_of){
|
||||||
@ -16,7 +23,6 @@ frappe.ui.form.on("Item", {
|
|||||||
},
|
},
|
||||||
|
|
||||||
refresh: function(frm) {
|
refresh: function(frm) {
|
||||||
|
|
||||||
if(frm.doc.is_stock_item) {
|
if(frm.doc.is_stock_item) {
|
||||||
frm.add_custom_button(__("Balance"), function() {
|
frm.add_custom_button(__("Balance"), function() {
|
||||||
frappe.route_options = {
|
frappe.route_options = {
|
||||||
@ -54,9 +60,9 @@ frappe.ui.form.on("Item", {
|
|||||||
}, __("View"));
|
}, __("View"));
|
||||||
|
|
||||||
frm.add_custom_button(__("Variant"), function() {
|
frm.add_custom_button(__("Variant"), function() {
|
||||||
erpnext.item.make_variant()
|
erpnext.item.make_variant(frm);
|
||||||
}, __("Make"));
|
}, __("Make"));
|
||||||
cur_frm.page.set_inner_btn_group_as_primary(__("Make"));
|
frm.page.set_inner_btn_group_as_primary(__("Make"));
|
||||||
}
|
}
|
||||||
if (frm.doc.variant_of) {
|
if (frm.doc.variant_of) {
|
||||||
frm.set_intro(__("This Item is a Variant of {0} (Template). Attributes will be copied over from the template unless 'No Copy' is set", [frm.doc.variant_of]), true);
|
frm.set_intro(__("This Item is a Variant of {0} (Template). Attributes will be copied over from the template unless 'No Copy' is set", [frm.doc.variant_of]), true);
|
||||||
@ -79,6 +85,17 @@ frappe.ui.form.on("Item", {
|
|||||||
|
|
||||||
frm.toggle_enable("is_fixed_asset", (frm.doc.__islocal || (!frm.doc.is_stock_item &&
|
frm.toggle_enable("is_fixed_asset", (frm.doc.__islocal || (!frm.doc.is_stock_item &&
|
||||||
((frm.doc.__onload && frm.doc.__onload.asset_exists) ? false : true))));
|
((frm.doc.__onload && frm.doc.__onload.asset_exists) ? false : true))));
|
||||||
|
|
||||||
|
frm.add_custom_button(__('Duplicate'), function() {
|
||||||
|
var new_item = frappe.model.copy_doc(frm.doc);
|
||||||
|
if(new_item.item_name===new_item.item_code) {
|
||||||
|
new_item.item_name = null;
|
||||||
|
}
|
||||||
|
if(new_item.description===new_item.description) {
|
||||||
|
new_item.description = null;
|
||||||
|
}
|
||||||
|
frappe.set_route('Form', 'Item', new_item.name);
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
validate: function(frm){
|
validate: function(frm){
|
||||||
@ -218,7 +235,8 @@ $.extend(erpnext.item, {
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
frappe.require('assets/js/item-dashboard.min.js', function() {
|
frappe.require('assets/js/item-dashboard.min.js', function() {
|
||||||
var section = frm.dashboard.add_section('<h5 style="margin-top: 0px;"><a href="#stock-balance">' + __("Stock Levels") + '</a></h5>');
|
var section = frm.dashboard.add_section('<h5 style="margin-top: 0px;">\
|
||||||
|
<a href="#stock-balance">' + __("Stock Levels") + '</a></h5>');
|
||||||
erpnext.item.item_dashboard = new erpnext.stock.ItemDashboard({
|
erpnext.item.item_dashboard = new erpnext.stock.ItemDashboard({
|
||||||
parent: section,
|
parent: section,
|
||||||
item_code: frm.doc.name
|
item_code: frm.doc.name
|
||||||
@ -240,12 +258,12 @@ $.extend(erpnext.item, {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
make_variant: function(doc) {
|
make_variant: function(frm) {
|
||||||
var fields = []
|
var fields = []
|
||||||
|
|
||||||
for(var i=0;i< cur_frm.doc.attributes.length;i++){
|
for(var i=0;i< frm.doc.attributes.length;i++){
|
||||||
var fieldtype, desc;
|
var fieldtype, desc;
|
||||||
var row = cur_frm.doc.attributes[i];
|
var row = frm.doc.attributes[i];
|
||||||
if (row.numeric_values){
|
if (row.numeric_values){
|
||||||
fieldtype = "Float";
|
fieldtype = "Float";
|
||||||
desc = "Min Value: "+ row.from_range +" , Max Value: "+ row.to_range +", in Increments of: "+ row.increment
|
desc = "Min Value: "+ row.from_range +" , Max Value: "+ row.to_range +", in Increments of: "+ row.increment
|
||||||
@ -274,7 +292,7 @@ $.extend(erpnext.item, {
|
|||||||
frappe.call({
|
frappe.call({
|
||||||
method:"erpnext.controllers.item_variant.get_variant",
|
method:"erpnext.controllers.item_variant.get_variant",
|
||||||
args: {
|
args: {
|
||||||
"template": cur_frm.doc.name,
|
"template": frm.doc.name,
|
||||||
"args": d.get_values()
|
"args": d.get_values()
|
||||||
},
|
},
|
||||||
callback: function(r) {
|
callback: function(r) {
|
||||||
@ -296,7 +314,7 @@ $.extend(erpnext.item, {
|
|||||||
frappe.call({
|
frappe.call({
|
||||||
method:"erpnext.controllers.item_variant.create_variant",
|
method:"erpnext.controllers.item_variant.create_variant",
|
||||||
args: {
|
args: {
|
||||||
"item": cur_frm.doc.name,
|
"item": frm.doc.name,
|
||||||
"args": d.get_values()
|
"args": d.get_values()
|
||||||
},
|
},
|
||||||
callback: function(r) {
|
callback: function(r) {
|
||||||
@ -363,10 +381,3 @@ $.extend(erpnext.item, {
|
|||||||
frm.fields_dict.attributes.grid.toggle_enable("attribute_value", !frm.doc.variant_of);
|
frm.fields_dict.attributes.grid.toggle_enable("attribute_value", !frm.doc.variant_of);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
cur_frm.add_fetch('attribute', 'numeric_values', 'numeric_values');
|
|
||||||
cur_frm.add_fetch('attribute', 'from_range', 'from_range');
|
|
||||||
cur_frm.add_fetch('attribute', 'to_range', 'to_range');
|
|
||||||
cur_frm.add_fetch('attribute', 'increment', 'increment');
|
|
||||||
cur_frm.add_fetch('tax_type', 'tax_rate', 'tax_rate');
|
|
||||||
|
@ -90,7 +90,7 @@
|
|||||||
"in_standard_filter": 0,
|
"in_standard_filter": 0,
|
||||||
"label": "Item Code",
|
"label": "Item Code",
|
||||||
"length": 0,
|
"length": 0,
|
||||||
"no_copy": 1,
|
"no_copy": 0,
|
||||||
"oldfieldname": "item_code",
|
"oldfieldname": "item_code",
|
||||||
"oldfieldtype": "Data",
|
"oldfieldtype": "Data",
|
||||||
"permlevel": 0,
|
"permlevel": 0,
|
||||||
@ -138,7 +138,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 1,
|
||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
"columns": 0,
|
"columns": 0,
|
||||||
"fieldname": "item_name",
|
"fieldname": "item_name",
|
||||||
@ -161,7 +161,7 @@
|
|||||||
"read_only": 0,
|
"read_only": 0,
|
||||||
"remember_last_selected_value": 0,
|
"remember_last_selected_value": 0,
|
||||||
"report_hide": 0,
|
"report_hide": 0,
|
||||||
"reqd": 1,
|
"reqd": 0,
|
||||||
"search_index": 1,
|
"search_index": 1,
|
||||||
"set_only_once": 0,
|
"set_only_once": 0,
|
||||||
"unique": 0
|
"unique": 0
|
||||||
|
@ -7,7 +7,7 @@ import erpnext
|
|||||||
import json
|
import json
|
||||||
import itertools
|
import itertools
|
||||||
from frappe import msgprint, _
|
from frappe import msgprint, _
|
||||||
from frappe.utils import cstr, flt, cint, getdate, now_datetime, formatdate, strip
|
from frappe.utils import cstr, flt, cint, getdate, now_datetime, formatdate, strip, get_timestamp
|
||||||
from frappe.website.website_generator import WebsiteGenerator
|
from frappe.website.website_generator import WebsiteGenerator
|
||||||
from erpnext.setup.doctype.item_group.item_group import invalidate_cache_for, get_parent_item_groups
|
from erpnext.setup.doctype.item_group.item_group import invalidate_cache_for, get_parent_item_groups
|
||||||
from frappe.website.render import clear_cache
|
from frappe.website.render import clear_cache
|
||||||
@ -63,6 +63,9 @@ class Item(WebsiteGenerator):
|
|||||||
def validate(self):
|
def validate(self):
|
||||||
super(Item, self).validate()
|
super(Item, self).validate()
|
||||||
|
|
||||||
|
if not self.item_name:
|
||||||
|
self.item_name = self.item_code
|
||||||
|
|
||||||
if not self.description:
|
if not self.description:
|
||||||
self.description = self.item_name
|
self.description = self.item_name
|
||||||
|
|
||||||
@ -470,12 +473,12 @@ class Item(WebsiteGenerator):
|
|||||||
def check_if_linked_document_exists(self, key):
|
def check_if_linked_document_exists(self, key):
|
||||||
linked_doctypes = ["Delivery Note Item", "Sales Invoice Item", "Purchase Receipt Item",
|
linked_doctypes = ["Delivery Note Item", "Sales Invoice Item", "Purchase Receipt Item",
|
||||||
"Purchase Invoice Item", "Stock Entry Detail", "Stock Reconciliation Item"]
|
"Purchase Invoice Item", "Stock Entry Detail", "Stock Reconciliation Item"]
|
||||||
|
|
||||||
# For "Is Stock Item", following doctypes is important
|
# For "Is Stock Item", following doctypes is important
|
||||||
# because reserved_qty, ordered_qty and requested_qty updated from these doctypes
|
# because reserved_qty, ordered_qty and requested_qty updated from these doctypes
|
||||||
if key == "is_stock_item":
|
if key == "is_stock_item":
|
||||||
linked_doctypes += ["Sales Order Item", "Purchase Order Item", "Material Request Item"]
|
linked_doctypes += ["Sales Order Item", "Purchase Order Item", "Material Request Item"]
|
||||||
|
|
||||||
for doctype in linked_doctypes:
|
for doctype in linked_doctypes:
|
||||||
if frappe.db.get_value(doctype, filters={"item_code": self.name, "docstatus": 1}) or \
|
if frappe.db.get_value(doctype, filters={"item_code": self.name, "docstatus": 1}) or \
|
||||||
frappe.db.get_value("Production Order",
|
frappe.db.get_value("Production Order",
|
||||||
@ -667,10 +670,17 @@ class Item(WebsiteGenerator):
|
|||||||
|
|
||||||
def get_timeline_data(doctype, name):
|
def get_timeline_data(doctype, name):
|
||||||
'''returns timeline data based on stock ledger entry'''
|
'''returns timeline data based on stock ledger entry'''
|
||||||
return dict(frappe.db.sql('''select unix_timestamp(posting_date), count(*)
|
out = {}
|
||||||
|
items = dict(frappe.db.sql('''select posting_date, count(*)
|
||||||
from `tabStock Ledger Entry` where item_code=%s
|
from `tabStock Ledger Entry` where item_code=%s
|
||||||
and posting_date > date_sub(curdate(), interval 1 year)
|
and posting_date > date_sub(curdate(), interval 1 year)
|
||||||
group by posting_date''', name))
|
group by posting_date''', name))
|
||||||
|
|
||||||
|
for date, count in items.iteritems():
|
||||||
|
timestamp = get_timestamp(date)
|
||||||
|
out.update({ timestamp: count })
|
||||||
|
|
||||||
|
return out
|
||||||
|
|
||||||
def validate_end_of_life(item_code, end_of_life=None, disabled=None, verbose=1):
|
def validate_end_of_life(item_code, end_of_life=None, disabled=None, verbose=1):
|
||||||
if (not end_of_life) or (disabled is None):
|
if (not end_of_life) or (disabled is None):
|
||||||
|
@ -71,6 +71,34 @@
|
|||||||
"set_only_once": 0,
|
"set_only_once": 0,
|
||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"allow_on_submit": 0,
|
||||||
|
"bold": 0,
|
||||||
|
"collapsible": 0,
|
||||||
|
"columns": 0,
|
||||||
|
"fieldname": "column_break_3",
|
||||||
|
"fieldtype": "Column Break",
|
||||||
|
"hidden": 0,
|
||||||
|
"ignore_user_permissions": 0,
|
||||||
|
"ignore_xss_filter": 0,
|
||||||
|
"in_filter": 0,
|
||||||
|
"in_global_search": 0,
|
||||||
|
"in_list_view": 0,
|
||||||
|
"in_standard_filter": 0,
|
||||||
|
"length": 0,
|
||||||
|
"no_copy": 0,
|
||||||
|
"permlevel": 0,
|
||||||
|
"precision": "",
|
||||||
|
"print_hide": 0,
|
||||||
|
"print_hide_if_no_value": 0,
|
||||||
|
"read_only": 0,
|
||||||
|
"remember_last_selected_value": 0,
|
||||||
|
"report_hide": 0,
|
||||||
|
"reqd": 0,
|
||||||
|
"search_index": 0,
|
||||||
|
"set_only_once": 0,
|
||||||
|
"unique": 0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
@ -138,7 +166,6 @@
|
|||||||
"ignore_user_permissions": 0,
|
"ignore_user_permissions": 0,
|
||||||
"ignore_xss_filter": 0,
|
"ignore_xss_filter": 0,
|
||||||
"in_filter": 0,
|
"in_filter": 0,
|
||||||
"in_global_search": 0,
|
|
||||||
"in_list_view": 0,
|
"in_list_view": 0,
|
||||||
"in_standard_filter": 0,
|
"in_standard_filter": 0,
|
||||||
"label": "",
|
"label": "",
|
||||||
@ -156,6 +183,35 @@
|
|||||||
"set_only_once": 0,
|
"set_only_once": 0,
|
||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"allow_on_submit": 0,
|
||||||
|
"bold": 1,
|
||||||
|
"collapsible": 0,
|
||||||
|
"columns": 0,
|
||||||
|
"fieldname": "currency",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"hidden": 0,
|
||||||
|
"ignore_user_permissions": 0,
|
||||||
|
"ignore_xss_filter": 0,
|
||||||
|
"in_filter": 0,
|
||||||
|
"in_global_search": 0,
|
||||||
|
"in_list_view": 1,
|
||||||
|
"in_standard_filter": 0,
|
||||||
|
"label": "Currency",
|
||||||
|
"length": 0,
|
||||||
|
"no_copy": 0,
|
||||||
|
"options": "Currency",
|
||||||
|
"permlevel": 0,
|
||||||
|
"print_hide": 0,
|
||||||
|
"print_hide_if_no_value": 0,
|
||||||
|
"read_only": 1,
|
||||||
|
"remember_last_selected_value": 0,
|
||||||
|
"report_hide": 0,
|
||||||
|
"reqd": 0,
|
||||||
|
"search_index": 0,
|
||||||
|
"set_only_once": 0,
|
||||||
|
"unique": 0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
@ -166,7 +222,7 @@
|
|||||||
"hidden": 0,
|
"hidden": 0,
|
||||||
"ignore_user_permissions": 0,
|
"ignore_user_permissions": 0,
|
||||||
"ignore_xss_filter": 0,
|
"ignore_xss_filter": 0,
|
||||||
"in_filter": 0,
|
"in_filter": 1,
|
||||||
"in_global_search": 1,
|
"in_global_search": 1,
|
||||||
"in_list_view": 0,
|
"in_list_view": 0,
|
||||||
"in_standard_filter": 1,
|
"in_standard_filter": 1,
|
||||||
@ -197,8 +253,8 @@
|
|||||||
"hidden": 0,
|
"hidden": 0,
|
||||||
"ignore_user_permissions": 0,
|
"ignore_user_permissions": 0,
|
||||||
"ignore_xss_filter": 0,
|
"ignore_xss_filter": 0,
|
||||||
"in_filter": 0,
|
"in_filter": 1,
|
||||||
"in_global_search": 0,
|
"in_global_search": 1,
|
||||||
"in_list_view": 1,
|
"in_list_view": 1,
|
||||||
"in_standard_filter": 0,
|
"in_standard_filter": 0,
|
||||||
"label": "Rate",
|
"label": "Rate",
|
||||||
@ -218,35 +274,6 @@
|
|||||||
"set_only_once": 0,
|
"set_only_once": 0,
|
||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"allow_on_submit": 0,
|
|
||||||
"bold": 0,
|
|
||||||
"collapsible": 0,
|
|
||||||
"columns": 0,
|
|
||||||
"fieldname": "currency",
|
|
||||||
"fieldtype": "Link",
|
|
||||||
"hidden": 0,
|
|
||||||
"ignore_user_permissions": 0,
|
|
||||||
"ignore_xss_filter": 0,
|
|
||||||
"in_filter": 0,
|
|
||||||
"in_global_search": 0,
|
|
||||||
"in_list_view": 1,
|
|
||||||
"in_standard_filter": 0,
|
|
||||||
"label": "Currency",
|
|
||||||
"length": 0,
|
|
||||||
"no_copy": 0,
|
|
||||||
"options": "Currency",
|
|
||||||
"permlevel": 0,
|
|
||||||
"print_hide": 0,
|
|
||||||
"print_hide_if_no_value": 0,
|
|
||||||
"read_only": 1,
|
|
||||||
"remember_last_selected_value": 0,
|
|
||||||
"report_hide": 0,
|
|
||||||
"reqd": 0,
|
|
||||||
"search_index": 0,
|
|
||||||
"set_only_once": 0,
|
|
||||||
"unique": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"allow_on_submit": 0,
|
"allow_on_submit": 0,
|
||||||
"bold": 0,
|
"bold": 0,
|
||||||
@ -285,7 +312,7 @@
|
|||||||
"ignore_user_permissions": 0,
|
"ignore_user_permissions": 0,
|
||||||
"ignore_xss_filter": 0,
|
"ignore_xss_filter": 0,
|
||||||
"in_filter": 0,
|
"in_filter": 0,
|
||||||
"in_global_search": 1,
|
"in_global_search": 0,
|
||||||
"in_list_view": 0,
|
"in_list_view": 0,
|
||||||
"in_standard_filter": 0,
|
"in_standard_filter": 0,
|
||||||
"label": "Item Name",
|
"label": "Item Name",
|
||||||
@ -329,63 +356,6 @@
|
|||||||
"search_index": 0,
|
"search_index": 0,
|
||||||
"set_only_once": 0,
|
"set_only_once": 0,
|
||||||
"unique": 0
|
"unique": 0
|
||||||
},
|
|
||||||
{
|
|
||||||
"allow_on_submit": 0,
|
|
||||||
"bold": 0,
|
|
||||||
"collapsible": 0,
|
|
||||||
"columns": 0,
|
|
||||||
"fieldname": "section_break_12",
|
|
||||||
"fieldtype": "Section Break",
|
|
||||||
"hidden": 0,
|
|
||||||
"ignore_user_permissions": 0,
|
|
||||||
"ignore_xss_filter": 0,
|
|
||||||
"in_filter": 0,
|
|
||||||
"in_global_search": 0,
|
|
||||||
"in_list_view": 0,
|
|
||||||
"in_standard_filter": 0,
|
|
||||||
"length": 0,
|
|
||||||
"no_copy": 0,
|
|
||||||
"permlevel": 0,
|
|
||||||
"precision": "",
|
|
||||||
"print_hide": 0,
|
|
||||||
"print_hide_if_no_value": 0,
|
|
||||||
"read_only": 0,
|
|
||||||
"remember_last_selected_value": 0,
|
|
||||||
"report_hide": 0,
|
|
||||||
"reqd": 0,
|
|
||||||
"search_index": 0,
|
|
||||||
"set_only_once": 0,
|
|
||||||
"unique": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"allow_on_submit": 0,
|
|
||||||
"bold": 0,
|
|
||||||
"collapsible": 0,
|
|
||||||
"columns": 0,
|
|
||||||
"fieldname": "bulk_import_help",
|
|
||||||
"fieldtype": "HTML",
|
|
||||||
"hidden": 0,
|
|
||||||
"ignore_user_permissions": 0,
|
|
||||||
"ignore_xss_filter": 0,
|
|
||||||
"in_filter": 0,
|
|
||||||
"in_global_search": 0,
|
|
||||||
"in_list_view": 0,
|
|
||||||
"in_standard_filter": 0,
|
|
||||||
"label": "Bulk Import Help",
|
|
||||||
"length": 0,
|
|
||||||
"no_copy": 0,
|
|
||||||
"permlevel": 0,
|
|
||||||
"precision": "",
|
|
||||||
"print_hide": 0,
|
|
||||||
"print_hide_if_no_value": 0,
|
|
||||||
"read_only": 0,
|
|
||||||
"remember_last_selected_value": 0,
|
|
||||||
"report_hide": 0,
|
|
||||||
"reqd": 0,
|
|
||||||
"search_index": 0,
|
|
||||||
"set_only_once": 0,
|
|
||||||
"unique": 0
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"hide_heading": 0,
|
"hide_heading": 0,
|
||||||
@ -446,7 +416,7 @@
|
|||||||
"write": 1
|
"write": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"quick_entry": 0,
|
"quick_entry": 1,
|
||||||
"read_only": 0,
|
"read_only": 0,
|
||||||
"read_only_onload": 0,
|
"read_only_onload": 0,
|
||||||
"show_name_in_global_search": 0,
|
"show_name_in_global_search": 0,
|
||||||
|
@ -9,47 +9,50 @@ from frappe.utils import cint, formatdate
|
|||||||
|
|
||||||
@frappe.whitelist(allow_guest=True)
|
@frappe.whitelist(allow_guest=True)
|
||||||
def send_message(subject="Website Query", message="", sender="", status="Open"):
|
def send_message(subject="Website Query", message="", sender="", status="Open"):
|
||||||
from frappe.www.contact import send_message as website_send_message
|
from frappe.www.contact import send_message as website_send_message
|
||||||
lead = customer = None
|
lead = customer = None
|
||||||
|
|
||||||
website_send_message(subject, message, sender)
|
website_send_message(subject, message, sender)
|
||||||
|
|
||||||
customer = frappe.db.get_value('Contact', dict(email_id=sender), 'customer')
|
customer = frappe.db.sql("""select distinct dl.link_name from `tabDynamic Link` dl
|
||||||
if not customer:
|
left join `tabContact` c on dl.parent=c.name where dl.link_doctype='Customer'
|
||||||
lead = frappe.db.get_value('Lead', dict(email_id=sender))
|
and c.email_id='{email_id}'""".format(email_id=sender))
|
||||||
if not lead:
|
|
||||||
new_lead = frappe.get_doc(dict(
|
|
||||||
doctype='Lead',
|
|
||||||
email_id = sender,
|
|
||||||
lead_name = sender.split('@')[0].title()
|
|
||||||
)).insert(ignore_permissions=True)
|
|
||||||
|
|
||||||
opportunity = frappe.get_doc(dict(
|
if not customer:
|
||||||
doctype='Opportunity',
|
lead = frappe.db.get_value('Lead', dict(email_id=sender))
|
||||||
enquiry_from = 'Customer' if customer else 'Lead',
|
if not lead:
|
||||||
status = 'Open',
|
new_lead = frappe.get_doc(dict(
|
||||||
title = subject,
|
doctype='Lead',
|
||||||
to_discuss=message
|
email_id = sender,
|
||||||
))
|
lead_name = sender.split('@')[0].title()
|
||||||
|
)).insert(ignore_permissions=True)
|
||||||
|
|
||||||
if customer:
|
opportunity = frappe.get_doc(dict(
|
||||||
opportunity.customer = customer
|
doctype='Opportunity',
|
||||||
elif lead:
|
enquiry_from = 'Customer' if customer else 'Lead',
|
||||||
opportunity.lead = lead
|
status = 'Open',
|
||||||
else:
|
title = subject,
|
||||||
opportunity.lead = new_lead.name
|
to_discuss=message
|
||||||
|
))
|
||||||
|
|
||||||
opportunity.insert(ignore_permissions=True)
|
if customer:
|
||||||
|
opportunity.customer = customer[0][0]
|
||||||
|
elif lead:
|
||||||
|
opportunity.lead = lead
|
||||||
|
else:
|
||||||
|
opportunity.lead = new_lead.name
|
||||||
|
|
||||||
comm = frappe.get_doc({
|
opportunity.insert(ignore_permissions=True)
|
||||||
"doctype":"Communication",
|
|
||||||
"subject": subject,
|
|
||||||
"content": message,
|
|
||||||
"sender": sender,
|
|
||||||
"sent_or_received": "Received",
|
|
||||||
'reference_doctype': 'Opportunity',
|
|
||||||
'reference_name': opportunity.name
|
|
||||||
})
|
|
||||||
comm.insert(ignore_permissions=True)
|
|
||||||
|
|
||||||
return "okay"
|
comm = frappe.get_doc({
|
||||||
|
"doctype":"Communication",
|
||||||
|
"subject": subject,
|
||||||
|
"content": message,
|
||||||
|
"sender": sender,
|
||||||
|
"sent_or_received": "Received",
|
||||||
|
'reference_doctype': 'Opportunity',
|
||||||
|
'reference_name': opportunity.name
|
||||||
|
})
|
||||||
|
comm.insert(ignore_permissions=True)
|
||||||
|
|
||||||
|
return "okay"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user