Add 'Shelf Life' (Item) and Manufacturing date (Batch) (#12381)
* fix bug in batch number selector. fetch and display batch numbers only for the given item code. * remove print statement * Fix error on selecting Chattisgarh in address Fix error on selecting Chattisgarh in address because of spelling mistake * Revert "Fix error on selecting Chattisgarh in address" * Add Shelf Life (Item) and Manufacturing Date (Batch) fields * remove console.log * fix ci issues * Update batch.js
This commit is contained in:
		
							parent
							
								
									47ad7fb129
								
							
						
					
					
						commit
						24e2735e19
					
				| @ -147,3 +147,11 @@ frappe.ui.form.on('Batch', { | |||||||
| 	} | 	} | ||||||
| }) | }) | ||||||
| 
 | 
 | ||||||
|  | frappe.ui.form.on('Batch', 'manufacturing_date', function (frm){ | ||||||
|  | 	frappe.db.get_value('Item', {name: frm.doc.item}, ['shelf_life_in_days', 'has_expiry_date'], (r) => { | ||||||
|  | 		if (r.has_expiry_date && r.shelf_life_in_days) { | ||||||
|  | 			// Calculate expiry date based on shelf_life_in_days
 | ||||||
|  | 			frm.set_value('expiry_date', frappe.datetime.add_days(frm.doc.manufacturing_date, r.shelf_life_in_days)); | ||||||
|  | 		} | ||||||
|  | 	}) | ||||||
|  | }) | ||||||
|  | |||||||
| @ -1,463 +1,493 @@ | |||||||
| { | { | ||||||
|  "allow_copy": 0, |  "allow_copy": 0,  | ||||||
|  "allow_guest_to_view": 0, |  "allow_guest_to_view": 0,  | ||||||
|  "allow_import": 1, |  "allow_import": 1,  | ||||||
|  "allow_rename": 0, |  "allow_rename": 0,  | ||||||
|  "autoname": "", |  "autoname": "",  | ||||||
|  "beta": 0, |  "beta": 0,  | ||||||
|  "creation": "2013-03-05 14:50:38", |  "creation": "2013-03-05 14:50:38",  | ||||||
|  "custom": 0, |  "custom": 0,  | ||||||
|  "docstatus": 0, |  "docstatus": 0,  | ||||||
|  "doctype": "DocType", |  "doctype": "DocType",  | ||||||
|  "document_type": "Setup", |  "document_type": "Setup",  | ||||||
|  "editable_grid": 0, |  "editable_grid": 0,  | ||||||
|  "engine": "InnoDB", |  "engine": "InnoDB",  | ||||||
|  "fields": [ |  "fields": [ | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "depends_on": "eval:doc.__islocal", |    "depends_on": "eval:doc.__islocal",  | ||||||
|    "fieldname": "batch_id", |    "fieldname": "batch_id",  | ||||||
|    "fieldtype": "Data", |    "fieldtype": "Data",  | ||||||
|    "hidden": 0, |    "hidden": 0,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 1,  | ||||||
|    "in_standard_filter": 0, |    "in_standard_filter": 0,  | ||||||
|    "label": "Batch ID", |    "label": "Batch ID",  | ||||||
|    "length": 0, |    "length": 0,  | ||||||
|    "no_copy": 1, |    "no_copy": 1,  | ||||||
|    "oldfieldname": "batch_id", |    "oldfieldname": "batch_id",  | ||||||
|    "oldfieldtype": "Data", |    "oldfieldtype": "Data",  | ||||||
|    "permlevel": 0, |    "permlevel": 0,  | ||||||
|    "print_hide": 0, |    "print_hide": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "print_hide_if_no_value": 0,  | ||||||
|    "read_only": 0, |    "read_only": 0,  | ||||||
|    "remember_last_selected_value": 0, |    "remember_last_selected_value": 0,  | ||||||
|    "report_hide": 0, |    "report_hide": 0,  | ||||||
|    "reqd": 1, |    "reqd": 1,  | ||||||
|    "search_index": 0, |    "search_index": 0,  | ||||||
|    "set_only_once": 0, |    "set_only_once": 0,  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   }, |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "fieldname": "item", |    "fieldname": "item",  | ||||||
|    "fieldtype": "Link", |    "fieldtype": "Link",  | ||||||
|    "hidden": 0, |    "hidden": 0,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 1,  | ||||||
|    "in_standard_filter": 1, |    "in_standard_filter": 1,  | ||||||
|    "label": "Item", |    "label": "Item",  | ||||||
|    "length": 0, |    "length": 0,  | ||||||
|    "no_copy": 0, |    "no_copy": 0,  | ||||||
|    "oldfieldname": "item", |    "oldfieldname": "item",  | ||||||
|    "oldfieldtype": "Link", |    "oldfieldtype": "Link",  | ||||||
|    "options": "Item", |    "options": "Item",  | ||||||
|    "permlevel": 0, |    "permlevel": 0,  | ||||||
|    "print_hide": 0, |    "print_hide": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "print_hide_if_no_value": 0,  | ||||||
|    "read_only": 0, |    "read_only": 0,  | ||||||
|    "remember_last_selected_value": 0, |    "remember_last_selected_value": 0,  | ||||||
|    "report_hide": 0, |    "report_hide": 0,  | ||||||
|    "reqd": 1, |    "reqd": 1,  | ||||||
|    "search_index": 0, |    "search_index": 0,  | ||||||
|    "set_only_once": 0, |    "set_only_once": 0,  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   }, |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "fieldname": "image", |    "fieldname": "image",  | ||||||
|    "fieldtype": "Attach Image", |    "fieldtype": "Attach Image",  | ||||||
|    "hidden": 1, |    "hidden": 1,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 0,  | ||||||
|    "in_standard_filter": 0, |    "in_standard_filter": 0,  | ||||||
|    "label": "image", |    "label": "image",  | ||||||
|    "length": 0, |    "length": 0,  | ||||||
|    "no_copy": 0, |    "no_copy": 0,  | ||||||
|    "permlevel": 0, |    "permlevel": 0,  | ||||||
|    "precision": "", |    "precision": "",  | ||||||
|    "print_hide": 0, |    "print_hide": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "print_hide_if_no_value": 0,  | ||||||
|    "read_only": 0, |    "read_only": 0,  | ||||||
|    "remember_last_selected_value": 0, |    "remember_last_selected_value": 0,  | ||||||
|    "report_hide": 0, |    "report_hide": 0,  | ||||||
|    "reqd": 0, |    "reqd": 0,  | ||||||
|    "search_index": 0, |    "search_index": 0,  | ||||||
|    "set_only_once": 0, |    "set_only_once": 0,  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   }, |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "depends_on": "eval:doc.parent_batch", |    "depends_on": "eval:doc.parent_batch",  | ||||||
|    "fieldname": "parent_batch", |    "fieldname": "parent_batch",  | ||||||
|    "fieldtype": "Link", |    "fieldtype": "Link",  | ||||||
|    "hidden": 0, |    "hidden": 0,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 0,  | ||||||
|    "in_standard_filter": 0, |    "in_standard_filter": 0,  | ||||||
|    "label": "Parent Batch", |    "label": "Parent Batch",  | ||||||
|    "length": 0, |    "length": 0,  | ||||||
|    "no_copy": 0, |    "no_copy": 0,  | ||||||
|    "options": "Batch", |    "options": "Batch",  | ||||||
|    "permlevel": 0, |    "permlevel": 0,  | ||||||
|    "precision": "", |    "precision": "",  | ||||||
|    "print_hide": 0, |    "print_hide": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "print_hide_if_no_value": 0,  | ||||||
|    "read_only": 1, |    "read_only": 1,  | ||||||
|    "remember_last_selected_value": 0, |    "remember_last_selected_value": 0,  | ||||||
|    "report_hide": 0, |    "report_hide": 0,  | ||||||
|    "reqd": 0, |    "reqd": 0,  | ||||||
|    "search_index": 0, |    "search_index": 0,  | ||||||
|    "set_only_once": 0, |    "set_only_once": 0,  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   }, |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "fieldname": "column_break_3", |    "fieldname": "column_break_3",  | ||||||
|    "fieldtype": "Column Break", |    "fieldtype": "Column Break",  | ||||||
|    "hidden": 0, |    "hidden": 0,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 0,  | ||||||
|    "in_standard_filter": 0, |    "in_standard_filter": 0,  | ||||||
|    "length": 0, |    "length": 0,  | ||||||
|    "no_copy": 0, |    "no_copy": 0,  | ||||||
|    "permlevel": 0, |    "permlevel": 0,  | ||||||
|    "precision": "", |    "precision": "",  | ||||||
|    "print_hide": 0, |    "print_hide": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "print_hide_if_no_value": 0,  | ||||||
|    "read_only": 0, |    "read_only": 0,  | ||||||
|    "remember_last_selected_value": 0, |    "remember_last_selected_value": 0,  | ||||||
|    "report_hide": 0, |    "report_hide": 0,  | ||||||
|    "reqd": 0, |    "reqd": 0,  | ||||||
|    "search_index": 0, |    "search_index": 0,  | ||||||
|    "set_only_once": 0, |    "set_only_once": 0,  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   }, |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "fieldname": "expiry_date", |    "fieldname": "manufacturing_date",  | ||||||
|    "fieldtype": "Date", |    "fieldtype": "Date",  | ||||||
|    "hidden": 0, |    "hidden": 0,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 0,  | ||||||
|    "in_standard_filter": 0, |    "in_standard_filter": 0,  | ||||||
|    "label": "Expiry Date", |    "label": "Manufacturing Date",  | ||||||
|    "length": 0, |    "length": 0,  | ||||||
|    "no_copy": 0, |    "no_copy": 0,  | ||||||
|    "oldfieldname": "expiry_date", |    "permlevel": 0,  | ||||||
|    "oldfieldtype": "Date", |    "precision": "",  | ||||||
|    "permlevel": 0, |    "print_hide": 0,  | ||||||
|    "print_hide": 0, |    "print_hide_if_no_value": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "read_only": 0,  | ||||||
|    "read_only": 0, |    "remember_last_selected_value": 0,  | ||||||
|    "remember_last_selected_value": 0, |    "report_hide": 0,  | ||||||
|    "report_hide": 0, |    "reqd": 0,  | ||||||
|    "reqd": 0, |    "search_index": 0,  | ||||||
|    "search_index": 0, |    "set_only_once": 0,  | ||||||
|    "set_only_once": 0, |  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   }, |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "fieldname": "source", |    "fieldname": "expiry_date",  | ||||||
|    "fieldtype": "Section Break", |    "fieldtype": "Date",  | ||||||
|    "hidden": 0, |    "hidden": 0,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 0,  | ||||||
|    "in_standard_filter": 0, |    "in_standard_filter": 0,  | ||||||
|    "label": "Source", |    "label": "Expiry Date",  | ||||||
|    "length": 0, |    "length": 0,  | ||||||
|    "no_copy": 0, |    "no_copy": 0,  | ||||||
|    "permlevel": 0, |    "oldfieldname": "expiry_date",  | ||||||
|    "precision": "", |    "oldfieldtype": "Date",  | ||||||
|    "print_hide": 0, |    "permlevel": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "print_hide": 0,  | ||||||
|    "read_only": 0, |    "print_hide_if_no_value": 0,  | ||||||
|    "remember_last_selected_value": 0, |    "read_only": 0,  | ||||||
|    "report_hide": 0, |    "remember_last_selected_value": 0,  | ||||||
|    "reqd": 0, |    "report_hide": 0,  | ||||||
|    "search_index": 0, |    "reqd": 0,  | ||||||
|    "set_only_once": 0, |    "search_index": 0,  | ||||||
|  |    "set_only_once": 0,  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   }, |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "fieldname": "supplier", |    "fieldname": "source",  | ||||||
|    "fieldtype": "Link", |    "fieldtype": "Section Break",  | ||||||
|    "hidden": 0, |    "hidden": 0,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 0,  | ||||||
|    "in_standard_filter": 0, |    "in_standard_filter": 0,  | ||||||
|    "label": "Supplier", |    "label": "Source",  | ||||||
|    "length": 0, |    "length": 0,  | ||||||
|    "no_copy": 0, |    "no_copy": 0,  | ||||||
|    "options": "Supplier", |    "permlevel": 0,  | ||||||
|    "permlevel": 0, |    "precision": "",  | ||||||
|    "precision": "", |    "print_hide": 0,  | ||||||
|    "print_hide": 0, |    "print_hide_if_no_value": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "read_only": 0,  | ||||||
|    "read_only": 1, |    "remember_last_selected_value": 0,  | ||||||
|    "remember_last_selected_value": 0, |    "report_hide": 0,  | ||||||
|    "report_hide": 0, |    "reqd": 0,  | ||||||
|    "reqd": 0, |    "search_index": 0,  | ||||||
|    "search_index": 0, |    "set_only_once": 0,  | ||||||
|    "set_only_once": 0, |  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   }, |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "fieldname": "column_break_9", |    "fieldname": "supplier",  | ||||||
|    "fieldtype": "Column Break", |    "fieldtype": "Link",  | ||||||
|    "hidden": 0, |    "hidden": 0,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 0,  | ||||||
|    "in_standard_filter": 0, |    "in_standard_filter": 0,  | ||||||
|    "length": 0, |    "label": "Supplier",  | ||||||
|    "no_copy": 0, |    "length": 0,  | ||||||
|    "permlevel": 0, |    "no_copy": 0,  | ||||||
|    "precision": "", |    "options": "Supplier",  | ||||||
|    "print_hide": 0, |    "permlevel": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "precision": "",  | ||||||
|    "read_only": 0, |    "print_hide": 0,  | ||||||
|    "remember_last_selected_value": 0, |    "print_hide_if_no_value": 0,  | ||||||
|    "report_hide": 0, |    "read_only": 1,  | ||||||
|    "reqd": 0, |    "remember_last_selected_value": 0,  | ||||||
|    "search_index": 0, |    "report_hide": 0,  | ||||||
|    "set_only_once": 0, |    "reqd": 0,  | ||||||
|  |    "search_index": 0,  | ||||||
|  |    "set_only_once": 0,  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   }, |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "fieldname": "reference_doctype", |    "fieldname": "column_break_9",  | ||||||
|    "fieldtype": "Link", |    "fieldtype": "Column Break",  | ||||||
|    "hidden": 0, |    "hidden": 0,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 0,  | ||||||
|    "in_standard_filter": 0, |    "in_standard_filter": 0,  | ||||||
|    "label": "Source Document Type", |    "length": 0,  | ||||||
|    "length": 0, |    "no_copy": 0,  | ||||||
|    "no_copy": 0, |    "permlevel": 0,  | ||||||
|    "options": "DocType", |    "precision": "",  | ||||||
|    "permlevel": 0, |    "print_hide": 0,  | ||||||
|    "precision": "", |    "print_hide_if_no_value": 0,  | ||||||
|    "print_hide": 0, |    "read_only": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "remember_last_selected_value": 0,  | ||||||
|    "read_only": 1, |    "report_hide": 0,  | ||||||
|    "remember_last_selected_value": 0, |    "reqd": 0,  | ||||||
|    "report_hide": 0, |    "search_index": 0,  | ||||||
|    "reqd": 0, |    "set_only_once": 0,  | ||||||
|    "search_index": 0, |  | ||||||
|    "set_only_once": 0, |  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   }, |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "fieldname": "reference_name", |    "fieldname": "reference_doctype",  | ||||||
|    "fieldtype": "Dynamic Link", |    "fieldtype": "Link",  | ||||||
|    "hidden": 0, |    "hidden": 0,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 0,  | ||||||
|    "in_standard_filter": 0, |    "in_standard_filter": 0,  | ||||||
|    "label": "Source Document Name", |    "label": "Source Document Type",  | ||||||
|    "length": 0, |    "length": 0,  | ||||||
|    "no_copy": 0, |    "no_copy": 0,  | ||||||
|    "options": "reference_doctype", |    "options": "DocType",  | ||||||
|    "permlevel": 0, |    "permlevel": 0,  | ||||||
|    "precision": "", |    "precision": "",  | ||||||
|    "print_hide": 0, |    "print_hide": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "print_hide_if_no_value": 0,  | ||||||
|    "read_only": 1, |    "read_only": 1,  | ||||||
|    "remember_last_selected_value": 0, |    "remember_last_selected_value": 0,  | ||||||
|    "report_hide": 0, |    "report_hide": 0,  | ||||||
|    "reqd": 0, |    "reqd": 0,  | ||||||
|    "search_index": 0, |    "search_index": 0,  | ||||||
|    "set_only_once": 0, |    "set_only_once": 0,  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   }, |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "fieldname": "section_break_7", |    "fieldname": "reference_name",  | ||||||
|    "fieldtype": "Section Break", |    "fieldtype": "Dynamic Link",  | ||||||
|    "hidden": 0, |    "hidden": 0,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 0,  | ||||||
|    "in_standard_filter": 0, |    "in_standard_filter": 0,  | ||||||
|    "length": 0, |    "label": "Source Document Name",  | ||||||
|    "no_copy": 0, |    "length": 0,  | ||||||
|    "permlevel": 0, |    "no_copy": 0,  | ||||||
|    "precision": "", |    "options": "reference_doctype",  | ||||||
|    "print_hide": 0, |    "permlevel": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "precision": "",  | ||||||
|    "read_only": 0, |    "print_hide": 0,  | ||||||
|    "remember_last_selected_value": 0, |    "print_hide_if_no_value": 0,  | ||||||
|    "report_hide": 0, |    "read_only": 1,  | ||||||
|    "reqd": 0, |    "remember_last_selected_value": 0,  | ||||||
|    "search_index": 0, |    "report_hide": 0,  | ||||||
|    "set_only_once": 0, |    "reqd": 0,  | ||||||
|  |    "search_index": 0,  | ||||||
|  |    "set_only_once": 0,  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   }, |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0, |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0, |    "allow_on_submit": 0,  | ||||||
|    "bold": 0, |    "bold": 0,  | ||||||
|    "collapsible": 0, |    "collapsible": 0,  | ||||||
|    "columns": 0, |    "columns": 0,  | ||||||
|    "fieldname": "description", |    "fieldname": "section_break_7",  | ||||||
|    "fieldtype": "Small Text", |    "fieldtype": "Section Break",  | ||||||
|    "hidden": 0, |    "hidden": 0,  | ||||||
|    "ignore_user_permissions": 0, |    "ignore_user_permissions": 0,  | ||||||
|    "ignore_xss_filter": 0, |    "ignore_xss_filter": 0,  | ||||||
|    "in_filter": 0, |    "in_filter": 0,  | ||||||
|    "in_global_search": 0, |    "in_global_search": 0,  | ||||||
|    "in_list_view": 0, |    "in_list_view": 0,  | ||||||
|    "in_standard_filter": 0, |    "in_standard_filter": 0,  | ||||||
|    "label": "Batch Description", |    "length": 0,  | ||||||
|    "length": 0, |    "no_copy": 0,  | ||||||
|    "no_copy": 0, |    "permlevel": 0,  | ||||||
|    "oldfieldname": "description", |    "precision": "",  | ||||||
|    "oldfieldtype": "Small Text", |    "print_hide": 0,  | ||||||
|    "permlevel": 0, |    "print_hide_if_no_value": 0,  | ||||||
|    "print_hide": 0, |    "read_only": 0,  | ||||||
|    "print_hide_if_no_value": 0, |    "remember_last_selected_value": 0,  | ||||||
|    "read_only": 0, |    "report_hide": 0,  | ||||||
|    "remember_last_selected_value": 0, |    "reqd": 0,  | ||||||
|    "report_hide": 0, |    "search_index": 0,  | ||||||
|    "reqd": 0, |    "set_only_once": 0,  | ||||||
|    "search_index": 0, |    "unique": 0 | ||||||
|    "set_only_once": 0, |   },  | ||||||
|    "unique": 0, |   { | ||||||
|  |    "allow_bulk_edit": 0,  | ||||||
|  |    "allow_on_submit": 0,  | ||||||
|  |    "bold": 0,  | ||||||
|  |    "collapsible": 0,  | ||||||
|  |    "columns": 0,  | ||||||
|  |    "fieldname": "description",  | ||||||
|  |    "fieldtype": "Small Text",  | ||||||
|  |    "hidden": 0,  | ||||||
|  |    "ignore_user_permissions": 0,  | ||||||
|  |    "ignore_xss_filter": 0,  | ||||||
|  |    "in_filter": 0,  | ||||||
|  |    "in_global_search": 0,  | ||||||
|  |    "in_list_view": 0,  | ||||||
|  |    "in_standard_filter": 0,  | ||||||
|  |    "label": "Batch Description",  | ||||||
|  |    "length": 0,  | ||||||
|  |    "no_copy": 0,  | ||||||
|  |    "oldfieldname": "description",  | ||||||
|  |    "oldfieldtype": "Small Text",  | ||||||
|  |    "permlevel": 0,  | ||||||
|  |    "print_hide": 0,  | ||||||
|  |    "print_hide_if_no_value": 0,  | ||||||
|  |    "read_only": 0,  | ||||||
|  |    "remember_last_selected_value": 0,  | ||||||
|  |    "report_hide": 0,  | ||||||
|  |    "reqd": 0,  | ||||||
|  |    "search_index": 0,  | ||||||
|  |    "set_only_once": 0,  | ||||||
|  |    "unique": 0,  | ||||||
|    "width": "300px" |    "width": "300px" | ||||||
|   } |   } | ||||||
|  ], |  ],  | ||||||
|  "has_web_view": 0, |  "has_web_view": 0,  | ||||||
|  "hide_heading": 0, |  "hide_heading": 0,  | ||||||
|  "hide_toolbar": 0, |  "hide_toolbar": 0,  | ||||||
|  "icon": "fa fa-archive", |  "icon": "fa fa-archive",  | ||||||
|  "idx": 1, |  "idx": 1,  | ||||||
|  "image_field": "image", |  "image_field": "image",  | ||||||
|  "image_view": 0, |  "image_view": 0,  | ||||||
|  "in_create": 0, |  "in_create": 0,  | ||||||
|  "is_submittable": 0, |  "is_submittable": 0,  | ||||||
|  "issingle": 0, |  "issingle": 0,  | ||||||
|  "istable": 0, |  "istable": 0,  | ||||||
|  "max_attachments": 5, |  "max_attachments": 5,  | ||||||
|  "modified": "2017-05-21 21:00:11.096038", |  "modified": "2018-01-08 21:55:54.306693",  | ||||||
|  "modified_by": "Administrator", |  "modified_by": "Administrator",  | ||||||
|  "module": "Stock", |  "module": "Stock",  | ||||||
|  "name": "Batch", |  "name": "Batch",  | ||||||
|  "owner": "harshada@webnotestech.com", |  "owner": "harshada@webnotestech.com",  | ||||||
|  "permissions": [ |  "permissions": [ | ||||||
|   { |   { | ||||||
|    "amend": 0, |    "amend": 0,  | ||||||
|    "apply_user_permissions": 0, |    "apply_user_permissions": 0,  | ||||||
|    "cancel": 0, |    "cancel": 0,  | ||||||
|    "create": 1, |    "create": 1,  | ||||||
|    "delete": 1, |    "delete": 1,  | ||||||
|    "email": 1, |    "email": 1,  | ||||||
|    "export": 0, |    "export": 0,  | ||||||
|    "if_owner": 0, |    "if_owner": 0,  | ||||||
|    "import": 0, |    "import": 0,  | ||||||
|    "permlevel": 0, |    "permlevel": 0,  | ||||||
|    "print": 1, |    "print": 1,  | ||||||
|    "read": 1, |    "read": 1,  | ||||||
|    "report": 1, |    "report": 1,  | ||||||
|    "role": "Item Manager", |    "role": "Item Manager",  | ||||||
|    "set_user_permissions": 0, |    "set_user_permissions": 0,  | ||||||
|    "share": 1, |    "share": 1,  | ||||||
|    "submit": 0, |    "submit": 0,  | ||||||
|    "write": 1 |    "write": 1 | ||||||
|   } |   } | ||||||
|  ], |  ],  | ||||||
|  "quick_entry": 1, |  "quick_entry": 1,  | ||||||
|  "read_only": 0, |  "read_only": 0,  | ||||||
|  "read_only_onload": 0, |  "read_only_onload": 0,  | ||||||
|  "show_name_in_global_search": 0, |  "show_name_in_global_search": 0,  | ||||||
|  "sort_order": "DESC", |  "sort_order": "DESC",  | ||||||
|  "title_field": "item", |  "title_field": "item",  | ||||||
|  "track_changes": 0, |  "track_changes": 0,  | ||||||
|  "track_seen": 0 |  "track_seen": 0 | ||||||
| } | } | ||||||
| @ -768,6 +768,36 @@ | |||||||
|    "set_only_once": 0,  |    "set_only_once": 0,  | ||||||
|    "unique": 0 |    "unique": 0 | ||||||
|   },  |   },  | ||||||
|  |   { | ||||||
|  |    "allow_bulk_edit": 0,  | ||||||
|  |    "allow_on_submit": 0,  | ||||||
|  |    "bold": 0,  | ||||||
|  |    "collapsible": 0,  | ||||||
|  |    "columns": 0,  | ||||||
|  |    "fieldname": "shelf_life_in_days",  | ||||||
|  |    "fieldtype": "Int",  | ||||||
|  |    "hidden": 0,  | ||||||
|  |    "ignore_user_permissions": 0,  | ||||||
|  |    "ignore_xss_filter": 0,  | ||||||
|  |    "in_filter": 0,  | ||||||
|  |    "in_global_search": 0,  | ||||||
|  |    "in_list_view": 0,  | ||||||
|  |    "in_standard_filter": 0,  | ||||||
|  |    "label": "Shelf Life In Days",  | ||||||
|  |    "length": 0,  | ||||||
|  |    "no_copy": 0,  | ||||||
|  |    "permlevel": 0,  | ||||||
|  |    "precision": "",  | ||||||
|  |    "print_hide": 0,  | ||||||
|  |    "print_hide_if_no_value": 0,  | ||||||
|  |    "read_only": 0,  | ||||||
|  |    "remember_last_selected_value": 0,  | ||||||
|  |    "report_hide": 0,  | ||||||
|  |    "reqd": 0,  | ||||||
|  |    "search_index": 0,  | ||||||
|  |    "set_only_once": 0,  | ||||||
|  |    "unique": 0 | ||||||
|  |   },  | ||||||
|   { |   { | ||||||
|    "allow_bulk_edit": 0,  |    "allow_bulk_edit": 0,  | ||||||
|    "allow_on_submit": 0,  |    "allow_on_submit": 0,  | ||||||
| @ -3454,7 +3484,7 @@ | |||||||
|  "issingle": 0,  |  "issingle": 0,  | ||||||
|  "istable": 0,  |  "istable": 0,  | ||||||
|  "max_attachments": 1,  |  "max_attachments": 1,  | ||||||
|  "modified": "2017-12-29 14:18:37.731142",  |  "modified": "2018-01-08 21:53:55.895525",  | ||||||
|  "modified_by": "Administrator",  |  "modified_by": "Administrator",  | ||||||
|  "module": "Stock",  |  "module": "Stock",  | ||||||
|  "name": "Item",  |  "name": "Item",  | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user