Adding a user purchase in the admin panel results in an exception; the relevant part of the error log seems to be ValueError: invalid literal for int() with base 10: 'user-0000' (where 0000 is the ID of the user whose account the purchase is being applied to). Probably just need to parse a string to remove the user- text before converting to an int.
Adding a user purchase in the admin panel results in an exception; the relevant part of the error log seems to be
ValueError: invalid literal for int() with base 10: 'user-0000'
(where 0000 is the ID of the user whose account the purchase is being applied to). Probably just need to parse a string to remove theuser-
text before converting to an int.