mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 08:24:47 +00:00
[fix] [minor] merge conflict fixes
This commit is contained in:
@@ -121,6 +121,6 @@ def get_costcenter_account_month_map(filters):
|
|||||||
|
|
||||||
for ad in actual_details.get(ccd.name, {}).get(ccd.account, []):
|
for ad in actual_details.get(ccd.name, {}).get(ccd.account, []):
|
||||||
if ad.month_name == month:
|
if ad.month_name == month:
|
||||||
tav_dict.actual += ad.debit - ad.credit
|
tav_dict.actual += flt(ad.debit) - flt(ad.credit)
|
||||||
|
|
||||||
return cam_map
|
return cam_map
|
||||||
|
|||||||
@@ -27,6 +27,14 @@ class DocType(TransactionBase):
|
|||||||
else:
|
else:
|
||||||
self.doc.name = make_autoname(self.doc.naming_series + '.#####')
|
self.doc.name = make_autoname(self.doc.naming_series + '.#####')
|
||||||
|
|
||||||
|
def update_address(self):
|
||||||
|
webnotes.conn.sql("""update `tabAddress` set supplier_name=%s
|
||||||
|
where supplier=%s""", (self.doc.supplier_name, self.doc.name))
|
||||||
|
|
||||||
|
def update_contact(self):
|
||||||
|
webnotes.conn.sql("""update `tabContact` set supplier_name=%s
|
||||||
|
where supplier=%s""", (self.doc.supplier_name, self.doc.name))
|
||||||
|
|
||||||
def update_credit_days_limit(self):
|
def update_credit_days_limit(self):
|
||||||
webnotes.conn.sql("""update tabAccount set credit_days = %s where name = %s""",
|
webnotes.conn.sql("""update tabAccount set credit_days = %s where name = %s""",
|
||||||
(cint(self.doc.credit_days), self.doc.name + " - " + self.get_company_abbr()))
|
(cint(self.doc.credit_days), self.doc.name + " - " + self.get_company_abbr()))
|
||||||
@@ -35,6 +43,9 @@ class DocType(TransactionBase):
|
|||||||
if not self.doc.naming_series:
|
if not self.doc.naming_series:
|
||||||
self.doc.naming_series = ''
|
self.doc.naming_series = ''
|
||||||
|
|
||||||
|
self.update_address()
|
||||||
|
self.update_contact()
|
||||||
|
|
||||||
# create account head
|
# create account head
|
||||||
self.create_account_head()
|
self.create_account_head()
|
||||||
|
|
||||||
@@ -151,10 +162,19 @@ class DocType(TransactionBase):
|
|||||||
def before_rename(self, olddn, newdn, merge=False):
|
def before_rename(self, olddn, newdn, merge=False):
|
||||||
from accounts.utils import rename_account_for
|
from accounts.utils import rename_account_for
|
||||||
rename_account_for("Supplier", olddn, newdn, merge)
|
rename_account_for("Supplier", olddn, newdn, merge)
|
||||||
|
|
||||||
def after_rename(self, olddn, newdn, merge=False):
|
def after_rename(self, olddn, newdn, merge=False):
|
||||||
|
condition = value = ''
|
||||||
if webnotes.defaults.get_global_default('supp_master_name') == 'Supplier Name':
|
if webnotes.defaults.get_global_default('supp_master_name') == 'Supplier Name':
|
||||||
webnotes.conn.set(self.doc, "supplier_name", newdn)
|
webnotes.conn.set(self.doc, "supplier_name", newdn)
|
||||||
|
self.update_contact()
|
||||||
|
condition = ", supplier_name=%s"
|
||||||
|
value = newdn
|
||||||
|
self.update_supplier_address(newdn, condition, value)
|
||||||
|
|
||||||
|
def update_supplier_address(self, newdn, condition, value):
|
||||||
|
webnotes.conn.sql("""update `tabAddress` set address_title=%s %s
|
||||||
|
where supplier=%s""" % ('%s', condition, '%s'), (newdn, value, newdn))
|
||||||
|
|
||||||
@webnotes.whitelist()
|
@webnotes.whitelist()
|
||||||
def get_dashboard_info(supplier):
|
def get_dashboard_info(supplier):
|
||||||
|
|||||||
154
config.json
154
config.json
@@ -1,78 +1,78 @@
|
|||||||
{
|
{
|
||||||
"app_name": "ERPNext",
|
"app_name": "ERPNext",
|
||||||
"app_version": "3.0.0",
|
"app_version": "3.1.2",
|
||||||
"requires_framework_version": "==3.0.0",
|
"base_template": "app/portal/templates/base.html",
|
||||||
"base_template": "app/portal/templates/base.html",
|
"modules": {
|
||||||
"modules": {
|
"Accounts": {
|
||||||
"Selling": {
|
"color": "#3498db",
|
||||||
"link": "selling-home",
|
"icon": "icon-money",
|
||||||
"color": "#1abc9c",
|
"link": "accounts-home",
|
||||||
"icon": "icon-tag",
|
"type": "module"
|
||||||
"type": "module"
|
},
|
||||||
},
|
"Activity": {
|
||||||
"Accounts": {
|
"color": "#e67e22",
|
||||||
"link": "accounts-home",
|
"icon": "icon-play",
|
||||||
"color": "#3498db",
|
"label": "Activity",
|
||||||
"icon": "icon-money",
|
"link": "activity",
|
||||||
"type": "module"
|
"type": "page"
|
||||||
},
|
},
|
||||||
"Stock": {
|
"Buying": {
|
||||||
"type": "module",
|
"color": "#c0392b",
|
||||||
"link": "stock-home",
|
"icon": "icon-shopping-cart",
|
||||||
"color": "#f39c12",
|
"link": "buying-home",
|
||||||
"icon": "icon-truck"
|
"type": "module"
|
||||||
},
|
},
|
||||||
"Buying": {
|
"HR": {
|
||||||
"type": "module",
|
"color": "#2ecc71",
|
||||||
"link": "buying-home",
|
"icon": "icon-group",
|
||||||
"color": "#c0392b",
|
"label": "Human Resources",
|
||||||
"icon": "icon-shopping-cart"
|
"link": "hr-home",
|
||||||
},
|
"type": "module"
|
||||||
"Support": {
|
},
|
||||||
"type": "module",
|
"Manufacturing": {
|
||||||
"link": "support-home",
|
"color": "#7f8c8d",
|
||||||
"color": "#2c3e50",
|
"icon": "icon-cogs",
|
||||||
"icon": "icon-phone"
|
"link": "manufacturing-home",
|
||||||
},
|
"type": "module"
|
||||||
"Projects": {
|
},
|
||||||
"type": "module",
|
"Notes": {
|
||||||
"link": "projects-home",
|
"color": "#95a5a6",
|
||||||
"color": "#8e44ad",
|
"doctype": "Note",
|
||||||
"icon": "icon-puzzle-piece"
|
"icon": "icon-file-alt",
|
||||||
},
|
"label": "Notes",
|
||||||
"Manufacturing": {
|
"link": "List/Note",
|
||||||
"type": "module",
|
"type": "list"
|
||||||
"link": "manufacturing-home",
|
},
|
||||||
"color": "#7f8c8d",
|
"Projects": {
|
||||||
"icon": "icon-cogs"
|
"color": "#8e44ad",
|
||||||
},
|
"icon": "icon-puzzle-piece",
|
||||||
"HR": {
|
"link": "projects-home",
|
||||||
"type": "module",
|
"type": "module"
|
||||||
"link": "hr-home",
|
},
|
||||||
"color": "#2ecc71",
|
"Selling": {
|
||||||
"label": "Human Resources",
|
"color": "#1abc9c",
|
||||||
"icon": "icon-group"
|
"icon": "icon-tag",
|
||||||
},
|
"link": "selling-home",
|
||||||
"Setup": {
|
"type": "module"
|
||||||
"type": "setup",
|
},
|
||||||
"link": "Setup",
|
"Setup": {
|
||||||
"color": "#bdc3c7",
|
"color": "#bdc3c7",
|
||||||
"icon": "icon-wrench"
|
"icon": "icon-wrench",
|
||||||
},
|
"link": "Setup",
|
||||||
"Activity": {
|
"type": "setup"
|
||||||
"type": "page",
|
},
|
||||||
"link": "activity",
|
"Stock": {
|
||||||
"color": "#e67e22",
|
"color": "#f39c12",
|
||||||
"icon": "icon-play",
|
"icon": "icon-truck",
|
||||||
"label": "Activity"
|
"link": "stock-home",
|
||||||
},
|
"type": "module"
|
||||||
"Notes": {
|
},
|
||||||
"type": "list",
|
"Support": {
|
||||||
"doctype": "Note",
|
"color": "#2c3e50",
|
||||||
"link": "List/Note",
|
"icon": "icon-phone",
|
||||||
"color": "#95a5a6",
|
"link": "support-home",
|
||||||
"label": "Notes",
|
"type": "module"
|
||||||
"icon": "icon-file-alt"
|
}
|
||||||
}
|
},
|
||||||
}
|
"requires_framework_version": "==3.1.1"
|
||||||
}
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
{
|
{
|
||||||
"creation": "2013-01-24 11:03:32",
|
"creation": "2013-01-24 11:03:32",
|
||||||
"docstatus": 0,
|
"docstatus": 0,
|
||||||
"modified": "2013-12-06 15:16:11",
|
"modified": "2013-12-09 16:24:07",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"owner": "Administrator"
|
"owner": "Administrator"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
{
|
{
|
||||||
"creation": "2013-01-22 15:11:38",
|
"creation": "2013-01-22 15:11:38",
|
||||||
"docstatus": 0,
|
"docstatus": 0,
|
||||||
"modified": "2013-12-06 18:48:23",
|
"modified": "2013-12-09 16:25:50",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"owner": "Administrator"
|
"owner": "Administrator"
|
||||||
},
|
},
|
||||||
@@ -120,6 +120,10 @@
|
|||||||
"options": "Price List"
|
"options": "Price List"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
<<<<<<< HEAD
|
||||||
|
=======
|
||||||
|
"depends_on": "with_operations",
|
||||||
|
>>>>>>> 4e677a3f5235c96e86c5fe5acd8d2f59dff895dc
|
||||||
"description": "Specify the operations, operating cost and give a unique Operation no to your operations.",
|
"description": "Specify the operations, operating cost and give a unique Operation no to your operations.",
|
||||||
"doctype": "DocField",
|
"doctype": "DocField",
|
||||||
"fieldname": "operations",
|
"fieldname": "operations",
|
||||||
|
|||||||
@@ -37,7 +37,6 @@ def execute():
|
|||||||
|
|
||||||
webnotes.delete_doc("DocType", "Question")
|
webnotes.delete_doc("DocType", "Question")
|
||||||
webnotes.delete_doc("DocType", "Answer")
|
webnotes.delete_doc("DocType", "Answer")
|
||||||
webnotes.bean("Style Settings").save()
|
|
||||||
|
|
||||||
# update comment delete
|
# update comment delete
|
||||||
webnotes.conn.sql("""update tabDocPerm \
|
webnotes.conn.sql("""update tabDocPerm \
|
||||||
|
|||||||
@@ -15,4 +15,5 @@ def execute():
|
|||||||
|
|
||||||
# reset property setters for series
|
# reset property setters for series
|
||||||
for name in ("Stock Settings", "Selling Settings", "Buying Settings", "HR Settings"):
|
for name in ("Stock Settings", "Selling Settings", "Buying Settings", "HR Settings"):
|
||||||
webnotes.bean(name, name).save()
|
webnotes.reload_doc(name.split()[0], 'DocType', name)
|
||||||
|
webnotes.bean(name, name).save()
|
||||||
|
|||||||
@@ -64,9 +64,14 @@ def send_message(subject="Website Query", message="", sender="", status="Open"):
|
|||||||
|
|
||||||
if not website_send_message(subject, message, sender):
|
if not website_send_message(subject, message, sender):
|
||||||
return
|
return
|
||||||
|
|
||||||
# make lead / communication
|
if subject=="Support":
|
||||||
from selling.doctype.lead.get_leads import add_sales_communication
|
# create support ticket
|
||||||
add_sales_communication(subject or "Website Query", message, sender, sender,
|
from support.doctype.support_ticket.get_support_mails import add_support_communication
|
||||||
mail=None, status=status)
|
add_support_communication(subject, message, sender, mail=None)
|
||||||
|
else:
|
||||||
|
# make lead / communication
|
||||||
|
from selling.doctype.lead.get_leads import add_sales_communication
|
||||||
|
add_sales_communication(subject or "Website Query", message, sender, sender,
|
||||||
|
mail=None, status=status)
|
||||||
|
|
||||||
@@ -47,6 +47,14 @@ class DocType(TransactionBase):
|
|||||||
if self.doc.lead_name:
|
if self.doc.lead_name:
|
||||||
webnotes.conn.sql("update `tabLead` set status='Converted' where name = %s", self.doc.lead_name)
|
webnotes.conn.sql("update `tabLead` set status='Converted' where name = %s", self.doc.lead_name)
|
||||||
|
|
||||||
|
def update_address(self):
|
||||||
|
webnotes.conn.sql("""update `tabAddress` set customer_name=%s where customer=%s""",
|
||||||
|
(self.doc.customer_name, self.doc.name))
|
||||||
|
|
||||||
|
def update_contact(self):
|
||||||
|
webnotes.conn.sql("""update `tabContact` set customer_name=%s where customer=%s""",
|
||||||
|
(self.doc.customer_name, self.doc.name))
|
||||||
|
|
||||||
def create_account_head(self):
|
def create_account_head(self):
|
||||||
if self.doc.company :
|
if self.doc.company :
|
||||||
abbr = self.get_company_abbr()
|
abbr = self.get_company_abbr()
|
||||||
@@ -99,6 +107,9 @@ class DocType(TransactionBase):
|
|||||||
self.validate_name_with_customer_group()
|
self.validate_name_with_customer_group()
|
||||||
|
|
||||||
self.update_lead_status()
|
self.update_lead_status()
|
||||||
|
self.update_address()
|
||||||
|
self.update_contact()
|
||||||
|
|
||||||
# create account head
|
# create account head
|
||||||
self.create_account_head()
|
self.create_account_head()
|
||||||
# update credit days and limit in account
|
# update credit days and limit in account
|
||||||
@@ -146,10 +157,19 @@ class DocType(TransactionBase):
|
|||||||
def before_rename(self, olddn, newdn, merge=False):
|
def before_rename(self, olddn, newdn, merge=False):
|
||||||
from accounts.utils import rename_account_for
|
from accounts.utils import rename_account_for
|
||||||
rename_account_for("Customer", olddn, newdn, merge)
|
rename_account_for("Customer", olddn, newdn, merge)
|
||||||
|
|
||||||
def after_rename(self, olddn, newdn, merge=False):
|
def after_rename(self, olddn, newdn, merge=False):
|
||||||
|
condition = value = ''
|
||||||
if webnotes.defaults.get_global_default('cust_master_name') == 'Customer Name':
|
if webnotes.defaults.get_global_default('cust_master_name') == 'Customer Name':
|
||||||
webnotes.conn.set(self.doc, "customer_name", newdn)
|
webnotes.conn.set(self.doc, "customer_name", newdn)
|
||||||
|
self.update_contact()
|
||||||
|
condition = ", customer_name=%s"
|
||||||
|
value = newdn
|
||||||
|
self.update_customer_address(newdn, condition, value)
|
||||||
|
|
||||||
|
def update_customer_address(self, newdn, condition, value):
|
||||||
|
webnotes.conn.sql("""update `tabAddress` set address_title=%s %s
|
||||||
|
where customer=%s""" % ('%s', condition, '%s'), (newdn, value, newdn))
|
||||||
|
|
||||||
@webnotes.whitelist()
|
@webnotes.whitelist()
|
||||||
def get_dashboard_info(customer):
|
def get_dashboard_info(customer):
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
{
|
{
|
||||||
"creation": "2013-05-24 19:29:09",
|
"creation": "2013-05-24 19:29:09",
|
||||||
"docstatus": 0,
|
"docstatus": 0,
|
||||||
"modified": "2013-12-06 15:15:49",
|
"modified": "2013-12-09 16:24:08",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"owner": "Administrator"
|
"owner": "Administrator"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
{
|
{
|
||||||
"creation": "2013-04-09 11:43:55",
|
"creation": "2013-04-09 11:43:55",
|
||||||
"docstatus": 0,
|
"docstatus": 0,
|
||||||
"modified": "2013-12-06 15:15:25",
|
"modified": "2013-12-09 16:24:10",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"owner": "Administrator"
|
"owner": "Administrator"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -15,14 +15,14 @@ wn.query_reports["Stock Ledger"] = {
|
|||||||
"fieldname":"from_date",
|
"fieldname":"from_date",
|
||||||
"label": wn._("From Date"),
|
"label": wn._("From Date"),
|
||||||
"fieldtype": "Date",
|
"fieldtype": "Date",
|
||||||
"default": wn.defaults.get_user_default("year_start_date"),
|
"default": wn.datetime.add_months(wn.datetime.get_today(), -1),
|
||||||
"reqd": 1
|
"reqd": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname":"to_date",
|
"fieldname":"to_date",
|
||||||
"label": wn._("To Date"),
|
"label": wn._("To Date"),
|
||||||
"fieldtype": "Date",
|
"fieldtype": "Date",
|
||||||
"default": wn.defaults.get_user_default("year_end_date"),
|
"default": wn.datetime.get_today(),
|
||||||
"reqd": 1
|
"reqd": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,37 +3,62 @@
|
|||||||
|
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
import webnotes
|
import webnotes
|
||||||
|
from webnotes import _
|
||||||
|
|
||||||
def execute(filters=None):
|
def execute(filters=None):
|
||||||
columns = ["Date:Datetime:95", "Item:Link/Item:100", "Item Name::100",
|
columns = get_columns()
|
||||||
|
sl_entries = get_stock_ledger_entries(filters)
|
||||||
|
item_details = get_item_details(filters)
|
||||||
|
|
||||||
|
data = []
|
||||||
|
for sle in sl_entries:
|
||||||
|
item_detail = item_details[sle.item_code]
|
||||||
|
data.append([sle.date, sle.item_code, item_detail.item_name, item_detail.item_group,
|
||||||
|
item_detail.brand, item_detail.description, sle.warehouse, item_detail.stock_uom,
|
||||||
|
sle.actual_qty, sle.qty_after_transaction, sle.stock_value, sle.voucher_type,
|
||||||
|
sle.voucher_no, sle.batch_no, sle.serial_no, sle.company])
|
||||||
|
|
||||||
|
return columns, data
|
||||||
|
|
||||||
|
def get_columns():
|
||||||
|
return ["Date:Datetime:95", "Item:Link/Item:100", "Item Name::100",
|
||||||
"Item Group:Link/Item Group:100", "Brand:Link/Brand:100",
|
"Item Group:Link/Item Group:100", "Brand:Link/Brand:100",
|
||||||
"Description::200", "Warehouse:Link/Warehouse:100",
|
"Description::200", "Warehouse:Link/Warehouse:100",
|
||||||
"Stock UOM:Link/UOM:100", "Qty:Float:50", "Balance Qty:Float:80",
|
"Stock UOM:Link/UOM:100", "Qty:Float:50", "Balance Qty:Float:80",
|
||||||
"Balance Value:Currency:100", "Voucher Type::100", "Voucher #::100",
|
"Balance Value:Currency:100", "Voucher Type::100", "Voucher #::100",
|
||||||
"Batch:Link/Batch:100", "Serial #:Link/Serial No:100", "Company:Link/Company:100"]
|
"Batch:Link/Batch:100", "Serial #:Link/Serial No:100", "Company:Link/Company:100"]
|
||||||
|
|
||||||
data = webnotes.conn.sql("""select concat_ws(" ", posting_date, posting_time),
|
def get_stock_ledger_entries(filters):
|
||||||
item.name, item.item_name, item.item_group, brand, description, warehouse, sle.stock_uom,
|
if not filters.get("company"):
|
||||||
actual_qty, qty_after_transaction, stock_value, voucher_type, voucher_no,
|
webnotes.throw(_("Company is mandatory"))
|
||||||
batch_no, serial_no, company
|
if not filters.get("from_date"):
|
||||||
from `tabStock Ledger Entry` sle,
|
webnotes.throw(_("From Date is mandatory"))
|
||||||
(select name, item_name, description, stock_uom, brand, item_group
|
if not filters.get("to_date"):
|
||||||
from `tabItem` {item_conditions}) item
|
webnotes.throw(_("To Date is mandatory"))
|
||||||
where item_code = item.name and
|
|
||||||
company = %(company)s and
|
return webnotes.conn.sql("""select concat_ws(" ", posting_date, posting_time) as date,
|
||||||
|
item_code, warehouse, actual_qty, qty_after_transaction,
|
||||||
|
stock_value, voucher_type, voucher_no, batch_no, serial_no, company
|
||||||
|
from `tabStock Ledger Entry`
|
||||||
|
where company = %(company)s and
|
||||||
posting_date between %(from_date)s and %(to_date)s
|
posting_date between %(from_date)s and %(to_date)s
|
||||||
{sle_conditions}
|
{sle_conditions}
|
||||||
order by posting_date desc, posting_time desc, sle.name desc"""\
|
order by posting_date desc, posting_time desc, name desc"""\
|
||||||
.format(item_conditions=get_item_conditions(filters),
|
.format(sle_conditions=get_sle_conditions(filters)), filters, as_dict=1)
|
||||||
sle_conditions=get_sle_conditions(filters)),
|
|
||||||
filters)
|
|
||||||
|
|
||||||
return columns, data
|
def get_item_details(filters):
|
||||||
|
item_details = {}
|
||||||
|
for item in webnotes.conn.sql("""select name, item_name, description, item_group,
|
||||||
|
brand, stock_uom from `tabItem` {item_conditions}"""\
|
||||||
|
.format(item_conditions=get_item_conditions(filters)), filters, as_dict=1):
|
||||||
|
item_details.setdefault(item.name, item)
|
||||||
|
|
||||||
|
return item_details
|
||||||
|
|
||||||
def get_item_conditions(filters):
|
def get_item_conditions(filters):
|
||||||
conditions = []
|
conditions = []
|
||||||
if filters.get("item_code"):
|
if filters.get("item_code"):
|
||||||
conditions.append("item_code=%(item_code)s")
|
conditions.append("name=%(item_code)s")
|
||||||
if filters.get("brand"):
|
if filters.get("brand"):
|
||||||
conditions.append("brand=%(brand)s")
|
conditions.append("brand=%(brand)s")
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
{
|
{
|
||||||
|
"中国(简体)": "zh-cn",
|
||||||
|
"中國(繁體)": "zh-tw",
|
||||||
"deutsch": "de",
|
"deutsch": "de",
|
||||||
"ελληνικά": "el",
|
"ελληνικά": "el",
|
||||||
"english": "en",
|
"english": "en",
|
||||||
|
|||||||
Reference in New Issue
Block a user