brotherton-erpnext/erpnext/config/accounting.py

615 lines
13 KiB
Python
Raw Normal View History

from __future__ import unicode_literals
2014-03-03 09:35:28 +00:00
from frappe import _
import frappe
2014-03-03 09:35:28 +00:00
2014-05-08 06:13:18 +00:00
def get_data():
config = [
2019-02-06 11:32:41 +00:00
{
"label": _("Masters and Accounts"),
"items": [
{
"type": "doctype",
"name": "Item",
"onboard": 1,
},
{
"type": "doctype",
"name": "Customer",
"description": _("Customer database."),
"onboard": 1,
},
{
"type": "doctype",
"name": "Supplier",
"description": _("Supplier database."),
"onboard": 1,
},
{
"type": "doctype",
"name": "Company",
"description": _("Company (not Customer or Supplier) master."),
"onboard": 1,
},
{
"type": "doctype",
"name": "Account",
"icon": "fa fa-sitemap",
"label": _("Chart of Accounts"),
2019-02-07 03:48:24 +00:00
"route": "#Tree/Account",
2019-02-06 11:32:41 +00:00
"description": _("Tree of financial accounts."),
"onboard": 1,
},
{
"type": "doctype",
"name": "Journal Entry",
"description": _("Accounting journal entries."),
"onboard": 1,
},
{
"type": "doctype",
"name": "Opening Invoice Creation Tool",
"description": _("Create Opening Sales and Purchase Invoices")
},
]
},
2014-05-08 06:13:18 +00:00
{
2016-03-08 12:36:21 +00:00
"label": _("Billing"),
2014-05-08 06:13:18 +00:00
"items": [
{
"type": "doctype",
"name": "Sales Invoice",
2019-02-06 11:32:41 +00:00
"description": _("Bills raised to Customers."),
"onboard": 1,
2014-05-08 06:13:18 +00:00
},
{
"type": "doctype",
"name": "Purchase Invoice",
2019-02-06 11:32:41 +00:00
"description": _("Bills raised by Suppliers."),
"onboard": 1
2014-05-08 06:13:18 +00:00
},
{
"type": "doctype",
2016-03-08 12:36:21 +00:00
"name": "Payment Request",
2019-02-06 11:32:41 +00:00
"description": _("Payment Request"),
2016-03-08 12:36:21 +00:00
},
2016-07-04 10:46:24 +00:00
{
"type": "doctype",
"name": "Payment Entry",
"description": _("Bank/Cash transactions against party or for internal transfer")
2019-02-06 11:32:41 +00:00
},
{
"type": "doctype",
"name": "Payment Term",
"description": _("Payment Terms based on conditions")
2019-04-22 10:05:13 +00:00
},
2019-02-06 11:32:41 +00:00
# Reports
{
"type": "report",
"name": "Ordered Items To Be Billed",
"is_query_report": True,
"reference_doctype": "Sales Invoice"
},
{
"type": "report",
"name": "Delivered Items To Be Billed",
"is_query_report": True,
"reference_doctype": "Sales Invoice"
},
{
"type": "report",
"name": "Purchase Order Items To Be Billed",
"is_query_report": True,
"reference_doctype": "Purchase Invoice"
},
{
"type": "report",
"name": "Received Items To Be Billed",
"is_query_report": True,
"reference_doctype": "Purchase Invoice"
},
2016-03-08 12:36:21 +00:00
]
},
{
"label": _("Settings"),
2019-02-06 11:32:41 +00:00
"icon": "fa fa-cog",
2016-03-08 12:36:21 +00:00
"items": [
{
"type": "doctype",
2019-02-06 11:32:41 +00:00
"name": "Accounts Settings",
"description": _("Default settings for accounting transactions.")
},
2014-05-08 06:13:18 +00:00
{
"type": "doctype",
2019-02-06 11:32:41 +00:00
"name": "Fiscal Year",
"description": _("Financial / accounting year.")
2014-05-08 06:13:18 +00:00
},
2016-03-08 12:36:21 +00:00
{
2019-02-06 11:32:41 +00:00
"type": "doctype",
"name": "Currency",
"description": _("Enable / disable currencies.")
2016-03-08 12:36:21 +00:00
},
2014-05-08 06:13:18 +00:00
{
"type": "doctype",
2019-02-06 11:32:41 +00:00
"name": "Currency Exchange",
"description": _("Currency exchange rate master.")
2014-05-08 06:13:18 +00:00
},
{
"type": "doctype",
"name": "Exchange Rate Revaluation",
"description": _("Exchange Rate Revaluation master.")
},
{
"type": "doctype",
2019-02-06 11:32:41 +00:00
"name": "Payment Gateway Account",
"description": _("Setup Gateway accounts.")
},
2014-05-08 06:13:18 +00:00
{
"type": "doctype",
2019-02-06 11:32:41 +00:00
"name": "Terms and Conditions",
"label": _("Terms and Conditions Template"),
"description": _("Template of terms or contract.")
},
{
"type": "doctype",
"name": "Mode of Payment",
"description": _("e.g. Bank, Cash, Credit Card")
},
{
"type": "doctype",
"name": "Auto Repeat",
"label": _("Auto Repeat"),
"description": _("To make recurring documents")
},
{
"type": "doctype",
"name": "C-Form",
"description": _("C-Form records"),
"country": "India"
2019-02-07 03:48:24 +00:00
},
{
"type": "doctype",
"name": "Cheque Print Template",
"description": _("Setup cheque dimensions for printing")
},
2016-03-08 12:36:21 +00:00
]
},
{
2019-02-06 11:32:41 +00:00
"label": _("Financial Statements"),
2016-03-08 12:36:21 +00:00
"items": [
2019-02-06 11:32:41 +00:00
{
"type": "report",
"name": "General Ledger",
"doctype": "GL Entry",
"is_query_report": True,
},
{
"type": "report",
"name": "Accounts Receivable",
"doctype": "Sales Invoice",
"is_query_report": True
},
{
"type": "report",
"name": "Accounts Payable",
"doctype": "Purchase Invoice",
"is_query_report": True
},
2016-03-08 12:36:21 +00:00
{
"type": "report",
"name": "Trial Balance",
"doctype": "GL Entry",
"is_query_report": True,
},
{
"type": "report",
"name": "Balance Sheet",
"doctype": "GL Entry",
"is_query_report": True
},
{
"type": "report",
"name": "Cash Flow",
"doctype": "GL Entry",
"is_query_report": True
},
{
"type": "report",
"name": "Profit and Loss Statement",
"doctype": "GL Entry",
"is_query_report": True
2014-05-08 06:13:18 +00:00
},
{
"type": "report",
"name": "Consolidated Financial Statement",
"doctype": "GL Entry",
"is_query_report": True
},
2016-03-08 12:36:21 +00:00
]
},
{
"label": _("Banking and Payments"),
"items": [
2019-02-07 03:48:24 +00:00
{
"type": "doctype",
"label": _("Bank"),
"name": "Bank",
},
{
"type": "doctype",
"label": _("Bank Account"),
"name": "Bank Account",
},
{
"type": "doctype",
"label": _("Invoice Discounting"),
"name": "Invoice Discounting",
},
2019-02-07 03:48:24 +00:00
{
"type": "doctype",
"label": _("Bank Statement Transaction Entry List"),
"name": "Bank Statement Transaction Entry",
"route": "#List/Bank Statement Transaction Entry",
},
{
"type": "doctype",
"label": _("Bank Statement Transaction Entry Report"),
"name": "Bank Statement Transaction Entry",
"route": "#Report/Bank Statement Transaction Entry",
},
{
"type": "doctype",
"label": _("Bank Statement Settings"),
"name": "Bank Statement Settings",
},
2016-03-08 12:36:21 +00:00
{
"type": "doctype",
"label": _("Update Bank Transaction Dates"),
"name": "Bank Reconciliation",
"description": _("Update bank payment dates with journals.")
},
{
"type": "doctype",
"label": _("Match Payments with Invoices"),
"name": "Payment Reconciliation",
"description": _("Match non-linked Invoices and Payments.")
},
{
"type": "report",
"name": "Bank Reconciliation Statement",
"is_query_report": True,
"doctype": "Journal Entry"
},
{
"type": "report",
"name": "Bank Clearance Summary",
"is_query_report": True,
"doctype": "Journal Entry"
},
{
"type": "doctype",
"name": "Bank Guarantee",
"doctype": "Bank Guarantee"
},
2014-05-08 06:13:18 +00:00
]
},
2019-02-07 03:48:24 +00:00
{
"label": _("Cost Center and Budgeting"),
"items": [
{
"type": "doctype",
"name": "Cost Center",
"icon": "fa fa-sitemap",
"label": _("Chart of Cost Centers"),
"route": "#Tree/Cost Center",
"description": _("Tree of financial Cost Centers."),
},
{
"type": "doctype",
"name": "Budget",
"description": _("Define budget for a financial year.")
},
{
"type": "report",
"name": "Budget Variance Report",
"is_query_report": True,
"doctype": "Cost Center"
},
{
"type": "doctype",
"name": "Monthly Distribution",
"description": _("Seasonality for setting budgets, targets etc.")
},
{
"type": "doctype",
"name": "Period Closing Voucher",
"description": _("Close Balance Sheet and book Profit or Loss.")
},
]
},
2014-05-08 06:13:18 +00:00
{
2016-03-08 12:36:21 +00:00
"label": _("Taxes"),
2014-05-08 06:13:18 +00:00
"items": [
{
"type": "doctype",
"name": "Tax Category",
"description": _("Tax Category for overriding tax rates.")
},
{
"type": "doctype",
2016-03-08 12:36:21 +00:00
"name": "Sales Taxes and Charges Template",
"description": _("Tax template for selling transactions.")
},
2014-05-08 06:13:18 +00:00
{
"type": "doctype",
2016-03-08 12:36:21 +00:00
"name": "Purchase Taxes and Charges Template",
"description": _("Tax template for buying transactions.")
2014-05-08 06:13:18 +00:00
},
{
"type": "doctype",
"name": "Item Tax Template",
"description": _("Tax template for item tax rates.")
},
{
"type": "doctype",
2016-03-08 12:36:21 +00:00
"name": "Tax Rule",
"description": _("Tax Rule for transactions.")
},
{
"type": "doctype",
"name": "Tax Withholding Category",
"description": _("Tax Withholding rates to be applied on transactions.")
},
2016-03-08 12:36:21 +00:00
]
},
{
2019-02-07 03:48:24 +00:00
"label": _("Subscription Management"),
"icon": "fa fa-microchip ",
2016-03-08 12:36:21 +00:00
"items": [
2014-05-08 06:13:18 +00:00
{
"type": "doctype",
2019-02-07 03:48:24 +00:00
"name": "Subscriber",
2014-05-08 06:13:18 +00:00
},
{
"type": "doctype",
2019-02-07 03:48:24 +00:00
"name": "Subscription Plan",
2014-05-08 06:13:18 +00:00
},
{
"type": "doctype",
2019-02-07 03:48:24 +00:00
"name": "Subscription"
2014-05-08 06:13:18 +00:00
},
{
"type": "doctype",
2019-02-07 03:48:24 +00:00
"name": "Subscription Settings"
}
2016-03-08 12:36:21 +00:00
]
},
{
2019-02-06 11:32:41 +00:00
"label": _("Key Reports"),
2016-03-08 12:36:21 +00:00
"items": [
2015-09-25 03:47:20 +00:00
{
"type": "report",
2019-02-06 11:32:41 +00:00
"name": "Gross Profit",
"doctype": "Sales Invoice",
"is_query_report": True
2015-09-25 03:47:20 +00:00
},
{
"type": "report",
2019-02-06 11:32:41 +00:00
"name": "Sales Register",
"doctype": "Sales Invoice",
"is_query_report": True
},
2014-05-08 06:13:18 +00:00
{
"type": "report",
2019-02-06 11:32:41 +00:00
"name": "Purchase Register",
"doctype": "Purchase Invoice",
2016-03-08 12:36:21 +00:00
"is_query_report": True
2014-05-08 06:13:18 +00:00
},
{
"type": "report",
2016-03-08 12:36:21 +00:00
"name": "Purchase Invoice Trends",
2014-05-08 06:13:18 +00:00
"is_query_report": True,
"doctype": "Purchase Invoice"
},
{
"type": "report",
2016-03-08 12:36:21 +00:00
"name": "Sales Invoice Trends",
2014-05-08 06:13:18 +00:00
"is_query_report": True,
2016-03-08 12:36:21 +00:00
"doctype": "Sales Invoice"
2014-05-08 06:13:18 +00:00
},
{
"type": "report",
"name": "Item-wise Sales Register",
2014-05-08 06:13:18 +00:00
"is_query_report": True,
"doctype": "Sales Invoice"
},
{
"type": "report",
"name": "Item-wise Purchase Register",
"is_query_report": True,
"doctype": "Purchase Invoice"
2014-05-08 06:13:18 +00:00
},
{
"type": "report",
"name": "Profitability Analysis",
"doctype": "GL Entry",
"is_query_report": True,
},
2014-05-08 06:13:18 +00:00
{
"type": "report",
"name": "Customer Ledger Summary",
"doctype": "Sales Invoice",
2014-05-08 06:13:18 +00:00
"is_query_report": True,
},
{
"type": "report",
"name": "Supplier Ledger Summary",
"doctype": "Sales Invoice",
"is_query_report": True,
}
]
},
{
"label": _("Other Reports"),
"icon": "fa fa-table",
"items": [
{
"type": "report",
"name": "Trial Balance for Party",
"doctype": "GL Entry",
2014-05-08 06:13:18 +00:00
"is_query_report": True,
},
{
"type": "report",
"name": "Payment Period Based On Invoice Date",
2014-05-08 06:13:18 +00:00
"is_query_report": True,
"doctype": "Journal Entry"
2014-05-08 06:13:18 +00:00
},
{
"type": "report",
"name": "Sales Partners Commission",
2014-05-08 06:13:18 +00:00
"is_query_report": True,
"doctype": "Sales Invoice"
2014-05-08 06:13:18 +00:00
},
{
"type": "report",
"name": "Accounts Receivable Summary",
"doctype": "Sales Invoice",
"is_query_report": True
},
{
"type": "report",
"name": "Accounts Payable Summary",
"doctype": "Purchase Invoice",
"is_query_report": True
},
{
"type": "report",
"is_query_report": True,
"name": "Customer Credit Balance",
"doctype": "Customer"
},
2017-11-02 12:23:24 +00:00
{
"type": "report",
"is_query_report": True,
2017-11-03 16:22:07 +00:00
"name": "Sales Payment Summary",
2017-11-02 12:23:24 +00:00
"doctype": "Sales Invoice"
},
{
"type": "report",
"is_query_report": True,
"name": "Address And Contacts",
"doctype": "Address"
2017-11-02 12:23:24 +00:00
}
2014-05-08 06:13:18 +00:00
]
},
Shareholder and related doctypes (#12215) * Added doctypes related to shares - Shareholder doctype, the entity who does the transaction - Share doctype, a child table to kepp list of all shares - Share Transfer doctype, Logs of all made transactions * Added logic for share transfer - update shareholder automatically on share transfer/issue/purchase - purchase and transfer have method remove_share which doesn't get executed because of some bug * Added report view for share ledger * Removed share number tracking - removed share number tracking from Share Ledger child table for Shareholder doctype - new doctype Share Type created * Share Balance report added - math behind Share Balance report needs fixing * Changes in shareholder - Share numbers are not tracked in Shareholder - Share Ledger doctype deleted - Share Balance Report bug fixed * Shareholder - fixed report for share balance - remove bug from share transfer by making share type mandatory - added buttons to shareholder for direct link to report * Added tests for Share Transfer * minor codacy fixes * Added Shareholder to Party Type * rate in share ledger & balance report is currency * First attempt at modelling shares after Item * Share Manager changes - on creation of shareholder party it should check if the same combo exists - in shareholder party make report button visible iff folio no exists - create folio no on creation of share transfer iff it doesnt already exist - move reports from shareholder to shareholder party * Shareholder chages - delete share child table doctype - autoname added to folio no - modify tests for share transfer * minor changes * removed share_no child doctype * Restructured Share Transfer Logic (not tested) - Everything revolves around Share Balance child table in Shareholder Party - is_company flag still to be utilized * Tested Share Tranfer * minor fixes * started new shareholder structure * modified shareholder * renamed Shareholder Party to Shareholder * Shareholder rewrite complete * new tests for shareholder written * codacy fixes * Added documentation
2018-02-12 06:02:47 +00:00
{
"label": _("Share Management"),
"icon": "fa fa-microchip ",
"items": [
{
"type": "doctype",
"name": "Shareholder",
Shareholder and related doctypes (#12215) * Added doctypes related to shares - Shareholder doctype, the entity who does the transaction - Share doctype, a child table to kepp list of all shares - Share Transfer doctype, Logs of all made transactions * Added logic for share transfer - update shareholder automatically on share transfer/issue/purchase - purchase and transfer have method remove_share which doesn't get executed because of some bug * Added report view for share ledger * Removed share number tracking - removed share number tracking from Share Ledger child table for Shareholder doctype - new doctype Share Type created * Share Balance report added - math behind Share Balance report needs fixing * Changes in shareholder - Share numbers are not tracked in Shareholder - Share Ledger doctype deleted - Share Balance Report bug fixed * Shareholder - fixed report for share balance - remove bug from share transfer by making share type mandatory - added buttons to shareholder for direct link to report * Added tests for Share Transfer * minor codacy fixes * Added Shareholder to Party Type * rate in share ledger & balance report is currency * First attempt at modelling shares after Item * Share Manager changes - on creation of shareholder party it should check if the same combo exists - in shareholder party make report button visible iff folio no exists - create folio no on creation of share transfer iff it doesnt already exist - move reports from shareholder to shareholder party * Shareholder chages - delete share child table doctype - autoname added to folio no - modify tests for share transfer * minor changes * removed share_no child doctype * Restructured Share Transfer Logic (not tested) - Everything revolves around Share Balance child table in Shareholder Party - is_company flag still to be utilized * Tested Share Tranfer * minor fixes * started new shareholder structure * modified shareholder * renamed Shareholder Party to Shareholder * Shareholder rewrite complete * new tests for shareholder written * codacy fixes * Added documentation
2018-02-12 06:02:47 +00:00
"description": _("List of available Shareholders with folio numbers")
},
{
"type": "doctype",
"name": "Share Transfer",
Shareholder and related doctypes (#12215) * Added doctypes related to shares - Shareholder doctype, the entity who does the transaction - Share doctype, a child table to kepp list of all shares - Share Transfer doctype, Logs of all made transactions * Added logic for share transfer - update shareholder automatically on share transfer/issue/purchase - purchase and transfer have method remove_share which doesn't get executed because of some bug * Added report view for share ledger * Removed share number tracking - removed share number tracking from Share Ledger child table for Shareholder doctype - new doctype Share Type created * Share Balance report added - math behind Share Balance report needs fixing * Changes in shareholder - Share numbers are not tracked in Shareholder - Share Ledger doctype deleted - Share Balance Report bug fixed * Shareholder - fixed report for share balance - remove bug from share transfer by making share type mandatory - added buttons to shareholder for direct link to report * Added tests for Share Transfer * minor codacy fixes * Added Shareholder to Party Type * rate in share ledger & balance report is currency * First attempt at modelling shares after Item * Share Manager changes - on creation of shareholder party it should check if the same combo exists - in shareholder party make report button visible iff folio no exists - create folio no on creation of share transfer iff it doesnt already exist - move reports from shareholder to shareholder party * Shareholder chages - delete share child table doctype - autoname added to folio no - modify tests for share transfer * minor changes * removed share_no child doctype * Restructured Share Transfer Logic (not tested) - Everything revolves around Share Balance child table in Shareholder Party - is_company flag still to be utilized * Tested Share Tranfer * minor fixes * started new shareholder structure * modified shareholder * renamed Shareholder Party to Shareholder * Shareholder rewrite complete * new tests for shareholder written * codacy fixes * Added documentation
2018-02-12 06:02:47 +00:00
"description": _("List of all share transactions"),
},
{
"type": "report",
"name": "Share Ledger",
"doctype": "Share Transfer",
"is_query_report": True
},
{
"type": "report",
"name": "Share Balance",
"doctype": "Share Transfer",
"is_query_report": True
}
]
},
{
"label": _("Help"),
2016-12-07 05:38:48 +00:00
"icon": "fa fa-facetime-video",
"items": [
{
"type": "help",
"label": _("Chart of Accounts"),
"youtube_id": "DyR-DST-PyA"
},
{
"type": "help",
"label": _("Opening Accounting Balance"),
"youtube_id": "kdgM20Q-q68"
},
{
"type": "help",
"label": _("Setting up Taxes"),
"youtube_id": "nQ1zZdPgdaQ"
}
]
}
2014-05-08 06:13:18 +00:00
]
2019-01-24 01:45:53 +00:00
gst = {
"label": _("Goods and Services Tax (GST India)"),
"items": [
{
"type": "doctype",
"name": "GST Settings",
},
{
"type": "doctype",
"name": "GST HSN Code",
},
{
"type": "report",
"name": "GSTR-1",
"is_query_report": True
},
{
"type": "report",
"name": "GSTR-2",
"is_query_report": True
},
feat: GSTR3B Report JSON creation and Print Format (#16595) * feat: Created doctype for GSTR3B report and added boilerplate code * feat: Updated gst_fields and patches for gst_category * feat: Functions for calculating itc amount * fix: Patched eligibility_for_itc_field * fix: Updated set_category for gst * fix: Function for setting iter_state supplies * fix: Changed route to regional module, minor fix in inster_state_supply grouping and fixes in print format * fix(style): Added missing semicolon and removed unused imports * fix: Patch field only if column is available * fix: Make custom fields only for india sepecific company * fix: Add intro to gstr3b report * fix: Updated patch in patches.txt * fix: Update patches.txt * fix: Update patch to set GST Category * fix: Add fields for nil rated and non gst in item master * fix: Added logic for nil rated and non gst inward flow * fix: Initial test case for GSTR3B Report * fix: Codacy fixes * fix: Test Case fixes * fix: Add link for gstr_3b_report in accounting module * fix: Updated report template * fix: Changes in GSTR3B Report doctype * fix: Added function to get missing field invoices * fix: Added more test cases * fix: Item not found error in test case * fix: Key error in state numbers * fix: Changes in GSTR3b Doctype * fix: Changed functions to method * fix: Minor fix in patch * fix: Add gst_ctegory in GST Reports * fix: Minor fixes in patch and itc_mapping * fix: Query to patch itc field * fix: Patch registered customers and fix for multiple gst accounts * fix: Test case * fix: Total taxable calculation logic fix and template enhancement * fix: Calculate txval seperately * fix: itc amount calculation fix and patch improvement * fix: Updated test_cases for itc calculation * fix: Missing field query * fix: Multiple minor fixes inreport * fix: Added transalations in GSTR3B-Form * fix: Use double underscore for translation * fix: GST fields ordering fix * fix: Print form precision fix and get_period function fix
2019-03-21 15:17:47 +00:00
{
"type": "doctype",
"name": "GSTR 3B Report",
},
{
"type": "report",
"name": "GST Sales Register",
"is_query_report": True
},
{
"type": "report",
"name": "GST Purchase Register",
"is_query_report": True
},
{
"type": "report",
"name": "GST Itemised Sales Register",
"is_query_report": True
},
{
"type": "report",
"name": "GST Itemised Purchase Register",
"is_query_report": True
},
]
}
2019-01-24 01:45:53 +00:00
countries = frappe.get_all("Company", fields="country")
countries = [country["country"] for country in countries]
if "India" in countries:
config.insert(7, gst)
domains = frappe.get_active_domains()
return config