
Originally Posted by
gothstone

I forked @strelitzia's github for this and was gonna make it work in zc1.5.8/php8.2 . Hours were spent, and progress was made. And then I discovered mom (my "customer") doesn't use it. At all. Not one piece.

So ya, it's not done, it doesn't work, and I won't do any more on it. But hopefully, it saves strelitzia or whoever touches it next a little time.
I might fork the project further. I'm like 90% sure I made more changes to fix it to PHP8.2. But if anyone is getting errors about
Code:
Creation of dynamic property purchaseorder::$sort_order is deprecated
You might want to make the following change:
Open /includes/modules/payment/purchaseorder.php
Find the line that reads
PHP Code:
class purchaseorder {
and change it to read:
PHP Code:
#[AllowDynamicProperties]
class purchaseorder {
This should remove the error. (This seems to be a band-aid patch however and I think it only applies to 8.2... I don't know of any other complications that may arise out of this.)
Bookmarks