-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36879 from ruthra-kumar/unreconcile_feature
feat: Unreconcile Payments
- Loading branch information
Showing
18 changed files
with
1,005 additions
and
64 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.
83 changes: 83 additions & 0 deletions
83
erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.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,83 @@ | ||
{ | ||
"actions": [], | ||
"allow_rename": 1, | ||
"creation": "2023-08-22 10:28:10.196712", | ||
"doctype": "DocType", | ||
"editable_grid": 1, | ||
"engine": "InnoDB", | ||
"field_order": [ | ||
"account", | ||
"party_type", | ||
"party", | ||
"reference_doctype", | ||
"reference_name", | ||
"allocated_amount", | ||
"account_currency", | ||
"unlinked" | ||
], | ||
"fields": [ | ||
{ | ||
"fieldname": "reference_name", | ||
"fieldtype": "Dynamic Link", | ||
"in_list_view": 1, | ||
"label": "Reference Name", | ||
"options": "reference_doctype" | ||
}, | ||
{ | ||
"fieldname": "allocated_amount", | ||
"fieldtype": "Currency", | ||
"in_list_view": 1, | ||
"label": "Allocated Amount", | ||
"options": "account_currency" | ||
}, | ||
{ | ||
"default": "0", | ||
"fieldname": "unlinked", | ||
"fieldtype": "Check", | ||
"in_list_view": 1, | ||
"label": "Unlinked", | ||
"read_only": 1 | ||
}, | ||
{ | ||
"fieldname": "reference_doctype", | ||
"fieldtype": "Link", | ||
"in_list_view": 1, | ||
"label": "Reference Type", | ||
"options": "DocType" | ||
}, | ||
{ | ||
"fieldname": "account", | ||
"fieldtype": "Data", | ||
"label": "Account" | ||
}, | ||
{ | ||
"fieldname": "party_type", | ||
"fieldtype": "Data", | ||
"label": "Party Type" | ||
}, | ||
{ | ||
"fieldname": "party", | ||
"fieldtype": "Data", | ||
"label": "Party" | ||
}, | ||
{ | ||
"fieldname": "account_currency", | ||
"fieldtype": "Link", | ||
"label": "Account Currency", | ||
"options": "Currency", | ||
"read_only": 1 | ||
} | ||
], | ||
"index_web_pages_for_search": 1, | ||
"istable": 1, | ||
"links": [], | ||
"modified": "2023-09-05 09:33:28.620149", | ||
"modified_by": "Administrator", | ||
"module": "Accounts", | ||
"name": "Unreconcile Payment Entries", | ||
"owner": "Administrator", | ||
"permissions": [], | ||
"sort_field": "modified", | ||
"sort_order": "DESC", | ||
"states": [] | ||
} |
9 changes: 9 additions & 0 deletions
9
erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.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 UnreconcilePaymentEntries(Document): | ||
pass |
Empty file.
Oops, something went wrong.