mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-11 22:38:25 +00:00
feat: added Transfer and Issue option in purpose
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
"fieldname": "purpose",
|
||||
"fieldtype": "Select",
|
||||
"label": "Purpose",
|
||||
"options": "\nIssue\nReceipt\nTransfer",
|
||||
"options": "\nIssue\nReceipt\nTransfer\nTransfer and Issue",
|
||||
"reqd": 1
|
||||
},
|
||||
{
|
||||
@@ -93,10 +93,11 @@
|
||||
"fieldtype": "Column Break"
|
||||
}
|
||||
],
|
||||
"grid_page_length": 50,
|
||||
"index_web_pages_for_search": 1,
|
||||
"is_submittable": 1,
|
||||
"links": [],
|
||||
"modified": "2024-03-27 13:06:35.116228",
|
||||
"modified": "2025-05-30 17:01:55.864353",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Assets",
|
||||
"name": "Asset Movement",
|
||||
@@ -149,7 +150,8 @@
|
||||
"write": 1
|
||||
}
|
||||
],
|
||||
"row_format": "Dynamic",
|
||||
"sort_field": "creation",
|
||||
"sort_order": "DESC",
|
||||
"states": []
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ class AssetMovement(Document):
|
||||
amended_from: DF.Link | None
|
||||
assets: DF.Table[AssetMovementItem]
|
||||
company: DF.Link
|
||||
purpose: DF.Literal["", "Issue", "Receipt", "Transfer"]
|
||||
purpose: DF.Literal["", "Issue", "Receipt", "Transfer", "Transfer and Issue"]
|
||||
reference_doctype: DF.Link | None
|
||||
reference_name: DF.DynamicLink | None
|
||||
transaction_date: DF.Datetime
|
||||
|
||||
Reference in New Issue
Block a user