brotherton-erpnext/erpnext/patches/v11_0/refactor_autoname_naming.py
2022-03-28 18:52:46 +05:30

124 lines
4.4 KiB
Python

# Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
import frappe
from frappe.custom.doctype.property_setter.property_setter import make_property_setter
doctype_series_map = {
"Activity Cost": "PROJ-ACC-.#####",
"Agriculture Task": "AG-TASK-.#####",
"Assessment Plan": "EDU-ASP-.YYYY.-.#####",
"Assessment Result": "EDU-RES-.YYYY.-.#####",
"Asset Movement": "ACC-ASM-.YYYY.-.#####",
"Attendance Request": "HR-ARQ-.YY.-.MM.-.#####",
"Authorization Rule": "HR-ARU-.#####",
"Bank Guarantee": "ACC-BG-.YYYY.-.#####",
"Bin": "MAT-BIN-.YYYY.-.#####",
"Certification Application": "NPO-CAPP-.YYYY.-.#####",
"Certified Consultant": "NPO-CONS-.YYYY.-.#####",
"Chat Room": "CHAT-ROOM-.#####",
"Compensatory Leave Request": "HR-CMP-.YY.-.MM.-.#####",
"Client Script": "SYS-SCR-.#####",
"Employee Benefit Application": "HR-BEN-APP-.YY.-.MM.-.#####",
"Employee Benefit Application Detail": "",
"Employee Benefit Claim": "HR-BEN-CLM-.YY.-.MM.-.#####",
"Employee Incentive": "HR-EINV-.YY.-.MM.-.#####",
"Employee Onboarding": "HR-EMP-ONB-.YYYY.-.#####",
"Employee Onboarding Template": "HR-EMP-ONT-.#####",
"Employee Promotion": "HR-EMP-PRO-.YYYY.-.#####",
"Employee Separation": "HR-EMP-SEP-.YYYY.-.#####",
"Employee Separation Template": "HR-EMP-STP-.#####",
"Employee Tax Exemption Declaration": "HR-TAX-DEC-.YYYY.-.#####",
"Employee Tax Exemption Proof Submission": "HR-TAX-PRF-.YYYY.-.#####",
"Employee Transfer": "HR-EMP-TRN-.YYYY.-.#####",
"Event": "EVENT-.YYYY.-.#####",
"Exchange Rate Revaluation": "ACC-ERR-.YYYY.-.#####",
"GL Entry": "ACC-GLE-.YYYY.-.#####",
"Guardian": "EDU-GRD-.YYYY.-.#####",
"Hotel Room Reservation": "HTL-RES-.YYYY.-.#####",
"Item Price": "",
"Job Applicant": "HR-APP-.YYYY.-.#####",
"Job Offer": "HR-OFF-.YYYY.-.#####",
"Leave Encashment": "HR-ENC-.YYYY.-.#####",
"Leave Period": "HR-LPR-.YYYY.-.#####",
"Leave Policy": "HR-LPOL-.YYYY.-.#####",
"Loan": "ACC-LOAN-.YYYY.-.#####",
"Loan Application": "ACC-LOAP-.YYYY.-.#####",
"Loyalty Point Entry": "",
"Membership": "NPO-MSH-.YYYY.-.#####",
"Packing Slip": "MAT-PAC-.YYYY.-.#####",
"Patient Appointment": "HLC-APP-.YYYY.-.#####",
"Payment Terms Template Detail": "",
"Payroll Entry": "HR-PRUN-.YYYY.-.#####",
"Period Closing Voucher": "ACC-PCV-.YYYY.-.#####",
"Plant Analysis": "AG-PLA-.YYYY.-.#####",
"POS Closing Entry": "POS-CLO-.YYYY.-.#####",
"Prepared Report": "SYS-PREP-.YYYY.-.#####",
"Program Enrollment": "EDU-ENR-.YYYY.-.#####",
"Quotation Item": "",
"Restaurant Reservation": "RES-RES-.YYYY.-.#####",
"Retention Bonus": "HR-RTB-.YYYY.-.#####",
"Room": "HTL-ROOM-.YYYY.-.#####",
"Salary Structure Assignment": "HR-SSA-.YY.-.MM.-.#####",
"Sales Taxes and Charges": "",
"Share Transfer": "ACC-SHT-.YYYY.-.#####",
"Shift Assignment": "HR-SHA-.YY.-.MM.-.#####",
"Shift Request": "HR-SHR-.YY.-.MM.-.#####",
"SMS Log": "SYS-SMS-.#####",
"Soil Analysis": "AG-ANA-.YY.-.MM.-.#####",
"Soil Texture": "AG-TEX-.YYYY.-.#####",
"Stock Ledger Entry": "MAT-SLE-.YYYY.-.#####",
"Student Leave Application": "EDU-SLA-.YYYY.-.#####",
"Student Log": "EDU-SLOG-.YYYY.-.#####",
"Subscription": "ACC-SUB-.YYYY.-.#####",
"Task": "TASK-.YYYY.-.#####",
"Tax Rule": "ACC-TAX-RULE-.YYYY.-.#####",
"Training Feedback": "HR-TRF-.YYYY.-.#####",
"Training Result": "HR-TRR-.YYYY.-.#####",
"Travel Request": "HR-TRQ-.YYYY.-.#####",
"UOM Conversion Factor": "MAT-UOM-CNV-.#####",
"Water Analysis": "HR-WAT-.YYYY.-.#####",
"Workflow Action": "SYS-WACT-.#####",
}
def execute():
series_to_set = get_series()
for doctype, opts in series_to_set.items():
set_series(doctype, opts["value"])
def set_series(doctype, value):
doc = frappe.db.exists("Property Setter", {"doc_type": doctype, "property": "autoname"})
if doc:
frappe.db.set_value("Property Setter", doc, "value", value)
else:
make_property_setter(doctype, "", "autoname", value, "", for_doctype=True)
def get_series():
series_to_set = {}
for doctype in doctype_series_map:
if not frappe.db.exists("DocType", doctype):
continue
if not frappe.db.a_row_exists(doctype):
continue
series_to_preserve = get_series_to_preserve(doctype)
if not series_to_preserve:
continue
# set autoname property setter
if series_to_preserve:
series_to_set[doctype] = {"value": series_to_preserve}
return series_to_set
def get_series_to_preserve(doctype):
series_to_preserve = frappe.db.get_value("DocType", doctype, "autoname")
return series_to_preserve