mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-21 16:02:15 +00:00
fix: Data too long for column 'stock_queue' (#40436)
(cherry picked from commit cd79dcccb6)
Co-authored-by: rohitwaghchaure <rohitw1991@gmail.com>
This commit is contained in:
@@ -230,7 +230,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "stock_queue",
|
"fieldname": "stock_queue",
|
||||||
"fieldtype": "Text",
|
"fieldtype": "Long Text",
|
||||||
"label": "FIFO Stock Queue (qty, rate)",
|
"label": "FIFO Stock Queue (qty, rate)",
|
||||||
"oldfieldname": "fcfs_stack",
|
"oldfieldname": "fcfs_stack",
|
||||||
"oldfieldtype": "Text",
|
"oldfieldtype": "Text",
|
||||||
@@ -360,7 +360,7 @@
|
|||||||
"in_create": 1,
|
"in_create": 1,
|
||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2024-02-07 09:18:13.999231",
|
"modified": "2024-03-13 09:56:13.021696",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Stock",
|
"module": "Stock",
|
||||||
"name": "Stock Ledger Entry",
|
"name": "Stock Ledger Entry",
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ class StockLedgerEntry(Document):
|
|||||||
recalculate_rate: DF.Check
|
recalculate_rate: DF.Check
|
||||||
serial_and_batch_bundle: DF.Link | None
|
serial_and_batch_bundle: DF.Link | None
|
||||||
serial_no: DF.LongText | None
|
serial_no: DF.LongText | None
|
||||||
stock_queue: DF.Text | None
|
stock_queue: DF.LongText | None
|
||||||
stock_uom: DF.Link | None
|
stock_uom: DF.Link | None
|
||||||
stock_value: DF.Currency
|
stock_value: DF.Currency
|
||||||
stock_value_difference: DF.Currency
|
stock_value_difference: DF.Currency
|
||||||
|
|||||||
Reference in New Issue
Block a user