Merge pull request #59098 from frappe/mergify/bp/version-16-hotfix/pr-59097

fix: avoid pricing rule help template errors (backport #59097)
This commit is contained in:
Sudharsanan Ashok
2026-09-17 11:09:26 +05:30
committed by GitHub

View File

@@ -108,7 +108,7 @@ frappe.ui.form.on("Pricing Rule", {
</td></tr> </td></tr>
</table>`; </table>`;
frm.set_df_property("pricing_rule_help", "options", help_content); frm.get_field("pricing_rule_help").html(help_content);
frm.events.set_options_for_applicable_for(frm); frm.events.set_options_for_applicable_for(frm);
frm.trigger("toggle_reqd_apply_on"); frm.trigger("toggle_reqd_apply_on");
}, },