forked from frappe/erpnext
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'version-12-hotfix' into version-12
- Loading branch information
Showing
37 changed files
with
772 additions
and
1,687 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
67 changes: 67 additions & 0 deletions
67
erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"creation": "2019-07-16 17:53:18.718831", | ||
"doctype": "DocType", | ||
"editable_grid": 1, | ||
"engine": "InnoDB", | ||
"field_order": [ | ||
"company", | ||
"reference_document", | ||
"default_dimension", | ||
"mandatory_for_bs", | ||
"mandatory_for_pl" | ||
], | ||
"fields": [ | ||
{ | ||
"columns": 2, | ||
"fieldname": "company", | ||
"fieldtype": "Link", | ||
"in_list_view": 1, | ||
"label": "Company", | ||
"options": "Company", | ||
"reqd": 1 | ||
}, | ||
{ | ||
"fieldname": "reference_document", | ||
"fieldtype": "Link", | ||
"hidden": 1, | ||
"label": "Reference Document", | ||
"options": "DocType", | ||
"read_only": 1 | ||
}, | ||
{ | ||
"columns": 2, | ||
"fieldname": "default_dimension", | ||
"fieldtype": "Dynamic Link", | ||
"in_list_view": 1, | ||
"label": "Default Dimension", | ||
"options": "reference_document", | ||
"reqd": 1 | ||
}, | ||
{ | ||
"columns": 3, | ||
"default": "0", | ||
"fieldname": "mandatory_for_bs", | ||
"fieldtype": "Check", | ||
"in_list_view": 1, | ||
"label": "Mandatory For Balance Sheet" | ||
}, | ||
{ | ||
"columns": 3, | ||
"default": "0", | ||
"fieldname": "mandatory_for_pl", | ||
"fieldtype": "Check", | ||
"in_list_view": 1, | ||
"label": "Mandatory For Profit and Loss Account" | ||
} | ||
], | ||
"istable": 1, | ||
"modified": "2019-07-17 23:34:33.026883", | ||
"modified_by": "Administrator", | ||
"module": "Accounts", | ||
"name": "Accounting Dimension Detail", | ||
"owner": "Administrator", | ||
"permissions": [], | ||
"sort_field": "modified", | ||
"sort_order": "DESC", | ||
"track_changes": 1 | ||
} |
10 changes: 10 additions & 0 deletions
10
erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and contributors | ||
# For license information, please see license.txt | ||
|
||
from __future__ import unicode_literals | ||
# import frappe | ||
from frappe.model.document import Document | ||
|
||
class AccountingDimensionDetail(Document): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.