feat: Introduce opening entry for reporting

This commit is contained in:
Deepesh Garg 2023-02-21 23:20:28 +05:30
parent 9739d8b52a
commit b44a19bd1a
5 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
// Copyright (c) 2023, Frappe Technologies Pvt. Ltd. and contributors
// For license information, please see license.txt
// frappe.ui.form.on("Opening Entry", {
// frappe.ui.form.on("Closing Balance", {
// refresh(frm) {
// },

View File

@ -235,7 +235,7 @@
"modified": "2023-02-21 15:20:59.586811",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Opening Entry",
"name": "Closing Balance",
"owner": "Administrator",
"permissions": [
{

View File

@ -5,5 +5,5 @@
from frappe.model.document import Document
class OpeningEntry(Document):
class ClosingBalance(Document):
pass

View File

@ -5,5 +5,5 @@
from frappe.tests.utils import FrappeTestCase
class TestOpeningEntry(FrappeTestCase):
class TestClosingBalance(FrappeTestCase):
pass