feat: add difference_posting_date field

This commit is contained in:
rs-rethik
2024-12-20 12:07:20 +05:30
parent 878f76455b
commit 225e56cbca
4 changed files with 26 additions and 8 deletions

View File

@@ -14,7 +14,8 @@
"advance_amount", "advance_amount",
"allocated_amount", "allocated_amount",
"exchange_gain_loss", "exchange_gain_loss",
"ref_exchange_rate" "ref_exchange_rate",
"difference_posting_date"
], ],
"fields": [ "fields": [
{ {
@@ -30,7 +31,7 @@
"width": "180px" "width": "180px"
}, },
{ {
"columns": 3, "columns": 2,
"fieldname": "reference_name", "fieldname": "reference_name",
"fieldtype": "Dynamic Link", "fieldtype": "Dynamic Link",
"in_list_view": 1, "in_list_view": 1,
@@ -40,7 +41,7 @@
"read_only": 1 "read_only": 1
}, },
{ {
"columns": 3, "columns": 2,
"fieldname": "remarks", "fieldname": "remarks",
"fieldtype": "Text", "fieldtype": "Text",
"in_list_view": 1, "in_list_view": 1,
@@ -111,13 +112,20 @@
"label": "Reference Exchange Rate", "label": "Reference Exchange Rate",
"non_negative": 1, "non_negative": 1,
"read_only": 1 "read_only": 1
},
{
"columns": 2,
"fieldname": "difference_posting_date",
"fieldtype": "Date",
"in_list_view": 1,
"label": "Difference Posting Date"
} }
], ],
"idx": 1, "idx": 1,
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"istable": 1, "istable": 1,
"links": [], "links": [],
"modified": "2024-03-27 13:10:24.072896", "modified": "2024-12-20 12:04:46.729972",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Accounts", "module": "Accounts",
"name": "Purchase Invoice Advance", "name": "Purchase Invoice Advance",

View File

@@ -16,6 +16,7 @@ class PurchaseInvoiceAdvance(Document):
advance_amount: DF.Currency advance_amount: DF.Currency
allocated_amount: DF.Currency allocated_amount: DF.Currency
difference_posting_date: DF.Date | None
exchange_gain_loss: DF.Currency exchange_gain_loss: DF.Currency
parent: DF.Data parent: DF.Data
parentfield: DF.Data parentfield: DF.Data

View File

@@ -14,7 +14,8 @@
"advance_amount", "advance_amount",
"allocated_amount", "allocated_amount",
"exchange_gain_loss", "exchange_gain_loss",
"ref_exchange_rate" "ref_exchange_rate",
"difference_posting_date"
], ],
"fields": [ "fields": [
{ {
@@ -30,7 +31,7 @@
"width": "250px" "width": "250px"
}, },
{ {
"columns": 3, "columns": 2,
"fieldname": "reference_name", "fieldname": "reference_name",
"fieldtype": "Dynamic Link", "fieldtype": "Dynamic Link",
"in_list_view": 1, "in_list_view": 1,
@@ -41,7 +42,7 @@
"read_only": 1 "read_only": 1
}, },
{ {
"columns": 3, "columns": 2,
"fieldname": "remarks", "fieldname": "remarks",
"fieldtype": "Text", "fieldtype": "Text",
"in_list_view": 1, "in_list_view": 1,
@@ -112,13 +113,20 @@
"label": "Reference Exchange Rate", "label": "Reference Exchange Rate",
"non_negative": 1, "non_negative": 1,
"read_only": 1 "read_only": 1
},
{
"columns": 2,
"fieldname": "difference_posting_date",
"fieldtype": "Date",
"in_list_view": 1,
"label": "Difference Posting Date"
} }
], ],
"idx": 1, "idx": 1,
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"istable": 1, "istable": 1,
"links": [], "links": [],
"modified": "2024-03-27 13:10:36.003704", "modified": "2024-12-20 11:58:28.962370",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Accounts", "module": "Accounts",
"name": "Sales Invoice Advance", "name": "Sales Invoice Advance",

View File

@@ -16,6 +16,7 @@ class SalesInvoiceAdvance(Document):
advance_amount: DF.Currency advance_amount: DF.Currency
allocated_amount: DF.Currency allocated_amount: DF.Currency
difference_posting_date: DF.Date | None
exchange_gain_loss: DF.Currency exchange_gain_loss: DF.Currency
parent: DF.Data parent: DF.Data
parentfield: DF.Data parentfield: DF.Data