Search found 3 matches

by malmahdi
Sun May 03, 2020 8:13 am
Forum: ERPNext / Frappe
Topic: how to solve frappe.email.queue.flush error in frappe erpnext
Replies: 0
Views: 92082

how to solve frappe.email.queue.flush error in frappe erpnext

frappe.email.queue.flush redis.exceptions.DataError: Invalid input of type: 'NoneType'. Convert to a bytes, string, int or float first. just do this command in ur terminal : env/bin/pip install redis==2.10.6 env/bin/pip install -r apps/frappe/requirements.txt env/bin/python3 -m pip install --upgrade...
by malmahdi
Wed Apr 29, 2020 10:21 am
Forum: ERPNext / Frappe
Topic: how to change field property in frappe using py and js malmahdi
Replies: 1
Views: 111960

Re: how to change field property in frappe using py and js malmahdi

from frappe.custom.doctype.property_setter.property_setter import make_property_setter
by malmahdi
Wed Apr 29, 2020 10:02 am
Forum: ERPNext / Frappe
Topic: how to change field property in frappe using py and js malmahdi
Replies: 1
Views: 111960

how to change field property in frappe using py and js malmahdi

frappe.call({ args: {"field_name1":"amount" ,"field_name2":"currency" ,"value": 1 }, method:"project_app.projects.doctype.project.project.set_property", callback: function(r) { console.log(r.message); frm.refresh_fields(); } }); @frappe.whi...