From 69feb16b96f05e2008ebf771b3f64e7236dd450f Mon Sep 17 00:00:00 2001 From: Kitti U Date: Sun, 30 Jul 2023 13:53:26 +0700 Subject: [PATCH] / --- .../__init__.py | 0 .../journal_entry_tax_invoice_detail.json | 74 +++++++++++++++++++ .../journal_entry_tax_invoice_detail.py | 9 +++ 3 files changed, 83 insertions(+) create mode 100644 thai_tax/thai_tax/doctype/journal_entry_tax_invoice_detail/__init__.py create mode 100644 thai_tax/thai_tax/doctype/journal_entry_tax_invoice_detail/journal_entry_tax_invoice_detail.json create mode 100644 thai_tax/thai_tax/doctype/journal_entry_tax_invoice_detail/journal_entry_tax_invoice_detail.py diff --git a/thai_tax/thai_tax/doctype/journal_entry_tax_invoice_detail/__init__.py b/thai_tax/thai_tax/doctype/journal_entry_tax_invoice_detail/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/thai_tax/thai_tax/doctype/journal_entry_tax_invoice_detail/journal_entry_tax_invoice_detail.json b/thai_tax/thai_tax/doctype/journal_entry_tax_invoice_detail/journal_entry_tax_invoice_detail.json new file mode 100644 index 0000000..271e7b6 --- /dev/null +++ b/thai_tax/thai_tax/doctype/journal_entry_tax_invoice_detail/journal_entry_tax_invoice_detail.json @@ -0,0 +1,74 @@ +{ + "actions": [], + "allow_rename": 1, + "creation": "2023-07-30 10:00:38.519032", + "doctype": "DocType", + "editable_grid": 1, + "engine": "InnoDB", + "field_order": [ + "company_tax_address", + "supplier", + "tax_invoice_number", + "tax_invoice_date", + "tax_base_amount", + "tax_amount" + ], + "fields": [ + { + "fieldname": "company_tax_address", + "fieldtype": "Link", + "label": "Company Tax Address", + "options": "Address" + }, + { + "fieldname": "supplier", + "fieldtype": "Link", + "in_list_view": 1, + "label": "Supplier", + "options": "Supplier" + }, + { + "allow_on_submit": 1, + "fieldname": "tax_invoice_number", + "fieldtype": "Data", + "in_list_view": 1, + "in_standard_filter": 1, + "label": "Tax Invoice Number" + }, + { + "allow_on_submit": 1, + "fieldname": "tax_invoice_date", + "fieldtype": "Date", + "in_list_view": 1, + "label": "Tax Invoice Date" + }, + { + "fieldname": "tax_base_amount", + "fieldtype": "Float", + "in_list_view": 1, + "label": "Tax Base Amount", + "precision": "2", + "read_only": 1 + }, + { + "fieldname": "tax_amount", + "fieldtype": "Float", + "in_list_view": 1, + "label": "Tax Amount", + "precision": "2", + "read_only": 1 + } + ], + "index_web_pages_for_search": 1, + "istable": 1, + "links": [], + "modified": "2023-07-30 13:53:14.465463", + "modified_by": "Administrator", + "module": "Thai Tax", + "name": "Journal Entry Tax Invoice Detail", + "owner": "Administrator", + "permissions": [], + "sort_field": "modified", + "sort_order": "DESC", + "states": [] +} \ No newline at end of file diff --git a/thai_tax/thai_tax/doctype/journal_entry_tax_invoice_detail/journal_entry_tax_invoice_detail.py b/thai_tax/thai_tax/doctype/journal_entry_tax_invoice_detail/journal_entry_tax_invoice_detail.py new file mode 100644 index 0000000..f10b152 --- /dev/null +++ b/thai_tax/thai_tax/doctype/journal_entry_tax_invoice_detail/journal_entry_tax_invoice_detail.py @@ -0,0 +1,9 @@ +# Copyright (c) 2023, Kitti U. and contributors +# For license information, please see license.txt + +# import frappe +from frappe.model.document import Document + + +class JournalEntryTaxInvoiceDetail(Document): + pass