Uneditable Manufacturing Stock Entry Items Locking up process

When a Material Transfer for Manufacture is created from the Work Order Form it inputs the items from the BOM, They cannot be edited at all and they generate with allow_zero_valuation_rate to false.

(The form has the checkbox grayed out, and it cannot be clicked)

I can add more items to transfer and they allow full editing, but clearly BOM generated items won’t allow editing and I can only delete them

We have stock involved in manufacturing that we are not tracking valuation in ERPNext for, but I would rather not have to delete items and readd them to do each transfer… I think the issue is the same for a Manufacture Stock Entry as well.

I would also rather not enter a fake valuation rate for untracked items.

Does anyone know if it’s possible to change the defaults for the generated Stock Entry Details from Work Orders?

This client script fixes the flow

frappe.ui.form.on(‘Stock Entry’, {
validate: function(frm) {
$.each(frm.doc.items, function(i, d) {
d.allow_zero_valuation_rate = 1
});
}
});