-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb4c476
commit decdbd2
Showing
5 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
8 changes: 8 additions & 0 deletions
8
erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js
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,8 @@ | ||
// Copyright (c) 2023, Frappe Technologies Pvt. Ltd. and contributors | ||
// For license information, please see license.txt | ||
|
||
// frappe.ui.form.on("Bisect Accounting Statements", { | ||
// refresh(frm) { | ||
|
||
// }, | ||
// }); |
54 changes: 54 additions & 0 deletions
54
erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.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,54 @@ | ||
{ | ||
"actions": [], | ||
"allow_rename": 1, | ||
"creation": "2023-09-15 21:28:28.054773", | ||
"default_view": "List", | ||
"doctype": "DocType", | ||
"editable_grid": 1, | ||
"engine": "InnoDB", | ||
"field_order": [ | ||
"from", | ||
"column_break_qxbi", | ||
"to" | ||
], | ||
"fields": [ | ||
{ | ||
"fieldname": "from", | ||
"fieldtype": "Date", | ||
"label": "From" | ||
}, | ||
{ | ||
"fieldname": "to", | ||
"fieldtype": "Date", | ||
"label": "To" | ||
}, | ||
{ | ||
"fieldname": "column_break_qxbi", | ||
"fieldtype": "Column Break" | ||
} | ||
], | ||
"hide_toolbar": 1, | ||
"index_web_pages_for_search": 1, | ||
"issingle": 1, | ||
"links": [], | ||
"modified": "2023-09-15 21:36:21.516679", | ||
"modified_by": "Administrator", | ||
"module": "Accounts", | ||
"name": "Bisect Accounting Statements", | ||
"owner": "Administrator", | ||
"permissions": [ | ||
{ | ||
"create": 1, | ||
"delete": 1, | ||
"email": 1, | ||
"print": 1, | ||
"read": 1, | ||
"role": "System Manager", | ||
"share": 1, | ||
"write": 1 | ||
} | ||
], | ||
"sort_field": "modified", | ||
"sort_order": "DESC", | ||
"states": [] | ||
} |
9 changes: 9 additions & 0 deletions
9
erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.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,9 @@ | ||
# Copyright (c) 2023, Frappe Technologies Pvt. Ltd. and contributors | ||
# For license information, please see license.txt | ||
|
||
# import frappe | ||
from frappe.model.document import Document | ||
|
||
|
||
class BisectAccountingStatements(Document): | ||
pass |
9 changes: 9 additions & 0 deletions
9
erpnext/accounts/doctype/bisect_accounting_statements/test_bisect_accounting_statements.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,9 @@ | ||
# Copyright (c) 2023, Frappe Technologies Pvt. Ltd. and Contributors | ||
# See license.txt | ||
|
||
# import frappe | ||
from frappe.tests.utils import FrappeTestCase | ||
|
||
|
||
class TestBisectAccountingStatements(FrappeTestCase): | ||
pass |