Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
micwallace committed Jun 25, 2019
2 parents ba07ac7 + a77fda0 commit d9fac87
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
### Note: WallacePOS is not longer actively maintained. If you would like to become a maintainer of this project please let me know.

# WallacePOS
## An intuitive & modern web based POS system
![logo](https://wallacepos.com/images/wallacepos_logo_600.png)
Expand Down
4 changes: 2 additions & 2 deletions library/installer/schemas/install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ CREATE TABLE IF NOT EXISTS `sale_items` (
`description` varchar(128) NOT NULL,
`taxid` varchar(11) NOT NULL,
`tax` varchar(2048) NOT NULL,
`tax_incl` int(1) NOT NULL DEAFULT 1,
`tax_incl` int(1) NOT NULL DEFAULT 1,
`tax_total` decimal(12,2) NOT NULL DEFAULT 0.00,
`cost` decimal(12,2) NOT NULL DEFAULT 0.00,
`unit_original` decimal(12,2) NOT NULL DEFAULT 0.00,
Expand Down Expand Up @@ -386,4 +386,4 @@ INSERT INTO `tax_rules` (`id`, `data`) VALUES
(2, '{"name":"GST", "inclusive":true, "mode":"single", "base":[1], "locations":{}, "id":"2"}');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
1 change: 1 addition & 0 deletions library/wpos/models/objects/WposStoredItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class WposStoredItem extends stdClass {
public $description = "";
public $taxid = 1;
public $price = "";
public $cost = "";
public $supplierid = 0;
public $categoryid = 0;
public $type = "general";
Expand Down

0 comments on commit d9fac87

Please sign in to comment.