How to get the list of serials for the item in after chosing a warehouse while making Stock Transfer.
The list of serial numbers must be available only on the given/chosen warehouse.
jasonh
September 17, 2019, 7:43pm
2
I think this thread has the answer you are looking for. I haven’t tried to implement this yet, but something I bookmarked for when I get to it.
how to add different values for each select dropdown options for different rows of a table using custom script.
Currently when i set the drop down for each row using the following code:
var q_options = [];
frappe.model.with_doc(“Quality Checks”, row.specification, function() {
var optiontable= frappe.model.get_doc(“Quality Checks”, row.specification);
$.each(optiontable.quality_check_option, function(index_child, row_child){
q_options.push(row_child.options);
});
df.options = q_options…
Please let us know if you have any luck.