Changed product cost to product price as it makes more sense, some cleanup on the new product auto complete feature, added JQueryUI as a local asset instead of a remote asset

This commit is contained in:
johnnyq
2022-01-16 15:29:52 -05:00
parent 07223dc2c2
commit 0d306e961e
10 changed files with 54 additions and 42 deletions

4
db.sql
View File

@@ -722,7 +722,7 @@ CREATE TABLE `products` (
`product_id` int(11) NOT NULL AUTO_INCREMENT,
`product_name` varchar(200) NOT NULL,
`product_description` text DEFAULT NULL,
`product_cost` decimal(15,2) NOT NULL,
`product_price` decimal(15,2) NOT NULL,
`product_currency_code` varchar(200) NOT NULL,
`product_created_at` datetime NOT NULL,
`product_updated_at` datetime DEFAULT NULL,
@@ -1217,4 +1217,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2022-01-12 19:48:54
-- Dump completed on 2022-01-16 15:27:33