Skip to content

Commit d9fac87

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents ba07ac7 + a77fda0 commit d9fac87

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
### Note: WallacePOS is not longer actively maintained. If you would like to become a maintainer of this project please let me know.
2+
13
# WallacePOS
24
## An intuitive & modern web based POS system
35
![logo](https://wallacepos.com/images/wallacepos_logo_600.png)

library/installer/schemas/install.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ CREATE TABLE IF NOT EXISTS `sale_items` (
223223
`description` varchar(128) NOT NULL,
224224
`taxid` varchar(11) NOT NULL,
225225
`tax` varchar(2048) NOT NULL,
226-
`tax_incl` int(1) NOT NULL DEAFULT 1,
226+
`tax_incl` int(1) NOT NULL DEFAULT 1,
227227
`tax_total` decimal(12,2) NOT NULL DEFAULT 0.00,
228228
`cost` decimal(12,2) NOT NULL DEFAULT 0.00,
229229
`unit_original` decimal(12,2) NOT NULL DEFAULT 0.00,
@@ -386,4 +386,4 @@ INSERT INTO `tax_rules` (`id`, `data`) VALUES
386386
(2, '{"name":"GST", "inclusive":true, "mode":"single", "base":[1], "locations":{}, "id":"2"}');
387387
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
388388
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
389-
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
389+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

library/wpos/models/objects/WposStoredItem.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class WposStoredItem extends stdClass {
3232
public $description = "";
3333
public $taxid = 1;
3434
public $price = "";
35+
public $cost = "";
3536
public $supplierid = 0;
3637
public $categoryid = 0;
3738
public $type = "general";

0 commit comments

Comments
 (0)