mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-22 11:44:11 +00:00
fix: letter head for quality inspection
(cherry picked from commit cdd41373b6)
This commit is contained in:
committed by
Mergify
parent
f8839957da
commit
c289fef3b5
@@ -34,7 +34,9 @@
|
|||||||
"verified_by",
|
"verified_by",
|
||||||
"column_break_17",
|
"column_break_17",
|
||||||
"remarks",
|
"remarks",
|
||||||
"amended_from"
|
"amended_from",
|
||||||
|
"print_settings_section",
|
||||||
|
"letter_head"
|
||||||
],
|
],
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
@@ -255,6 +257,20 @@
|
|||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"label": "Company",
|
"label": "Company",
|
||||||
"options": "Company"
|
"options": "Company"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "print_settings_section",
|
||||||
|
"fieldtype": "Section Break",
|
||||||
|
"label": "Print Settings"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"allow_on_submit": 1,
|
||||||
|
"fetch_from": "company.default_letter_head",
|
||||||
|
"fetch_if_empty": 1,
|
||||||
|
"fieldname": "letter_head",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"label": "Letter Head",
|
||||||
|
"options": "Letter Head"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"icon": "fa fa-search",
|
"icon": "fa fa-search",
|
||||||
@@ -262,7 +278,7 @@
|
|||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2025-01-16 17:00:48.774532",
|
"modified": "2025-02-17 13:20:17.583094",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Stock",
|
"module": "Stock",
|
||||||
"name": "Quality Inspection",
|
"name": "Quality Inspection",
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ class QualityInspection(Document):
|
|||||||
item_code: DF.Link
|
item_code: DF.Link
|
||||||
item_name: DF.Data | None
|
item_name: DF.Data | None
|
||||||
item_serial_no: DF.Link | None
|
item_serial_no: DF.Link | None
|
||||||
|
letter_head: DF.Link | None
|
||||||
manual_inspection: DF.Check
|
manual_inspection: DF.Check
|
||||||
naming_series: DF.Literal["MAT-QA-.YYYY.-"]
|
naming_series: DF.Literal["MAT-QA-.YYYY.-"]
|
||||||
quality_inspection_template: DF.Link | None
|
quality_inspection_template: DF.Link | None
|
||||||
|
|||||||
Reference in New Issue
Block a user