mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 00:14:50 +00:00
[patch] perpetual accounting patch
This commit is contained in:
33
patches/august_2013/p01_perpetual_accounting_patch.py
Normal file
33
patches/august_2013/p01_perpetual_accounting_patch.py
Normal file
@@ -0,0 +1,33 @@
|
||||
import webnotes
|
||||
from webnotes.utils import cint
|
||||
|
||||
def execute():
|
||||
copy_perpetual_accounting_settings()
|
||||
set_missing_cost_center()
|
||||
|
||||
def set_missing_cost_center():
|
||||
reload_docs = [
|
||||
["stock", "doctype", "serial_no"],
|
||||
["stock", "doctype", "stock_reconciliation"],
|
||||
["stock", "doctype", "stock_entry"]
|
||||
]
|
||||
for d in reload_docs:
|
||||
webnotes.reload_doc(d[0], d[1], d[2])
|
||||
|
||||
if cint(webnotes.defaults.get_global_default("perpetual_accounting")):
|
||||
for dt in ["Serial No", "Stock Reconciliation", "Stock Entry"]:
|
||||
webnotes.conn.sql("""update `tab%s` t1, tabCompany t2
|
||||
set t1.cost_center=t2.stock_adjustment_cost_center
|
||||
where t1.company = t2.name""" % dt)
|
||||
|
||||
def copy_perpetual_accounting_settings():
|
||||
webnotes.reload_doc("accounts", "doctype", "accounts_settings")
|
||||
aii_enabled = cint(webnotes.conn.get_value("Global Defaults", None,
|
||||
"auto_inventory_accounting"))
|
||||
if aii_enabled:
|
||||
try:
|
||||
bean= webnotes.bean("Account Settings")
|
||||
bean.doc.perpetual_accounting = aii_enabled
|
||||
bean.save()
|
||||
except:
|
||||
pass
|
||||
Reference in New Issue
Block a user