Merge branch 'hotfix'
This commit is contained in:
commit
e0d661f433
@ -2,7 +2,7 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
import frappe
|
import frappe
|
||||||
|
|
||||||
__version__ = '7.2.23'
|
__version__ = '7.2.24'
|
||||||
|
|
||||||
def get_default_company(user=None):
|
def get_default_company(user=None):
|
||||||
'''Get default company for user'''
|
'''Get default company for user'''
|
||||||
|
@ -362,7 +362,7 @@
|
|||||||
"collapsible": 0,
|
"collapsible": 0,
|
||||||
"columns": 0,
|
"columns": 0,
|
||||||
"fieldname": "message",
|
"fieldname": "message",
|
||||||
"fieldtype": "Small Text",
|
"fieldtype": "Text",
|
||||||
"hidden": 0,
|
"hidden": 0,
|
||||||
"ignore_user_permissions": 0,
|
"ignore_user_permissions": 0,
|
||||||
"ignore_xss_filter": 0,
|
"ignore_xss_filter": 0,
|
||||||
@ -400,7 +400,7 @@
|
|||||||
"label": "Message Examples",
|
"label": "Message Examples",
|
||||||
"length": 0,
|
"length": 0,
|
||||||
"no_copy": 0,
|
"no_copy": 0,
|
||||||
"options": "<pre><h5>Message Example</h5>\n\n<p> Thank You for being a part of {{ doc.company }}! We hope you are enjoying the service.</p>\n\n<p> Please find enclosed the E Bill statement. The outstanding amount is {{ doc.grand_total }}.</p>\n\n<p> We don't want you to be spending time running around in order to pay for your Bill.<br>After all, life is beautiful and the time you have in hand should be spent to enjoy it!<br>So here are our little ways to help you get more time for life! </p>\n\n<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n</pre>\n",
|
"options": "<pre><h5>Message Example</h5>\n\n<p>Dear {{ doc.contact_person }},</p>\n\n<p>Requesting payment for {{ doc.doctype }}, {{ doc.name }} for {{ doc.grand_total }}.</p>\n\n<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n</pre>\n",
|
||||||
"permlevel": 0,
|
"permlevel": 0,
|
||||||
"precision": "",
|
"precision": "",
|
||||||
"print_hide": 0,
|
"print_hide": 0,
|
||||||
@ -675,13 +675,13 @@
|
|||||||
"hide_toolbar": 0,
|
"hide_toolbar": 0,
|
||||||
"idx": 0,
|
"idx": 0,
|
||||||
"image_view": 0,
|
"image_view": 0,
|
||||||
"in_create": 1,
|
"in_create": 0,
|
||||||
"in_dialog": 0,
|
"in_dialog": 0,
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"issingle": 0,
|
"issingle": 0,
|
||||||
"istable": 0,
|
"istable": 0,
|
||||||
"max_attachments": 0,
|
"max_attachments": 0,
|
||||||
"modified": "2016-12-15 14:46:19.662816",
|
"modified": "2017-02-23 05:03:37.464863",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Accounts",
|
"module": "Accounts",
|
||||||
"name": "Payment Request",
|
"name": "Payment Request",
|
||||||
|
@ -234,7 +234,7 @@ def make_payment_request(**args):
|
|||||||
"grand_total": grand_total,
|
"grand_total": grand_total,
|
||||||
"email_to": args.recipient_id or "",
|
"email_to": args.recipient_id or "",
|
||||||
"subject": "Payment Request for %s"%args.dn,
|
"subject": "Payment Request for %s"%args.dn,
|
||||||
"message": gateway_account.get("message") or get_dummy_message(args.use_dummy_message),
|
"message": gateway_account.get("message") or get_dummy_message(ref_doc),
|
||||||
"reference_doctype": args.dt,
|
"reference_doctype": args.dt,
|
||||||
"reference_name": args.dn
|
"reference_name": args.dn
|
||||||
})
|
})
|
||||||
@ -326,12 +326,17 @@ def make_status_as_paid(doc, method):
|
|||||||
doc.db_set('status', 'Paid')
|
doc.db_set('status', 'Paid')
|
||||||
frappe.db.commit()
|
frappe.db.commit()
|
||||||
|
|
||||||
def get_dummy_message(use_dummy_message=True):
|
def get_dummy_message(doc):
|
||||||
return """
|
return frappe.render_template("""{% if doc.contact_person -%}
|
||||||
<p> Hope you are enjoying a service. Please consider bank details for payment </p>
|
<p>Dear {{ doc.contact_person }},</p>
|
||||||
<p> Bank Details <p><br>
|
{%- else %}<p>Hello,</p>{% endif %}
|
||||||
<p> Bank Name : National Bank </p>
|
|
||||||
<p> Account Number : 123456789000872 </p>
|
<p>{{ _("Requesting payment against {0} {1} for amount {2}").format(doc.doctype,
|
||||||
<p> IFSC code : NB000001 </p>
|
doc.name, doc.get_formatted("grand_total")) }}</p>
|
||||||
<p> Account Name : Wind Power LLC </p>
|
|
||||||
"""
|
<a href="{{ payment_url }}">{{ _("Make Payment") }}</a>
|
||||||
|
|
||||||
|
<p>{{ _("If you have any questions, please get back to us.") }}</p>
|
||||||
|
|
||||||
|
<p>{{ _("Thank you for your business!") }}</p>
|
||||||
|
""", dict(doc=doc, payment_url = '{{ payment_url }}'))
|
||||||
|
@ -336,6 +336,12 @@ cur_frm.cscript.select_print_heading = function(doc,cdt,cdn){
|
|||||||
}
|
}
|
||||||
|
|
||||||
frappe.ui.form.on("Purchase Invoice", {
|
frappe.ui.form.on("Purchase Invoice", {
|
||||||
|
setup: function(frm) {
|
||||||
|
frm.custom_make_buttons = {
|
||||||
|
'Purchase Invoice': 'Debit Note',
|
||||||
|
'Payment Entry': 'Payment'
|
||||||
|
}
|
||||||
|
},
|
||||||
onload: function(frm) {
|
onload: function(frm) {
|
||||||
$.each(["warehouse", "rejected_warehouse"], function(i, field) {
|
$.each(["warehouse", "rejected_warehouse"], function(i, field) {
|
||||||
frm.set_query(field, "items", function() {
|
frm.set_query(field, "items", function() {
|
||||||
|
@ -469,6 +469,12 @@ cur_frm.set_query("asset", "items", function(doc, cdt, cdn) {
|
|||||||
|
|
||||||
frappe.ui.form.on('Sales Invoice', {
|
frappe.ui.form.on('Sales Invoice', {
|
||||||
setup: function(frm){
|
setup: function(frm){
|
||||||
|
frm.custom_make_buttons = {
|
||||||
|
'Delivery Note': 'Delivery',
|
||||||
|
'Sales Invoice': 'Sales Return',
|
||||||
|
'Payment Request': 'Payment Request',
|
||||||
|
'Payment': 'Payment Entry'
|
||||||
|
},
|
||||||
frm.fields_dict["timesheets"].grid.get_field("time_sheet").get_query = function(doc, cdt, cdn){
|
frm.fields_dict["timesheets"].grid.get_field("time_sheet").get_query = function(doc, cdt, cdn){
|
||||||
return{
|
return{
|
||||||
query: "erpnext.projects.doctype.timesheet.timesheet.get_timesheet",
|
query: "erpnext.projects.doctype.timesheet.timesheet.get_timesheet",
|
||||||
|
@ -6,6 +6,13 @@ frappe.provide("erpnext.buying");
|
|||||||
{% include 'erpnext/buying/doctype/purchase_common/purchase_common.js' %};
|
{% include 'erpnext/buying/doctype/purchase_common/purchase_common.js' %};
|
||||||
|
|
||||||
frappe.ui.form.on("Purchase Order", {
|
frappe.ui.form.on("Purchase Order", {
|
||||||
|
setup: function(frm) {
|
||||||
|
frm.custom_make_buttons = {
|
||||||
|
'Purchase Receipt': 'Receive',
|
||||||
|
'Purchase Invoice': 'Invoice',
|
||||||
|
'Stock Entry': 'Material to Supplier'
|
||||||
|
}
|
||||||
|
},
|
||||||
onload: function(frm) {
|
onload: function(frm) {
|
||||||
erpnext.queries.setup_queries(frm, "Warehouse", function() {
|
erpnext.queries.setup_queries(frm, "Warehouse", function() {
|
||||||
return erpnext.queries.warehouse(frm.doc);
|
return erpnext.queries.warehouse(frm.doc);
|
||||||
@ -28,10 +35,8 @@ erpnext.buying.PurchaseOrderController = erpnext.buying.BuyingController.extend(
|
|||||||
var item = cur_frm.doc.items[i];
|
var item = cur_frm.doc.items[i];
|
||||||
if(item.delivered_by_supplier !== 1) {
|
if(item.delivered_by_supplier !== 1) {
|
||||||
allow_receipt = true;
|
allow_receipt = true;
|
||||||
}
|
} else {
|
||||||
|
is_drop_ship = true;
|
||||||
else {
|
|
||||||
is_drop_ship = true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(is_drop_ship && allow_receipt) {
|
if(is_drop_ship && allow_receipt) {
|
||||||
|
@ -8,6 +8,10 @@ cur_frm.add_fetch('contact', 'email_id', 'email_id')
|
|||||||
|
|
||||||
frappe.ui.form.on("Request for Quotation",{
|
frappe.ui.form.on("Request for Quotation",{
|
||||||
setup: function(frm) {
|
setup: function(frm) {
|
||||||
|
frm.custom_make_buttons = {
|
||||||
|
'Supplier Quotation': 'Supplier Quotation'
|
||||||
|
}
|
||||||
|
|
||||||
frm.fields_dict["suppliers"].grid.get_field("contact").get_query = function(doc, cdt, cdn){
|
frm.fields_dict["suppliers"].grid.get_field("contact").get_query = function(doc, cdt, cdn){
|
||||||
var d =locals[cdt][cdn];
|
var d =locals[cdt][cdn];
|
||||||
return {
|
return {
|
||||||
|
@ -4,6 +4,14 @@
|
|||||||
// attach required files
|
// attach required files
|
||||||
{% include 'erpnext/buying/doctype/purchase_common/purchase_common.js' %};
|
{% include 'erpnext/buying/doctype/purchase_common/purchase_common.js' %};
|
||||||
|
|
||||||
|
frappe.ui.form.on('Suppier Quotation', {
|
||||||
|
setup: function() {
|
||||||
|
frm.custom_make_buttons = {
|
||||||
|
'Purchase Order': 'Purchase Order'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
erpnext.buying.SupplierQuotationController = erpnext.buying.BuyingController.extend({
|
erpnext.buying.SupplierQuotationController = erpnext.buying.BuyingController.extend({
|
||||||
refresh: function() {
|
refresh: function() {
|
||||||
this._super();
|
this._super();
|
||||||
|
@ -231,7 +231,7 @@ def get_data():
|
|||||||
{
|
{
|
||||||
"module_name": "Assessment",
|
"module_name": "Assessment",
|
||||||
"color": "#8a70be",
|
"color": "#8a70be",
|
||||||
"icon": "fa fa-file-text-alt",
|
"icon": "fa fa-file-text",
|
||||||
"label": _("Assessment"),
|
"label": _("Assessment"),
|
||||||
"link": "List/Assessment",
|
"link": "List/Assessment",
|
||||||
"_doctype": "Assessment",
|
"_doctype": "Assessment",
|
||||||
|
@ -5,6 +5,12 @@ frappe.provide("erpnext.crm");
|
|||||||
|
|
||||||
cur_frm.email_field = "contact_email";
|
cur_frm.email_field = "contact_email";
|
||||||
frappe.ui.form.on("Opportunity", {
|
frappe.ui.form.on("Opportunity", {
|
||||||
|
setup: function(frm) {
|
||||||
|
frm.custom_make_buttons = {
|
||||||
|
'Quotation': 'Quotation',
|
||||||
|
'Supplier Quotation': 'Supplier Quotation'
|
||||||
|
}
|
||||||
|
},
|
||||||
customer: function(frm) {
|
customer: function(frm) {
|
||||||
erpnext.utils.get_party_details(frm);
|
erpnext.utils.get_party_details(frm);
|
||||||
},
|
},
|
||||||
|
@ -8,7 +8,6 @@ def get_data():
|
|||||||
},
|
},
|
||||||
'transactions': [
|
'transactions': [
|
||||||
{
|
{
|
||||||
'label': _('Related'),
|
|
||||||
'items': ['Quotation', 'Supplier Quotation']
|
'items': ['Quotation', 'Supplier Quotation']
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
@ -28,6 +28,7 @@ after_install = "erpnext.setup.install.after_install"
|
|||||||
|
|
||||||
boot_session = "erpnext.startup.boot.boot_session"
|
boot_session = "erpnext.startup.boot.boot_session"
|
||||||
notification_config = "erpnext.startup.notifications.get_notification_config"
|
notification_config = "erpnext.startup.notifications.get_notification_config"
|
||||||
|
get_help_messages = "erpnext.utilities.activation.get_help_messages"
|
||||||
|
|
||||||
on_session_creation = "erpnext.shopping_cart.utils.set_cart_count"
|
on_session_creation = "erpnext.shopping_cart.utils.set_cart_count"
|
||||||
on_logout = "erpnext.shopping_cart.utils.clear_cart_count"
|
on_logout = "erpnext.shopping_cart.utils.clear_cart_count"
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
|
|
||||||
frappe.views.calendar["Holiday List"] = {
|
frappe.views.calendar["Holiday List"] = {
|
||||||
field_map: {
|
field_map: {
|
||||||
"start": "from_date",
|
"start": "holiday_date",
|
||||||
"end": "to_date",
|
"end": "holiday_date",
|
||||||
"id": "name",
|
"id": "name",
|
||||||
"title": "description",
|
"title": "description",
|
||||||
"allDay": "allDay"
|
"allDay": "allDay"
|
||||||
|
@ -781,7 +781,9 @@ erpnext.TransactionController = erpnext.taxes_and_totals.extend({
|
|||||||
if(k=="price_list_rate") {
|
if(k=="price_list_rate") {
|
||||||
if(flt(v) != flt(d.price_list_rate)) price_list_rate_changed = true;
|
if(flt(v) != flt(d.price_list_rate)) price_list_rate_changed = true;
|
||||||
}
|
}
|
||||||
frappe.model.set_value(d.doctype, d.name, k, v);
|
if(v) {
|
||||||
|
frappe.model.set_value(d.doctype, d.name, k, v);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -47,6 +47,7 @@ $.extend(erpnext, {
|
|||||||
fields: [
|
fields: [
|
||||||
{
|
{
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
|
"fieldname": "serial_no",
|
||||||
"options": "Serial No",
|
"options": "Serial No",
|
||||||
"label": __("Serial No"),
|
"label": __("Serial No"),
|
||||||
"get_query": function () {
|
"get_query": function () {
|
||||||
@ -60,6 +61,7 @@ $.extend(erpnext, {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldtype": "Button",
|
"fieldtype": "Button",
|
||||||
|
"fieldname": "add",
|
||||||
"label": __("Add")
|
"label": __("Add")
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -46,11 +46,26 @@ erpnext.utils.get_party_details = function(frm, method, args, callback) {
|
|||||||
frm.updating_party_details = false;
|
frm.updating_party_details = false;
|
||||||
if(callback) callback();
|
if(callback) callback();
|
||||||
frm.refresh();
|
frm.refresh();
|
||||||
|
erpnext.utils.add_item(frm);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
erpnext.utils.add_item = function(frm) {
|
||||||
|
if(frm.is_new()) {
|
||||||
|
var prev_route = frappe.get_prev_route();
|
||||||
|
if(prev_route[1]==='Item' && !(frm.doc.items && frm.doc.items.length)) {
|
||||||
|
// add row
|
||||||
|
item = frm.add_child('items');
|
||||||
|
frm.refresh_field('items');
|
||||||
|
|
||||||
|
// set item
|
||||||
|
frappe.model.set_value(item.doctype, item.name, 'item_code', prev_route[2]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
erpnext.utils.get_address_display = function(frm, address_field, display_field, is_your_company_address) {
|
erpnext.utils.get_address_display = function(frm, address_field, display_field, is_your_company_address) {
|
||||||
if(frm.updating_party_details) return;
|
if(frm.updating_party_details) return;
|
||||||
|
|
||||||
|
@ -4,6 +4,14 @@
|
|||||||
|
|
||||||
{% include 'erpnext/selling/sales_common.js' %}
|
{% include 'erpnext/selling/sales_common.js' %}
|
||||||
|
|
||||||
|
frappe.ui.form.on('Quotation', {
|
||||||
|
setup: function(frm) {
|
||||||
|
frm.custom_make_buttons = {
|
||||||
|
'Sales Order': 'Make Sales Order'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
erpnext.selling.QuotationController = erpnext.selling.SellingController.extend({
|
erpnext.selling.QuotationController = erpnext.selling.SellingController.extend({
|
||||||
onload: function(doc, dt, dn) {
|
onload: function(doc, dt, dn) {
|
||||||
var me = this;
|
var me = this;
|
||||||
|
@ -4,6 +4,14 @@
|
|||||||
{% include 'erpnext/selling/sales_common.js' %}
|
{% include 'erpnext/selling/sales_common.js' %}
|
||||||
|
|
||||||
frappe.ui.form.on("Sales Order", {
|
frappe.ui.form.on("Sales Order", {
|
||||||
|
setup: function(frm) {
|
||||||
|
frm.custom_make_buttons = {
|
||||||
|
'Delivery Note': 'Delivery',
|
||||||
|
'Sales Invoice': 'Invoice',
|
||||||
|
'Material Request': 'Material Request',
|
||||||
|
'Purchase Order': 'Purchase Order'
|
||||||
|
}
|
||||||
|
},
|
||||||
onload: function(frm) {
|
onload: function(frm) {
|
||||||
erpnext.queries.setup_queries(frm, "Warehouse", function() {
|
erpnext.queries.setup_queries(frm, "Warehouse", function() {
|
||||||
return erpnext.queries.warehouse(frm.doc);
|
return erpnext.queries.warehouse(frm.doc);
|
||||||
|
@ -202,7 +202,9 @@ erpnext.SalesAnalytics = frappe.views.TreeGridReport.extend({
|
|||||||
if (posting_date >= from_date && posting_date <= to_date) {
|
if (posting_date >= from_date && posting_date <= to_date) {
|
||||||
var item = me.item_by_name[tl[me.tree_grid.item_key]] ||
|
var item = me.item_by_name[tl[me.tree_grid.item_key]] ||
|
||||||
me.item_by_name['Not Set'];
|
me.item_by_name['Not Set'];
|
||||||
item[me.column_map[tl.posting_date].field] += (is_val ? tl.base_net_amount : tl.qty);
|
if(item){
|
||||||
|
item[me.column_map[tl.posting_date].field] += (is_val ? tl.base_net_amount : tl.qty);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -8,6 +8,12 @@ frappe.provide("erpnext.stock.delivery_note");
|
|||||||
|
|
||||||
frappe.ui.form.on("Delivery Note", {
|
frappe.ui.form.on("Delivery Note", {
|
||||||
setup: function(frm) {
|
setup: function(frm) {
|
||||||
|
frm.custom_make_buttons = {
|
||||||
|
'Packing Slip': 'Packing Slip',
|
||||||
|
'Installation Note': 'Installation Note',
|
||||||
|
'Sales Invoice': 'Invoice',
|
||||||
|
'Stock Entry': 'Return',
|
||||||
|
},
|
||||||
frm.set_indicator_formatter('item_code',
|
frm.set_indicator_formatter('item_code',
|
||||||
function(doc) {
|
function(doc) {
|
||||||
return (doc.docstatus==1 || doc.qty<=doc.actual_qty) ? "green" : "orange"
|
return (doc.docstatus==1 || doc.qty<=doc.actual_qty) ? "green" : "orange"
|
||||||
|
@ -4,7 +4,19 @@
|
|||||||
{% include 'erpnext/buying/doctype/purchase_common/purchase_common.js' %};
|
{% include 'erpnext/buying/doctype/purchase_common/purchase_common.js' %};
|
||||||
|
|
||||||
frappe.ui.form.on('Material Request', {
|
frappe.ui.form.on('Material Request', {
|
||||||
|
setup: function(frm) {
|
||||||
|
frm.custom_make_buttons = {
|
||||||
|
'Stock Entry': 'Issue Material',
|
||||||
|
'Purchase Order': 'Purchase Order',
|
||||||
|
'Request for Quotation': 'Request for Quotation',
|
||||||
|
'Supplier Quotation': 'Supplier Quotation',
|
||||||
|
'Production Order': 'Production Order'
|
||||||
|
}
|
||||||
|
},
|
||||||
onload: function(frm) {
|
onload: function(frm) {
|
||||||
|
// add item, if previous view was item
|
||||||
|
erpnext.utils.add_item(frm);
|
||||||
|
|
||||||
// formatter for material request item
|
// formatter for material request item
|
||||||
frm.set_indicator_formatter('item_code',
|
frm.set_indicator_formatter('item_code',
|
||||||
function(doc) { return (doc.qty<=doc.ordered_qty) ? "green" : "orange" }),
|
function(doc) { return (doc.qty<=doc.ordered_qty) ? "green" : "orange" }),
|
||||||
@ -71,7 +83,7 @@ erpnext.buying.MaterialRequestController = erpnext.buying.BuyingController.exten
|
|||||||
|
|
||||||
if(doc.material_request_type === "Manufacture" && doc.status === "Submitted")
|
if(doc.material_request_type === "Manufacture" && doc.status === "Submitted")
|
||||||
cur_frm.add_custom_button(__("Production Order"),
|
cur_frm.add_custom_button(__("Production Order"),
|
||||||
this.raise_production_orders, __("Make"));
|
function() { me.raise_production_orders() }, __("Make"));
|
||||||
|
|
||||||
cur_frm.page.set_inner_btn_group_as_primary(__("Make"));
|
cur_frm.page.set_inner_btn_group_as_primary(__("Make"));
|
||||||
|
|
||||||
@ -202,10 +214,16 @@ erpnext.buying.MaterialRequestController = erpnext.buying.BuyingController.exten
|
|||||||
},
|
},
|
||||||
|
|
||||||
raise_production_orders: function() {
|
raise_production_orders: function() {
|
||||||
|
var me = this;
|
||||||
frappe.call({
|
frappe.call({
|
||||||
method:"erpnext.stock.doctype.material_request.material_request.raise_production_orders",
|
method:"erpnext.stock.doctype.material_request.material_request.raise_production_orders",
|
||||||
args: {
|
args: {
|
||||||
"material_request": cur_frm.doc.name
|
"material_request": me.frm.doc.name
|
||||||
|
},
|
||||||
|
callback: function(r) {
|
||||||
|
if(r.message.length) {
|
||||||
|
me.frm.reload_doc();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,12 @@
|
|||||||
frappe.provide("erpnext.stock");
|
frappe.provide("erpnext.stock");
|
||||||
|
|
||||||
frappe.ui.form.on("Purchase Receipt", {
|
frappe.ui.form.on("Purchase Receipt", {
|
||||||
|
setup: function(frm) {
|
||||||
|
frm.custom_make_buttons = {
|
||||||
|
'Stock Entry': 'Return',
|
||||||
|
'Purchase Invoice': 'Invoice'
|
||||||
|
}
|
||||||
|
},
|
||||||
onload: function(frm) {
|
onload: function(frm) {
|
||||||
$.each(["warehouse", "rejected_warehouse"], function(i, field) {
|
$.each(["warehouse", "rejected_warehouse"], function(i, field) {
|
||||||
frm.set_query(field, "items", function() {
|
frm.set_query(field, "items", function() {
|
||||||
|
@ -66,6 +66,7 @@ erpnext.stock.StockEntry = erpnext.stock.StockController.extend({
|
|||||||
this.show_general_ledger();
|
this.show_general_ledger();
|
||||||
}
|
}
|
||||||
erpnext.hide_company();
|
erpnext.hide_company();
|
||||||
|
erpnext.utils.add_item(this.frm);
|
||||||
},
|
},
|
||||||
|
|
||||||
on_submit: function() {
|
on_submit: function() {
|
||||||
@ -176,7 +177,6 @@ erpnext.stock.StockEntry = erpnext.stock.StockController.extend({
|
|||||||
excise.voucher_type = 'Excise Entry';
|
excise.voucher_type = 'Excise Entry';
|
||||||
frappe.set_route('Form', 'Journal Entry', excise.name);
|
frappe.set_route('Form', 'Journal Entry', excise.name);
|
||||||
}, __("Make"));
|
}, __("Make"));
|
||||||
cur_frm.page.set_inner_btn_group_as_primary(__("Make"));
|
|
||||||
},
|
},
|
||||||
|
|
||||||
items_add: function(doc, cdt, cdn) {
|
items_add: function(doc, cdt, cdn) {
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
import frappe
|
import frappe, erpnext
|
||||||
|
|
||||||
|
from frappe import _
|
||||||
|
|
||||||
def get_level():
|
def get_level():
|
||||||
activation_level = 0
|
activation_level = 0
|
||||||
@ -20,6 +22,9 @@ def get_level():
|
|||||||
if frappe.db.count('Employee') > 3:
|
if frappe.db.count('Employee') > 3:
|
||||||
activation_level += 1
|
activation_level += 1
|
||||||
|
|
||||||
|
if frappe.db.count('Lead') > 3:
|
||||||
|
activation_level += 1
|
||||||
|
|
||||||
if frappe.db.count('Payment Entry') > 2:
|
if frappe.db.count('Payment Entry') > 2:
|
||||||
activation_level += 1
|
activation_level += 1
|
||||||
|
|
||||||
@ -29,8 +34,104 @@ def get_level():
|
|||||||
if frappe.db.count('User') > 5:
|
if frappe.db.count('User') > 5:
|
||||||
activation_level += 1
|
activation_level += 1
|
||||||
|
|
||||||
|
if frappe.db.count('Student') > 5:
|
||||||
|
activation_level += 1
|
||||||
|
|
||||||
|
if frappe.db.count('Student Batch') > 5:
|
||||||
|
activation_level += 1
|
||||||
|
|
||||||
|
if frappe.db.count('Instructor') > 5:
|
||||||
|
activation_level += 1
|
||||||
|
|
||||||
# recent login
|
# recent login
|
||||||
if frappe.db.sql('select name from tabUser where last_login > date_sub(now(), interval 2 day) limit 1'):
|
if frappe.db.sql('select name from tabUser where last_login > date_sub(now(), interval 2 day) limit 1'):
|
||||||
activation_level += 1
|
activation_level += 1
|
||||||
|
|
||||||
return activation_level
|
return activation_level
|
||||||
|
|
||||||
|
def get_help_messages():
|
||||||
|
'''Returns help messages to be shown on Desktop'''
|
||||||
|
# if get_level() > 6:
|
||||||
|
# return []
|
||||||
|
|
||||||
|
messages = []
|
||||||
|
|
||||||
|
domain = frappe.db.get_value('Company', erpnext.get_default_company(), 'domain')
|
||||||
|
|
||||||
|
if domain in ('Manufacturing', 'Retail', 'Services', 'Distribution'):
|
||||||
|
count = frappe.db.count('Lead')
|
||||||
|
if count < 3:
|
||||||
|
messages.append(dict(
|
||||||
|
title=_('Create Leads'),
|
||||||
|
description=_('Create Leads'),
|
||||||
|
action=_('Leads help you get business, add all your contacts and more as your leads'),
|
||||||
|
route='List/Lead',
|
||||||
|
count=count
|
||||||
|
))
|
||||||
|
|
||||||
|
count = frappe.db.count('Quotation')
|
||||||
|
if count < 3:
|
||||||
|
messages.append(dict(
|
||||||
|
title=_('Create customer quotes'),
|
||||||
|
description=_('Quotations are proposals, bids you have sent to your customers'),
|
||||||
|
action=_('Make Quotation'),
|
||||||
|
route='List/Quotation'
|
||||||
|
))
|
||||||
|
|
||||||
|
count = frappe.db.count('Sales Order')
|
||||||
|
if count < 3:
|
||||||
|
messages.append(dict(
|
||||||
|
title=_('Manage your orders'),
|
||||||
|
description=_('Make Sales Orders to help you plan your work and deliver on-time'),
|
||||||
|
action=_('Make Sales Order'),
|
||||||
|
route='List/Sales Order'
|
||||||
|
))
|
||||||
|
|
||||||
|
count = frappe.db.count('Purchase Order')
|
||||||
|
if count < 3:
|
||||||
|
messages.append(dict(
|
||||||
|
title=_('Create Purchase Orders'),
|
||||||
|
description=_('Purchase orders help you plan and follow up on your purchases'),
|
||||||
|
action=_('Make Purchase Order'),
|
||||||
|
route='List/Purchase Order'
|
||||||
|
))
|
||||||
|
|
||||||
|
count = frappe.db.count('User')
|
||||||
|
if count < 3:
|
||||||
|
messages.append(dict(
|
||||||
|
title=_('Create Users'),
|
||||||
|
description=_('Add the rest of your organization as your users. You can also add invite Customers to your portal by adding them from Contacts'),
|
||||||
|
action=_('Make User'),
|
||||||
|
route='List/User'
|
||||||
|
))
|
||||||
|
|
||||||
|
elif domain == 'Education':
|
||||||
|
count = frappe.db.count('Student')
|
||||||
|
if count < 5:
|
||||||
|
messages.append(dict(
|
||||||
|
title=_('Add Students'),
|
||||||
|
description=_('Students are at the heart of the system, add all your students'),
|
||||||
|
action=_('Make Student'),
|
||||||
|
route='List/Student'
|
||||||
|
))
|
||||||
|
|
||||||
|
count = frappe.db.count('Student Batch')
|
||||||
|
if count < 3:
|
||||||
|
messages.append(dict(
|
||||||
|
title=_('Group your students in batches'),
|
||||||
|
description=_('Student Batches help you track attendance, assessments and fees for students'),
|
||||||
|
action=_('Make Student Batch'),
|
||||||
|
route='List/Student Batch'
|
||||||
|
))
|
||||||
|
|
||||||
|
# anyways
|
||||||
|
count = frappe.db.count('Employee')
|
||||||
|
if count < 3:
|
||||||
|
messages.append(dict(
|
||||||
|
title=_('Create Employee Records'),
|
||||||
|
description=_('Create Employee records to manage leaves, expense claims and payroll'),
|
||||||
|
action=_('Make Employee'),
|
||||||
|
route='List/Employee'
|
||||||
|
))
|
||||||
|
|
||||||
|
return messages
|
Loading…
x
Reference in New Issue
Block a user