Merge pull request #32118 from rohitwaghchaure/provision-to-manual-reposting
fix: option to start reposting from repost item valuation
This commit is contained in:
commit
448c5ff3dc
@ -58,6 +58,21 @@ frappe.ui.form.on('Repost Item Valuation', {
|
||||
}
|
||||
|
||||
frm.trigger('show_reposting_progress');
|
||||
|
||||
if (frm.doc.status === 'Queued' && frm.doc.docstatus === 1) {
|
||||
frm.trigger('execute_reposting');
|
||||
}
|
||||
},
|
||||
|
||||
execute_reposting(frm) {
|
||||
frm.add_custom_button(__("Start Reposting"), () => {
|
||||
frappe.call({
|
||||
method: 'erpnext.stock.doctype.repost_item_valuation.repost_item_valuation.execute_repost_item_valuation',
|
||||
callback: function() {
|
||||
frappe.msgprint(__('Reposting has been started in the background.'));
|
||||
}
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
show_reposting_progress: function(frm) {
|
||||
|
@ -307,3 +307,9 @@ def in_configured_timeslot(repost_settings=None, current_time=None):
|
||||
return end_time >= now_time >= start_time
|
||||
else:
|
||||
return now_time >= start_time or now_time <= end_time
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def execute_repost_item_valuation():
|
||||
"""Execute repost item valuation via scheduler."""
|
||||
frappe.get_doc("Scheduled Job Type", "repost_item_valuation.repost_entries").enqueue(force=True)
|
||||
|
Loading…
Reference in New Issue
Block a user