-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: make purchase invoice from irn
- Loading branch information
Showing
9 changed files
with
434 additions
and
2 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
Empty file.
8 changes: 8 additions & 0 deletions
8
india_compliance/gst_india/doctype/e_invoice_mapping/e_invoice_mapping.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) 2024, Resilient Tech and contributors | ||
// For license information, please see license.txt | ||
|
||
// frappe.ui.form.on("e-Invoice Mapping", { | ||
// refresh(frm) { | ||
|
||
// }, | ||
// }); |
72 changes: 72 additions & 0 deletions
72
india_compliance/gst_india/doctype/e_invoice_mapping/e_invoice_mapping.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,72 @@ | ||
{ | ||
"actions": [], | ||
"allow_rename": 1, | ||
"creation": "2024-09-20 15:05:52.401445", | ||
"doctype": "DocType", | ||
"engine": "InnoDB", | ||
"field_order": [ | ||
"party_type", | ||
"party", | ||
"erpnext_fieldname", | ||
"erpnext_value", | ||
"log_value" | ||
], | ||
"fields": [ | ||
{ | ||
"fieldname": "party_type", | ||
"fieldtype": "Link", | ||
"in_list_view": 1, | ||
"label": "Party Type", | ||
"options": "DocType" | ||
}, | ||
{ | ||
"fieldname": "party", | ||
"fieldtype": "Dynamic Link", | ||
"in_list_view": 1, | ||
"label": "Party", | ||
"options": "party_type" | ||
}, | ||
{ | ||
"fieldname": "erpnext_fieldname", | ||
"fieldtype": "Data", | ||
"in_list_view": 1, | ||
"label": "Erpnext Fieldname" | ||
}, | ||
{ | ||
"fieldname": "erpnext_value", | ||
"fieldtype": "Data", | ||
"in_list_view": 1, | ||
"label": "Erpnext Value" | ||
}, | ||
{ | ||
"fieldname": "log_value", | ||
"fieldtype": "Data", | ||
"in_list_view": 1, | ||
"label": "Log Value" | ||
} | ||
], | ||
"index_web_pages_for_search": 1, | ||
"links": [], | ||
"modified": "2024-09-20 15:09:27.296167", | ||
"modified_by": "Administrator", | ||
"module": "GST India", | ||
"name": "e-Invoice Mapping", | ||
"owner": "Administrator", | ||
"permissions": [ | ||
{ | ||
"create": 1, | ||
"delete": 1, | ||
"email": 1, | ||
"export": 1, | ||
"print": 1, | ||
"read": 1, | ||
"report": 1, | ||
"role": "System Manager", | ||
"share": 1, | ||
"write": 1 | ||
} | ||
], | ||
"sort_field": "creation", | ||
"sort_order": "DESC", | ||
"states": [] | ||
} |
9 changes: 9 additions & 0 deletions
9
india_compliance/gst_india/doctype/e_invoice_mapping/e_invoice_mapping.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) 2024, Resilient Tech and contributors | ||
# For license information, please see license.txt | ||
|
||
# import frappe | ||
from frappe.model.document import Document | ||
|
||
|
||
class eInvoiceMapping(Document): | ||
pass |
9 changes: 9 additions & 0 deletions
9
india_compliance/gst_india/doctype/e_invoice_mapping/test_e_invoice_mapping.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) 2024, Resilient Tech and Contributors | ||
# See license.txt | ||
|
||
# import frappe | ||
from frappe.tests.utils import FrappeTestCase | ||
|
||
|
||
class TesteInvoiceMapping(FrappeTestCase): | ||
pass |
Oops, something went wrong.