Before submitting an issue please make sure you tick (add an x between the square brackets with no spaces) the following check boxes:
MySQL script completes with no errors.
MySQL Error: #1048 - Column 'comment' cannot be null
This is caused by the column being set as "NOT NULL" therefore making it illegal to replace '0' with 'NULL'
I believe prior to lines 16-18 the following code should be added.
ALTER TABLE ospos_sales
MODIFY COLUMN comment text DEFAULT NULL;
ALTER TABLE ospos_receivings
MODIFY COLUMN comment text DEFAULT NULL;
ALTER TABLE ospos_sales_suspended
MODIFY COLUMN comment text DEFAULT NULL;
Run the script on a 2.3.2 database
There should be a ` symbol surrounding names but github is commenting those out.
@objecttothis In terms of fixing stuff, might be even easier if you edit the code directly in github and send us a pull request, so we have an issue with your subsequent changes so we can correct direcly the codebase.
Quite fast for minor things like this.
Fix in master
@jekkos sure. I'll do that for the future. While I'm not new to ospos or php, I'm someone new to collaboration schemes and github specifically. Thanks for your patience.