Update to v7 incomplete... error in "fix_recurring_order_status" erpnext not working

I managed to update v6 to version 7 on a self hosted ERPNext site. Versions:

erpnext 7.1.15
frappe 7.1.15

The
bench update --upgrade
command ran fairly smoothly until this error. I am including some additional lines ahead for clarity in the traceback:

Migrating site1.local
Executing finally:frappe.patches.v6_24.sync_desktop_icons in site1.local (1bd3e0294d)
Success
Executing erpnext.patches.v6_27.fix_recurring_order_status in site1.local (1bd3e0294d)
Traceback (most recent call last):
File “/usr/lib/python2.7/runpy.py”, line 162, in _run_module_as_main
main”, fname, loader, pkg_name)
File “/usr/lib/python2.7/runpy.py”, line 72, in _run_code
exec code in run_globals
File “/home/frappe/frappe-bench/apps/frappe/frappe/utils/bench_helper.py”, line 79, in
main()
File “/home/frappe/frappe-bench/apps/frappe/frappe/utils/bench_helper.py”, line 16, in main
click.Group(commands=commands)(prog_name=‘bench’)
File “/home/frappe/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 716, in call
return self.main(*args, **kwargs)
File “/home/frappe/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 696, in main
rv = self.invoke(ctx)
File “/home/frappe/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 1060, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File “/home/frappe/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 1060, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File “/home/frappe/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 889, in invoke
return ctx.invoke(self.callback, **ctx.params)
File “/home/frappe/frappe-bench/env/local/lib/python2.7/site-packages/click/core.py”, line 534, in invoke
return callback(*args, **kwargs)
File “/home/frappe/frappe-bench/env/local/lib/python2.7/site-packages/click/decorators.py”, line 17, in new_func
return f(get_current_context(), *args, **kwargs)
File “/home/frappe/frappe-bench/apps/frappe/frappe/commands/init.py”, line 24, in _func
ret = f(frappe._dict(ctx.obj), *args, **kwargs)
File “/home/frappe/frappe-bench/apps/frappe/frappe/commands/site.py”, line 209, in migrate
migrate(context.verbose, rebuild_website=rebuild_website)
File “/home/frappe/frappe-bench/apps/frappe/frappe/migrate.py”, line 30, in migrate
frappe.modules.patch_handler.run_all()
File “/home/frappe/frappe-bench/apps/frappe/frappe/modules/patch_handler.py”, line 29, in run_all
if not run_single(patchmodule = patch):
File “/home/frappe/frappe-bench/apps/frappe/frappe/modules/patch_handler.py”, line 63, in run_single
return execute_patch(patchmodule, method, methodargs)
File “/home/frappe/frappe-bench/apps/frappe/frappe/modules/patch_handler.py”, line 83, in execute_patch
frappe.get_attr(patchmodule.split()[0] + “.execute”)()
File “/home/frappe/frappe-bench/apps/erpnext/erpnext/patches/v6_27/fix_recurring_order_status.py”, line 54, in execute
frappe.get_doc(doc[“doctype”], order.name).set_status(update=True, update_modified=False)
File “/home/frappe/frappe-bench/apps/erpnext/erpnext/controllers/status_updater.py”, line 130, in set_status
self.db_set(‘status’, self.status, update_modified = update_modified)
File “/home/frappe/frappe-bench/apps/frappe/frappe/model/base_document.py”, line 374, in db_set
self.run_method(‘on_change’)
File “/home/frappe/frappe-bench/apps/frappe/frappe/model/document.py”, line 651, in run_method
out = Document.hook(fn)(self, *args, **kwargs)
File “/home/frappe/frappe-bench/apps/frappe/frappe/model/document.py”, line 879, in composer
return composed(self, method, *args, **kwargs)
File “/home/frappe/frappe-bench/apps/frappe/frappe/model/document.py”, line 864, in runner
add_to_return_value(self, f(self, method, *args, **kwargs))
File “/home/frappe/frappe-bench/apps/erpnext/erpnext/accounts/party_status.py”, line 49, in notify_status
if party.status != ‘Open’:
AttributeError: ‘Supplier’ object has no attribute ‘status’

Hi I think your db is not yet updated because there’s a missing field. Have you tried bench update or bench migrate?

Thanks for prompt reply!

I get this error on running:
bench update
and also on running:
bench migrate

In the meantime the server shows this message:

Yes that message appears if you are updating and if it fails updating too.

What is your setup by the way? Are you using Production version?

Good question, I’m very inexperienced, and do not remember if I ran commands for production or for develop. I think I have develop setup.

It’s ok. How many sites do you have?

Only one site

maybe you can check your database, tabel “tabSupplier”. find column “status”
if you not find that, if you want, the extrim solution, add a new column “status” type “varchar 140” nullable “Yes”

Thanks, will try adding a column as such.

Update: I added the column using the following mysql commands

alter table tabSupplier add status varchar(140)

That did the trick for THAT error, now I get a couple of other ones.
I moved to this thread:

https://discuss.frappe.io/t/help-error-while-updating-v6-to-v7/17207/15