- Orders section needs some love. It was a low business priority and hence, even though there is a model and code hanging around, it may not be working properly.
- Move admin panel to core app and get rid of Rails Admin and CanCanCan gems. Rails Admin is good to use during initial phases of the App.
- Remove hard-coded values in code which were used for interim use during live events. Once multi-location operations is enabled, user authorisation should define access.
- Fork it ( http://github.com/goravbhootra/Phoenix/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
- Added Onhand and total sales summary report(botn inline and excel)
- Added Popup on negatie sales
- Added individual search filter for every grid in column itself
- Added Voucher based search in total sales report itself.
- Changed Language into products in total sales summary screen
This project is built by Team Solutionize. Members who actively contributed to the project: Gorav Bhootra, Chandrasekhar N., Vasumathi N.
Phoenix ERP is released under the GPL v3
#script for Threshold
CREATE TABLE threshold_captures
(
id SERIAL PRIMARY KEY NOT NULL,
category_id INT DEFAULT 0,
language_id INT DEFAULT 0,
product_sku INT DEFAULT 0,
threshold_value INT
);
CREATE TABLE thresholds
(
id SERIAL PRIMARY KEY NOT NULL,
sku INT,
threshold_val INT DEFAULT 5,
created_at TIMESTAMP NOT NULL,
updated_at TIMESTAMP NOT NULL
);