Quote:
(`db_logicold_ops`., CONSTRAINT `FK_tbl_batch_manifestProduct` FOREIGN KEY (`product_id`) REFERENCES `tbl_product` (`id`))
This error means that there is data in the child table that is not present in the parent table and hence while trying to create a foreign key constraint between the two tables you are getting the above error.
Please ensure that the column that you are trying to create the foreign key on has same data in both the child and the parent table and then try creating a constraint.