Filter Fetch on BOM

		frm.set_query("item", function() {
		return {
			query: "erpnext.controllers.queries.item_query_manufaturing",
			filters: {
					"item_group": "Finished Goods",
					"include_item_in_manufacturing" :"1"
			}
		};
	});

I tried filtering on BOM, and it worked, the items that appear only include_item_in_manufacturing = 1,

But when I type the manual in the Item, the Field Item Name which is the Fetch data but shows the name of the Item, It should not

Ask for help for the solution
thank you

@misbahul_munir

cur_frm.set_query("item", function () {
                return {
                    "filters": {
                        "item_group": "Finished Goods",
                        "include_item_in_manufacturing": 1
                    }
                };
            });

try using this, in my system, it is working fine