feat(MySQL): Get Many stored procedures created for product variations with variation types and product prices with discounts and delivery options.

This commit is contained in:
2024-10-05 13:20:00 +01:00
parent d0956ffb97
commit f2d20bca58
150 changed files with 28513 additions and 17301 deletions

View File

@@ -0,0 +1,599 @@
# Details
Date : 2024-10-05 01:21:34
Directory c:\\Users\\edwar\\OneDrive\\Documents\\Programming\\Visual Studio 2022\\PARTS_Web\\app
Total : 584 files, 70074 codes, 18431 comments, 9994 blanks, all 98499 lines
[Summary](results.md) / Details / [Diff Summary](diff.md) / [Diff Details](diff-details.md)
## Files
| filename | language | code | comment | blank | total |
| :--- | :--- | ---: | ---: | ---: | ---: |
| [README.md](/README.md) | Markdown | 7 | 0 | 4 | 11 |
| [__init__.py](/__init__.py) | Python | 13 | 2 | 6 | 21 |
| [app.py](/app.py) | Python | 107 | 12 | 21 | 140 |
| [business_objects/__init__.py](/business_objects/__init__.py) | Python | 9 | 0 | 3 | 12 |
| [business_objects/base.py](/business_objects/base.py) | Python | 50 | 3 | 6 | 59 |
| [business_objects/db_base.py](/business_objects/db_base.py) | Python | 65 | 7 | 8 | 80 |
| [business_objects/sql_error.py](/business_objects/sql_error.py) | Python | 45 | 9 | 11 | 65 |
| [business_objects/store/__init__.py](/business_objects/store/__init__.py) | Python | 0 | 0 | 1 | 1 |
| [business_objects/store/access_level.py](/business_objects/store/access_level.py) | Python | 78 | 2 | 6 | 86 |
| [business_objects/store/basket.py](/business_objects/store/basket.py) | Python | 144 | 17 | 22 | 183 |
| [business_objects/store/currency.py](/business_objects/store/currency.py) | Python | 108 | 5 | 10 | 123 |
| [business_objects/store/delivery_option.py](/business_objects/store/delivery_option.py) | Python | 89 | 2 | 8 | 99 |
| [business_objects/store/delivery_region.py](/business_objects/store/delivery_region.py) | Python | 92 | 3 | 9 | 104 |
| [business_objects/store/discount.py](/business_objects/store/discount.py) | Python | 66 | 2 | 8 | 76 |
| [business_objects/store/image.py](/business_objects/store/image.py) | Python | 106 | 5 | 17 | 128 |
| [business_objects/store/order.py](/business_objects/store/order.py) | Python | 63 | 12 | 14 | 89 |
| [business_objects/store/product.py](/business_objects/store/product.py) | Python | 614 | 173 | 26 | 813 |
| [business_objects/store/product_category.py](/business_objects/store/product_category.py) | Python | 463 | 13 | 13 | 489 |
| [business_objects/store/product_permutation.py](/business_objects/store/product_permutation.py) | Python | 577 | 16 | 23 | 616 |
| [business_objects/store/product_price.py](/business_objects/store/product_price.py) | Python | 97 | 3 | 9 | 109 |
| [business_objects/store/product_variation.py](/business_objects/store/product_variation.py) | Python | 178 | 7 | 26 | 211 |
| [business_objects/store/product_variation_tree.py](/business_objects/store/product_variation_tree.py) | Python | 177 | 2 | 9 | 188 |
| [business_objects/store/product_variation_type.py](/business_objects/store/product_variation_type.py) | Python | 83 | 7 | 14 | 104 |
| [business_objects/store/stock_item.py](/business_objects/store/stock_item.py) | Python | 248 | 9 | 13 | 270 |
| [business_objects/store/storage_location.py](/business_objects/store/storage_location.py) | Python | 61 | 2 | 7 | 70 |
| [business_objects/store/store_base.py](/business_objects/store/store_base.py) | Python | 79 | 4 | 6 | 89 |
| [business_objects/store/stripe.py](/business_objects/store/stripe.py) | Python | 140 | 9 | 12 | 161 |
| [business_objects/unit_measurement.py](/business_objects/unit_measurement.py) | Python | 143 | 4 | 13 | 160 |
| [business_objects/user.py](/business_objects/user.py) | Python | 252 | 4 | 26 | 282 |
| [config.py](/config.py) | Python | 69 | 22 | 10 | 101 |
| [controllers/__init__.py](/controllers/__init__.py) | Python | 0 | 0 | 1 | 1 |
| [controllers/core.py](/controllers/core.py) | Python | 77 | 6 | 12 | 95 |
| [controllers/legal.py](/controllers/legal.py) | Python | 62 | 5 | 8 | 75 |
| [controllers/store/__init__.py](/controllers/store/__init__.py) | Python | 0 | 0 | 1 | 1 |
| [controllers/store/product.py](/controllers/store/product.py) | Python | 80 | 6 | 13 | 99 |
| [controllers/store/product_category.py](/controllers/store/product_category.py) | Python | 99 | 8 | 12 | 119 |
| [controllers/store/product_permutation.py](/controllers/store/product_permutation.py) | Python | 133 | 6 | 20 | 159 |
| [controllers/store/stock_item.py](/controllers/store/stock_item.py) | Python | 75 | 4 | 14 | 93 |
| [controllers/store/store.py](/controllers/store/store.py) | Python | 22 | 3 | 5 | 30 |
| [controllers/store/supplier.py](/controllers/store/supplier.py) | Python | 50 | 10 | 9 | 69 |
| [controllers/user.py](/controllers/user.py) | Python | 139 | 18 | 20 | 177 |
| [datastores/__init__.py](/datastores/__init__.py) | Python | 9 | 0 | 3 | 12 |
| [datastores/datastore_base.py](/datastores/datastore_base.py) | Python | 227 | 30 | 26 | 283 |
| [datastores/datastore_store_base.py](/datastores/datastore_store_base.py) | Python | 240 | 48 | 42 | 330 |
| [datastores/datastore_store_basket.py](/datastores/datastore_store_basket.py) | Python | 113 | 21 | 20 | 154 |
| [datastores/datastore_store_product.py](/datastores/datastore_store_product.py) | Python | 108 | 8 | 14 | 130 |
| [datastores/datastore_store_product_category.py](/datastores/datastore_store_product_category.py) | Python | 79 | 11 | 10 | 100 |
| [datastores/datastore_store_product_permutation.py](/datastores/datastore_store_product_permutation.py) | Python | 84 | 7 | 13 | 104 |
| [datastores/datastore_store_product_variation.py](/datastores/datastore_store_product_variation.py) | Python | 70 | 14 | 15 | 99 |
| [datastores/datastore_store_stock_item.py](/datastores/datastore_store_stock_item.py) | Python | 82 | 13 | 13 | 108 |
| [datastores/datastore_store_stripe.py](/datastores/datastore_store_stripe.py) | Python | 143 | 25 | 36 | 204 |
| [datastores/datastore_user.py](/datastores/datastore_user.py) | Python | 132 | 22 | 28 | 182 |
| [extensions.py](/extensions.py) | Python | 11 | 0 | 3 | 14 |
| [forms/__init__.py](/forms/__init__.py) | Python | 0 | 0 | 1 | 1 |
| [forms/access_level.py](/forms/access_level.py) | Python | 30 | 2 | 5 | 37 |
| [forms/base.py](/forms/base.py) | Python | 58 | 2 | 9 | 69 |
| [forms/forms.py](/forms/forms.py) | Python | 96 | 16 | 22 | 134 |
| [forms/store/__init__.py](/forms/store/__init__.py) | Python | 0 | 0 | 1 | 1 |
| [forms/store/product.py](/forms/store/product.py) | Python | 26 | 5 | 5 | 36 |
| [forms/store/product_category.py](/forms/store/product_category.py) | Python | 37 | 5 | 5 | 47 |
| [forms/store/product_permutation.py](/forms/store/product_permutation.py) | Python | 54 | 6 | 5 | 65 |
| [forms/store/stock_item.py](/forms/store/stock_item.py) | Python | 53 | 6 | 5 | 64 |
| [forms/unit_measurement.py](/forms/unit_measurement.py) | Python | 35 | 2 | 5 | 42 |
| [helpers/__init__.py](/helpers/__init__.py) | Python | 9 | 0 | 3 | 12 |
| [helpers/helper_app.py](/helpers/helper_app.py) | Python | 25 | 4 | 6 | 35 |
| [helpers/helper_db_mysql.py](/helpers/helper_db_mysql.py) | Python | 30 | 3 | 9 | 42 |
| [lib/__init__.py](/lib/__init__.py) | Python | 9 | 0 | 3 | 12 |
| [lib/argument_validation.py](/lib/argument_validation.py) | Python | 806 | 467 | 45 | 1,318 |
| [lib/data_types.py](/lib/data_types.py) | Python | 10 | 20 | 7 | 37 |
| [models/__init__.py](/models/__init__.py) | Python | 9 | 0 | 3 | 12 |
| [models/model_view_accessibility_report.py](/models/model_view_accessibility_report.py) | Python | 16 | 3 | 5 | 24 |
| [models/model_view_accessibility_statement.py](/models/model_view_accessibility_statement.py) | Python | 16 | 3 | 5 | 24 |
| [models/model_view_admin.py](/models/model_view_admin.py) | Python | 17 | 2 | 6 | 25 |
| [models/model_view_admin_home.py](/models/model_view_admin_home.py) | Python | 18 | 2 | 7 | 27 |
| [models/model_view_base.py](/models/model_view_base.py) | Python | 295 | 28 | 18 | 341 |
| [models/model_view_contact.py](/models/model_view_contact.py) | Python | 25 | 5 | 8 | 38 |
| [models/model_view_home.py](/models/model_view_home.py) | Python | 16 | 3 | 5 | 24 |
| [models/model_view_license.py](/models/model_view_license.py) | Python | 16 | 3 | 5 | 24 |
| [models/model_view_privacy_policy.py](/models/model_view_privacy_policy.py) | Python | 16 | 3 | 5 | 24 |
| [models/model_view_retention_schedule.py](/models/model_view_retention_schedule.py) | Python | 16 | 3 | 5 | 24 |
| [models/model_view_services.py](/models/model_view_services.py) | Python | 16 | 5 | 6 | 27 |
| [models/model_view_store.py](/models/model_view_store.py) | Python | 351 | 68 | 34 | 453 |
| [models/model_view_store_basket.py](/models/model_view_store_basket.py) | Python | 60 | 19 | 10 | 89 |
| [models/model_view_store_checkout.py](/models/model_view_store_checkout.py) | Python | 42 | 14 | 16 | 72 |
| [models/model_view_store_checkout_success.py](/models/model_view_store_checkout_success.py) | Python | 27 | 13 | 9 | 49 |
| [models/model_view_store_home.py](/models/model_view_store_home.py) | Python | 33 | 17 | 10 | 60 |
| [models/model_view_store_product.py](/models/model_view_store_product.py) | Python | 40 | 15 | 12 | 67 |
| [models/model_view_store_product_category.py](/models/model_view_store_product_category.py) | Python | 37 | 9 | 9 | 55 |
| [models/model_view_store_product_permutation.py](/models/model_view_store_product_permutation.py) | Python | 81 | 6 | 9 | 96 |
| [models/Model_View_Store_Stock_Item.py](/models/Model_View_Store_Stock_Item.py) | Python | 73 | 5 | 10 | 88 |
| [models/model_view_store_supplier.py](/models/model_view_store_supplier.py) | Python | 26 | 5 | 8 | 39 |
| [models/model_view_user.py](/models/model_view_user.py) | Python | 20 | 5 | 6 | 31 |
| [package-lock.json](/package-lock.json) | JSON | 4,383 | 0 | 1 | 4,384 |
| [package.json](/package.json) | JSON | 37 | 0 | 1 | 38 |
| [passenger_wsgi.py](/passenger_wsgi.py) | Python | 10 | 0 | 5 | 15 |
| [pay_stripe.py](/pay_stripe.py) | Python | 110 | 37 | 35 | 182 |
| [payments/pay_stripe.py](/payments/pay_stripe.py) | Python | 106 | 30 | 34 | 170 |
| [requirements.txt](/requirements.txt) | pip requirements | 12 | 1 | 3 | 16 |
| [routes.py](/routes.py) | Python | 40 | 6 | 8 | 54 |
| [run.py](/run.py) | Python | 12 | 1 | 4 | 17 |
| [static/MySQL/0000_combine.sql](/static/MySQL/0000_combine.sql) | SQL | 14,579 | 3,389 | 2,259 | 20,227 |
| [static/MySQL/0001_destroy.sql](/static/MySQL/0001_destroy.sql) | SQL | 213 | 2 | 69 | 284 |
| [static/MySQL/1000_tbl_Shop_Product_Change_Set.sql](/static/MySQL/1000_tbl_Shop_Product_Change_Set.sql) | SQL | 8 | 0 | 5 | 13 |
| [static/MySQL/1000_tbl_Split_Temp.sql](/static/MySQL/1000_tbl_Split_Temp.sql) | SQL | 7 | 2 | 4 | 13 |
| [static/MySQL/1001_tbl_Shop_User_Change_Set.sql](/static/MySQL/1001_tbl_Shop_User_Change_Set.sql) | SQL | 8 | 0 | 5 | 13 |
| [static/MySQL/1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql](/static/MySQL/1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql) | SQL | 8 | 0 | 5 | 13 |
| [static/MySQL/1003_tbl_Shop_Access_Level.sql](/static/MySQL/1003_tbl_Shop_Access_Level.sql) | SQL | 16 | 0 | 8 | 24 |
| [static/MySQL/1004_tbl_Shop_Access_Level_Audit.sql](/static/MySQL/1004_tbl_Shop_Access_Level_Audit.sql) | SQL | 17 | 0 | 5 | 22 |
| [static/MySQL/1005_tbl_Msg_Error_Type.sql](/static/MySQL/1005_tbl_Msg_Error_Type.sql) | SQL | 8 | 0 | 6 | 14 |
| [static/MySQL/1010_tbl_File_Type.sql](/static/MySQL/1010_tbl_File_Type.sql) | SQL | 12 | 0 | 6 | 18 |
| [static/MySQL/1011_tbl_File_Type_Audit.sql](/static/MySQL/1011_tbl_File_Type_Audit.sql) | SQL | 17 | 0 | 5 | 22 |
| [static/MySQL/1012_tbl_Shop_General.sql](/static/MySQL/1012_tbl_Shop_General.sql) | SQL | 12 | 0 | 5 | 17 |
| [static/MySQL/1013_tbl_Shop_General_Audit.sql](/static/MySQL/1013_tbl_Shop_General_Audit.sql) | SQL | 17 | 0 | 5 | 22 |
| [static/MySQL/1014_tbl_Shop_Image_Type.sql](/static/MySQL/1014_tbl_Shop_Image_Type.sql) | SQL | 16 | 6 | 6 | 28 |
| [static/MySQL/1015_tbl_Shop_Image_Type_Audit.sql](/static/MySQL/1015_tbl_Shop_Image_Type_Audit.sql) | SQL | 17 | 0 | 5 | 22 |
| [static/MySQL/1100_tbl_Shop_Region.sql](/static/MySQL/1100_tbl_Shop_Region.sql) | SQL | 15 | 0 | 5 | 20 |
| [static/MySQL/1101_tbl_Shop_Region_Audit.sql](/static/MySQL/1101_tbl_Shop_Region_Audit.sql) | SQL | 17 | 0 | 5 | 22 |
| [static/MySQL/1102_tbl_Shop_Region_Temp.sql](/static/MySQL/1102_tbl_Shop_Region_Temp.sql) | SQL | 15 | 0 | 5 | 20 |
| [static/MySQL/1103_tbl_Shop_Region_Branch.sql](/static/MySQL/1103_tbl_Shop_Region_Branch.sql) | SQL | 23 | 1 | 5 | 29 |
| [static/MySQL/1104_tbl_Shop_Region_Branch_Audit.sql](/static/MySQL/1104_tbl_Shop_Region_Branch_Audit.sql) | SQL | 17 | 0 | 5 | 22 |
| [static/MySQL/1105_tbl_Shop_Region_Branch_Temp.sql](/static/MySQL/1105_tbl_Shop_Region_Branch_Temp.sql) | SQL | 9 | 1 | 5 | 15 |
| [static/MySQL/1106_tbl_Shop_Plant.sql](/static/MySQL/1106_tbl_Shop_Plant.sql) | SQL | 16 | 0 | 6 | 22 |
| [static/MySQL/1107_tbl_Shop_Plant_Audit.sql](/static/MySQL/1107_tbl_Shop_Plant_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1108_tbl_Shop_Plant_Temp.sql](/static/MySQL/1108_tbl_Shop_Plant_Temp.sql) | SQL | 10 | 0 | 6 | 16 |
| [static/MySQL/1109_tbl_Shop_Storage_Location.sql](/static/MySQL/1109_tbl_Shop_Storage_Location.sql) | SQL | 18 | 0 | 6 | 24 |
| [static/MySQL/1110_tbl_Shop_Storage_Location_Audit.sql](/static/MySQL/1110_tbl_Shop_Storage_Location_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1111_tbl_Shop_Storage_Location_Temp.sql](/static/MySQL/1111_tbl_Shop_Storage_Location_Temp.sql) | SQL | 8 | 0 | 6 | 14 |
| [static/MySQL/1112_tbl_Shop_Storage_Location_Branch.sql](/static/MySQL/1112_tbl_Shop_Storage_Location_Branch.sql) | SQL | 23 | 1 | 5 | 29 |
| [static/MySQL/1113_tbl_Shop_Storage_Location_Branch_Audit.sql](/static/MySQL/1113_tbl_Shop_Storage_Location_Branch_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1114_tbl_Shop_Storage_Location_Branch_Temp.sql](/static/MySQL/1114_tbl_Shop_Storage_Location_Branch_Temp.sql) | SQL | 9 | 1 | 5 | 15 |
| [static/MySQL/1115_tbl_Shop_Currency.sql](/static/MySQL/1115_tbl_Shop_Currency.sql) | SQL | 18 | 0 | 5 | 23 |
| [static/MySQL/1116_tbl_Shop_Currency_Audit.sql](/static/MySQL/1116_tbl_Shop_Currency_Audit.sql) | SQL | 18 | 0 | 5 | 23 |
| [static/MySQL/1117_tbl_Shop_Currency_Temp.sql](/static/MySQL/1117_tbl_Shop_Currency_Temp.sql) | SQL | 11 | 0 | 5 | 16 |
| [static/MySQL/1118_tbl_Shop_Tax_Or_Surcharge.sql](/static/MySQL/1118_tbl_Shop_Tax_Or_Surcharge.sql) | SQL | 33 | 0 | 6 | 39 |
| [static/MySQL/1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql](/static/MySQL/1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql) | SQL | 18 | 0 | 5 | 23 |
| [static/MySQL/1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql](/static/MySQL/1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1121_tbl_Shop_Unit_Measurement.sql](/static/MySQL/1121_tbl_Shop_Unit_Measurement.sql) | SQL | 21 | 0 | 6 | 27 |
| [static/MySQL/1122_tbl_Shop_Unit_Measurement_Audit.sql](/static/MySQL/1122_tbl_Shop_Unit_Measurement_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1124_tbl_Shop_Unit_Measurement_Conversion.sql](/static/MySQL/1124_tbl_Shop_Unit_Measurement_Conversion.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql](/static/MySQL/1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1200_tbl_Shop_Product_Category.sql](/static/MySQL/1200_tbl_Shop_Product_Category.sql) | SQL | 20 | 0 | 5 | 25 |
| [static/MySQL/1201_tbl_Shop_Product_Category_Audit.sql](/static/MySQL/1201_tbl_Shop_Product_Category_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1202_tbl_Shop_Product_Category_Temp.sql](/static/MySQL/1202_tbl_Shop_Product_Category_Temp.sql) | SQL | 15 | 1 | 5 | 21 |
| [static/MySQL/1203_tbl_Shop_Product.sql](/static/MySQL/1203_tbl_Shop_Product.sql) | SQL | 22 | 21 | 6 | 49 |
| [static/MySQL/1204_tbl_Shop_Product_Audit.sql](/static/MySQL/1204_tbl_Shop_Product_Audit.sql) | SQL | 17 | 0 | 5 | 22 |
| [static/MySQL/1205_tbl_Shop_Product_Temp.sql](/static/MySQL/1205_tbl_Shop_Product_Temp.sql) | SQL | 15 | 1 | 5 | 21 |
| [static/MySQL/1206_tbl_Shop_Product_Permutation.sql](/static/MySQL/1206_tbl_Shop_Product_Permutation.sql) | SQL | 44 | 10 | 6 | 60 |
| [static/MySQL/1207_tbl_Shop_Product_Permutation_Audit.sql](/static/MySQL/1207_tbl_Shop_Product_Permutation_Audit.sql) | SQL | 18 | 0 | 6 | 24 |
| [static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql](/static/MySQL/1208_tbl_Shop_Product_Permutation_Temp.sql) | SQL | 28 | 2 | 5 | 35 |
| [static/MySQL/1209_tbl_Shop_Variation_Type.sql](/static/MySQL/1209_tbl_Shop_Variation_Type.sql) | SQL | 16 | 0 | 5 | 21 |
| [static/MySQL/1210_tbl_Shop_Variation_Type_Audit.sql](/static/MySQL/1210_tbl_Shop_Variation_Type_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1212_tbl_Shop_Variation.sql](/static/MySQL/1212_tbl_Shop_Variation.sql) | SQL | 20 | 0 | 6 | 26 |
| [static/MySQL/1213_tbl_Shop_Variation_Audit.sql](/static/MySQL/1213_tbl_Shop_Variation_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1215_tbl_Shop_Product_Permutation_Variation_Link.sql](/static/MySQL/1215_tbl_Shop_Product_Permutation_Variation_Link.sql) | SQL | 23 | 0 | 6 | 29 |
| [static/MySQL/1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql](/static/MySQL/1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql) | SQL | 18 | 0 | 5 | 23 |
| [static/MySQL/1218_tbl_Shop_Stock_Item.sql](/static/MySQL/1218_tbl_Shop_Stock_Item.sql) | SQL | 33 | 0 | 6 | 39 |
| [static/MySQL/1219_tbl_Shop_Stock_Item_Audit.sql](/static/MySQL/1219_tbl_Shop_Stock_Item_Audit.sql) | SQL | 18 | 0 | 6 | 24 |
| [static/MySQL/1220_tbl_Shop_Stock_Item_Temp.sql](/static/MySQL/1220_tbl_Shop_Stock_Item_Temp.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1221_tbl_Shop_Product_Price.sql](/static/MySQL/1221_tbl_Shop_Product_Price.sql) | SQL | 27 | 0 | 5 | 32 |
| [static/MySQL/1222_tbl_Shop_Product_Price_Audit.sql](/static/MySQL/1222_tbl_Shop_Product_Price_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1223_tbl_Shop_Product_Price_Temp.sql](/static/MySQL/1223_tbl_Shop_Product_Price_Temp.sql) | SQL | 12 | 0 | 5 | 17 |
| [static/MySQL/1224_tbl_Shop_Product_Image.sql](/static/MySQL/1224_tbl_Shop_Product_Image.sql) | SQL | 22 | 0 | 5 | 27 |
| [static/MySQL/1225_tbl_Shop_Product_Image_Audit.sql](/static/MySQL/1225_tbl_Shop_Product_Image_Audit.sql) | SQL | 16 | 0 | 5 | 21 |
| [static/MySQL/1227_tbl_Shop_Delivery_Option.sql](/static/MySQL/1227_tbl_Shop_Delivery_Option.sql) | SQL | 18 | 4 | 6 | 28 |
| [static/MySQL/1228_tbl_Shop_Delivery_Option_Audit.sql](/static/MySQL/1228_tbl_Shop_Delivery_Option_Audit.sql) | SQL | 17 | 0 | 5 | 22 |
| [static/MySQL/1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql](/static/MySQL/1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql) | SQL | 41 | 0 | 5 | 46 |
| [static/MySQL/1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql](/static/MySQL/1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql) | SQL | 17 | 0 | 5 | 22 |
| [static/MySQL/1233_tbl_Shop_Discount.sql](/static/MySQL/1233_tbl_Shop_Discount.sql) | SQL | 31 | 12 | 6 | 49 |
| [static/MySQL/1234_tbl_Shop_Discount_Audit.sql](/static/MySQL/1234_tbl_Shop_Discount_Audit.sql) | SQL | 18 | 0 | 5 | 23 |
| [static/MySQL/1236_tbl_Shop_Discount_Region_Currency_Link.sql](/static/MySQL/1236_tbl_Shop_Discount_Region_Currency_Link.sql) | SQL | 27 | 0 | 5 | 32 |
| [static/MySQL/1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql](/static/MySQL/1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql) | SQL | 18 | 0 | 5 | 23 |
| [static/MySQL/1300_tbl_Shop_Permission_Group.sql](/static/MySQL/1300_tbl_Shop_Permission_Group.sql) | SQL | 16 | 0 | 5 | 21 |
| [static/MySQL/1301_tbl_Shop_Permission_Group_Audit.sql](/static/MySQL/1301_tbl_Shop_Permission_Group_Audit.sql) | SQL | 18 | 0 | 5 | 23 |
| [static/MySQL/1303_tbl_Shop_Permission.sql](/static/MySQL/1303_tbl_Shop_Permission.sql) | SQL | 24 | 0 | 5 | 29 |
| [static/MySQL/1304_tbl_Shop_Permission_Audit.sql](/static/MySQL/1304_tbl_Shop_Permission_Audit.sql) | SQL | 18 | 0 | 5 | 23 |
| [static/MySQL/1306_tbl_Shop_Role.sql](/static/MySQL/1306_tbl_Shop_Role.sql) | SQL | 15 | 0 | 5 | 20 |
| [static/MySQL/1307_tbl_Shop_Role_Audit.sql](/static/MySQL/1307_tbl_Shop_Role_Audit.sql) | SQL | 18 | 0 | 5 | 23 |
| [static/MySQL/1309_tbl_Shop_Role_Permission_Link.sql](/static/MySQL/1309_tbl_Shop_Role_Permission_Link.sql) | SQL | 26 | 0 | 5 | 31 |
| [static/MySQL/1310_tbl_Shop_Role_Permission_Link_Audit.sql](/static/MySQL/1310_tbl_Shop_Role_Permission_Link_Audit.sql) | SQL | 17 | 0 | 5 | 22 |
| [static/MySQL/1312_tbl_Shop_User.sql](/static/MySQL/1312_tbl_Shop_User.sql) | SQL | 21 | 0 | 6 | 27 |
| [static/MySQL/1313_tbl_Shop_User_Audit.sql](/static/MySQL/1313_tbl_Shop_User_Audit.sql) | SQL | 18 | 0 | 5 | 23 |
| [static/MySQL/1315_tbl_Shop_User_Role_Link.sql](/static/MySQL/1315_tbl_Shop_User_Role_Link.sql) | SQL | 21 | 0 | 5 | 26 |
| [static/MySQL/1316_tbl_Shop_User_Role_Link_Audit.sql](/static/MySQL/1316_tbl_Shop_User_Role_Link_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1318_tbl_Shop_Address.sql](/static/MySQL/1318_tbl_Shop_Address.sql) | SQL | 25 | 1 | 5 | 31 |
| [static/MySQL/1319_tbl_Shop_Address_Audit.sql](/static/MySQL/1319_tbl_Shop_Address_Audit.sql) | SQL | 18 | 0 | 5 | 23 |
| [static/MySQL/1321_tbl_Shop_User_Basket.sql](/static/MySQL/1321_tbl_Shop_User_Basket.sql) | SQL | 28 | 6 | 6 | 40 |
| [static/MySQL/1322_tbl_Shop_User_Basket_Audit.sql](/static/MySQL/1322_tbl_Shop_User_Basket_Audit.sql) | SQL | 17 | 6 | 5 | 28 |
| [static/MySQL/1397_tbl_Shop_Order_Status.sql](/static/MySQL/1397_tbl_Shop_Order_Status.sql) | SQL | 16 | 0 | 6 | 22 |
| [static/MySQL/1398_tbl_Shop_Order_Status_Audit.sql](/static/MySQL/1398_tbl_Shop_Order_Status_Audit.sql) | SQL | 17 | 0 | 5 | 22 |
| [static/MySQL/1400_tbl_Shop_Supplier.sql](/static/MySQL/1400_tbl_Shop_Supplier.sql) | SQL | 27 | 0 | 6 | 33 |
| [static/MySQL/1401_tbl_Shop_Supplier_Audit.sql](/static/MySQL/1401_tbl_Shop_Supplier_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql](/static/MySQL/1409_tbl_Shop_Supplier_Purchase_Order.sql) | SQL | 20 | 16 | 6 | 42 |
| [static/MySQL/1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql](/static/MySQL/1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql](/static/MySQL/1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql) | SQL | 32 | 0 | 6 | 38 |
| [static/MySQL/1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql](/static/MySQL/1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql](/static/MySQL/1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql) | SQL | 22 | 6 | 7 | 35 |
| [static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql](/static/MySQL/1415_tbl_Shop_Manufacturing_Purchase_Order.sql) | SQL | 17 | 10 | 7 | 34 |
| [static/MySQL/1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql](/static/MySQL/1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql](/static/MySQL/1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql) | SQL | 33 | 0 | 6 | 39 |
| [static/MySQL/1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql](/static/MySQL/1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql](/static/MySQL/1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql) | SQL | 22 | 7 | 7 | 36 |
| [static/MySQL/1421_tbl_Shop_Customer.sql](/static/MySQL/1421_tbl_Shop_Customer.sql) | SQL | 25 | 0 | 5 | 30 |
| [static/MySQL/1422_tbl_Shop_Customer_Audit.sql](/static/MySQL/1422_tbl_Shop_Customer_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1424_tbl_Shop_Customer_Sales_Order.sql](/static/MySQL/1424_tbl_Shop_Customer_Sales_Order.sql) | SQL | 20 | 10 | 6 | 36 |
| [static/MySQL/1425_tbl_Shop_Customer_Sales_Order_Audit.sql](/static/MySQL/1425_tbl_Shop_Customer_Sales_Order_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql](/static/MySQL/1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql) | SQL | 32 | 0 | 7 | 39 |
| [static/MySQL/1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql](/static/MySQL/1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql](/static/MySQL/1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql) | SQL | 22 | 6 | 7 | 35 |
| [static/MySQL/1500_tbl_Shop_Calc_User_Temp.sql](/static/MySQL/1500_tbl_Shop_Calc_User_Temp.sql) | SQL | 20 | 3 | 3 | 26 |
| [static/MySQL/3000_tri_Shop_Access_Level.sql](/static/MySQL/3000_tri_Shop_Access_Level.sql) | SQL | 50 | 0 | 10 | 60 |
| [static/MySQL/3000_tri_Shop_Product_Change_Set.sql](/static/MySQL/3000_tri_Shop_Product_Change_Set.sql) | SQL | 15 | 0 | 6 | 21 |
| [static/MySQL/3001_tri_Shop_User_Change_Set.sql](/static/MySQL/3001_tri_Shop_User_Change_Set.sql) | SQL | 15 | 0 | 6 | 21 |
| [static/MySQL/3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql](/static/MySQL/3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql) | SQL | 15 | 0 | 6 | 21 |
| [static/MySQL/3010_tri_File_Type.sql](/static/MySQL/3010_tri_File_Type.sql) | SQL | 37 | 0 | 7 | 44 |
| [static/MySQL/3011_tri_File_Type_Audit.sql](/static/MySQL/3011_tri_File_Type_Audit.sql) | SQL | 21 | 0 | 7 | 28 |
| [static/MySQL/3012_tri_Shop_General.sql](/static/MySQL/3012_tri_Shop_General.sql) | SQL | 34 | 0 | 7 | 41 |
| [static/MySQL/3014_tri_Shop_Image_Type.sql](/static/MySQL/3014_tri_Shop_Image_Type.sql) | SQL | 50 | 6 | 9 | 65 |
| [static/MySQL/3100_tri_Shop_Region.sql](/static/MySQL/3100_tri_Shop_Region.sql) | SQL | 46 | 0 | 10 | 56 |
| [static/MySQL/3103_tri_Shop_Region_Branch.sql](/static/MySQL/3103_tri_Shop_Region_Branch.sql) | SQL | 38 | 6 | 10 | 54 |
| [static/MySQL/3109_tri_Shop_Storage_Location.sql](/static/MySQL/3109_tri_Shop_Storage_Location.sql) | SQL | 46 | 0 | 10 | 56 |
| [static/MySQL/3115_tri_Shop_Currency.sql](/static/MySQL/3115_tri_Shop_Currency.sql) | SQL | 54 | 0 | 9 | 63 |
| [static/MySQL/3118_tri_Shop_Tax_Or_Surcharge.sql](/static/MySQL/3118_tri_Shop_Tax_Or_Surcharge.sql) | SQL | 66 | 0 | 10 | 76 |
| [static/MySQL/3200_tri_Shop_Category.sql](/static/MySQL/3200_tri_Shop_Category.sql) | SQL | 54 | 0 | 8 | 62 |
| [static/MySQL/3203_tri_Shop_Product.sql](/static/MySQL/3203_tri_Shop_Product.sql) | SQL | 54 | 106 | 11 | 171 |
| [static/MySQL/3206_tri_Shop_Product_Permutation.sql](/static/MySQL/3206_tri_Shop_Product_Permutation.sql) | SQL | 112 | 36 | 12 | 160 |
| [static/MySQL/3209_tri_Shop_Variation_Type.sql](/static/MySQL/3209_tri_Shop_Variation_Type.sql) | SQL | 50 | 0 | 11 | 61 |
| [static/MySQL/3212_tri_Shop_Variation.sql](/static/MySQL/3212_tri_Shop_Variation.sql) | SQL | 46 | 0 | 10 | 56 |
| [static/MySQL/3215_tri_Shop_Product_Permutation_Variation_Link.sql](/static/MySQL/3215_tri_Shop_Product_Permutation_Variation_Link.sql) | SQL | 38 | 10 | 9 | 57 |
| [static/MySQL/3218_tri_Shop_Stock_Item.sql](/static/MySQL/3218_tri_Shop_Stock_Item.sql) | SQL | 82 | 0 | 10 | 92 |
| [static/MySQL/3221_tri_Shop_Product_Price.sql](/static/MySQL/3221_tri_Shop_Product_Price.sql) | SQL | 58 | 19 | 11 | 88 |
| [static/MySQL/3224_tri_Shop_Product_Image.sql](/static/MySQL/3224_tri_Shop_Product_Image.sql) | SQL | 54 | 10 | 9 | 73 |
| [static/MySQL/3227_tri_Shop_Delivery_Option.sql](/static/MySQL/3227_tri_Shop_Delivery_Option.sql) | SQL | 54 | 10 | 9 | 73 |
| [static/MySQL/3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql](/static/MySQL/3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql) | SQL | 42 | 28 | 9 | 79 |
| [static/MySQL/3233_tri_Shop_Discount.sql](/static/MySQL/3233_tri_Shop_Discount.sql) | SQL | 74 | 0 | 10 | 84 |
| [static/MySQL/3236_tri_Shop_Discount_Region_Currency_Link.sql](/static/MySQL/3236_tri_Shop_Discount_Region_Currency_Link.sql) | SQL | 34 | 10 | 9 | 53 |
| [static/MySQL/3300_tri_Shop_Permission_Group.sql](/static/MySQL/3300_tri_Shop_Permission_Group.sql) | SQL | 46 | 0 | 9 | 55 |
| [static/MySQL/3303_tri_Shop_Permission.sql](/static/MySQL/3303_tri_Shop_Permission.sql) | SQL | 54 | 0 | 9 | 63 |
| [static/MySQL/3306_tri_Shop_Role.sql](/static/MySQL/3306_tri_Shop_Role.sql) | SQL | 46 | 0 | 10 | 56 |
| [static/MySQL/3309_tri_Shop_Role_Permission_Link.sql](/static/MySQL/3309_tri_Shop_Role_Permission_Link.sql) | SQL | 38 | 10 | 10 | 58 |
| [static/MySQL/3312_tri_Shop_User.sql](/static/MySQL/3312_tri_Shop_User.sql) | SQL | 70 | 0 | 9 | 79 |
| [static/MySQL/3315_tri_Shop_User_Role_Link.sql](/static/MySQL/3315_tri_Shop_User_Role_Link.sql) | SQL | 34 | 0 | 9 | 43 |
| [static/MySQL/3318_tri_Shop_Address.sql](/static/MySQL/3318_tri_Shop_Address.sql) | SQL | 66 | 0 | 9 | 75 |
| [static/MySQL/3321_tri_Shop_User_Basket.sql](/static/MySQL/3321_tri_Shop_User_Basket.sql) | SQL | 46 | 0 | 9 | 55 |
| [static/MySQL/3324_tri_Shop_User_Order_Status.sql](/static/MySQL/3324_tri_Shop_User_Order_Status.sql) | SQL | 50 | 0 | 9 | 59 |
| [static/MySQL/3400_tri_Shop_Supplier.sql](/static/MySQL/3400_tri_Shop_Supplier.sql) | SQL | 66 | 0 | 10 | 76 |
| [static/MySQL/3403_tri_Shop_Unit_Measurement.sql](/static/MySQL/3403_tri_Shop_Unit_Measurement.sql) | SQL | 66 | 0 | 11 | 77 |
| [static/MySQL/3406_tri_Shop_Unit_Of_Measurement_Conversion.sql](/static/MySQL/3406_tri_Shop_Unit_Of_Measurement_Conversion.sql) | SQL | 54 | 0 | 11 | 65 |
| [static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql](/static/MySQL/3409_tri_Shop_Supplier_Purchase_Order.sql) | SQL | 42 | 18 | 11 | 71 |
| [static/MySQL/3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql](/static/MySQL/3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql) | SQL | 70 | 0 | 10 | 80 |
| [static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql](/static/MySQL/3415_tri_Shop_Manufacturing_Purchase_Order.sql) | SQL | 46 | 0 | 10 | 56 |
| [static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql](/static/MySQL/3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql) | SQL | 70 | 0 | 11 | 81 |
| [static/MySQL/3421_tri_Shop_Customer.sql](/static/MySQL/3421_tri_Shop_Customer.sql) | SQL | 62 | 0 | 11 | 73 |
| [static/MySQL/3424_tri_Shop_Customer_Sales_Order.sql](/static/MySQL/3424_tri_Shop_Customer_Sales_Order.sql) | SQL | 46 | 0 | 10 | 56 |
| [static/MySQL/3427_tri_Shop_Customer_Sales_Order_Product_Link.sql](/static/MySQL/3427_tri_Shop_Customer_Sales_Order_Product_Link.sql) | SQL | 70 | 0 | 10 | 80 |
| [static/MySQL/6000_p_debug_timing_reporting.sql](/static/MySQL/6000_p_debug_timing_reporting.sql) | SQL | 26 | 12 | 7 | 45 |
| [static/MySQL/6000_p_split.sql](/static/MySQL/6000_p_split.sql) | SQL | 68 | 16 | 19 | 103 |
| [static/MySQL/6001_p_clear_split_temp.sql](/static/MySQL/6001_p_clear_split_temp.sql) | SQL | 14 | 8 | 8 | 30 |
| [static/MySQL/6001_p_validate_guid.sql](/static/MySQL/6001_p_validate_guid.sql) | SQL | 29 | 21 | 9 | 59 |
| [static/MySQL/6206_fn_shop_get_product_permutation_name.sql](/static/MySQL/6206_fn_shop_get_product_permutation_name.sql) | SQL | 27 | 0 | 7 | 34 |
| [static/MySQL/6500_p_shop_calc_user.sql](/static/MySQL/6500_p_shop_calc_user.sql) | SQL | 425 | 87 | 45 | 557 |
| [static/MySQL/6501_p_shop_clear_calc_user.sql](/static/MySQL/6501_p_shop_clear_calc_user.sql) | SQL | 22 | 14 | 10 | 46 |
| [static/MySQL/7003_p_shop_get_many_access_level.sql](/static/MySQL/7003_p_shop_get_many_access_level.sql) | SQL | 22 | 13 | 11 | 46 |
| [static/MySQL/7101_p_shop_get_many_region.sql](/static/MySQL/7101_p_shop_get_many_region.sql) | SQL | 22 | 13 | 11 | 46 |
| [static/MySQL/7116_p_shop_get_many_currency.sql](/static/MySQL/7116_p_shop_get_many_currency.sql) | SQL | 24 | 13 | 11 | 48 |
| [static/MySQL/7122_p_shop_get_many_unit_measurement.sql](/static/MySQL/7122_p_shop_get_many_unit_measurement.sql) | SQL | 26 | 9 | 7 | 42 |
| [static/MySQL/7200_p_shop_save_product_category.sql](/static/MySQL/7200_p_shop_save_product_category.sql) | SQL | 224 | 13 | 32 | 269 |
| [static/MySQL/7200_p_shop_save_product_category_test.sql](/static/MySQL/7200_p_shop_save_product_category_test.sql) | SQL | 216 | 17 | 42 | 275 |
| [static/MySQL/7202_p_shop_clear_calc_product_permutation.sql](/static/MySQL/7202_p_shop_clear_calc_product_permutation.sql) | SQL | 24 | 18 | 11 | 53 |
| [static/MySQL/7203_p_shop_save_product.sql](/static/MySQL/7203_p_shop_save_product.sql) | SQL | 191 | 22 | 33 | 246 |
| [static/MySQL/7204_p_shop_calc_product_permutation.sql](/static/MySQL/7204_p_shop_calc_product_permutation.sql) | SQL | 528 | 108 | 56 | 692 |
| [static/MySQL/7204_p_shop_get_many_product.sql](/static/MySQL/7204_p_shop_get_many_product.sql) | SQL | 381 | 95 | 41 | 517 |
| [static/MySQL/7205_p_shop_get_many_stripe_product_new.sql](/static/MySQL/7205_p_shop_get_many_stripe_product_new.sql) | SQL | 209 | 57 | 42 | 308 |
| [static/MySQL/7206_p_shop_save_permutation.sql](/static/MySQL/7206_p_shop_save_permutation.sql) | SQL | 400 | 164 | 42 | 606 |
| [static/MySQL/7206_p_shop_save_product_permutation.sql](/static/MySQL/7206_p_shop_save_product_permutation.sql) | SQL | 428 | 99 | 35 | 562 |
| [static/MySQL/7210_p_shop_get_many_product_variation.sql](/static/MySQL/7210_p_shop_get_many_product_variation.sql) | SQL | 290 | 86 | 41 | 417 |
| [static/MySQL/7219_p_shop_get_many_stock_item.sql](/static/MySQL/7219_p_shop_get_many_stock_item.sql) | SQL | 557 | 157 | 56 | 770 |
| [static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql](/static/MySQL/7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql) | SQL | 738 | 201 | 68 | 1,007 |
| [static/MySQL/7223_p_shop_get_many_stripe_price_new.sql](/static/MySQL/7223_p_shop_get_many_stripe_price_new.sql) | SQL | 161 | 42 | 41 | 244 |
| [static/MySQL/7312_p_shop_save_user.sql](/static/MySQL/7312_p_shop_save_user.sql) | SQL | 109 | 42 | 30 | 181 |
| [static/MySQL/7313_p_get_many_user.sql](/static/MySQL/7313_p_get_many_user.sql) | SQL | 190 | 50 | 31 | 271 |
| [static/MySQL/7321_p_shop_save_user_basket.sql](/static/MySQL/7321_p_shop_save_user_basket.sql) | SQL | 608 | 175 | 48 | 831 |
| [static/MySQL/7400_p_shop_save_supplier.sql](/static/MySQL/7400_p_shop_save_supplier.sql) | SQL | 171 | 79 | 34 | 284 |
| [static/MySQL/7401_p_shop_get_many_supplier.sql](/static/MySQL/7401_p_shop_get_many_supplier.sql) | SQL | 157 | 74 | 35 | 266 |
| [static/MySQL/7403_p_save_supplier_purchase_order.sql](/static/MySQL/7403_p_save_supplier_purchase_order.sql) | SQL | 377 | 137 | 43 | 557 |
| [static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql](/static/MySQL/7404_p_shop_get_many_supplier_purchase_order.sql) | SQL | 546 | 162 | 58 | 766 |
| [static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql](/static/MySQL/7415_p_shop_save_manufacturing_purchase_order.sql) | SQL | 400 | 164 | 42 | 606 |
| [static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql](/static/MySQL/7416_p_shop_get_many_manufacturing_purchase_order.sql) | SQL | 426 | 181 | 52 | 659 |
| [static/MySQL/7421_p_shop_save_customer.sql](/static/MySQL/7421_p_shop_save_customer.sql) | SQL | 167 | 101 | 33 | 301 |
| [static/MySQL/7422_p_shop_get_many_customer.sql](/static/MySQL/7422_p_shop_get_many_customer.sql) | SQL | 169 | 63 | 40 | 272 |
| [static/MySQL/7424_p_shop_save_customer_sales_order.sql](/static/MySQL/7424_p_shop_save_customer_sales_order.sql) | SQL | 383 | 132 | 43 | 558 |
| [static/MySQL/7425_p_shop_get_many_customer_sales_order.sql](/static/MySQL/7425_p_shop_get_many_customer_sales_order.sql) | SQL | 534 | 181 | 62 | 777 |
| [static/MySQL/9000_populate.sql](/static/MySQL/9000_populate.sql) | SQL | 574 | 145 | 55 | 774 |
| [static/MySQL/9001_view.sql](/static/MySQL/9001_view.sql) | SQL | 137 | 14 | 57 | 208 |
| [static/MySQL/9010_anal.sql](/static/MySQL/9010_anal.sql) | SQL | 17 | 1 | 9 | 27 |
| [static/PostgreSQL/000_combine.sql](/static/PostgreSQL/000_combine.sql) | SQL | 9,567 | 4,004 | 1,543 | 15,114 |
| [static/PostgreSQL/001_destroy.sql](/static/PostgreSQL/001_destroy.sql) | SQL | 214 | 3 | 76 | 293 |
| [static/PostgreSQL/100.0_tbl_Shop_Product_Change_Set.sql](/static/PostgreSQL/100.0_tbl_Shop_Product_Change_Set.sql) | SQL | 7 | 1 | 5 | 13 |
| [static/PostgreSQL/100.1_tbl_Shop_User_Change_Set.sql](/static/PostgreSQL/100.1_tbl_Shop_User_Change_Set.sql) | SQL | 7 | 1 | 5 | 13 |
| [static/PostgreSQL/100.2_tbl_Shop_Access_Level.sql](/static/PostgreSQL/100.2_tbl_Shop_Access_Level.sql) | SQL | 15 | 1 | 5 | 21 |
| [static/PostgreSQL/100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql](/static/PostgreSQL/100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql) | SQL | 7 | 1 | 5 | 13 |
| [static/PostgreSQL/100.3_tbl_Shop_Access_Level_Audit.sql](/static/PostgreSQL/100.3_tbl_Shop_Access_Level_Audit.sql) | SQL | 16 | 1 | 5 | 22 |
| [static/PostgreSQL/100_tbl_Msg_Error_Type.sql](/static/PostgreSQL/100_tbl_Msg_Error_Type.sql) | SQL | 7 | 1 | 6 | 14 |
| [static/PostgreSQL/102_tbl_File_Type.sql](/static/PostgreSQL/102_tbl_File_Type.sql) | SQL | 11 | 1 | 6 | 18 |
| [static/PostgreSQL/103_tbl_File_Type_Audit.sql](/static/PostgreSQL/103_tbl_File_Type_Audit.sql) | SQL | 16 | 1 | 5 | 22 |
| [static/PostgreSQL/104_tbl_Shop_General.sql](/static/PostgreSQL/104_tbl_Shop_General.sql) | SQL | 11 | 1 | 5 | 17 |
| [static/PostgreSQL/105_tbl_Shop_General_Audit.sql](/static/PostgreSQL/105_tbl_Shop_General_Audit.sql) | SQL | 16 | 1 | 5 | 22 |
| [static/PostgreSQL/106_tbl_Shop_Category.sql](/static/PostgreSQL/106_tbl_Shop_Category.sql) | SQL | 15 | 1 | 6 | 22 |
| [static/PostgreSQL/107_tbl_Shop_Category_Audit.sql](/static/PostgreSQL/107_tbl_Shop_Category_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/108_tbl_Shop_Recurrence_Interval.sql](/static/PostgreSQL/108_tbl_Shop_Recurrence_Interval.sql) | SQL | 14 | 1 | 6 | 21 |
| [static/PostgreSQL/109_tbl_Shop_Recurrence_Interval_Audit.sql](/static/PostgreSQL/109_tbl_Shop_Recurrence_Interval_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/110.0_tbl_Shop_Region.sql](/static/PostgreSQL/110.0_tbl_Shop_Region.sql) | SQL | 14 | 1 | 5 | 20 |
| [static/PostgreSQL/110.1_tbl_Shop_Region_Audit.sql](/static/PostgreSQL/110.1_tbl_Shop_Region_Audit.sql) | SQL | 16 | 1 | 5 | 22 |
| [static/PostgreSQL/110.2_tbl_Shop_Region_Branch.sql](/static/PostgreSQL/110.2_tbl_Shop_Region_Branch.sql) | SQL | 22 | 2 | 5 | 29 |
| [static/PostgreSQL/110.3_tbl_Shop_Region_Branch_Audit.sql](/static/PostgreSQL/110.3_tbl_Shop_Region_Branch_Audit.sql) | SQL | 16 | 1 | 5 | 22 |
| [static/PostgreSQL/110.4_tbl_Shop_Currency.sql](/static/PostgreSQL/110.4_tbl_Shop_Currency.sql) | SQL | 17 | 1 | 5 | 23 |
| [static/PostgreSQL/110.5_tbl_Shop_Currency_Audit.sql](/static/PostgreSQL/110.5_tbl_Shop_Currency_Audit.sql) | SQL | 17 | 1 | 5 | 23 |
| [static/PostgreSQL/110.6_tbl_Shop_Tax_Or_Surcharge.sql](/static/PostgreSQL/110.6_tbl_Shop_Tax_Or_Surcharge.sql) | SQL | 32 | 1 | 6 | 39 |
| [static/PostgreSQL/110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql](/static/PostgreSQL/110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql) | SQL | 17 | 1 | 5 | 23 |
| [static/PostgreSQL/110.8_tbl_Shop_Product.sql](/static/PostgreSQL/110.8_tbl_Shop_Product.sql) | SQL | 19 | 24 | 6 | 49 |
| [static/PostgreSQL/110.9_tbl_Shop_Product_Audit.sql](/static/PostgreSQL/110.9_tbl_Shop_Product_Audit.sql) | SQL | 16 | 1 | 5 | 22 |
| [static/PostgreSQL/112_tbl_Shop_Variation_Type.sql](/static/PostgreSQL/112_tbl_Shop_Variation_Type.sql) | SQL | 15 | 1 | 5 | 21 |
| [static/PostgreSQL/113.0_tbl_Shop_Variation_Type_Audit.sql](/static/PostgreSQL/113.0_tbl_Shop_Variation_Type_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/114_tbl_Shop_Variation.sql](/static/PostgreSQL/114_tbl_Shop_Variation.sql) | SQL | 19 | 1 | 6 | 26 |
| [static/PostgreSQL/115_tbl_Shop_Variation_Audit.sql](/static/PostgreSQL/115_tbl_Shop_Variation_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql](/static/PostgreSQL/117.1_tbl_Shop_Product_Permutation.sql) | SQL | 33 | 9 | 6 | 48 |
| [static/PostgreSQL/117.2_tbl_Shop_Product_Permutation_Audit.sql](/static/PostgreSQL/117.2_tbl_Shop_Product_Permutation_Audit.sql) | SQL | 17 | 1 | 6 | 24 |
| [static/PostgreSQL/117.3_tbl_Shop_Product_Permutation_Variation_Link.sql](/static/PostgreSQL/117.3_tbl_Shop_Product_Permutation_Variation_Link.sql) | SQL | 22 | 1 | 6 | 29 |
| [static/PostgreSQL/117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql](/static/PostgreSQL/117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql) | SQL | 17 | 1 | 5 | 23 |
| [static/PostgreSQL/117.5_tbl_Shop_Product_Currency_Region_Link.sql](/static/PostgreSQL/117.5_tbl_Shop_Product_Currency_Region_Link.sql) | SQL | 34 | 1 | 5 | 40 |
| [static/PostgreSQL/117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql](/static/PostgreSQL/117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/118_tbl_Shop_Image_Type.sql](/static/PostgreSQL/118_tbl_Shop_Image_Type.sql) | SQL | 15 | 1 | 6 | 22 |
| [static/PostgreSQL/119_tbl_Shop_Image_Type_Audit.sql](/static/PostgreSQL/119_tbl_Shop_Image_Type_Audit.sql) | SQL | 16 | 1 | 5 | 22 |
| [static/PostgreSQL/120_tbl_Shop_Image.sql](/static/PostgreSQL/120_tbl_Shop_Image.sql) | SQL | 29 | 1 | 5 | 35 |
| [static/PostgreSQL/121_tbl_Shop_Image_Audit.sql](/static/PostgreSQL/121_tbl_Shop_Image_Audit.sql) | SQL | 15 | 1 | 5 | 21 |
| [static/PostgreSQL/122_tbl_Shop_Delivery_Option.sql](/static/PostgreSQL/122_tbl_Shop_Delivery_Option.sql) | SQL | 19 | 1 | 6 | 26 |
| [static/PostgreSQL/123_tbl_Shop_Delivery_Option_Audit.sql](/static/PostgreSQL/123_tbl_Shop_Delivery_Option_Audit.sql) | SQL | 16 | 1 | 5 | 22 |
| [static/PostgreSQL/124_tbl_Shop_Product_Delivery_Option_Link.sql](/static/PostgreSQL/124_tbl_Shop_Product_Delivery_Option_Link.sql) | SQL | 38 | 1 | 5 | 44 |
| [static/PostgreSQL/125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql](/static/PostgreSQL/125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql) | SQL | 16 | 1 | 5 | 22 |
| [static/PostgreSQL/130.4_tbl_Shop_Discount.sql](/static/PostgreSQL/130.4_tbl_Shop_Discount.sql) | SQL | 30 | 13 | 6 | 49 |
| [static/PostgreSQL/131_tbl_Shop_Discount_Audit.sql](/static/PostgreSQL/131_tbl_Shop_Discount_Audit.sql) | SQL | 17 | 1 | 5 | 23 |
| [static/PostgreSQL/132_tbl_Shop_Discount_Region_Currency_Link.sql](/static/PostgreSQL/132_tbl_Shop_Discount_Region_Currency_Link.sql) | SQL | 26 | 1 | 5 | 32 |
| [static/PostgreSQL/133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql](/static/PostgreSQL/133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql) | SQL | 17 | 1 | 5 | 23 |
| [static/PostgreSQL/153_tbl_Shop_Permission_Group.sql](/static/PostgreSQL/153_tbl_Shop_Permission_Group.sql) | SQL | 15 | 1 | 5 | 21 |
| [static/PostgreSQL/154_tbl_Shop_Permission_Group_Audit.sql](/static/PostgreSQL/154_tbl_Shop_Permission_Group_Audit.sql) | SQL | 17 | 1 | 5 | 23 |
| [static/PostgreSQL/155_tbl_Shop_Permission.sql](/static/PostgreSQL/155_tbl_Shop_Permission.sql) | SQL | 23 | 1 | 5 | 29 |
| [static/PostgreSQL/156_tbl_Shop_Permission_Audit.sql](/static/PostgreSQL/156_tbl_Shop_Permission_Audit.sql) | SQL | 17 | 1 | 5 | 23 |
| [static/PostgreSQL/157_tbl_Shop_Role.sql](/static/PostgreSQL/157_tbl_Shop_Role.sql) | SQL | 14 | 1 | 5 | 20 |
| [static/PostgreSQL/158_tbl_Shop_Role_Audit.sql](/static/PostgreSQL/158_tbl_Shop_Role_Audit.sql) | SQL | 17 | 1 | 5 | 23 |
| [static/PostgreSQL/159_tbl_Shop_Role_Permission_Link.sql](/static/PostgreSQL/159_tbl_Shop_Role_Permission_Link.sql) | SQL | 25 | 1 | 5 | 31 |
| [static/PostgreSQL/160_tbl_Shop_Role_Permission_Link_Audit.sql](/static/PostgreSQL/160_tbl_Shop_Role_Permission_Link_Audit.sql) | SQL | 16 | 1 | 5 | 22 |
| [static/PostgreSQL/161_tbl_Shop_User.sql](/static/PostgreSQL/161_tbl_Shop_User.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/162_tbl_Shop_User_Audit.sql](/static/PostgreSQL/162_tbl_Shop_User_Audit.sql) | SQL | 17 | 1 | 5 | 23 |
| [static/PostgreSQL/163_tbl_Shop_User_Role_Link.sql](/static/PostgreSQL/163_tbl_Shop_User_Role_Link.sql) | SQL | 20 | 1 | 5 | 26 |
| [static/PostgreSQL/164_tbl_Shop_User_Role_Link_Audit.sql](/static/PostgreSQL/164_tbl_Shop_User_Role_Link_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/165_tbl_Shop_Address.sql](/static/PostgreSQL/165_tbl_Shop_Address.sql) | SQL | 19 | 9 | 5 | 33 |
| [static/PostgreSQL/166_tbl_Shop_Address_Audit.sql](/static/PostgreSQL/166_tbl_Shop_Address_Audit.sql) | SQL | 17 | 1 | 5 | 23 |
| [static/PostgreSQL/167_tbl_Shop_User_Basket.sql](/static/PostgreSQL/167_tbl_Shop_User_Basket.sql) | SQL | 27 | 7 | 6 | 40 |
| [static/PostgreSQL/168_tbl_Shop_User_Basket_Audit.sql](/static/PostgreSQL/168_tbl_Shop_User_Basket_Audit.sql) | SQL | 16 | 7 | 5 | 28 |
| [static/PostgreSQL/169_tbl_Shop_User_Order_Status.sql](/static/PostgreSQL/169_tbl_Shop_User_Order_Status.sql) | SQL | 15 | 1 | 6 | 22 |
| [static/PostgreSQL/170_tbl_Shop_User_Order_Status_Audit.sql](/static/PostgreSQL/170_tbl_Shop_User_Order_Status_Audit.sql) | SQL | 16 | 1 | 5 | 22 |
| [static/PostgreSQL/181.0_tbl_Shop_Supplier.sql](/static/PostgreSQL/181.0_tbl_Shop_Supplier.sql) | SQL | 26 | 1 | 6 | 33 |
| [static/PostgreSQL/181.1_tbl_Shop_Supplier_Audit.sql](/static/PostgreSQL/181.1_tbl_Shop_Supplier_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/181.2_tbl_Shop_Unit_Measurement.sql](/static/PostgreSQL/181.2_tbl_Shop_Unit_Measurement.sql) | SQL | 15 | 1 | 7 | 23 |
| [static/PostgreSQL/181.3_tbl_Shop_Unit_Measurement_Audit.sql](/static/PostgreSQL/181.3_tbl_Shop_Unit_Measurement_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/181.4_tbl_Shop_Unit_Measurement_Conversion.sql](/static/PostgreSQL/181.4_tbl_Shop_Unit_Measurement_Conversion.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql](/static/PostgreSQL/181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/181.6_tbl_Shop_Supplier_Purchase_Order.sql](/static/PostgreSQL/181.6_tbl_Shop_Supplier_Purchase_Order.sql) | SQL | 19 | 17 | 6 | 42 |
| [static/PostgreSQL/181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql](/static/PostgreSQL/181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql](/static/PostgreSQL/181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql) | SQL | 31 | 1 | 6 | 38 |
| [static/PostgreSQL/181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql](/static/PostgreSQL/181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql](/static/PostgreSQL/182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql) | SQL | 21 | 7 | 7 | 35 |
| [static/PostgreSQL/183_tbl_Shop_Manufacturing_Purchase_Order.sql](/static/PostgreSQL/183_tbl_Shop_Manufacturing_Purchase_Order.sql) | SQL | 16 | 11 | 7 | 34 |
| [static/PostgreSQL/184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql](/static/PostgreSQL/184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql](/static/PostgreSQL/185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql) | SQL | 32 | 1 | 6 | 39 |
| [static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql](/static/PostgreSQL/186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql) | SQL | 21 | 8 | 7 | 36 |
| [static/PostgreSQL/186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql](/static/PostgreSQL/186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/187.0_tbl_Shop_Customer.sql](/static/PostgreSQL/187.0_tbl_Shop_Customer.sql) | SQL | 24 | 1 | 5 | 30 |
| [static/PostgreSQL/187.1_tbl_Shop_Customer_Audit.sql](/static/PostgreSQL/187.1_tbl_Shop_Customer_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/187.2_tbl_Shop_Customer_Sales_Order.sql](/static/PostgreSQL/187.2_tbl_Shop_Customer_Sales_Order.sql) | SQL | 19 | 11 | 6 | 36 |
| [static/PostgreSQL/188_tbl_Shop_Customer_Sales_Order_Audit.sql](/static/PostgreSQL/188_tbl_Shop_Customer_Sales_Order_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/189_tbl_Shop_Customer_Sales_Order_Product_Link.sql](/static/PostgreSQL/189_tbl_Shop_Customer_Sales_Order_Product_Link.sql) | SQL | 31 | 1 | 7 | 39 |
| [static/PostgreSQL/190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql](/static/PostgreSQL/190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql](/static/PostgreSQL/191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql) | SQL | 21 | 7 | 7 | 35 |
| [static/PostgreSQL/300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql](/static/PostgreSQL/300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql) | SQL | 20 | 1 | 6 | 27 |
| [static/PostgreSQL/301.1_tri_Shop_User_Change_Set.sql](/static/PostgreSQL/301.1_tri_Shop_User_Change_Set.sql) | SQL | 16 | 1 | 4 | 21 |
| [static/PostgreSQL/301.2_tri_Shop_Access_Level.sql](/static/PostgreSQL/301.2_tri_Shop_Access_Level.sql) | SQL | 52 | 6 | 9 | 67 |
| [static/PostgreSQL/301_tri_Shop_Product_Change_Set.sql](/static/PostgreSQL/301_tri_Shop_Product_Change_Set.sql) | SQL | 16 | 1 | 6 | 23 |
| [static/PostgreSQL/302_tri_File_Type.sql](/static/PostgreSQL/302_tri_File_Type.sql) | SQL | 37 | 4 | 8 | 49 |
| [static/PostgreSQL/303_tri_File_Type_Audit.sql](/static/PostgreSQL/303_tri_File_Type_Audit.sql) | SQL | 24 | 1 | 8 | 33 |
| [static/PostgreSQL/304_tri_Shop_General.sql](/static/PostgreSQL/304_tri_Shop_General.sql) | SQL | 36 | 2 | 9 | 47 |
| [static/PostgreSQL/306_tri_Shop_Category.sql](/static/PostgreSQL/306_tri_Shop_Category.sql) | SQL | 48 | 6 | 10 | 64 |
| [static/PostgreSQL/308_tri_Shop_Recurrence_Interval.sql](/static/PostgreSQL/308_tri_Shop_Recurrence_Interval.sql) | SQL | 45 | 5 | 10 | 60 |
| [static/PostgreSQL/310.0_tri_Shop_Region.sql](/static/PostgreSQL/310.0_tri_Shop_Region.sql) | SQL | 45 | 5 | 10 | 60 |
| [static/PostgreSQL/310.2_tri_Shop_Region_Branch.sql](/static/PostgreSQL/310.2_tri_Shop_Region_Branch.sql) | SQL | 39 | 9 | 10 | 58 |
| [static/PostgreSQL/310.4_tri_Shop_Currency.sql](/static/PostgreSQL/310.4_tri_Shop_Currency.sql) | SQL | 55 | 7 | 10 | 72 |
| [static/PostgreSQL/310.6_tri_Shop_Tax_Or_Surcharge.sql](/static/PostgreSQL/310.6_tri_Shop_Tax_Or_Surcharge.sql) | SQL | 60 | 10 | 11 | 81 |
| [static/PostgreSQL/310.8_tri_Shop_Product.sql](/static/PostgreSQL/310.8_tri_Shop_Product.sql) | SQL | 51 | 113 | 10 | 174 |
| [static/PostgreSQL/312_tri_Shop_Variation_Type.sql](/static/PostgreSQL/312_tri_Shop_Variation_Type.sql) | SQL | 48 | 6 | 10 | 64 |
| [static/PostgreSQL/314_tri_Shop_Variation.sql](/static/PostgreSQL/314_tri_Shop_Variation.sql) | SQL | 45 | 5 | 10 | 60 |
| [static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql](/static/PostgreSQL/317.1_tri_Shop_Product_Permutation.sql) | SQL | 82 | 42 | 10 | 134 |
| [static/PostgreSQL/317.3_tri_Shop_Product_Permutation_Variation_Link.sql](/static/PostgreSQL/317.3_tri_Shop_Product_Permutation_Variation_Link.sql) | SQL | 43 | 13 | 10 | 66 |
| [static/PostgreSQL/317.5_tri_Shop_Product_Currency_Region_Link.sql](/static/PostgreSQL/317.5_tri_Shop_Product_Currency_Region_Link.sql) | SQL | 49 | 38 | 11 | 98 |
| [static/PostgreSQL/318_tri_Shop_Image_Type.sql](/static/PostgreSQL/318_tri_Shop_Image_Type.sql) | SQL | 48 | 6 | 10 | 64 |
| [static/PostgreSQL/320_tri_Shop_Image.sql](/static/PostgreSQL/320_tri_Shop_Image.sql) | SQL | 58 | 8 | 10 | 76 |
| [static/PostgreSQL/322_tri_Shop_Delivery_Option.sql](/static/PostgreSQL/322_tri_Shop_Delivery_Option.sql) | SQL | 57 | 9 | 10 | 76 |
| [static/PostgreSQL/324_tri_Shop_Product_Delivery_Option_Link.sql](/static/PostgreSQL/324_tri_Shop_Product_Delivery_Option_Link.sql) | SQL | 46 | 22 | 10 | 78 |
| [static/PostgreSQL/330_tri_Shop_Discount.sql](/static/PostgreSQL/330_tri_Shop_Discount.sql) | SQL | 66 | 12 | 10 | 88 |
| [static/PostgreSQL/332_tri_Shop_Discount_Region_Currency_Link.sql](/static/PostgreSQL/332_tri_Shop_Discount_Region_Currency_Link.sql) | SQL | 40 | 12 | 10 | 62 |
| [static/PostgreSQL/353_tri_Shop_Permission_Group.sql](/static/PostgreSQL/353_tri_Shop_Permission_Group.sql) | SQL | 49 | 5 | 10 | 64 |
| [static/PostgreSQL/355_tri_Shop_Permission.sql](/static/PostgreSQL/355_tri_Shop_Permission.sql) | SQL | 55 | 7 | 10 | 72 |
| [static/PostgreSQL/357_tri_Shop_Role.sql](/static/PostgreSQL/357_tri_Shop_Role.sql) | SQL | 49 | 5 | 10 | 64 |
| [static/PostgreSQL/359_tri_Shop_Role_Permission_Link.sql](/static/PostgreSQL/359_tri_Shop_Role_Permission_Link.sql) | SQL | 43 | 13 | 10 | 66 |
| [static/PostgreSQL/361_tri_Shop_User.sql](/static/PostgreSQL/361_tri_Shop_User.sql) | SQL | 55 | 7 | 10 | 72 |
| [static/PostgreSQL/363_tri_Shop_User_Role_Link.sql](/static/PostgreSQL/363_tri_Shop_User_Role_Link.sql) | SQL | 40 | 2 | 10 | 52 |
| [static/PostgreSQL/365_tri_Shop_Address.sql](/static/PostgreSQL/365_tri_Shop_Address.sql) | SQL | 64 | 10 | 9 | 83 |
| [static/PostgreSQL/367_tri_Shop_User_Basket.sql](/static/PostgreSQL/367_tri_Shop_User_Basket.sql) | SQL | 49 | 5 | 10 | 64 |
| [static/PostgreSQL/369_tri_Shop_User_Order_Status.sql](/static/PostgreSQL/369_tri_Shop_User_Order_Status.sql) | SQL | 48 | 6 | 10 | 64 |
| [static/PostgreSQL/381.0_tri_Shop_Supplier.sql](/static/PostgreSQL/381.0_tri_Shop_Supplier.sql) | SQL | 64 | 10 | 10 | 84 |
| [static/PostgreSQL/381.2_tri_Shop_Unit_Measurement.sql](/static/PostgreSQL/381.2_tri_Shop_Unit_Measurement.sql) | SQL | 52 | 6 | 10 | 68 |
| [static/PostgreSQL/381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql](/static/PostgreSQL/381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql) | SQL | 55 | 7 | 10 | 72 |
| [static/PostgreSQL/381.6_tri_Shop_Supplier_Purchase_Order.sql](/static/PostgreSQL/381.6_tri_Shop_Supplier_Purchase_Order.sql) | SQL | 46 | 22 | 11 | 79 |
| [static/PostgreSQL/381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql](/static/PostgreSQL/381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql) | SQL | 67 | 11 | 10 | 88 |
| [static/PostgreSQL/383_tri_Shop_Manufacturing_Purchase_Order.sql](/static/PostgreSQL/383_tri_Shop_Manufacturing_Purchase_Order.sql) | SQL | 49 | 5 | 10 | 64 |
| [static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql](/static/PostgreSQL/385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql) | SQL | 67 | 11 | 10 | 88 |
| [static/PostgreSQL/387.0_tri_Shop_Customer.sql](/static/PostgreSQL/387.0_tri_Shop_Customer.sql) | SQL | 61 | 9 | 10 | 80 |
| [static/PostgreSQL/387.2_tri_Shop_Customer_Sales_Order.sql](/static/PostgreSQL/387.2_tri_Shop_Customer_Sales_Order.sql) | SQL | 49 | 5 | 9 | 63 |
| [static/PostgreSQL/389_tri_Shop_Customer_Sales_Order_Product_Link.sql](/static/PostgreSQL/389_tri_Shop_Customer_Sales_Order_Product_Link.sql) | SQL | 67 | 11 | 9 | 87 |
| [static/PostgreSQL/600_p_shop_save_product.sql](/static/PostgreSQL/600_p_shop_save_product.sql) | SQL | 199 | 28 | 31 | 258 |
| [static/PostgreSQL/600_p_shop_user_eval.sql](/static/PostgreSQL/600_p_shop_user_eval.sql) | SQL | 385 | 312 | 34 | 731 |
| [static/PostgreSQL/602_p_save_supplier_purchase_order.sql](/static/PostgreSQL/602_p_save_supplier_purchase_order.sql) | SQL | 298 | 181 | 37 | 516 |
| [static/PostgreSQL/602_p_shop_save_supplier.sql](/static/PostgreSQL/602_p_shop_save_supplier.sql) | SQL | 155 | 120 | 32 | 307 |
| [static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql](/static/PostgreSQL/604_p_shop_save_manufacturing_purchase_order.sql) | SQL | 312 | 258 | 37 | 607 |
| [static/PostgreSQL/605_p_shop_save_customer.sql](/static/PostgreSQL/605_p_shop_save_customer.sql) | SQL | 125 | 162 | 27 | 314 |
| [static/PostgreSQL/606_p_shop_save_customer_sales_order.sql](/static/PostgreSQL/606_p_shop_save_customer_sales_order.sql) | SQL | 362 | 158 | 36 | 556 |
| [static/PostgreSQL/610_p_shop_save_user.sql](/static/PostgreSQL/610_p_shop_save_user.sql) | SQL | 94 | 47 | 26 | 167 |
| [static/PostgreSQL/611_p_shop_save_user_basket.sql](/static/PostgreSQL/611_p_shop_save_user_basket.sql) | SQL | 499 | 297 | 38 | 834 |
| [static/PostgreSQL/700_p_shop_get_many_product.sql](/static/PostgreSQL/700_p_shop_get_many_product.sql) | SQL | 736 | 436 | 60 | 1,232 |
| [static/PostgreSQL/701_p_shop_get_many_role_permission.sql](/static/PostgreSQL/701_p_shop_get_many_role_permission.sql) | SQL | 0 | 148 | 5 | 153 |
| [static/PostgreSQL/702.1_p_shop_get_many_currency.sql](/static/PostgreSQL/702.1_p_shop_get_many_currency.sql) | SQL | 26 | 26 | 6 | 58 |
| [static/PostgreSQL/702.2_p_shop_get_many_region.sql](/static/PostgreSQL/702.2_p_shop_get_many_region.sql) | SQL | 24 | 31 | 6 | 61 |
| [static/PostgreSQL/703_p_shop_get_many_user_order.sql](/static/PostgreSQL/703_p_shop_get_many_user_order.sql) | SQL | 143 | 111 | 30 | 284 |
| [static/PostgreSQL/704_p_shop_get_many_stripe_product_new.sql](/static/PostgreSQL/704_p_shop_get_many_stripe_product_new.sql) | SQL | 181 | 105 | 31 | 317 |
| [static/PostgreSQL/705_p_shop_get_many_stripe_price_new.sql](/static/PostgreSQL/705_p_shop_get_many_stripe_price_new.sql) | SQL | 130 | 92 | 32 | 254 |
| [static/PostgreSQL/706_p_shop_get_many_supplier.sql](/static/PostgreSQL/706_p_shop_get_many_supplier.sql) | SQL | 136 | 84 | 28 | 248 |
| [static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql](/static/PostgreSQL/706_p_shop_get_many_supplier_purchase_order.sql) | SQL | 487 | 178 | 45 | 710 |
| [static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql](/static/PostgreSQL/708_p_shop_get_many_manufacturing_purchase_order.sql) | SQL | 375 | 187 | 40 | 602 |
| [static/PostgreSQL/709_p_shop_get_many_customer.sql](/static/PostgreSQL/709_p_shop_get_many_customer.sql) | SQL | 136 | 85 | 29 | 250 |
| [static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql](/static/PostgreSQL/710_p_shop_get_many_customer_sales_order.sql) | SQL | 469 | 206 | 44 | 719 |
| [static/PostgreSQL/900_populate.sql](/static/PostgreSQL/900_populate.sql) | SQL | 444 | 166 | 46 | 656 |
| [static/PostgreSQL/901_view.sql](/static/PostgreSQL/901_view.sql) | SQL | 87 | 52 | 50 | 189 |
| [static/PostgreSQL/910_anal.sql](/static/PostgreSQL/910_anal.sql) | SQL | 16 | 1 | 10 | 27 |
| [static/PostgreSQL/920_edit_permissions.sql](/static/PostgreSQL/920_edit_permissions.sql) | SQL | 70 | 4 | 9 | 83 |
| [static/batch/sql_combine.bat](/static/batch/sql_combine.bat) | Batch | 61 | 22 | 15 | 98 |
| [static/css/components/button.css](/static/css/components/button.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/components/card.css](/static/css/components/card.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/components/dialog.css](/static/css/components/dialog.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/components/form.css](/static/css/components/form.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/components/modal.css](/static/css/components/modal.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/components/navigation.css](/static/css/components/navigation.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/components/overlay.css](/static/css/components/overlay.css) | CSS | 6 | 0 | 0 | 6 |
| [static/css/components/table.css](/static/css/components/table.css) | CSS | 25 | 5 | 6 | 36 |
| [static/css/layouts/footer.css](/static/css/layouts/footer.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/layouts/header.css](/static/css/layouts/header.css) | CSS | 12 | 0 | 3 | 15 |
| [static/css/layouts/table-main.css](/static/css/layouts/table-main.css) | CSS | 14 | 0 | 1 | 15 |
| [static/css/lib/reset.css](/static/css/lib/reset.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/lib/typography.css](/static/css/lib/typography.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/lib/utils.css](/static/css/lib/utils.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/lib/variables.css](/static/css/lib/variables.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/main.css](/static/css/main.css) | CSS | 386 | 146 | 66 | 598 |
| [static/css/pages/core/admin_home.css](/static/css/pages/core/admin_home.css) | CSS | 6 | 0 | 1 | 7 |
| [static/css/pages/core/contact.css](/static/css/pages/core/contact.css) | CSS | 7 | 14 | 5 | 26 |
| [static/css/pages/core/home.css](/static/css/pages/core/home.css) | CSS | 25 | 5 | 6 | 36 |
| [static/css/pages/core/services.css](/static/css/pages/core/services.css) | CSS | 18 | 16 | 3 | 37 |
| [static/css/pages/legal/accessibility_report.css](/static/css/pages/legal/accessibility_report.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/pages/legal/accessibility_statement.css](/static/css/pages/legal/accessibility_statement.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/pages/legal/license.css](/static/css/pages/legal/license.css) | CSS | 6 | 0 | 2 | 8 |
| [static/css/pages/legal/privacy_policy.css](/static/css/pages/legal/privacy_policy.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/pages/legal/retention_schedule.css](/static/css/pages/legal/retention_schedule.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/pages/store/home.css](/static/css/pages/store/home.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/pages/store/product_categories.css](/static/css/pages/store/product_categories.css) | CSS | 61 | 19 | 17 | 97 |
| [static/css/pages/store/product_permutations.css](/static/css/pages/store/product_permutations.css) | CSS | 126 | 5 | 12 | 143 |
| [static/css/pages/store/stock_items.css](/static/css/pages/store/stock_items.css) | CSS | 33 | 0 | 7 | 40 |
| [static/css/sections/core.css](/static/css/sections/core.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/sections/legal.css](/static/css/sections/legal.css) | CSS | 0 | 0 | 1 | 1 |
| [static/css/sections/store.css](/static/css/sections/store.css) | CSS | 42 | 1 | 10 | 53 |
| [static/css/themes/dark.css](/static/css/themes/dark.css) | CSS | 33 | 6 | 6 | 45 |
| [static/css/themes/light.css](/static/css/themes/light.css) | CSS | 33 | 6 | 6 | 45 |
| [static/docs/example abstract base class.py](/static/docs/example%20abstract%20base%20class.py) | Python | 70 | 2 | 17 | 89 |
| [static/docs/server.py](/static/docs/server.py) | Python | 81 | 19 | 24 | 124 |
| [static/docs/template webpage.html](/static/docs/template%20webpage.html) | HTML | 56 | 0 | 8 | 64 |
| [static/docs/test.py](/static/docs/test.py) | Python | 1 | 0 | 0 | 1 |
| [static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json](/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json) | JSON | 1 | 0 | 0 | 1 |
| [static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html](/static/docs/wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html) | HTML | 60 | 0 | 0 | 60 |
| [static/images/MS_SQL_Server.svg](/static/images/MS_SQL_Server.svg) | XML | 1 | 0 | 0 | 1 |
| [static/js/accessibility_statement.js](/static/js/accessibility_statement.js) | JavaScript | 4 | 0 | 2 | 6 |
| [static/js/api.js](/static/js/api.js) | JavaScript | 82 | 36 | 12 | 130 |
| [static/js/app.js](/static/js/app.js) | JavaScript | 37 | 37 | 16 | 90 |
| [static/js/components/common/inputs/input_date.js](/static/js/components/common/inputs/input_date.js) | JavaScript | 38 | 133 | 13 | 184 |
| [static/js/components/common/inputs/select.js](/static/js/components/common/inputs/select.js) | JavaScript | 14 | 0 | 2 | 16 |
| [static/js/components/common/inputs/textarea.js](/static/js/components/common/inputs/textarea.js) | JavaScript | 30 | 3 | 12 | 45 |
| [static/js/components/common/table.js](/static/js/components/common/table.js) | JavaScript | 13 | 1 | 8 | 22 |
| [static/js/components/common/temporary/overlay_confirm.js](/static/js/components/common/temporary/overlay_confirm.js) | JavaScript | 24 | 0 | 2 | 26 |
| [static/js/components/common/temporary/overlay_error.js](/static/js/components/common/temporary/overlay_error.js) | JavaScript | 17 | 0 | 2 | 19 |
| [static/js/components/common/video.js](/static/js/components/common/video.js) | JavaScript | 10 | 0 | 4 | 14 |
| [static/js/dom.js](/static/js/dom.js) | JavaScript | 169 | 18 | 11 | 198 |
| [static/js/lib/business_objects.js](/static/js/lib/business_objects.js) | JavaScript | 15 | 7 | 2 | 24 |
| [static/js/lib/common.js](/static/js/lib/common.js) | JavaScript | 63 | 3 | 19 | 85 |
| [static/js/lib/constants.js](/static/js/lib/constants.js) | JavaScript | 4 | 1 | 2 | 7 |
| [static/js/lib/events.js](/static/js/lib/events.js) | JavaScript | 9 | 0 | 1 | 10 |
| [static/js/lib/extras.js](/static/js/lib/extras.js) | JavaScript | 0 | 0 | 1 | 1 |
| [static/js/lib/local_storage.js](/static/js/lib/local_storage.js) | JavaScript | 9 | 48 | 5 | 62 |
| [static/js/lib/utils.js](/static/js/lib/utils.js) | JavaScript | 9 | 10 | 0 | 19 |
| [static/js/lib/validation.js](/static/js/lib/validation.js) | JavaScript | 117 | 6 | 41 | 164 |
| [static/js/pages/base.js](/static/js/pages/base.js) | JavaScript | 183 | 16 | 19 | 218 |
| [static/js/pages/base_table.js](/static/js/pages/base_table.js) | JavaScript | 358 | 131 | 9 | 498 |
| [static/js/pages/core/admin_home.js](/static/js/pages/core/admin_home.js) | JavaScript | 39 | 0 | 8 | 47 |
| [static/js/pages/core/contact.js](/static/js/pages/core/contact.js) | JavaScript | 10 | 0 | 5 | 15 |
| [static/js/pages/core/home.js](/static/js/pages/core/home.js) | JavaScript | 14 | 0 | 6 | 20 |
| [static/js/pages/core/services.js](/static/js/pages/core/services.js) | JavaScript | 13 | 0 | 7 | 20 |
| [static/js/pages/legal/accessibility_report.js](/static/js/pages/legal/accessibility_report.js) | JavaScript | 13 | 0 | 5 | 18 |
| [static/js/pages/legal/accessibility_statement.js](/static/js/pages/legal/accessibility_statement.js) | JavaScript | 13 | 0 | 5 | 18 |
| [static/js/pages/legal/license.js](/static/js/pages/legal/license.js) | JavaScript | 13 | 0 | 5 | 18 |
| [static/js/pages/legal/privacy_policy.js](/static/js/pages/legal/privacy_policy.js) | JavaScript | 13 | 0 | 5 | 18 |
| [static/js/pages/legal/retention_schedule.js](/static/js/pages/legal/retention_schedule.js) | JavaScript | 13 | 0 | 5 | 18 |
| [static/js/pages/store/basket.js](/static/js/pages/store/basket.js) | JavaScript | 137 | 12 | 46 | 195 |
| [static/js/pages/store/home.js](/static/js/pages/store/home.js) | JavaScript | 15 | 0 | 6 | 21 |
| [static/js/pages/store/mixin.js](/static/js/pages/store/mixin.js) | JavaScript | 318 | 112 | 18 | 448 |
| [static/js/pages/store/mixin_table.js](/static/js/pages/store/mixin_table.js) | JavaScript | 20 | 3 | 2 | 25 |
| [static/js/pages/store/product_categories.js](/static/js/pages/store/product_categories.js) | JavaScript | 98 | 26 | 15 | 139 |
| [static/js/pages/store/product_permutations.js](/static/js/pages/store/product_permutations.js) | JavaScript | 440 | 92 | 24 | 556 |
| [static/js/pages/store/stock_items.js](/static/js/pages/store/stock_items.js) | JavaScript | 382 | 63 | 64 | 509 |
| [static/js/pages/user/user.js](/static/js/pages/user/user.js) | JavaScript | 14 | 0 | 6 | 20 |
| [static/js/router.js](/static/js/router.js) | JavaScript | 88 | 243 | 16 | 347 |
| [static/js/sections/core.js](/static/js/sections/core.js) | JavaScript | 0 | 0 | 1 | 1 |
| [static/js/sections/legal.js](/static/js/sections/legal.js) | JavaScript | 0 | 0 | 1 | 1 |
| [static/js/sections/store.js](/static/js/sections/store.js) | JavaScript | 0 | 0 | 1 | 1 |
| [static/python/rename_files.py](/static/python/rename_files.py) | Python | 14 | 2 | 5 | 21 |
| [templates/_shared.html](/templates/_shared.html) | HTML | 0 | 0 | 2 | 2 |
| [templates/components/common/buttons/_buttons_save_cancel.html](/templates/components/common/buttons/_buttons_save_cancel.html) | HTML | 48 | 0 | 0 | 48 |
| [templates/components/common/buttons/_slider_display_order.html](/templates/components/common/buttons/_slider_display_order.html) | HTML | 13 | 0 | 0 | 13 |
| [templates/components/common/inputs/_input_number_plus_minus.html](/templates/components/common/inputs/_input_number_plus_minus.html) | HTML | 11 | 6 | 0 | 17 |
| [templates/components/common/inputs/_option_blank.html](/templates/components/common/inputs/_option_blank.html) | HTML | 1 | 0 | 0 | 1 |
| [templates/components/common/temporary/_overlay_address.html](/templates/components/common/temporary/_overlay_address.html) | HTML | 4 | 5 | 1 | 10 |
| [templates/components/common/temporary/_overlay_confirm.html](/templates/components/common/temporary/_overlay_confirm.html) | HTML | 14 | 0 | 1 | 15 |
| [templates/components/common/temporary/_overlay_error.html](/templates/components/common/temporary/_overlay_error.html) | HTML | 10 | 0 | 1 | 11 |
| [templates/components/common/temporary/template_overlay.html](/templates/components/common/temporary/template_overlay.html) | HTML | 15 | 5 | 4 | 24 |
| [templates/components/store/_body_home.html](/templates/components/store/_body_home.html) | HTML | 28 | 3 | 6 | 37 |
| [templates/components/store/_preview_DDL_currency.html](/templates/components/store/_preview_DDL_currency.html) | HTML | 15 | 0 | 2 | 17 |
| [templates/components/store/_preview_DDL_product.html](/templates/components/store/_preview_DDL_product.html) | HTML | 13 | 0 | 1 | 14 |
| [templates/components/store/_preview_DDL_product_category.html](/templates/components/store/_preview_DDL_product_category.html) | HTML | 13 | 0 | 1 | 14 |
| [templates/components/store/_preview_DDL_product_permutation_interval_expiration_unsealed.html](/templates/components/store/_preview_DDL_product_permutation_interval_expiration_unsealed.html) | HTML | 16 | 0 | 1 | 17 |
| [templates/components/store/_preview_DDL_product_permutation_interval_recurrence.html](/templates/components/store/_preview_DDL_product_permutation_interval_recurrence.html) | HTML | 19 | 0 | 0 | 19 |
| [templates/components/store/_preview_DDL_product_permutation_unit_measurement_quantity.html](/templates/components/store/_preview_DDL_product_permutation_unit_measurement_quantity.html) | HTML | 19 | 0 | 2 | 21 |
| [templates/components/store/_preview_product_permutation_variations.html](/templates/components/store/_preview_product_permutation_variations.html) | HTML | 21 | 0 | 1 | 22 |
| [templates/components/store/_preview_product_variation_types.html](/templates/components/store/_preview_product_variation_types.html) | HTML | 14 | 0 | 1 | 15 |
| [templates/components/store/_row_address.html](/templates/components/store/_row_address.html) | HTML | 65 | 3 | 12 | 80 |
| [templates/components/store/_row_basket.html](/templates/components/store/_row_basket.html) | HTML | 15 | 3 | 0 | 18 |
| [templates/components/store/_row_basket_item.html](/templates/components/store/_row_basket_item.html) | HTML | 29 | 6 | 0 | 35 |
| [templates/components/store/_row_product.html](/templates/components/store/_row_product.html) | HTML | 45 | 0 | 1 | 46 |
| [templates/components/store/_row_product_category.html](/templates/components/store/_row_product_category.html) | HTML | 44 | 0 | 0 | 44 |
| [templates/components/store/_row_product_permutation.html](/templates/components/store/_row_product_permutation.html) | HTML | 158 | 0 | 6 | 164 |
| [templates/components/store/_row_stock_item.html](/templates/components/store/_row_stock_item.html) | HTML | 87 | 20 | 1 | 108 |
| [templates/js/sections/store.js](/templates/js/sections/store.js) | JavaScript | 78 | 0 | 3 | 81 |
| [templates/layouts/_shared_store.html](/templates/layouts/_shared_store.html) | HTML | 30 | 1 | 0 | 31 |
| [templates/layouts/layout.html](/templates/layouts/layout.html) | HTML | 261 | 71 | 12 | 344 |
| [templates/pages/core/_admin_home.html](/templates/pages/core/_admin_home.html) | HTML | 33 | 18 | 5 | 56 |
| [templates/pages/core/_contact.html](/templates/pages/core/_contact.html) | HTML | 70 | 38 | 9 | 117 |
| [templates/pages/core/_home.html](/templates/pages/core/_home.html) | HTML | 9 | 19 | 5 | 33 |
| [templates/pages/core/_services.html](/templates/pages/core/_services.html) | HTML | 93 | 19 | 9 | 121 |
| [templates/pages/legal/_accessibility_statement.html](/templates/pages/legal/_accessibility_statement.html) | HTML | 54 | 139 | 17 | 210 |
| [templates/pages/legal/_license.html](/templates/pages/legal/_license.html) | HTML | 15 | 18 | 7 | 40 |
| [templates/pages/legal/_privacy_policy.html](/templates/pages/legal/_privacy_policy.html) | HTML | 68 | 18 | 13 | 99 |
| [templates/pages/legal/_retention_schedule.html](/templates/pages/legal/_retention_schedule.html) | HTML | 1,806 | 146 | 15 | 1,967 |
| [templates/pages/legal/accessibility_report.html](/templates/pages/legal/accessibility_report.html) | HTML | 60 | 0 | 0 | 60 |
| [templates/pages/store/_basket.html](/templates/pages/store/_basket.html) | HTML | 36 | 28 | 7 | 71 |
| [templates/pages/store/_checkout_success.html](/templates/pages/store/_checkout_success.html) | HTML | 23 | 19 | 4 | 46 |
| [templates/pages/store/_home.html](/templates/pages/store/_home.html) | HTML | 5 | 0 | 2 | 7 |
| [templates/pages/store/_product_categories.html](/templates/pages/store/_product_categories.html) | HTML | 81 | 16 | 8 | 105 |
| [templates/pages/store/_product_permutations.html](/templates/pages/store/_product_permutations.html) | HTML | 152 | 17 | 7 | 176 |
| [templates/pages/store/_products.html](/templates/pages/store/_products.html) | HTML | 87 | 16 | 8 | 111 |
| [templates/pages/store/_stock_items.html](/templates/pages/store/_stock_items.html) | HTML | 115 | 23 | 7 | 145 |
| [templates/pages/store/_supplier.html](/templates/pages/store/_supplier.html) | HTML | 89 | 23 | 5 | 117 |
| [templates/pages/user/_user.html](/templates/pages/user/_user.html) | HTML | 9 | 19 | 4 | 32 |
| [webpack.config.js](/webpack.config.js) | JavaScript | 111 | 24 | 1 | 136 |
[Summary](results.md) / Details / [Diff Summary](diff.md) / [Diff Details](diff-details.md)

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,281 @@
# Diff Summary
Date : 2024-10-05 01:21:34
Directory c:\\Users\\edwar\\OneDrive\\Documents\\Programming\\Visual Studio 2022\\PARTS_Web\\app
Total : 1608 files, -494103 codes, -30876 comments, -72964 blanks, all -597943 lines
[Summary](results.md) / [Details](details.md) / Diff Summary / [Diff Details](diff-details.md)
## Languages
| language | files | code | comment | blank | total |
| :--- | ---: | ---: | ---: | ---: | ---: |
| Properties | 3 | -13 | 0 | -3 | -16 |
| XML | 1 | -14 | -1 | -1 | -16 |
| Batch | 6 | -118 | -3 | -51 | -172 |
| PowerShell | 3 | -320 | -825 | -103 | -1,248 |
| Python | 1,595 | -493,638 | -30,047 | -72,806 | -596,491 |
## Directories
| path | files | code | comment | blank | total |
| :--- | ---: | ---: | ---: | ---: | ---: |
| . | 1,608 | -494,103 | -30,876 | -72,964 | -597,943 |
| bot_env | 491 | -152,899 | -8,915 | -21,716 | -183,530 |
| bot_env (Files) | 1 | -5 | 0 | -1 | -6 |
| bot_env\\Lib | 487 | -152,746 | -8,554 | -21,663 | -182,963 |
| bot_env\\Lib\\site-packages | 487 | -152,746 | -8,554 | -21,663 | -182,963 |
| bot_env\\Lib\\site-packages\\pip | 487 | -152,746 | -8,554 | -21,663 | -182,963 |
| bot_env\\Lib\\site-packages\\pip (Files) | 3 | -47 | -14 | -29 | -90 |
| bot_env\\Lib\\site-packages\\pip\\_internal | 139 | -23,202 | -2,152 | -4,977 | -30,331 |
| bot_env\\Lib\\site-packages\\pip\\_internal (Files) | 9 | -1,897 | -172 | -463 | -2,532 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\cli | 12 | -2,139 | -201 | -430 | -2,770 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\commands | 18 | -2,779 | -119 | -529 | -3,427 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\distributions | 5 | -227 | -22 | -53 | -302 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\index | 4 | -1,461 | -71 | -293 | -1,825 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\locations | 4 | -685 | -83 | -169 | -937 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\metadata | 8 | -1,318 | -56 | -303 | -1,677 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\metadata (Files) | 4 | -940 | -38 | -218 | -1,196 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\metadata\\importlib | 4 | -378 | -18 | -85 | -481 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\models | 12 | -1,076 | -111 | -261 | -1,448 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\network | 8 | -1,236 | -214 | -301 | -1,751 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\operations | 7 | -1,446 | -229 | -286 | -1,961 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\operations (Files) | 4 | -881 | -135 | -160 | -1,176 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\operations\\install | 3 | -565 | -94 | -126 | -785 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\req | 6 | -2,297 | -193 | -429 | -2,919 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\resolution | 13 | -2,403 | -274 | -477 | -3,154 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\resolution (Files) | 2 | -15 | 0 | -7 | -22 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\resolution\\legacy | 2 | -448 | -70 | -82 | -600 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\resolution\\resolvelib | 9 | -1,940 | -204 | -388 | -2,532 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\utils | 27 | -2,778 | -280 | -719 | -3,777 |
| bot_env\\Lib\\site-packages\\pip\\_internal\\vcs | 6 | -1,460 | -127 | -264 | -1,851 |
| bot_env\\Lib\\site-packages\\pip\\_vendor | 345 | -129,497 | -6,388 | -16,657 | -152,542 |
| bot_env\\Lib\\site-packages\\pip\\_vendor (Files) | 3 | -3,144 | -273 | -777 | -4,194 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\cachecontrol | 12 | -1,084 | -204 | -310 | -1,598 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\cachecontrol (Files) | 9 | -925 | -175 | -258 | -1,358 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\cachecontrol\\caches | 3 | -159 | -29 | -52 | -240 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\certifi | 3 | -63 | -37 | -27 | -127 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\chardet | 48 | -39,303 | -1,440 | -587 | -41,330 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\chardet (Files) | 44 | -38,901 | -1,404 | -557 | -40,862 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\chardet\\cli | 2 | -94 | -2 | -18 | -114 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\chardet\\metadata | 2 | -308 | -34 | -12 | -354 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\colorama | 13 | -1,288 | -106 | -298 | -1,692 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\colorama (Files) | 6 | -662 | -79 | -147 | -888 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\colorama\\tests | 7 | -626 | -27 | -151 | -804 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\distlib | 13 | -8,447 | -768 | -1,443 | -10,658 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\distro | 3 | -1,090 | -90 | -280 | -1,460 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\idna | 8 | -11,158 | -18 | -208 | -11,384 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\msgpack | 4 | -1,072 | -30 | -210 | -1,312 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\packaging | 11 | -2,010 | -336 | -593 | -2,939 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pkg_resources | 1 | -2,548 | -154 | -660 | -3,362 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\platformdirs | 8 | -1,342 | -18 | -273 | -1,633 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pygments | 35 | -8,491 | -430 | -1,498 | -10,419 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pygments (Files) | 16 | -2,650 | -194 | -583 | -3,427 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pygments\\filters | 1 | -858 | -3 | -80 | -941 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pygments\\formatters | 14 | -3,006 | -139 | -680 | -3,825 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pygments\\lexers | 3 | -1,887 | -91 | -144 | -2,122 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pygments\\styles | 1 | -90 | -3 | -11 | -104 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pyparsing | 11 | -8,596 | -505 | -1,823 | -10,924 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pyparsing (Files) | 10 | -8,079 | -446 | -1,742 | -10,267 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pyparsing\\diagram | 1 | -517 | -59 | -81 | -657 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pyproject_hooks | 5 | -573 | -11 | -153 | -737 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pyproject_hooks (Files) | 3 | -285 | -4 | -75 | -364 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\pyproject_hooks\\_in_process | 2 | -288 | -7 | -78 | -373 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\requests | 18 | -3,927 | -424 | -1,084 | -5,435 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\resolvelib | 7 | -708 | -33 | -191 | -932 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\resolvelib (Files) | 5 | -703 | -33 | -188 | -924 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\resolvelib\\compat | 2 | -5 | 0 | -3 | -8 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\rich | 77 | -22,291 | -211 | -3,138 | -25,640 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\tenacity | 11 | -1,085 | -206 | -371 | -1,662 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\tomli | 4 | -629 | -60 | -134 | -823 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\truststore | 6 | -1,130 | -97 | -246 | -1,473 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\urllib3 | 39 | -8,591 | -910 | -2,192 | -11,693 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\urllib3 (Files) | 11 | -3,269 | -331 | -858 | -4,458 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\urllib3\\contrib | 10 | -2,273 | -247 | -541 | -3,061 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\urllib3\\contrib (Files) | 7 | -1,574 | -187 | -381 | -2,142 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\urllib3\\contrib\\_securetransport | 3 | -699 | -60 | -160 | -919 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\urllib3\\packages | 5 | -972 | -69 | -246 | -1,287 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\urllib3\\packages (Files) | 2 | -805 | -53 | -220 | -1,078 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\urllib3\\packages\\backports | 3 | -167 | -16 | -26 | -209 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\urllib3\\util | 13 | -2,077 | -263 | -547 | -2,887 |
| bot_env\\Lib\\site-packages\\pip\\_vendor\\webencodings | 5 | -927 | -27 | -161 | -1,115 |
| bot_env\\Scripts | 3 | -148 | -361 | -52 | -561 |
| bot_web | 491 | -152,899 | -8,915 | -21,716 | -183,530 |
| bot_web (Files) | 1 | -5 | 0 | -1 | -6 |
| bot_web\\Lib | 487 | -152,746 | -8,554 | -21,663 | -182,963 |
| bot_web\\Lib\\site-packages | 487 | -152,746 | -8,554 | -21,663 | -182,963 |
| bot_web\\Lib\\site-packages\\pip | 487 | -152,746 | -8,554 | -21,663 | -182,963 |
| bot_web\\Lib\\site-packages\\pip (Files) | 3 | -47 | -14 | -29 | -90 |
| bot_web\\Lib\\site-packages\\pip\\_internal | 139 | -23,202 | -2,152 | -4,977 | -30,331 |
| bot_web\\Lib\\site-packages\\pip\\_internal (Files) | 9 | -1,897 | -172 | -463 | -2,532 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\cli | 12 | -2,139 | -201 | -430 | -2,770 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\commands | 18 | -2,779 | -119 | -529 | -3,427 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\distributions | 5 | -227 | -22 | -53 | -302 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\index | 4 | -1,461 | -71 | -293 | -1,825 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\locations | 4 | -685 | -83 | -169 | -937 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\metadata | 8 | -1,318 | -56 | -303 | -1,677 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\metadata (Files) | 4 | -940 | -38 | -218 | -1,196 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\metadata\\importlib | 4 | -378 | -18 | -85 | -481 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\models | 12 | -1,076 | -111 | -261 | -1,448 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\network | 8 | -1,236 | -214 | -301 | -1,751 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\operations | 7 | -1,446 | -229 | -286 | -1,961 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\operations (Files) | 4 | -881 | -135 | -160 | -1,176 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\operations\\install | 3 | -565 | -94 | -126 | -785 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\req | 6 | -2,297 | -193 | -429 | -2,919 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\resolution | 13 | -2,403 | -274 | -477 | -3,154 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\resolution (Files) | 2 | -15 | 0 | -7 | -22 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\resolution\\legacy | 2 | -448 | -70 | -82 | -600 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\resolution\\resolvelib | 9 | -1,940 | -204 | -388 | -2,532 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\utils | 27 | -2,778 | -280 | -719 | -3,777 |
| bot_web\\Lib\\site-packages\\pip\\_internal\\vcs | 6 | -1,460 | -127 | -264 | -1,851 |
| bot_web\\Lib\\site-packages\\pip\\_vendor | 345 | -129,497 | -6,388 | -16,657 | -152,542 |
| bot_web\\Lib\\site-packages\\pip\\_vendor (Files) | 3 | -3,144 | -273 | -777 | -4,194 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\cachecontrol | 12 | -1,084 | -204 | -310 | -1,598 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\cachecontrol (Files) | 9 | -925 | -175 | -258 | -1,358 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\cachecontrol\\caches | 3 | -159 | -29 | -52 | -240 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\certifi | 3 | -63 | -37 | -27 | -127 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\chardet | 48 | -39,303 | -1,440 | -587 | -41,330 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\chardet (Files) | 44 | -38,901 | -1,404 | -557 | -40,862 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\chardet\\cli | 2 | -94 | -2 | -18 | -114 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\chardet\\metadata | 2 | -308 | -34 | -12 | -354 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\colorama | 13 | -1,288 | -106 | -298 | -1,692 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\colorama (Files) | 6 | -662 | -79 | -147 | -888 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\colorama\\tests | 7 | -626 | -27 | -151 | -804 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\distlib | 13 | -8,447 | -768 | -1,443 | -10,658 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\distro | 3 | -1,090 | -90 | -280 | -1,460 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\idna | 8 | -11,158 | -18 | -208 | -11,384 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\msgpack | 4 | -1,072 | -30 | -210 | -1,312 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\packaging | 11 | -2,010 | -336 | -593 | -2,939 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pkg_resources | 1 | -2,548 | -154 | -660 | -3,362 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\platformdirs | 8 | -1,342 | -18 | -273 | -1,633 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pygments | 35 | -8,491 | -430 | -1,498 | -10,419 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pygments (Files) | 16 | -2,650 | -194 | -583 | -3,427 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pygments\\filters | 1 | -858 | -3 | -80 | -941 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pygments\\formatters | 14 | -3,006 | -139 | -680 | -3,825 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pygments\\lexers | 3 | -1,887 | -91 | -144 | -2,122 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pygments\\styles | 1 | -90 | -3 | -11 | -104 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pyparsing | 11 | -8,596 | -505 | -1,823 | -10,924 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pyparsing (Files) | 10 | -8,079 | -446 | -1,742 | -10,267 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pyparsing\\diagram | 1 | -517 | -59 | -81 | -657 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pyproject_hooks | 5 | -573 | -11 | -153 | -737 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pyproject_hooks (Files) | 3 | -285 | -4 | -75 | -364 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\pyproject_hooks\\_in_process | 2 | -288 | -7 | -78 | -373 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\requests | 18 | -3,927 | -424 | -1,084 | -5,435 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\resolvelib | 7 | -708 | -33 | -191 | -932 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\resolvelib (Files) | 5 | -703 | -33 | -188 | -924 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\resolvelib\\compat | 2 | -5 | 0 | -3 | -8 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\rich | 77 | -22,291 | -211 | -3,138 | -25,640 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\tenacity | 11 | -1,085 | -206 | -371 | -1,662 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\tomli | 4 | -629 | -60 | -134 | -823 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\truststore | 6 | -1,130 | -97 | -246 | -1,473 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\urllib3 | 39 | -8,591 | -910 | -2,192 | -11,693 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\urllib3 (Files) | 11 | -3,269 | -331 | -858 | -4,458 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\contrib | 10 | -2,273 | -247 | -541 | -3,061 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\contrib (Files) | 7 | -1,574 | -187 | -381 | -2,142 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\contrib\\_securetransport | 3 | -699 | -60 | -160 | -919 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\packages | 5 | -972 | -69 | -246 | -1,287 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\packages (Files) | 2 | -805 | -53 | -220 | -1,078 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\packages\\backports | 3 | -167 | -16 | -26 | -209 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\util | 13 | -2,077 | -263 | -547 | -2,887 |
| bot_web\\Lib\\site-packages\\pip\\_vendor\\webencodings | 5 | -927 | -27 | -161 | -1,115 |
| bot_web\\Scripts | 3 | -148 | -361 | -52 | -561 |
| env_test | 626 | -188,305 | -13,046 | -29,532 | -230,883 |
| env_test (Files) | 1 | -3 | 0 | -1 | -4 |
| env_test\\Lib | 622 | -188,160 | -12,940 | -29,481 | -230,581 |
| env_test\\Lib\\site-packages | 622 | -188,160 | -12,940 | -29,481 | -230,581 |
| env_test\\Lib\\site-packages\\_distutils_hack | 2 | -94 | -3 | -34 | -131 |
| env_test\\Lib\\site-packages\\pip | 483 | -148,947 | -8,267 | -20,842 | -178,056 |
| env_test\\Lib\\site-packages\\pip (Files) | 3 | -51 | -17 | -29 | -97 |
| env_test\\Lib\\site-packages\\pip\\_internal | 141 | -22,795 | -2,077 | -4,931 | -29,803 |
| env_test\\Lib\\site-packages\\pip\\_internal (Files) | 9 | -1,913 | -178 | -472 | -2,563 |
| env_test\\Lib\\site-packages\\pip\\_internal\\cli | 12 | -2,101 | -191 | -426 | -2,718 |
| env_test\\Lib\\site-packages\\pip\\_internal\\commands | 18 | -2,863 | -121 | -543 | -3,527 |
| env_test\\Lib\\site-packages\\pip\\_internal\\distributions | 5 | -205 | -22 | -45 | -272 |
| env_test\\Lib\\site-packages\\pip\\_internal\\index | 4 | -1,415 | -68 | -281 | -1,764 |
| env_test\\Lib\\site-packages\\pip\\_internal\\locations | 4 | -685 | -84 | -169 | -938 |
| env_test\\Lib\\site-packages\\pip\\_internal\\metadata | 8 | -1,296 | -57 | -295 | -1,648 |
| env_test\\Lib\\site-packages\\pip\\_internal\\metadata (Files) | 4 | -923 | -38 | -212 | -1,173 |
| env_test\\Lib\\site-packages\\pip\\_internal\\metadata\\importlib | 4 | -373 | -19 | -83 | -475 |
| env_test\\Lib\\site-packages\\pip\\_internal\\models | 12 | -1,037 | -94 | -247 | -1,378 |
| env_test\\Lib\\site-packages\\pip\\_internal\\network | 8 | -1,117 | -200 | -278 | -1,595 |
| env_test\\Lib\\site-packages\\pip\\_internal\\operations | 8 | -1,473 | -215 | -297 | -1,985 |
| env_test\\Lib\\site-packages\\pip\\_internal\\operations (Files) | 4 | -806 | -115 | -153 | -1,074 |
| env_test\\Lib\\site-packages\\pip\\_internal\\operations\\install | 4 | -667 | -100 | -144 | -911 |
| env_test\\Lib\\site-packages\\pip\\_internal\\req | 6 | -2,203 | -185 | -425 | -2,813 |
| env_test\\Lib\\site-packages\\pip\\_internal\\resolution | 13 | -2,274 | -251 | -469 | -2,994 |
| env_test\\Lib\\site-packages\\pip\\_internal\\resolution (Files) | 2 | -15 | 0 | -7 | -22 |
| env_test\\Lib\\site-packages\\pip\\_internal\\resolution\\legacy | 2 | -450 | -70 | -82 | -602 |
| env_test\\Lib\\site-packages\\pip\\_internal\\resolution\\resolvelib | 9 | -1,809 | -181 | -380 | -2,370 |
| env_test\\Lib\\site-packages\\pip\\_internal\\utils | 28 | -2,753 | -284 | -720 | -3,757 |
| env_test\\Lib\\site-packages\\pip\\_internal\\vcs | 6 | -1,460 | -127 | -264 | -1,851 |
| env_test\\Lib\\site-packages\\pip\\_vendor | 339 | -126,101 | -6,173 | -15,882 | -148,156 |
| env_test\\Lib\\site-packages\\pip\\_vendor (Files) | 3 | -2,468 | -224 | -638 | -3,330 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\cachecontrol | 13 | -948 | -212 | -314 | -1,474 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\cachecontrol (Files) | 10 | -793 | -182 | -260 | -1,235 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\cachecontrol\\caches | 3 | -155 | -30 | -54 | -239 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\certifi | 3 | -63 | -37 | -27 | -127 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\chardet | 48 | -39,303 | -1,440 | -587 | -41,330 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\chardet (Files) | 44 | -38,901 | -1,404 | -557 | -40,862 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\chardet\\cli | 2 | -94 | -2 | -18 | -114 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\chardet\\metadata | 2 | -308 | -34 | -12 | -354 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\colorama | 13 | -1,288 | -106 | -298 | -1,692 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\colorama (Files) | 6 | -662 | -79 | -147 | -888 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\colorama\\tests | 7 | -626 | -27 | -151 | -804 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\distlib | 13 | -8,373 | -772 | -1,334 | -10,479 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\distro | 3 | -1,090 | -90 | -280 | -1,460 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\idna | 8 | -11,158 | -18 | -208 | -11,384 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\msgpack | 4 | -1,072 | -30 | -210 | -1,312 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\packaging | 11 | -2,010 | -336 | -593 | -2,939 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pkg_resources | 2 | -2,487 | -171 | -663 | -3,321 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\platformdirs | 8 | -903 | -11 | -191 | -1,105 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pygments | 35 | -8,335 | -406 | -1,468 | -10,209 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pygments (Files) | 16 | -2,516 | -182 | -554 | -3,252 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pygments\\filters | 1 | -858 | -3 | -80 | -941 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pygments\\formatters | 14 | -3,016 | -137 | -682 | -3,835 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pygments\\lexers | 3 | -1,860 | -82 | -141 | -2,083 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pygments\\styles | 1 | -85 | -2 | -11 | -98 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pyparsing | 11 | -8,292 | -464 | -1,706 | -10,462 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pyparsing (Files) | 10 | -7,789 | -406 | -1,624 | -9,819 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pyparsing\\diagram | 1 | -503 | -58 | -82 | -643 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pyproject_hooks | 5 | -573 | -11 | -153 | -737 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pyproject_hooks (Files) | 3 | -285 | -4 | -75 | -364 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\pyproject_hooks\\_in_process | 2 | -288 | -7 | -78 | -373 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\requests | 18 | -3,950 | -426 | -1,093 | -5,469 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\resolvelib | 7 | -646 | -29 | -187 | -862 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\resolvelib (Files) | 5 | -641 | -29 | -184 | -854 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\resolvelib\\compat | 2 | -5 | 0 | -3 | -8 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\rich | 76 | -22,188 | -213 | -3,134 | -25,535 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\tenacity | 11 | -958 | -203 | -344 | -1,505 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\tomli | 4 | -629 | -60 | -134 | -823 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\urllib3 | 38 | -8,440 | -887 | -2,159 | -11,486 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\urllib3 (Files) | 11 | -3,241 | -322 | -847 | -4,410 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\urllib3\\contrib | 10 | -2,273 | -247 | -541 | -3,061 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\urllib3\\contrib (Files) | 7 | -1,574 | -187 | -381 | -2,142 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\urllib3\\contrib\\_securetransport | 3 | -699 | -60 | -160 | -919 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\urllib3\\packages | 4 | -852 | -54 | -225 | -1,131 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\urllib3\\packages (Files) | 2 | -805 | -53 | -220 | -1,078 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\urllib3\\packages\\backports | 2 | -47 | -1 | -5 | -53 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\urllib3\\util | 13 | -2,074 | -264 | -546 | -2,884 |
| env_test\\Lib\\site-packages\\pip\\_vendor\\webencodings | 5 | -927 | -27 | -161 | -1,115 |
| env_test\\Lib\\site-packages\\pkg_resources | 17 | -9,520 | -951 | -2,175 | -12,646 |
| env_test\\Lib\\site-packages\\pkg_resources (Files) | 1 | -2,468 | -167 | -654 | -3,289 |
| env_test\\Lib\\site-packages\\pkg_resources\\_vendor | 14 | -6,985 | -784 | -1,507 | -9,276 |
| env_test\\Lib\\site-packages\\pkg_resources\\_vendor (Files) | 3 | -5,141 | -282 | -930 | -6,353 |
| env_test\\Lib\\site-packages\\pkg_resources\\_vendor\\packaging | 11 | -1,844 | -502 | -577 | -2,923 |
| env_test\\Lib\\site-packages\\pkg_resources\\extern | 1 | -61 | 0 | -13 | -74 |
| env_test\\Lib\\site-packages\\pkg_resources\\tests | 1 | -6 | 0 | -1 | -7 |
| env_test\\Lib\\site-packages\\pkg_resources\\tests\\data | 1 | -6 | 0 | -1 | -7 |
| env_test\\Lib\\site-packages\\pkg_resources\\tests\\data\\my-test-package-source | 1 | -6 | 0 | -1 | -7 |
| env_test\\Lib\\site-packages\\setuptools | 120 | -29,599 | -3,719 | -6,430 | -39,748 |
| env_test\\Lib\\site-packages\\setuptools (Files) | 26 | -5,839 | -331 | -1,398 | -7,568 |
| env_test\\Lib\\site-packages\\setuptools\\_distutils | 54 | -12,051 | -2,260 | -2,563 | -16,874 |
| env_test\\Lib\\site-packages\\setuptools\\_distutils (Files) | 30 | -7,362 | -1,433 | -1,589 | -10,384 |
| env_test\\Lib\\site-packages\\setuptools\\_distutils\\command | 24 | -4,689 | -827 | -974 | -6,490 |
| env_test\\Lib\\site-packages\\setuptools\\_vendor | 14 | -6,897 | -772 | -1,487 | -9,156 |
| env_test\\Lib\\site-packages\\setuptools\\_vendor (Files) | 3 | -5,053 | -270 | -910 | -6,233 |
| env_test\\Lib\\site-packages\\setuptools\\_vendor\\packaging | 11 | -1,844 | -502 | -577 | -2,923 |
| env_test\\Lib\\site-packages\\setuptools\\command | 25 | -4,751 | -356 | -969 | -6,076 |
| env_test\\Lib\\site-packages\\setuptools\\extern | 1 | -61 | 0 | -13 | -74 |
| env_test\\Scripts | 3 | -142 | -106 | -50 | -298 |
[Summary](results.md) / [Details](details.md) / Diff Summary / [Diff Details](diff-details.md)

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,586 @@
"filename", "language", "pip requirements", "JSON", "Python", "Markdown", "JavaScript", "SQL", "HTML", "XML", "CSS", "Batch", "comment", "blank", "total"
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\README.md", "Markdown", 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 4, 11
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\__init__.py", "Python", 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 2, 6, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\app.py", "Python", 0, 0, 107, 0, 0, 0, 0, 0, 0, 0, 12, 21, 140
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\__init__.py", "Python", 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 3, 12
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\base.py", "Python", 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 3, 6, 59
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\db_base.py", "Python", 0, 0, 65, 0, 0, 0, 0, 0, 0, 0, 7, 8, 80
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\sql_error.py", "Python", 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 9, 11, 65
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\__init__.py", "Python", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\access_level.py", "Python", 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 2, 6, 86
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\basket.py", "Python", 0, 0, 144, 0, 0, 0, 0, 0, 0, 0, 17, 22, 183
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\currency.py", "Python", 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 5, 10, 123
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\delivery_option.py", "Python", 0, 0, 89, 0, 0, 0, 0, 0, 0, 0, 2, 8, 99
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\delivery_region.py", "Python", 0, 0, 92, 0, 0, 0, 0, 0, 0, 0, 3, 9, 104
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\discount.py", "Python", 0, 0, 66, 0, 0, 0, 0, 0, 0, 0, 2, 8, 76
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\image.py", "Python", 0, 0, 106, 0, 0, 0, 0, 0, 0, 0, 5, 17, 128
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\order.py", "Python", 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 12, 14, 89
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product.py", "Python", 0, 0, 614, 0, 0, 0, 0, 0, 0, 0, 173, 26, 813
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_category.py", "Python", 0, 0, 463, 0, 0, 0, 0, 0, 0, 0, 13, 13, 489
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_permutation.py", "Python", 0, 0, 577, 0, 0, 0, 0, 0, 0, 0, 16, 23, 616
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_price.py", "Python", 0, 0, 97, 0, 0, 0, 0, 0, 0, 0, 3, 9, 109
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_variation.py", "Python", 0, 0, 178, 0, 0, 0, 0, 0, 0, 0, 7, 26, 211
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_variation_tree.py", "Python", 0, 0, 177, 0, 0, 0, 0, 0, 0, 0, 2, 9, 188
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_variation_type.py", "Python", 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, 7, 14, 104
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\stock_item.py", "Python", 0, 0, 248, 0, 0, 0, 0, 0, 0, 0, 9, 13, 270
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\storage_location.py", "Python", 0, 0, 61, 0, 0, 0, 0, 0, 0, 0, 2, 7, 70
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\store_base.py", "Python", 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 4, 6, 89
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\stripe.py", "Python", 0, 0, 140, 0, 0, 0, 0, 0, 0, 0, 9, 12, 161
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\unit_measurement.py", "Python", 0, 0, 143, 0, 0, 0, 0, 0, 0, 0, 4, 13, 160
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\user.py", "Python", 0, 0, 252, 0, 0, 0, 0, 0, 0, 0, 4, 26, 282
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\config.py", "Python", 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 22, 10, 101
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\__init__.py", "Python", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\core.py", "Python", 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 6, 12, 95
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\legal.py", "Python", 0, 0, 62, 0, 0, 0, 0, 0, 0, 0, 5, 8, 75
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\__init__.py", "Python", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\product.py", "Python", 0, 0, 80, 0, 0, 0, 0, 0, 0, 0, 6, 13, 99
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\product_category.py", "Python", 0, 0, 99, 0, 0, 0, 0, 0, 0, 0, 8, 12, 119
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\product_permutation.py", "Python", 0, 0, 133, 0, 0, 0, 0, 0, 0, 0, 6, 20, 159
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\stock_item.py", "Python", 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 4, 14, 93
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\store.py", "Python", 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 3, 5, 30
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\supplier.py", "Python", 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 10, 9, 69
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\user.py", "Python", 0, 0, 139, 0, 0, 0, 0, 0, 0, 0, 18, 20, 177
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\__init__.py", "Python", 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 3, 12
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_base.py", "Python", 0, 0, 227, 0, 0, 0, 0, 0, 0, 0, 30, 26, 283
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_base.py", "Python", 0, 0, 240, 0, 0, 0, 0, 0, 0, 0, 48, 42, 330
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_basket.py", "Python", 0, 0, 113, 0, 0, 0, 0, 0, 0, 0, 21, 20, 154
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_product.py", "Python", 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 8, 14, 130
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_product_category.py", "Python", 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 11, 10, 100
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_product_permutation.py", "Python", 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 7, 13, 104
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_product_variation.py", "Python", 0, 0, 70, 0, 0, 0, 0, 0, 0, 0, 14, 15, 99
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_stock_item.py", "Python", 0, 0, 82, 0, 0, 0, 0, 0, 0, 0, 13, 13, 108
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_stripe.py", "Python", 0, 0, 143, 0, 0, 0, 0, 0, 0, 0, 25, 36, 204
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_user.py", "Python", 0, 0, 132, 0, 0, 0, 0, 0, 0, 0, 22, 28, 182
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\extensions.py", "Python", 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 3, 14
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\__init__.py", "Python", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\access_level.py", "Python", 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 2, 5, 37
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\base.py", "Python", 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 2, 9, 69
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\forms.py", "Python", 0, 0, 96, 0, 0, 0, 0, 0, 0, 0, 16, 22, 134
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\__init__.py", "Python", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\product.py", "Python", 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 5, 5, 36
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\product_category.py", "Python", 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 5, 5, 47
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\product_permutation.py", "Python", 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 6, 5, 65
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\stock_item.py", "Python", 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 6, 5, 64
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\unit_measurement.py", "Python", 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 2, 5, 42
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\helpers\__init__.py", "Python", 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 3, 12
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\helpers\helper_app.py", "Python", 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 4, 6, 35
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\helpers\helper_db_mysql.py", "Python", 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 3, 9, 42
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\lib\__init__.py", "Python", 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 3, 12
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\lib\argument_validation.py", "Python", 0, 0, 806, 0, 0, 0, 0, 0, 0, 0, 467, 45, 1318
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\lib\data_types.py", "Python", 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 20, 7, 37
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\__init__.py", "Python", 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 3, 12
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_accessibility_report.py", "Python", 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 3, 5, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_accessibility_statement.py", "Python", 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 3, 5, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_admin.py", "Python", 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 2, 6, 25
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_admin_home.py", "Python", 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 2, 7, 27
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_base.py", "Python", 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 28, 18, 341
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_contact.py", "Python", 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 5, 8, 38
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_home.py", "Python", 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 3, 5, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_license.py", "Python", 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 3, 5, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_privacy_policy.py", "Python", 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 3, 5, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_retention_schedule.py", "Python", 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 3, 5, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_services.py", "Python", 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 5, 6, 27
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store.py", "Python", 0, 0, 351, 0, 0, 0, 0, 0, 0, 0, 68, 34, 453
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_basket.py", "Python", 0, 0, 60, 0, 0, 0, 0, 0, 0, 0, 19, 10, 89
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_checkout.py", "Python", 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 14, 16, 72
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_checkout_success.py", "Python", 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 13, 9, 49
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_home.py", "Python", 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 17, 10, 60
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_product.py", "Python", 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 15, 12, 67
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_product_category.py", "Python", 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 9, 9, 55
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_product_permutation.py", "Python", 0, 0, 81, 0, 0, 0, 0, 0, 0, 0, 6, 9, 96
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\Model_View_Store_Stock_Item.py", "Python", 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 5, 10, 88
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_supplier.py", "Python", 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 5, 8, 39
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_user.py", "Python", 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 5, 6, 31
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\package-lock.json", "JSON", 0, 4383, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4384
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\package.json", "JSON", 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 38
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\passenger_wsgi.py", "Python", 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 5, 15
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\pay_stripe.py", "Python", 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 37, 35, 182
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\payments\pay_stripe.py", "Python", 0, 0, 106, 0, 0, 0, 0, 0, 0, 0, 30, 34, 170
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\requirements.txt", "pip requirements", 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 16
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\routes.py", "Python", 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 6, 8, 54
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\run.py", "Python", 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 1, 4, 17
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\0000_combine.sql", "SQL", 0, 0, 0, 0, 0, 14579, 0, 0, 0, 0, 3389, 2259, 20227
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\0001_destroy.sql", "SQL", 0, 0, 0, 0, 0, 213, 0, 0, 0, 0, 2, 69, 284
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1000_tbl_Shop_Product_Change_Set.sql", "SQL", 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 13
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1000_tbl_Split_Temp.sql", "SQL", 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 2, 4, 13
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1001_tbl_Shop_User_Change_Set.sql", "SQL", 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 13
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql", "SQL", 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 13
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1003_tbl_Shop_Access_Level.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 8, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1004_tbl_Shop_Access_Level_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1005_tbl_Msg_Error_Type.sql", "SQL", 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 6, 14
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1010_tbl_File_Type.sql", "SQL", 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 6, 18
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1011_tbl_File_Type_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1012_tbl_Shop_General.sql", "SQL", 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 5, 17
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1013_tbl_Shop_General_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1014_tbl_Shop_Image_Type.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 6, 6, 28
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1015_tbl_Shop_Image_Type_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1100_tbl_Shop_Region.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 5, 20
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1101_tbl_Shop_Region_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1102_tbl_Shop_Region_Temp.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 5, 20
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1103_tbl_Shop_Region_Branch.sql", "SQL", 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 1, 5, 29
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1104_tbl_Shop_Region_Branch_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1105_tbl_Shop_Region_Branch_Temp.sql", "SQL", 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 1, 5, 15
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1106_tbl_Shop_Plant.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 6, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1107_tbl_Shop_Plant_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1108_tbl_Shop_Plant_Temp.sql", "SQL", 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 6, 16
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1109_tbl_Shop_Storage_Location.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 6, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1110_tbl_Shop_Storage_Location_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1111_tbl_Shop_Storage_Location_Temp.sql", "SQL", 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 6, 14
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1112_tbl_Shop_Storage_Location_Branch.sql", "SQL", 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 1, 5, 29
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1113_tbl_Shop_Storage_Location_Branch_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1114_tbl_Shop_Storage_Location_Branch_Temp.sql", "SQL", 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 1, 5, 15
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1115_tbl_Shop_Currency.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1116_tbl_Shop_Currency_Audit.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1117_tbl_Shop_Currency_Temp.sql", "SQL", 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 5, 16
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1118_tbl_Shop_Tax_Or_Surcharge.sql", "SQL", 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 6, 39
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1121_tbl_Shop_Unit_Measurement.sql", "SQL", 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 6, 27
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1122_tbl_Shop_Unit_Measurement_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1124_tbl_Shop_Unit_Measurement_Conversion.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1200_tbl_Shop_Product_Category.sql", "SQL", 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 5, 25
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1201_tbl_Shop_Product_Category_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1202_tbl_Shop_Product_Category_Temp.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 1, 5, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1203_tbl_Shop_Product.sql", "SQL", 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 21, 6, 49
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1204_tbl_Shop_Product_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1205_tbl_Shop_Product_Temp.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 1, 5, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1206_tbl_Shop_Product_Permutation.sql", "SQL", 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 10, 6, 60
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1207_tbl_Shop_Product_Permutation_Audit.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 6, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1208_tbl_Shop_Product_Permutation_Temp.sql", "SQL", 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 2, 5, 35
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1209_tbl_Shop_Variation_Type.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 5, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1210_tbl_Shop_Variation_Type_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1212_tbl_Shop_Variation.sql", "SQL", 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 6, 26
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1213_tbl_Shop_Variation_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1215_tbl_Shop_Product_Permutation_Variation_Link.sql", "SQL", 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 6, 29
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1218_tbl_Shop_Stock_Item.sql", "SQL", 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 6, 39
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1219_tbl_Shop_Stock_Item_Audit.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 6, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1220_tbl_Shop_Stock_Item_Temp.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1221_tbl_Shop_Product_Price.sql", "SQL", 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 5, 32
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1222_tbl_Shop_Product_Price_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1223_tbl_Shop_Product_Price_Temp.sql", "SQL", 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 5, 17
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1224_tbl_Shop_Product_Image.sql", "SQL", 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 5, 27
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1225_tbl_Shop_Product_Image_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 5, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1227_tbl_Shop_Delivery_Option.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 4, 6, 28
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1228_tbl_Shop_Delivery_Option_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql", "SQL", 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 5, 46
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1233_tbl_Shop_Discount.sql", "SQL", 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 12, 6, 49
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1234_tbl_Shop_Discount_Audit.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1236_tbl_Shop_Discount_Region_Currency_Link.sql", "SQL", 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 5, 32
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1300_tbl_Shop_Permission_Group.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 5, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1301_tbl_Shop_Permission_Group_Audit.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1303_tbl_Shop_Permission.sql", "SQL", 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 5, 29
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1304_tbl_Shop_Permission_Audit.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1306_tbl_Shop_Role.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 5, 20
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1307_tbl_Shop_Role_Audit.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1309_tbl_Shop_Role_Permission_Link.sql", "SQL", 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 5, 31
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1310_tbl_Shop_Role_Permission_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1312_tbl_Shop_User.sql", "SQL", 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 6, 27
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1313_tbl_Shop_User_Audit.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1315_tbl_Shop_User_Role_Link.sql", "SQL", 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 5, 26
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1316_tbl_Shop_User_Role_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1318_tbl_Shop_Address.sql", "SQL", 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 1, 5, 31
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1319_tbl_Shop_Address_Audit.sql", "SQL", 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1321_tbl_Shop_User_Basket.sql", "SQL", 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 6, 6, 40
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1322_tbl_Shop_User_Basket_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 6, 5, 28
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1397_tbl_Shop_Order_Status.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 6, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1398_tbl_Shop_Order_Status_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1400_tbl_Shop_Supplier.sql", "SQL", 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 6, 33
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1401_tbl_Shop_Supplier_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1409_tbl_Shop_Supplier_Purchase_Order.sql", "SQL", 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 16, 6, 42
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql", "SQL", 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 6, 38
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql", "SQL", 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 6, 7, 35
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1415_tbl_Shop_Manufacturing_Purchase_Order.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 10, 7, 34
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql", "SQL", 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 6, 39
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql", "SQL", 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 7, 7, 36
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1421_tbl_Shop_Customer.sql", "SQL", 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 5, 30
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1422_tbl_Shop_Customer_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1424_tbl_Shop_Customer_Sales_Order.sql", "SQL", 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 10, 6, 36
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1425_tbl_Shop_Customer_Sales_Order_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql", "SQL", 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 7, 39
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql", "SQL", 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 6, 7, 35
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1500_tbl_Shop_Calc_User_Temp.sql", "SQL", 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 3, 3, 26
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3000_tri_Shop_Access_Level.sql", "SQL", 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 10, 60
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3000_tri_Shop_Product_Change_Set.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 6, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3001_tri_Shop_User_Change_Set.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 6, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 6, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3010_tri_File_Type.sql", "SQL", 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 7, 44
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3011_tri_File_Type_Audit.sql", "SQL", 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 7, 28
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3012_tri_Shop_General.sql", "SQL", 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 7, 41
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3014_tri_Shop_Image_Type.sql", "SQL", 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 6, 9, 65
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3100_tri_Shop_Region.sql", "SQL", 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 10, 56
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3103_tri_Shop_Region_Branch.sql", "SQL", 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 6, 10, 54
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3109_tri_Shop_Storage_Location.sql", "SQL", 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 10, 56
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3115_tri_Shop_Currency.sql", "SQL", 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 9, 63
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3118_tri_Shop_Tax_Or_Surcharge.sql", "SQL", 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 0, 10, 76
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3200_tri_Shop_Category.sql", "SQL", 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 8, 62
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3203_tri_Shop_Product.sql", "SQL", 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 106, 11, 171
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3206_tri_Shop_Product_Permutation.sql", "SQL", 0, 0, 0, 0, 0, 112, 0, 0, 0, 0, 36, 12, 160
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3209_tri_Shop_Variation_Type.sql", "SQL", 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 11, 61
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3212_tri_Shop_Variation.sql", "SQL", 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 10, 56
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3215_tri_Shop_Product_Permutation_Variation_Link.sql", "SQL", 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 10, 9, 57
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3218_tri_Shop_Stock_Item.sql", "SQL", 0, 0, 0, 0, 0, 82, 0, 0, 0, 0, 0, 10, 92
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3221_tri_Shop_Product_Price.sql", "SQL", 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 19, 11, 88
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3224_tri_Shop_Product_Image.sql", "SQL", 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 10, 9, 73
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3227_tri_Shop_Delivery_Option.sql", "SQL", 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 10, 9, 73
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql", "SQL", 0, 0, 0, 0, 0, 42, 0, 0, 0, 0, 28, 9, 79
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3233_tri_Shop_Discount.sql", "SQL", 0, 0, 0, 0, 0, 74, 0, 0, 0, 0, 0, 10, 84
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3236_tri_Shop_Discount_Region_Currency_Link.sql", "SQL", 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 10, 9, 53
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3300_tri_Shop_Permission_Group.sql", "SQL", 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 9, 55
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3303_tri_Shop_Permission.sql", "SQL", 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 9, 63
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3306_tri_Shop_Role.sql", "SQL", 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 10, 56
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3309_tri_Shop_Role_Permission_Link.sql", "SQL", 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 10, 10, 58
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3312_tri_Shop_User.sql", "SQL", 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 9, 79
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3315_tri_Shop_User_Role_Link.sql", "SQL", 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 9, 43
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3318_tri_Shop_Address.sql", "SQL", 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 0, 9, 75
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3321_tri_Shop_User_Basket.sql", "SQL", 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 9, 55
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3324_tri_Shop_User_Order_Status.sql", "SQL", 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 9, 59
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3400_tri_Shop_Supplier.sql", "SQL", 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 0, 10, 76
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3403_tri_Shop_Unit_Measurement.sql", "SQL", 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 0, 11, 77
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3406_tri_Shop_Unit_Of_Measurement_Conversion.sql", "SQL", 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 11, 65
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3409_tri_Shop_Supplier_Purchase_Order.sql", "SQL", 0, 0, 0, 0, 0, 42, 0, 0, 0, 0, 18, 11, 71
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql", "SQL", 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 10, 80
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3415_tri_Shop_Manufacturing_Purchase_Order.sql", "SQL", 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 10, 56
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql", "SQL", 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 11, 81
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3421_tri_Shop_Customer.sql", "SQL", 0, 0, 0, 0, 0, 62, 0, 0, 0, 0, 0, 11, 73
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3424_tri_Shop_Customer_Sales_Order.sql", "SQL", 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 10, 56
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3427_tri_Shop_Customer_Sales_Order_Product_Link.sql", "SQL", 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 10, 80
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6000_p_debug_timing_reporting.sql", "SQL", 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 12, 7, 45
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6000_p_split.sql", "SQL", 0, 0, 0, 0, 0, 68, 0, 0, 0, 0, 16, 19, 103
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6001_p_clear_split_temp.sql", "SQL", 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 8, 8, 30
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6001_p_validate_guid.sql", "SQL", 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 21, 9, 59
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6206_fn_shop_get_product_permutation_name.sql", "SQL", 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 7, 34
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6500_p_shop_calc_user.sql", "SQL", 0, 0, 0, 0, 0, 425, 0, 0, 0, 0, 87, 45, 557
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6501_p_shop_clear_calc_user.sql", "SQL", 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 14, 10, 46
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7003_p_shop_get_many_access_level.sql", "SQL", 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 13, 11, 46
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7101_p_shop_get_many_region.sql", "SQL", 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 13, 11, 46
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7116_p_shop_get_many_currency.sql", "SQL", 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 13, 11, 48
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7122_p_shop_get_many_unit_measurement.sql", "SQL", 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 9, 7, 42
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7200_p_shop_save_product_category.sql", "SQL", 0, 0, 0, 0, 0, 224, 0, 0, 0, 0, 13, 32, 269
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7200_p_shop_save_product_category_test.sql", "SQL", 0, 0, 0, 0, 0, 216, 0, 0, 0, 0, 17, 42, 275
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7202_p_shop_clear_calc_product_permutation.sql", "SQL", 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 18, 11, 53
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7203_p_shop_save_product.sql", "SQL", 0, 0, 0, 0, 0, 191, 0, 0, 0, 0, 22, 33, 246
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7204_p_shop_calc_product_permutation.sql", "SQL", 0, 0, 0, 0, 0, 528, 0, 0, 0, 0, 108, 56, 692
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7204_p_shop_get_many_product.sql", "SQL", 0, 0, 0, 0, 0, 381, 0, 0, 0, 0, 95, 41, 517
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7205_p_shop_get_many_stripe_product_new.sql", "SQL", 0, 0, 0, 0, 0, 209, 0, 0, 0, 0, 57, 42, 308
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7206_p_shop_save_permutation.sql", "SQL", 0, 0, 0, 0, 0, 400, 0, 0, 0, 0, 164, 42, 606
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7206_p_shop_save_product_permutation.sql", "SQL", 0, 0, 0, 0, 0, 428, 0, 0, 0, 0, 99, 35, 562
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7210_p_shop_get_many_product_variation.sql", "SQL", 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, 86, 41, 417
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7219_p_shop_get_many_stock_item.sql", "SQL", 0, 0, 0, 0, 0, 557, 0, 0, 0, 0, 157, 56, 770
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql", "SQL", 0, 0, 0, 0, 0, 738, 0, 0, 0, 0, 201, 68, 1007
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7223_p_shop_get_many_stripe_price_new.sql", "SQL", 0, 0, 0, 0, 0, 161, 0, 0, 0, 0, 42, 41, 244
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7312_p_shop_save_user.sql", "SQL", 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 42, 30, 181
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7313_p_get_many_user.sql", "SQL", 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 50, 31, 271
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7321_p_shop_save_user_basket.sql", "SQL", 0, 0, 0, 0, 0, 608, 0, 0, 0, 0, 175, 48, 831
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7400_p_shop_save_supplier.sql", "SQL", 0, 0, 0, 0, 0, 171, 0, 0, 0, 0, 79, 34, 284
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7401_p_shop_get_many_supplier.sql", "SQL", 0, 0, 0, 0, 0, 157, 0, 0, 0, 0, 74, 35, 266
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7403_p_save_supplier_purchase_order.sql", "SQL", 0, 0, 0, 0, 0, 377, 0, 0, 0, 0, 137, 43, 557
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7404_p_shop_get_many_supplier_purchase_order.sql", "SQL", 0, 0, 0, 0, 0, 546, 0, 0, 0, 0, 162, 58, 766
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7415_p_shop_save_manufacturing_purchase_order.sql", "SQL", 0, 0, 0, 0, 0, 400, 0, 0, 0, 0, 164, 42, 606
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7416_p_shop_get_many_manufacturing_purchase_order.sql", "SQL", 0, 0, 0, 0, 0, 426, 0, 0, 0, 0, 181, 52, 659
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7421_p_shop_save_customer.sql", "SQL", 0, 0, 0, 0, 0, 167, 0, 0, 0, 0, 101, 33, 301
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7422_p_shop_get_many_customer.sql", "SQL", 0, 0, 0, 0, 0, 169, 0, 0, 0, 0, 63, 40, 272
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7424_p_shop_save_customer_sales_order.sql", "SQL", 0, 0, 0, 0, 0, 383, 0, 0, 0, 0, 132, 43, 558
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7425_p_shop_get_many_customer_sales_order.sql", "SQL", 0, 0, 0, 0, 0, 534, 0, 0, 0, 0, 181, 62, 777
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\9000_populate.sql", "SQL", 0, 0, 0, 0, 0, 574, 0, 0, 0, 0, 145, 55, 774
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\9001_view.sql", "SQL", 0, 0, 0, 0, 0, 137, 0, 0, 0, 0, 14, 57, 208
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\9010_anal.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 9, 27
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\000_combine.sql", "SQL", 0, 0, 0, 0, 0, 9567, 0, 0, 0, 0, 4004, 1543, 15114
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\001_destroy.sql", "SQL", 0, 0, 0, 0, 0, 214, 0, 0, 0, 0, 3, 76, 293
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.0_tbl_Shop_Product_Change_Set.sql", "SQL", 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 1, 5, 13
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.1_tbl_Shop_User_Change_Set.sql", "SQL", 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 1, 5, 13
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.2_tbl_Shop_Access_Level.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 1, 5, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql", "SQL", 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 1, 5, 13
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.3_tbl_Shop_Access_Level_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100_tbl_Msg_Error_Type.sql", "SQL", 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 1, 6, 14
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\102_tbl_File_Type.sql", "SQL", 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 1, 6, 18
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\103_tbl_File_Type_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\104_tbl_Shop_General.sql", "SQL", 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 1, 5, 17
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\105_tbl_Shop_General_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\106_tbl_Shop_Category.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 1, 6, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\107_tbl_Shop_Category_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\108_tbl_Shop_Recurrence_Interval.sql", "SQL", 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 1, 6, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\109_tbl_Shop_Recurrence_Interval_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.0_tbl_Shop_Region.sql", "SQL", 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 1, 5, 20
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.1_tbl_Shop_Region_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.2_tbl_Shop_Region_Branch.sql", "SQL", 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 2, 5, 29
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.3_tbl_Shop_Region_Branch_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.4_tbl_Shop_Currency.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.5_tbl_Shop_Currency_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.6_tbl_Shop_Tax_Or_Surcharge.sql", "SQL", 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 1, 6, 39
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.8_tbl_Shop_Product.sql", "SQL", 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 24, 6, 49
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.9_tbl_Shop_Product_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\112_tbl_Shop_Variation_Type.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 1, 5, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\113.0_tbl_Shop_Variation_Type_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\114_tbl_Shop_Variation.sql", "SQL", 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 1, 6, 26
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\115_tbl_Shop_Variation_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.1_tbl_Shop_Product_Permutation.sql", "SQL", 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 9, 6, 48
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.2_tbl_Shop_Product_Permutation_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 6, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.3_tbl_Shop_Product_Permutation_Variation_Link.sql", "SQL", 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 1, 6, 29
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.5_tbl_Shop_Product_Currency_Region_Link.sql", "SQL", 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 1, 5, 40
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\118_tbl_Shop_Image_Type.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 1, 6, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\119_tbl_Shop_Image_Type_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\120_tbl_Shop_Image.sql", "SQL", 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 1, 5, 35
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\121_tbl_Shop_Image_Audit.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 1, 5, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\122_tbl_Shop_Delivery_Option.sql", "SQL", 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 1, 6, 26
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\123_tbl_Shop_Delivery_Option_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\124_tbl_Shop_Product_Delivery_Option_Link.sql", "SQL", 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 1, 5, 44
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\130.4_tbl_Shop_Discount.sql", "SQL", 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 13, 6, 49
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\131_tbl_Shop_Discount_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\132_tbl_Shop_Discount_Region_Currency_Link.sql", "SQL", 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 1, 5, 32
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\153_tbl_Shop_Permission_Group.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 1, 5, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\154_tbl_Shop_Permission_Group_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\155_tbl_Shop_Permission.sql", "SQL", 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 1, 5, 29
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\156_tbl_Shop_Permission_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\157_tbl_Shop_Role.sql", "SQL", 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 1, 5, 20
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\158_tbl_Shop_Role_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\159_tbl_Shop_Role_Permission_Link.sql", "SQL", 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 1, 5, 31
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\160_tbl_Shop_Role_Permission_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\161_tbl_Shop_User.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\162_tbl_Shop_User_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\163_tbl_Shop_User_Role_Link.sql", "SQL", 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 1, 5, 26
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\164_tbl_Shop_User_Role_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\165_tbl_Shop_Address.sql", "SQL", 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 9, 5, 33
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\166_tbl_Shop_Address_Audit.sql", "SQL", 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 1, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\167_tbl_Shop_User_Basket.sql", "SQL", 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 7, 6, 40
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\168_tbl_Shop_User_Basket_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 7, 5, 28
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\169_tbl_Shop_User_Order_Status.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 1, 6, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\170_tbl_Shop_User_Order_Status_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 5, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.0_tbl_Shop_Supplier.sql", "SQL", 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 1, 6, 33
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.1_tbl_Shop_Supplier_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.2_tbl_Shop_Unit_Measurement.sql", "SQL", 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 1, 7, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.3_tbl_Shop_Unit_Measurement_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.4_tbl_Shop_Unit_Measurement_Conversion.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.6_tbl_Shop_Supplier_Purchase_Order.sql", "SQL", 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 17, 6, 42
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql", "SQL", 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 1, 6, 38
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql", "SQL", 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 7, 7, 35
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\183_tbl_Shop_Manufacturing_Purchase_Order.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 11, 7, 34
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql", "SQL", 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 1, 6, 39
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql", "SQL", 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 8, 7, 36
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\187.0_tbl_Shop_Customer.sql", "SQL", 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 1, 5, 30
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\187.1_tbl_Shop_Customer_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\187.2_tbl_Shop_Customer_Sales_Order.sql", "SQL", 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 11, 6, 36
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\188_tbl_Shop_Customer_Sales_Order_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\189_tbl_Shop_Customer_Sales_Order_Product_Link.sql", "SQL", 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 1, 7, 39
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql", "SQL", 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 7, 7, 35
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql", "SQL", 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 1, 6, 27
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\301.1_tri_Shop_User_Change_Set.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 4, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\301.2_tri_Shop_Access_Level.sql", "SQL", 0, 0, 0, 0, 0, 52, 0, 0, 0, 0, 6, 9, 67
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\301_tri_Shop_Product_Change_Set.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\302_tri_File_Type.sql", "SQL", 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 4, 8, 49
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\303_tri_File_Type_Audit.sql", "SQL", 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 1, 8, 33
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\304_tri_Shop_General.sql", "SQL", 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 2, 9, 47
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\306_tri_Shop_Category.sql", "SQL", 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 6, 10, 64
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\308_tri_Shop_Recurrence_Interval.sql", "SQL", 0, 0, 0, 0, 0, 45, 0, 0, 0, 0, 5, 10, 60
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.0_tri_Shop_Region.sql", "SQL", 0, 0, 0, 0, 0, 45, 0, 0, 0, 0, 5, 10, 60
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.2_tri_Shop_Region_Branch.sql", "SQL", 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 9, 10, 58
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.4_tri_Shop_Currency.sql", "SQL", 0, 0, 0, 0, 0, 55, 0, 0, 0, 0, 7, 10, 72
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.6_tri_Shop_Tax_Or_Surcharge.sql", "SQL", 0, 0, 0, 0, 0, 60, 0, 0, 0, 0, 10, 11, 81
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.8_tri_Shop_Product.sql", "SQL", 0, 0, 0, 0, 0, 51, 0, 0, 0, 0, 113, 10, 174
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\312_tri_Shop_Variation_Type.sql", "SQL", 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 6, 10, 64
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\314_tri_Shop_Variation.sql", "SQL", 0, 0, 0, 0, 0, 45, 0, 0, 0, 0, 5, 10, 60
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\317.1_tri_Shop_Product_Permutation.sql", "SQL", 0, 0, 0, 0, 0, 82, 0, 0, 0, 0, 42, 10, 134
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\317.3_tri_Shop_Product_Permutation_Variation_Link.sql", "SQL", 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 13, 10, 66
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\317.5_tri_Shop_Product_Currency_Region_Link.sql", "SQL", 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 38, 11, 98
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\318_tri_Shop_Image_Type.sql", "SQL", 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 6, 10, 64
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\320_tri_Shop_Image.sql", "SQL", 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 8, 10, 76
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\322_tri_Shop_Delivery_Option.sql", "SQL", 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 9, 10, 76
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\324_tri_Shop_Product_Delivery_Option_Link.sql", "SQL", 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 22, 10, 78
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\330_tri_Shop_Discount.sql", "SQL", 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 12, 10, 88
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\332_tri_Shop_Discount_Region_Currency_Link.sql", "SQL", 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 12, 10, 62
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\353_tri_Shop_Permission_Group.sql", "SQL", 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 5, 10, 64
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\355_tri_Shop_Permission.sql", "SQL", 0, 0, 0, 0, 0, 55, 0, 0, 0, 0, 7, 10, 72
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\357_tri_Shop_Role.sql", "SQL", 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 5, 10, 64
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\359_tri_Shop_Role_Permission_Link.sql", "SQL", 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 13, 10, 66
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\361_tri_Shop_User.sql", "SQL", 0, 0, 0, 0, 0, 55, 0, 0, 0, 0, 7, 10, 72
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\363_tri_Shop_User_Role_Link.sql", "SQL", 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 2, 10, 52
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\365_tri_Shop_Address.sql", "SQL", 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 10, 9, 83
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\367_tri_Shop_User_Basket.sql", "SQL", 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 5, 10, 64
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\369_tri_Shop_User_Order_Status.sql", "SQL", 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 6, 10, 64
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.0_tri_Shop_Supplier.sql", "SQL", 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 10, 10, 84
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.2_tri_Shop_Unit_Measurement.sql", "SQL", 0, 0, 0, 0, 0, 52, 0, 0, 0, 0, 6, 10, 68
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql", "SQL", 0, 0, 0, 0, 0, 55, 0, 0, 0, 0, 7, 10, 72
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.6_tri_Shop_Supplier_Purchase_Order.sql", "SQL", 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 22, 11, 79
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql", "SQL", 0, 0, 0, 0, 0, 67, 0, 0, 0, 0, 11, 10, 88
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\383_tri_Shop_Manufacturing_Purchase_Order.sql", "SQL", 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 5, 10, 64
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql", "SQL", 0, 0, 0, 0, 0, 67, 0, 0, 0, 0, 11, 10, 88
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\387.0_tri_Shop_Customer.sql", "SQL", 0, 0, 0, 0, 0, 61, 0, 0, 0, 0, 9, 10, 80
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\387.2_tri_Shop_Customer_Sales_Order.sql", "SQL", 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 5, 9, 63
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\389_tri_Shop_Customer_Sales_Order_Product_Link.sql", "SQL", 0, 0, 0, 0, 0, 67, 0, 0, 0, 0, 11, 9, 87
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\600_p_shop_save_product.sql", "SQL", 0, 0, 0, 0, 0, 199, 0, 0, 0, 0, 28, 31, 258
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\600_p_shop_user_eval.sql", "SQL", 0, 0, 0, 0, 0, 385, 0, 0, 0, 0, 312, 34, 731
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\602_p_save_supplier_purchase_order.sql", "SQL", 0, 0, 0, 0, 0, 298, 0, 0, 0, 0, 181, 37, 516
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\602_p_shop_save_supplier.sql", "SQL", 0, 0, 0, 0, 0, 155, 0, 0, 0, 0, 120, 32, 307
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\604_p_shop_save_manufacturing_purchase_order.sql", "SQL", 0, 0, 0, 0, 0, 312, 0, 0, 0, 0, 258, 37, 607
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\605_p_shop_save_customer.sql", "SQL", 0, 0, 0, 0, 0, 125, 0, 0, 0, 0, 162, 27, 314
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\606_p_shop_save_customer_sales_order.sql", "SQL", 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 158, 36, 556
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\610_p_shop_save_user.sql", "SQL", 0, 0, 0, 0, 0, 94, 0, 0, 0, 0, 47, 26, 167
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\611_p_shop_save_user_basket.sql", "SQL", 0, 0, 0, 0, 0, 499, 0, 0, 0, 0, 297, 38, 834
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\700_p_shop_get_many_product.sql", "SQL", 0, 0, 0, 0, 0, 736, 0, 0, 0, 0, 436, 60, 1232
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\701_p_shop_get_many_role_permission.sql", "SQL", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 5, 153
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\702.1_p_shop_get_many_currency.sql", "SQL", 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 26, 6, 58
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\702.2_p_shop_get_many_region.sql", "SQL", 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 31, 6, 61
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\703_p_shop_get_many_user_order.sql", "SQL", 0, 0, 0, 0, 0, 143, 0, 0, 0, 0, 111, 30, 284
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\704_p_shop_get_many_stripe_product_new.sql", "SQL", 0, 0, 0, 0, 0, 181, 0, 0, 0, 0, 105, 31, 317
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\705_p_shop_get_many_stripe_price_new.sql", "SQL", 0, 0, 0, 0, 0, 130, 0, 0, 0, 0, 92, 32, 254
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\706_p_shop_get_many_supplier.sql", "SQL", 0, 0, 0, 0, 0, 136, 0, 0, 0, 0, 84, 28, 248
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\706_p_shop_get_many_supplier_purchase_order.sql", "SQL", 0, 0, 0, 0, 0, 487, 0, 0, 0, 0, 178, 45, 710
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\708_p_shop_get_many_manufacturing_purchase_order.sql", "SQL", 0, 0, 0, 0, 0, 375, 0, 0, 0, 0, 187, 40, 602
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\709_p_shop_get_many_customer.sql", "SQL", 0, 0, 0, 0, 0, 136, 0, 0, 0, 0, 85, 29, 250
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\710_p_shop_get_many_customer_sales_order.sql", "SQL", 0, 0, 0, 0, 0, 469, 0, 0, 0, 0, 206, 44, 719
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\900_populate.sql", "SQL", 0, 0, 0, 0, 0, 444, 0, 0, 0, 0, 166, 46, 656
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\901_view.sql", "SQL", 0, 0, 0, 0, 0, 87, 0, 0, 0, 0, 52, 50, 189
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\910_anal.sql", "SQL", 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 10, 27
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\920_edit_permissions.sql", "SQL", 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 4, 9, 83
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\batch\sql_combine.bat", "Batch", 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 22, 15, 98
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\button.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\card.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\dialog.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\form.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\modal.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\navigation.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\overlay.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\table.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 5, 6, 36
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\layouts\footer.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\layouts\header.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 3, 15
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\layouts\table-main.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 1, 15
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\lib\reset.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\lib\typography.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\lib\utils.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\lib\variables.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\main.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 386, 0, 146, 66, 598
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\core\admin_home.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 1, 7
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\core\contact.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 14, 5, 26
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\core\home.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 5, 6, 36
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\core\services.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 16, 3, 37
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\accessibility_report.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\accessibility_statement.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\license.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 2, 8
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\privacy_policy.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\retention_schedule.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\store\home.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\store\product_categories.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 61, 0, 19, 17, 97
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\store\product_permutations.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 126, 0, 5, 12, 143
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\store\stock_items.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 7, 40
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\sections\core.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\sections\legal.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\sections\store.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 1, 10, 53
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\themes\dark.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 6, 6, 45
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\themes\light.css", "CSS", 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 6, 6, 45
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\example abstract base class.py", "Python", 0, 0, 70, 0, 0, 0, 0, 0, 0, 0, 2, 17, 89
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\server.py", "Python", 0, 0, 81, 0, 0, 0, 0, 0, 0, 0, 19, 24, 124
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\template webpage.html", "HTML", 0, 0, 0, 0, 0, 0, 56, 0, 0, 0, 0, 8, 64
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\test.py", "Python", 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json", "JSON", 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html", "HTML", 0, 0, 0, 0, 0, 0, 60, 0, 0, 0, 0, 0, 60
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\images\MS_SQL_Server.svg", "XML", 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\accessibility_statement.js", "JavaScript", 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 2, 6
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\api.js", "JavaScript", 0, 0, 0, 0, 82, 0, 0, 0, 0, 0, 36, 12, 130
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\app.js", "JavaScript", 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 37, 16, 90
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\inputs\input_date.js", "JavaScript", 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 133, 13, 184
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\inputs\select.js", "JavaScript", 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 2, 16
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\inputs\textarea.js", "JavaScript", 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 3, 12, 45
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\table.js", "JavaScript", 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 1, 8, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\temporary\overlay_confirm.js", "JavaScript", 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 2, 26
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\temporary\overlay_error.js", "JavaScript", 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 2, 19
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\video.js", "JavaScript", 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 4, 14
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\dom.js", "JavaScript", 0, 0, 0, 0, 169, 0, 0, 0, 0, 0, 18, 11, 198
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\business_objects.js", "JavaScript", 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 7, 2, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\common.js", "JavaScript", 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 3, 19, 85
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\constants.js", "JavaScript", 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 2, 7
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\events.js", "JavaScript", 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 1, 10
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\extras.js", "JavaScript", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\local_storage.js", "JavaScript", 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 48, 5, 62
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\utils.js", "JavaScript", 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 10, 0, 19
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\validation.js", "JavaScript", 0, 0, 0, 0, 117, 0, 0, 0, 0, 0, 6, 41, 164
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\base.js", "JavaScript", 0, 0, 0, 0, 183, 0, 0, 0, 0, 0, 16, 19, 218
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\base_table.js", "JavaScript", 0, 0, 0, 0, 358, 0, 0, 0, 0, 0, 131, 9, 498
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\admin_home.js", "JavaScript", 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 8, 47
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\contact.js", "JavaScript", 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 5, 15
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\home.js", "JavaScript", 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 6, 20
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\services.js", "JavaScript", 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 7, 20
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\accessibility_report.js", "JavaScript", 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 5, 18
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\accessibility_statement.js", "JavaScript", 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 5, 18
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\license.js", "JavaScript", 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 5, 18
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\privacy_policy.js", "JavaScript", 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 5, 18
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\retention_schedule.js", "JavaScript", 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 5, 18
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\basket.js", "JavaScript", 0, 0, 0, 0, 137, 0, 0, 0, 0, 0, 12, 46, 195
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\home.js", "JavaScript", 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 6, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\mixin.js", "JavaScript", 0, 0, 0, 0, 318, 0, 0, 0, 0, 0, 112, 18, 448
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\mixin_table.js", "JavaScript", 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 3, 2, 25
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\product_categories.js", "JavaScript", 0, 0, 0, 0, 98, 0, 0, 0, 0, 0, 26, 15, 139
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\product_permutations.js", "JavaScript", 0, 0, 0, 0, 440, 0, 0, 0, 0, 0, 92, 24, 556
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\stock_items.js", "JavaScript", 0, 0, 0, 0, 382, 0, 0, 0, 0, 0, 63, 64, 509
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\user\user.js", "JavaScript", 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 6, 20
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\router.js", "JavaScript", 0, 0, 0, 0, 88, 0, 0, 0, 0, 0, 243, 16, 347
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\sections\core.js", "JavaScript", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\sections\legal.js", "JavaScript", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\sections\store.js", "JavaScript", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\python\rename_files.py", "Python", 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 2, 5, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\_shared.html", "HTML", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\buttons\_buttons_save_cancel.html", "HTML", 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 48
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\buttons\_slider_display_order.html", "HTML", 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 13
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\inputs\_input_number_plus_minus.html", "HTML", 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 6, 0, 17
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\inputs\_option_blank.html", "HTML", 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\_overlay_address.html", "HTML", 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 5, 1, 10
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\_overlay_confirm.html", "HTML", 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 1, 15
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\_overlay_error.html", "HTML", 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 1, 11
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\template_overlay.html", "HTML", 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 5, 4, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_body_home.html", "HTML", 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 3, 6, 37
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_currency.html", "HTML", 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 2, 17
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product.html", "HTML", 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 1, 14
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_category.html", "HTML", 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 1, 14
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_permutation_interval_expiration_unsealed.html", "HTML", 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 1, 17
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_permutation_interval_recurrence.html", "HTML", 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 19
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_permutation_unit_measurement_quantity.html", "HTML", 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 2, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_product_permutation_variations.html", "HTML", 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 1, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_product_variation_types.html", "HTML", 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 1, 15
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_address.html", "HTML", 0, 0, 0, 0, 0, 0, 65, 0, 0, 0, 3, 12, 80
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_basket.html", "HTML", 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 3, 0, 18
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_basket_item.html", "HTML", 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 6, 0, 35
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_product.html", "HTML", 0, 0, 0, 0, 0, 0, 45, 0, 0, 0, 0, 1, 46
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_product_category.html", "HTML", 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 44
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_product_permutation.html", "HTML", 0, 0, 0, 0, 0, 0, 158, 0, 0, 0, 0, 6, 164
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_stock_item.html", "HTML", 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 20, 1, 108
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\js\sections\store.js", "JavaScript", 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 3, 81
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\layouts\_shared_store.html", "HTML", 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 1, 0, 31
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\layouts\layout.html", "HTML", 0, 0, 0, 0, 0, 0, 261, 0, 0, 0, 71, 12, 344
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_admin_home.html", "HTML", 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 18, 5, 56
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_contact.html", "HTML", 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 38, 9, 117
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_home.html", "HTML", 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 19, 5, 33
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_services.html", "HTML", 0, 0, 0, 0, 0, 0, 93, 0, 0, 0, 19, 9, 121
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_accessibility_statement.html", "HTML", 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 139, 17, 210
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_license.html", "HTML", 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 18, 7, 40
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_privacy_policy.html", "HTML", 0, 0, 0, 0, 0, 0, 68, 0, 0, 0, 18, 13, 99
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_retention_schedule.html", "HTML", 0, 0, 0, 0, 0, 0, 1806, 0, 0, 0, 146, 15, 1967
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\accessibility_report.html", "HTML", 0, 0, 0, 0, 0, 0, 60, 0, 0, 0, 0, 0, 60
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_basket.html", "HTML", 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 28, 7, 71
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_checkout_success.html", "HTML", 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 19, 4, 46
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_home.html", "HTML", 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 2, 7
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_product_categories.html", "HTML", 0, 0, 0, 0, 0, 0, 81, 0, 0, 0, 16, 8, 105
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_product_permutations.html", "HTML", 0, 0, 0, 0, 0, 0, 152, 0, 0, 0, 17, 7, 176
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_products.html", "HTML", 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 16, 8, 111
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_stock_items.html", "HTML", 0, 0, 0, 0, 0, 0, 115, 0, 0, 0, 23, 7, 145
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_supplier.html", "HTML", 0, 0, 0, 0, 0, 0, 89, 0, 0, 0, 23, 5, 117
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\user\_user.html", "HTML", 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 19, 4, 32
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\webpack.config.js", "JavaScript", 0, 0, 0, 0, 111, 0, 0, 0, 0, 0, 24, 1, 136
"Total", "-", 12, 4421, 9239, 7, 3047, 48524, 3929, 1, 833, 61, 18431, 9994, 98499
1 filename language pip requirements JSON Python Markdown JavaScript SQL HTML XML CSS Batch comment blank total
2 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\README.md Markdown 0 0 0 7 0 0 0 0 0 0 0 4 11
3 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\__init__.py Python 0 0 13 0 0 0 0 0 0 0 2 6 21
4 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\app.py Python 0 0 107 0 0 0 0 0 0 0 12 21 140
5 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\__init__.py Python 0 0 9 0 0 0 0 0 0 0 0 3 12
6 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\base.py Python 0 0 50 0 0 0 0 0 0 0 3 6 59
7 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\db_base.py Python 0 0 65 0 0 0 0 0 0 0 7 8 80
8 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\sql_error.py Python 0 0 45 0 0 0 0 0 0 0 9 11 65
9 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\__init__.py Python 0 0 0 0 0 0 0 0 0 0 0 1 1
10 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\access_level.py Python 0 0 78 0 0 0 0 0 0 0 2 6 86
11 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\basket.py Python 0 0 144 0 0 0 0 0 0 0 17 22 183
12 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\currency.py Python 0 0 108 0 0 0 0 0 0 0 5 10 123
13 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\delivery_option.py Python 0 0 89 0 0 0 0 0 0 0 2 8 99
14 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\delivery_region.py Python 0 0 92 0 0 0 0 0 0 0 3 9 104
15 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\discount.py Python 0 0 66 0 0 0 0 0 0 0 2 8 76
16 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\image.py Python 0 0 106 0 0 0 0 0 0 0 5 17 128
17 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\order.py Python 0 0 63 0 0 0 0 0 0 0 12 14 89
18 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product.py Python 0 0 614 0 0 0 0 0 0 0 173 26 813
19 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_category.py Python 0 0 463 0 0 0 0 0 0 0 13 13 489
20 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_permutation.py Python 0 0 577 0 0 0 0 0 0 0 16 23 616
21 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_price.py Python 0 0 97 0 0 0 0 0 0 0 3 9 109
22 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_variation.py Python 0 0 178 0 0 0 0 0 0 0 7 26 211
23 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_variation_tree.py Python 0 0 177 0 0 0 0 0 0 0 2 9 188
24 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_variation_type.py Python 0 0 83 0 0 0 0 0 0 0 7 14 104
25 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\stock_item.py Python 0 0 248 0 0 0 0 0 0 0 9 13 270
26 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\storage_location.py Python 0 0 61 0 0 0 0 0 0 0 2 7 70
27 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\store_base.py Python 0 0 79 0 0 0 0 0 0 0 4 6 89
28 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\stripe.py Python 0 0 140 0 0 0 0 0 0 0 9 12 161
29 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\unit_measurement.py Python 0 0 143 0 0 0 0 0 0 0 4 13 160
30 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\user.py Python 0 0 252 0 0 0 0 0 0 0 4 26 282
31 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\config.py Python 0 0 69 0 0 0 0 0 0 0 22 10 101
32 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\__init__.py Python 0 0 0 0 0 0 0 0 0 0 0 1 1
33 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\core.py Python 0 0 77 0 0 0 0 0 0 0 6 12 95
34 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\legal.py Python 0 0 62 0 0 0 0 0 0 0 5 8 75
35 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\__init__.py Python 0 0 0 0 0 0 0 0 0 0 0 1 1
36 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\product.py Python 0 0 80 0 0 0 0 0 0 0 6 13 99
37 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\product_category.py Python 0 0 99 0 0 0 0 0 0 0 8 12 119
38 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\product_permutation.py Python 0 0 133 0 0 0 0 0 0 0 6 20 159
39 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\stock_item.py Python 0 0 75 0 0 0 0 0 0 0 4 14 93
40 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\store.py Python 0 0 22 0 0 0 0 0 0 0 3 5 30
41 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\supplier.py Python 0 0 50 0 0 0 0 0 0 0 10 9 69
42 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\user.py Python 0 0 139 0 0 0 0 0 0 0 18 20 177
43 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\__init__.py Python 0 0 9 0 0 0 0 0 0 0 0 3 12
44 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_base.py Python 0 0 227 0 0 0 0 0 0 0 30 26 283
45 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_base.py Python 0 0 240 0 0 0 0 0 0 0 48 42 330
46 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_basket.py Python 0 0 113 0 0 0 0 0 0 0 21 20 154
47 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_product.py Python 0 0 108 0 0 0 0 0 0 0 8 14 130
48 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_product_category.py Python 0 0 79 0 0 0 0 0 0 0 11 10 100
49 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_product_permutation.py Python 0 0 84 0 0 0 0 0 0 0 7 13 104
50 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_product_variation.py Python 0 0 70 0 0 0 0 0 0 0 14 15 99
51 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_stock_item.py Python 0 0 82 0 0 0 0 0 0 0 13 13 108
52 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_stripe.py Python 0 0 143 0 0 0 0 0 0 0 25 36 204
53 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_user.py Python 0 0 132 0 0 0 0 0 0 0 22 28 182
54 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\extensions.py Python 0 0 11 0 0 0 0 0 0 0 0 3 14
55 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\__init__.py Python 0 0 0 0 0 0 0 0 0 0 0 1 1
56 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\access_level.py Python 0 0 30 0 0 0 0 0 0 0 2 5 37
57 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\base.py Python 0 0 58 0 0 0 0 0 0 0 2 9 69
58 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\forms.py Python 0 0 96 0 0 0 0 0 0 0 16 22 134
59 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\__init__.py Python 0 0 0 0 0 0 0 0 0 0 0 1 1
60 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\product.py Python 0 0 26 0 0 0 0 0 0 0 5 5 36
61 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\product_category.py Python 0 0 37 0 0 0 0 0 0 0 5 5 47
62 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\product_permutation.py Python 0 0 54 0 0 0 0 0 0 0 6 5 65
63 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\stock_item.py Python 0 0 53 0 0 0 0 0 0 0 6 5 64
64 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\unit_measurement.py Python 0 0 35 0 0 0 0 0 0 0 2 5 42
65 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\helpers\__init__.py Python 0 0 9 0 0 0 0 0 0 0 0 3 12
66 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\helpers\helper_app.py Python 0 0 25 0 0 0 0 0 0 0 4 6 35
67 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\helpers\helper_db_mysql.py Python 0 0 30 0 0 0 0 0 0 0 3 9 42
68 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\lib\__init__.py Python 0 0 9 0 0 0 0 0 0 0 0 3 12
69 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\lib\argument_validation.py Python 0 0 806 0 0 0 0 0 0 0 467 45 1318
70 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\lib\data_types.py Python 0 0 10 0 0 0 0 0 0 0 20 7 37
71 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\__init__.py Python 0 0 9 0 0 0 0 0 0 0 0 3 12
72 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_accessibility_report.py Python 0 0 16 0 0 0 0 0 0 0 3 5 24
73 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_accessibility_statement.py Python 0 0 16 0 0 0 0 0 0 0 3 5 24
74 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_admin.py Python 0 0 17 0 0 0 0 0 0 0 2 6 25
75 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_admin_home.py Python 0 0 18 0 0 0 0 0 0 0 2 7 27
76 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_base.py Python 0 0 295 0 0 0 0 0 0 0 28 18 341
77 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_contact.py Python 0 0 25 0 0 0 0 0 0 0 5 8 38
78 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_home.py Python 0 0 16 0 0 0 0 0 0 0 3 5 24
79 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_license.py Python 0 0 16 0 0 0 0 0 0 0 3 5 24
80 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_privacy_policy.py Python 0 0 16 0 0 0 0 0 0 0 3 5 24
81 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_retention_schedule.py Python 0 0 16 0 0 0 0 0 0 0 3 5 24
82 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_services.py Python 0 0 16 0 0 0 0 0 0 0 5 6 27
83 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store.py Python 0 0 351 0 0 0 0 0 0 0 68 34 453
84 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_basket.py Python 0 0 60 0 0 0 0 0 0 0 19 10 89
85 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_checkout.py Python 0 0 42 0 0 0 0 0 0 0 14 16 72
86 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_checkout_success.py Python 0 0 27 0 0 0 0 0 0 0 13 9 49
87 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_home.py Python 0 0 33 0 0 0 0 0 0 0 17 10 60
88 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_product.py Python 0 0 40 0 0 0 0 0 0 0 15 12 67
89 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_product_category.py Python 0 0 37 0 0 0 0 0 0 0 9 9 55
90 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_product_permutation.py Python 0 0 81 0 0 0 0 0 0 0 6 9 96
91 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\Model_View_Store_Stock_Item.py Python 0 0 73 0 0 0 0 0 0 0 5 10 88
92 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_supplier.py Python 0 0 26 0 0 0 0 0 0 0 5 8 39
93 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_user.py Python 0 0 20 0 0 0 0 0 0 0 5 6 31
94 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\package-lock.json JSON 0 4383 0 0 0 0 0 0 0 0 0 1 4384
95 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\package.json JSON 0 37 0 0 0 0 0 0 0 0 0 1 38
96 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\passenger_wsgi.py Python 0 0 10 0 0 0 0 0 0 0 0 5 15
97 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\pay_stripe.py Python 0 0 110 0 0 0 0 0 0 0 37 35 182
98 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\payments\pay_stripe.py Python 0 0 106 0 0 0 0 0 0 0 30 34 170
99 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\requirements.txt pip requirements 12 0 0 0 0 0 0 0 0 0 1 3 16
100 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\routes.py Python 0 0 40 0 0 0 0 0 0 0 6 8 54
101 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\run.py Python 0 0 12 0 0 0 0 0 0 0 1 4 17
102 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\0000_combine.sql SQL 0 0 0 0 0 14579 0 0 0 0 3389 2259 20227
103 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\0001_destroy.sql SQL 0 0 0 0 0 213 0 0 0 0 2 69 284
104 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1000_tbl_Shop_Product_Change_Set.sql SQL 0 0 0 0 0 8 0 0 0 0 0 5 13
105 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1000_tbl_Split_Temp.sql SQL 0 0 0 0 0 7 0 0 0 0 2 4 13
106 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1001_tbl_Shop_User_Change_Set.sql SQL 0 0 0 0 0 8 0 0 0 0 0 5 13
107 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql SQL 0 0 0 0 0 8 0 0 0 0 0 5 13
108 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1003_tbl_Shop_Access_Level.sql SQL 0 0 0 0 0 16 0 0 0 0 0 8 24
109 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1004_tbl_Shop_Access_Level_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 5 22
110 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1005_tbl_Msg_Error_Type.sql SQL 0 0 0 0 0 8 0 0 0 0 0 6 14
111 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1010_tbl_File_Type.sql SQL 0 0 0 0 0 12 0 0 0 0 0 6 18
112 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1011_tbl_File_Type_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 5 22
113 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1012_tbl_Shop_General.sql SQL 0 0 0 0 0 12 0 0 0 0 0 5 17
114 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1013_tbl_Shop_General_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 5 22
115 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1014_tbl_Shop_Image_Type.sql SQL 0 0 0 0 0 16 0 0 0 0 6 6 28
116 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1015_tbl_Shop_Image_Type_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 5 22
117 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1100_tbl_Shop_Region.sql SQL 0 0 0 0 0 15 0 0 0 0 0 5 20
118 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1101_tbl_Shop_Region_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 5 22
119 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1102_tbl_Shop_Region_Temp.sql SQL 0 0 0 0 0 15 0 0 0 0 0 5 20
120 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1103_tbl_Shop_Region_Branch.sql SQL 0 0 0 0 0 23 0 0 0 0 1 5 29
121 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1104_tbl_Shop_Region_Branch_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 5 22
122 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1105_tbl_Shop_Region_Branch_Temp.sql SQL 0 0 0 0 0 9 0 0 0 0 1 5 15
123 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1106_tbl_Shop_Plant.sql SQL 0 0 0 0 0 16 0 0 0 0 0 6 22
124 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1107_tbl_Shop_Plant_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
125 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1108_tbl_Shop_Plant_Temp.sql SQL 0 0 0 0 0 10 0 0 0 0 0 6 16
126 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1109_tbl_Shop_Storage_Location.sql SQL 0 0 0 0 0 18 0 0 0 0 0 6 24
127 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1110_tbl_Shop_Storage_Location_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
128 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1111_tbl_Shop_Storage_Location_Temp.sql SQL 0 0 0 0 0 8 0 0 0 0 0 6 14
129 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1112_tbl_Shop_Storage_Location_Branch.sql SQL 0 0 0 0 0 23 0 0 0 0 1 5 29
130 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1113_tbl_Shop_Storage_Location_Branch_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
131 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1114_tbl_Shop_Storage_Location_Branch_Temp.sql SQL 0 0 0 0 0 9 0 0 0 0 1 5 15
132 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1115_tbl_Shop_Currency.sql SQL 0 0 0 0 0 18 0 0 0 0 0 5 23
133 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1116_tbl_Shop_Currency_Audit.sql SQL 0 0 0 0 0 18 0 0 0 0 0 5 23
134 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1117_tbl_Shop_Currency_Temp.sql SQL 0 0 0 0 0 11 0 0 0 0 0 5 16
135 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1118_tbl_Shop_Tax_Or_Surcharge.sql SQL 0 0 0 0 0 33 0 0 0 0 0 6 39
136 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql SQL 0 0 0 0 0 18 0 0 0 0 0 5 23
137 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
138 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1121_tbl_Shop_Unit_Measurement.sql SQL 0 0 0 0 0 21 0 0 0 0 0 6 27
139 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1122_tbl_Shop_Unit_Measurement_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
140 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1124_tbl_Shop_Unit_Measurement_Conversion.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
141 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
142 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1200_tbl_Shop_Product_Category.sql SQL 0 0 0 0 0 20 0 0 0 0 0 5 25
143 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1201_tbl_Shop_Product_Category_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
144 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1202_tbl_Shop_Product_Category_Temp.sql SQL 0 0 0 0 0 15 0 0 0 0 1 5 21
145 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1203_tbl_Shop_Product.sql SQL 0 0 0 0 0 22 0 0 0 0 21 6 49
146 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1204_tbl_Shop_Product_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 5 22
147 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1205_tbl_Shop_Product_Temp.sql SQL 0 0 0 0 0 15 0 0 0 0 1 5 21
148 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1206_tbl_Shop_Product_Permutation.sql SQL 0 0 0 0 0 44 0 0 0 0 10 6 60
149 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1207_tbl_Shop_Product_Permutation_Audit.sql SQL 0 0 0 0 0 18 0 0 0 0 0 6 24
150 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1208_tbl_Shop_Product_Permutation_Temp.sql SQL 0 0 0 0 0 28 0 0 0 0 2 5 35
151 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1209_tbl_Shop_Variation_Type.sql SQL 0 0 0 0 0 16 0 0 0 0 0 5 21
152 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1210_tbl_Shop_Variation_Type_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
153 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1212_tbl_Shop_Variation.sql SQL 0 0 0 0 0 20 0 0 0 0 0 6 26
154 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1213_tbl_Shop_Variation_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
155 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1215_tbl_Shop_Product_Permutation_Variation_Link.sql SQL 0 0 0 0 0 23 0 0 0 0 0 6 29
156 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql SQL 0 0 0 0 0 18 0 0 0 0 0 5 23
157 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1218_tbl_Shop_Stock_Item.sql SQL 0 0 0 0 0 33 0 0 0 0 0 6 39
158 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1219_tbl_Shop_Stock_Item_Audit.sql SQL 0 0 0 0 0 18 0 0 0 0 0 6 24
159 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1220_tbl_Shop_Stock_Item_Temp.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
160 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1221_tbl_Shop_Product_Price.sql SQL 0 0 0 0 0 27 0 0 0 0 0 5 32
161 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1222_tbl_Shop_Product_Price_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
162 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1223_tbl_Shop_Product_Price_Temp.sql SQL 0 0 0 0 0 12 0 0 0 0 0 5 17
163 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1224_tbl_Shop_Product_Image.sql SQL 0 0 0 0 0 22 0 0 0 0 0 5 27
164 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1225_tbl_Shop_Product_Image_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 0 5 21
165 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1227_tbl_Shop_Delivery_Option.sql SQL 0 0 0 0 0 18 0 0 0 0 4 6 28
166 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1228_tbl_Shop_Delivery_Option_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 5 22
167 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql SQL 0 0 0 0 0 41 0 0 0 0 0 5 46
168 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 5 22
169 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1233_tbl_Shop_Discount.sql SQL 0 0 0 0 0 31 0 0 0 0 12 6 49
170 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1234_tbl_Shop_Discount_Audit.sql SQL 0 0 0 0 0 18 0 0 0 0 0 5 23
171 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1236_tbl_Shop_Discount_Region_Currency_Link.sql SQL 0 0 0 0 0 27 0 0 0 0 0 5 32
172 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql SQL 0 0 0 0 0 18 0 0 0 0 0 5 23
173 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1300_tbl_Shop_Permission_Group.sql SQL 0 0 0 0 0 16 0 0 0 0 0 5 21
174 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1301_tbl_Shop_Permission_Group_Audit.sql SQL 0 0 0 0 0 18 0 0 0 0 0 5 23
175 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1303_tbl_Shop_Permission.sql SQL 0 0 0 0 0 24 0 0 0 0 0 5 29
176 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1304_tbl_Shop_Permission_Audit.sql SQL 0 0 0 0 0 18 0 0 0 0 0 5 23
177 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1306_tbl_Shop_Role.sql SQL 0 0 0 0 0 15 0 0 0 0 0 5 20
178 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1307_tbl_Shop_Role_Audit.sql SQL 0 0 0 0 0 18 0 0 0 0 0 5 23
179 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1309_tbl_Shop_Role_Permission_Link.sql SQL 0 0 0 0 0 26 0 0 0 0 0 5 31
180 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1310_tbl_Shop_Role_Permission_Link_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 5 22
181 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1312_tbl_Shop_User.sql SQL 0 0 0 0 0 21 0 0 0 0 0 6 27
182 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1313_tbl_Shop_User_Audit.sql SQL 0 0 0 0 0 18 0 0 0 0 0 5 23
183 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1315_tbl_Shop_User_Role_Link.sql SQL 0 0 0 0 0 21 0 0 0 0 0 5 26
184 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1316_tbl_Shop_User_Role_Link_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
185 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1318_tbl_Shop_Address.sql SQL 0 0 0 0 0 25 0 0 0 0 1 5 31
186 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1319_tbl_Shop_Address_Audit.sql SQL 0 0 0 0 0 18 0 0 0 0 0 5 23
187 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1321_tbl_Shop_User_Basket.sql SQL 0 0 0 0 0 28 0 0 0 0 6 6 40
188 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1322_tbl_Shop_User_Basket_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 6 5 28
189 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1397_tbl_Shop_Order_Status.sql SQL 0 0 0 0 0 16 0 0 0 0 0 6 22
190 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1398_tbl_Shop_Order_Status_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 5 22
191 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1400_tbl_Shop_Supplier.sql SQL 0 0 0 0 0 27 0 0 0 0 0 6 33
192 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1401_tbl_Shop_Supplier_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
193 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1409_tbl_Shop_Supplier_Purchase_Order.sql SQL 0 0 0 0 0 20 0 0 0 0 16 6 42
194 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
195 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql SQL 0 0 0 0 0 32 0 0 0 0 0 6 38
196 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
197 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql SQL 0 0 0 0 0 22 0 0 0 0 6 7 35
198 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1415_tbl_Shop_Manufacturing_Purchase_Order.sql SQL 0 0 0 0 0 17 0 0 0 0 10 7 34
199 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
200 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql SQL 0 0 0 0 0 33 0 0 0 0 0 6 39
201 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
202 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql SQL 0 0 0 0 0 22 0 0 0 0 7 7 36
203 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1421_tbl_Shop_Customer.sql SQL 0 0 0 0 0 25 0 0 0 0 0 5 30
204 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1422_tbl_Shop_Customer_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
205 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1424_tbl_Shop_Customer_Sales_Order.sql SQL 0 0 0 0 0 20 0 0 0 0 10 6 36
206 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1425_tbl_Shop_Customer_Sales_Order_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
207 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql SQL 0 0 0 0 0 32 0 0 0 0 0 7 39
208 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 0 6 23
209 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql SQL 0 0 0 0 0 22 0 0 0 0 6 7 35
210 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1500_tbl_Shop_Calc_User_Temp.sql SQL 0 0 0 0 0 20 0 0 0 0 3 3 26
211 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3000_tri_Shop_Access_Level.sql SQL 0 0 0 0 0 50 0 0 0 0 0 10 60
212 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3000_tri_Shop_Product_Change_Set.sql SQL 0 0 0 0 0 15 0 0 0 0 0 6 21
213 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3001_tri_Shop_User_Change_Set.sql SQL 0 0 0 0 0 15 0 0 0 0 0 6 21
214 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql SQL 0 0 0 0 0 15 0 0 0 0 0 6 21
215 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3010_tri_File_Type.sql SQL 0 0 0 0 0 37 0 0 0 0 0 7 44
216 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3011_tri_File_Type_Audit.sql SQL 0 0 0 0 0 21 0 0 0 0 0 7 28
217 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3012_tri_Shop_General.sql SQL 0 0 0 0 0 34 0 0 0 0 0 7 41
218 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3014_tri_Shop_Image_Type.sql SQL 0 0 0 0 0 50 0 0 0 0 6 9 65
219 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3100_tri_Shop_Region.sql SQL 0 0 0 0 0 46 0 0 0 0 0 10 56
220 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3103_tri_Shop_Region_Branch.sql SQL 0 0 0 0 0 38 0 0 0 0 6 10 54
221 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3109_tri_Shop_Storage_Location.sql SQL 0 0 0 0 0 46 0 0 0 0 0 10 56
222 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3115_tri_Shop_Currency.sql SQL 0 0 0 0 0 54 0 0 0 0 0 9 63
223 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3118_tri_Shop_Tax_Or_Surcharge.sql SQL 0 0 0 0 0 66 0 0 0 0 0 10 76
224 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3200_tri_Shop_Category.sql SQL 0 0 0 0 0 54 0 0 0 0 0 8 62
225 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3203_tri_Shop_Product.sql SQL 0 0 0 0 0 54 0 0 0 0 106 11 171
226 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3206_tri_Shop_Product_Permutation.sql SQL 0 0 0 0 0 112 0 0 0 0 36 12 160
227 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3209_tri_Shop_Variation_Type.sql SQL 0 0 0 0 0 50 0 0 0 0 0 11 61
228 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3212_tri_Shop_Variation.sql SQL 0 0 0 0 0 46 0 0 0 0 0 10 56
229 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3215_tri_Shop_Product_Permutation_Variation_Link.sql SQL 0 0 0 0 0 38 0 0 0 0 10 9 57
230 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3218_tri_Shop_Stock_Item.sql SQL 0 0 0 0 0 82 0 0 0 0 0 10 92
231 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3221_tri_Shop_Product_Price.sql SQL 0 0 0 0 0 58 0 0 0 0 19 11 88
232 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3224_tri_Shop_Product_Image.sql SQL 0 0 0 0 0 54 0 0 0 0 10 9 73
233 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3227_tri_Shop_Delivery_Option.sql SQL 0 0 0 0 0 54 0 0 0 0 10 9 73
234 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql SQL 0 0 0 0 0 42 0 0 0 0 28 9 79
235 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3233_tri_Shop_Discount.sql SQL 0 0 0 0 0 74 0 0 0 0 0 10 84
236 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3236_tri_Shop_Discount_Region_Currency_Link.sql SQL 0 0 0 0 0 34 0 0 0 0 10 9 53
237 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3300_tri_Shop_Permission_Group.sql SQL 0 0 0 0 0 46 0 0 0 0 0 9 55
238 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3303_tri_Shop_Permission.sql SQL 0 0 0 0 0 54 0 0 0 0 0 9 63
239 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3306_tri_Shop_Role.sql SQL 0 0 0 0 0 46 0 0 0 0 0 10 56
240 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3309_tri_Shop_Role_Permission_Link.sql SQL 0 0 0 0 0 38 0 0 0 0 10 10 58
241 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3312_tri_Shop_User.sql SQL 0 0 0 0 0 70 0 0 0 0 0 9 79
242 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3315_tri_Shop_User_Role_Link.sql SQL 0 0 0 0 0 34 0 0 0 0 0 9 43
243 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3318_tri_Shop_Address.sql SQL 0 0 0 0 0 66 0 0 0 0 0 9 75
244 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3321_tri_Shop_User_Basket.sql SQL 0 0 0 0 0 46 0 0 0 0 0 9 55
245 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3324_tri_Shop_User_Order_Status.sql SQL 0 0 0 0 0 50 0 0 0 0 0 9 59
246 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3400_tri_Shop_Supplier.sql SQL 0 0 0 0 0 66 0 0 0 0 0 10 76
247 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3403_tri_Shop_Unit_Measurement.sql SQL 0 0 0 0 0 66 0 0 0 0 0 11 77
248 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3406_tri_Shop_Unit_Of_Measurement_Conversion.sql SQL 0 0 0 0 0 54 0 0 0 0 0 11 65
249 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3409_tri_Shop_Supplier_Purchase_Order.sql SQL 0 0 0 0 0 42 0 0 0 0 18 11 71
250 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql SQL 0 0 0 0 0 70 0 0 0 0 0 10 80
251 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3415_tri_Shop_Manufacturing_Purchase_Order.sql SQL 0 0 0 0 0 46 0 0 0 0 0 10 56
252 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql SQL 0 0 0 0 0 70 0 0 0 0 0 11 81
253 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3421_tri_Shop_Customer.sql SQL 0 0 0 0 0 62 0 0 0 0 0 11 73
254 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3424_tri_Shop_Customer_Sales_Order.sql SQL 0 0 0 0 0 46 0 0 0 0 0 10 56
255 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3427_tri_Shop_Customer_Sales_Order_Product_Link.sql SQL 0 0 0 0 0 70 0 0 0 0 0 10 80
256 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6000_p_debug_timing_reporting.sql SQL 0 0 0 0 0 26 0 0 0 0 12 7 45
257 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6000_p_split.sql SQL 0 0 0 0 0 68 0 0 0 0 16 19 103
258 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6001_p_clear_split_temp.sql SQL 0 0 0 0 0 14 0 0 0 0 8 8 30
259 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6001_p_validate_guid.sql SQL 0 0 0 0 0 29 0 0 0 0 21 9 59
260 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6206_fn_shop_get_product_permutation_name.sql SQL 0 0 0 0 0 27 0 0 0 0 0 7 34
261 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6500_p_shop_calc_user.sql SQL 0 0 0 0 0 425 0 0 0 0 87 45 557
262 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6501_p_shop_clear_calc_user.sql SQL 0 0 0 0 0 22 0 0 0 0 14 10 46
263 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7003_p_shop_get_many_access_level.sql SQL 0 0 0 0 0 22 0 0 0 0 13 11 46
264 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7101_p_shop_get_many_region.sql SQL 0 0 0 0 0 22 0 0 0 0 13 11 46
265 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7116_p_shop_get_many_currency.sql SQL 0 0 0 0 0 24 0 0 0 0 13 11 48
266 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7122_p_shop_get_many_unit_measurement.sql SQL 0 0 0 0 0 26 0 0 0 0 9 7 42
267 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7200_p_shop_save_product_category.sql SQL 0 0 0 0 0 224 0 0 0 0 13 32 269
268 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7200_p_shop_save_product_category_test.sql SQL 0 0 0 0 0 216 0 0 0 0 17 42 275
269 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7202_p_shop_clear_calc_product_permutation.sql SQL 0 0 0 0 0 24 0 0 0 0 18 11 53
270 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7203_p_shop_save_product.sql SQL 0 0 0 0 0 191 0 0 0 0 22 33 246
271 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7204_p_shop_calc_product_permutation.sql SQL 0 0 0 0 0 528 0 0 0 0 108 56 692
272 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7204_p_shop_get_many_product.sql SQL 0 0 0 0 0 381 0 0 0 0 95 41 517
273 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7205_p_shop_get_many_stripe_product_new.sql SQL 0 0 0 0 0 209 0 0 0 0 57 42 308
274 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7206_p_shop_save_permutation.sql SQL 0 0 0 0 0 400 0 0 0 0 164 42 606
275 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7206_p_shop_save_product_permutation.sql SQL 0 0 0 0 0 428 0 0 0 0 99 35 562
276 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7210_p_shop_get_many_product_variation.sql SQL 0 0 0 0 0 290 0 0 0 0 86 41 417
277 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7219_p_shop_get_many_stock_item.sql SQL 0 0 0 0 0 557 0 0 0 0 157 56 770
278 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql SQL 0 0 0 0 0 738 0 0 0 0 201 68 1007
279 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7223_p_shop_get_many_stripe_price_new.sql SQL 0 0 0 0 0 161 0 0 0 0 42 41 244
280 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7312_p_shop_save_user.sql SQL 0 0 0 0 0 109 0 0 0 0 42 30 181
281 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7313_p_get_many_user.sql SQL 0 0 0 0 0 190 0 0 0 0 50 31 271
282 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7321_p_shop_save_user_basket.sql SQL 0 0 0 0 0 608 0 0 0 0 175 48 831
283 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7400_p_shop_save_supplier.sql SQL 0 0 0 0 0 171 0 0 0 0 79 34 284
284 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7401_p_shop_get_many_supplier.sql SQL 0 0 0 0 0 157 0 0 0 0 74 35 266
285 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7403_p_save_supplier_purchase_order.sql SQL 0 0 0 0 0 377 0 0 0 0 137 43 557
286 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7404_p_shop_get_many_supplier_purchase_order.sql SQL 0 0 0 0 0 546 0 0 0 0 162 58 766
287 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7415_p_shop_save_manufacturing_purchase_order.sql SQL 0 0 0 0 0 400 0 0 0 0 164 42 606
288 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7416_p_shop_get_many_manufacturing_purchase_order.sql SQL 0 0 0 0 0 426 0 0 0 0 181 52 659
289 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7421_p_shop_save_customer.sql SQL 0 0 0 0 0 167 0 0 0 0 101 33 301
290 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7422_p_shop_get_many_customer.sql SQL 0 0 0 0 0 169 0 0 0 0 63 40 272
291 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7424_p_shop_save_customer_sales_order.sql SQL 0 0 0 0 0 383 0 0 0 0 132 43 558
292 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7425_p_shop_get_many_customer_sales_order.sql SQL 0 0 0 0 0 534 0 0 0 0 181 62 777
293 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\9000_populate.sql SQL 0 0 0 0 0 574 0 0 0 0 145 55 774
294 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\9001_view.sql SQL 0 0 0 0 0 137 0 0 0 0 14 57 208
295 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\9010_anal.sql SQL 0 0 0 0 0 17 0 0 0 0 1 9 27
296 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\000_combine.sql SQL 0 0 0 0 0 9567 0 0 0 0 4004 1543 15114
297 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\001_destroy.sql SQL 0 0 0 0 0 214 0 0 0 0 3 76 293
298 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.0_tbl_Shop_Product_Change_Set.sql SQL 0 0 0 0 0 7 0 0 0 0 1 5 13
299 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.1_tbl_Shop_User_Change_Set.sql SQL 0 0 0 0 0 7 0 0 0 0 1 5 13
300 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.2_tbl_Shop_Access_Level.sql SQL 0 0 0 0 0 15 0 0 0 0 1 5 21
301 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql SQL 0 0 0 0 0 7 0 0 0 0 1 5 13
302 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.3_tbl_Shop_Access_Level_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 5 22
303 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100_tbl_Msg_Error_Type.sql SQL 0 0 0 0 0 7 0 0 0 0 1 6 14
304 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\102_tbl_File_Type.sql SQL 0 0 0 0 0 11 0 0 0 0 1 6 18
305 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\103_tbl_File_Type_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 5 22
306 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\104_tbl_Shop_General.sql SQL 0 0 0 0 0 11 0 0 0 0 1 5 17
307 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\105_tbl_Shop_General_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 5 22
308 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\106_tbl_Shop_Category.sql SQL 0 0 0 0 0 15 0 0 0 0 1 6 22
309 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\107_tbl_Shop_Category_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
310 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\108_tbl_Shop_Recurrence_Interval.sql SQL 0 0 0 0 0 14 0 0 0 0 1 6 21
311 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\109_tbl_Shop_Recurrence_Interval_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
312 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.0_tbl_Shop_Region.sql SQL 0 0 0 0 0 14 0 0 0 0 1 5 20
313 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.1_tbl_Shop_Region_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 5 22
314 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.2_tbl_Shop_Region_Branch.sql SQL 0 0 0 0 0 22 0 0 0 0 2 5 29
315 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.3_tbl_Shop_Region_Branch_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 5 22
316 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.4_tbl_Shop_Currency.sql SQL 0 0 0 0 0 17 0 0 0 0 1 5 23
317 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.5_tbl_Shop_Currency_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 1 5 23
318 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.6_tbl_Shop_Tax_Or_Surcharge.sql SQL 0 0 0 0 0 32 0 0 0 0 1 6 39
319 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 1 5 23
320 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.8_tbl_Shop_Product.sql SQL 0 0 0 0 0 19 0 0 0 0 24 6 49
321 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.9_tbl_Shop_Product_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 5 22
322 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\112_tbl_Shop_Variation_Type.sql SQL 0 0 0 0 0 15 0 0 0 0 1 5 21
323 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\113.0_tbl_Shop_Variation_Type_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
324 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\114_tbl_Shop_Variation.sql SQL 0 0 0 0 0 19 0 0 0 0 1 6 26
325 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\115_tbl_Shop_Variation_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
326 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.1_tbl_Shop_Product_Permutation.sql SQL 0 0 0 0 0 33 0 0 0 0 9 6 48
327 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.2_tbl_Shop_Product_Permutation_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 1 6 24
328 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.3_tbl_Shop_Product_Permutation_Variation_Link.sql SQL 0 0 0 0 0 22 0 0 0 0 1 6 29
329 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 1 5 23
330 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.5_tbl_Shop_Product_Currency_Region_Link.sql SQL 0 0 0 0 0 34 0 0 0 0 1 5 40
331 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
332 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\118_tbl_Shop_Image_Type.sql SQL 0 0 0 0 0 15 0 0 0 0 1 6 22
333 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\119_tbl_Shop_Image_Type_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 5 22
334 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\120_tbl_Shop_Image.sql SQL 0 0 0 0 0 29 0 0 0 0 1 5 35
335 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\121_tbl_Shop_Image_Audit.sql SQL 0 0 0 0 0 15 0 0 0 0 1 5 21
336 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\122_tbl_Shop_Delivery_Option.sql SQL 0 0 0 0 0 19 0 0 0 0 1 6 26
337 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\123_tbl_Shop_Delivery_Option_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 5 22
338 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\124_tbl_Shop_Product_Delivery_Option_Link.sql SQL 0 0 0 0 0 38 0 0 0 0 1 5 44
339 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 5 22
340 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\130.4_tbl_Shop_Discount.sql SQL 0 0 0 0 0 30 0 0 0 0 13 6 49
341 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\131_tbl_Shop_Discount_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 1 5 23
342 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\132_tbl_Shop_Discount_Region_Currency_Link.sql SQL 0 0 0 0 0 26 0 0 0 0 1 5 32
343 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 1 5 23
344 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\153_tbl_Shop_Permission_Group.sql SQL 0 0 0 0 0 15 0 0 0 0 1 5 21
345 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\154_tbl_Shop_Permission_Group_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 1 5 23
346 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\155_tbl_Shop_Permission.sql SQL 0 0 0 0 0 23 0 0 0 0 1 5 29
347 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\156_tbl_Shop_Permission_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 1 5 23
348 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\157_tbl_Shop_Role.sql SQL 0 0 0 0 0 14 0 0 0 0 1 5 20
349 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\158_tbl_Shop_Role_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 1 5 23
350 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\159_tbl_Shop_Role_Permission_Link.sql SQL 0 0 0 0 0 25 0 0 0 0 1 5 31
351 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\160_tbl_Shop_Role_Permission_Link_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 5 22
352 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\161_tbl_Shop_User.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
353 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\162_tbl_Shop_User_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 1 5 23
354 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\163_tbl_Shop_User_Role_Link.sql SQL 0 0 0 0 0 20 0 0 0 0 1 5 26
355 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\164_tbl_Shop_User_Role_Link_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
356 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\165_tbl_Shop_Address.sql SQL 0 0 0 0 0 19 0 0 0 0 9 5 33
357 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\166_tbl_Shop_Address_Audit.sql SQL 0 0 0 0 0 17 0 0 0 0 1 5 23
358 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\167_tbl_Shop_User_Basket.sql SQL 0 0 0 0 0 27 0 0 0 0 7 6 40
359 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\168_tbl_Shop_User_Basket_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 7 5 28
360 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\169_tbl_Shop_User_Order_Status.sql SQL 0 0 0 0 0 15 0 0 0 0 1 6 22
361 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\170_tbl_Shop_User_Order_Status_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 5 22
362 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.0_tbl_Shop_Supplier.sql SQL 0 0 0 0 0 26 0 0 0 0 1 6 33
363 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.1_tbl_Shop_Supplier_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
364 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.2_tbl_Shop_Unit_Measurement.sql SQL 0 0 0 0 0 15 0 0 0 0 1 7 23
365 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.3_tbl_Shop_Unit_Measurement_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
366 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.4_tbl_Shop_Unit_Measurement_Conversion.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
367 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
368 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.6_tbl_Shop_Supplier_Purchase_Order.sql SQL 0 0 0 0 0 19 0 0 0 0 17 6 42
369 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
370 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql SQL 0 0 0 0 0 31 0 0 0 0 1 6 38
371 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
372 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql SQL 0 0 0 0 0 21 0 0 0 0 7 7 35
373 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\183_tbl_Shop_Manufacturing_Purchase_Order.sql SQL 0 0 0 0 0 16 0 0 0 0 11 7 34
374 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
375 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql SQL 0 0 0 0 0 32 0 0 0 0 1 6 39
376 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql SQL 0 0 0 0 0 21 0 0 0 0 8 7 36
377 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
378 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\187.0_tbl_Shop_Customer.sql SQL 0 0 0 0 0 24 0 0 0 0 1 5 30
379 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\187.1_tbl_Shop_Customer_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
380 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\187.2_tbl_Shop_Customer_Sales_Order.sql SQL 0 0 0 0 0 19 0 0 0 0 11 6 36
381 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\188_tbl_Shop_Customer_Sales_Order_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
382 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\189_tbl_Shop_Customer_Sales_Order_Product_Link.sql SQL 0 0 0 0 0 31 0 0 0 0 1 7 39
383 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
384 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql SQL 0 0 0 0 0 21 0 0 0 0 7 7 35
385 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql SQL 0 0 0 0 0 20 0 0 0 0 1 6 27
386 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\301.1_tri_Shop_User_Change_Set.sql SQL 0 0 0 0 0 16 0 0 0 0 1 4 21
387 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\301.2_tri_Shop_Access_Level.sql SQL 0 0 0 0 0 52 0 0 0 0 6 9 67
388 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\301_tri_Shop_Product_Change_Set.sql SQL 0 0 0 0 0 16 0 0 0 0 1 6 23
389 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\302_tri_File_Type.sql SQL 0 0 0 0 0 37 0 0 0 0 4 8 49
390 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\303_tri_File_Type_Audit.sql SQL 0 0 0 0 0 24 0 0 0 0 1 8 33
391 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\304_tri_Shop_General.sql SQL 0 0 0 0 0 36 0 0 0 0 2 9 47
392 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\306_tri_Shop_Category.sql SQL 0 0 0 0 0 48 0 0 0 0 6 10 64
393 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\308_tri_Shop_Recurrence_Interval.sql SQL 0 0 0 0 0 45 0 0 0 0 5 10 60
394 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.0_tri_Shop_Region.sql SQL 0 0 0 0 0 45 0 0 0 0 5 10 60
395 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.2_tri_Shop_Region_Branch.sql SQL 0 0 0 0 0 39 0 0 0 0 9 10 58
396 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.4_tri_Shop_Currency.sql SQL 0 0 0 0 0 55 0 0 0 0 7 10 72
397 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.6_tri_Shop_Tax_Or_Surcharge.sql SQL 0 0 0 0 0 60 0 0 0 0 10 11 81
398 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.8_tri_Shop_Product.sql SQL 0 0 0 0 0 51 0 0 0 0 113 10 174
399 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\312_tri_Shop_Variation_Type.sql SQL 0 0 0 0 0 48 0 0 0 0 6 10 64
400 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\314_tri_Shop_Variation.sql SQL 0 0 0 0 0 45 0 0 0 0 5 10 60
401 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\317.1_tri_Shop_Product_Permutation.sql SQL 0 0 0 0 0 82 0 0 0 0 42 10 134
402 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\317.3_tri_Shop_Product_Permutation_Variation_Link.sql SQL 0 0 0 0 0 43 0 0 0 0 13 10 66
403 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\317.5_tri_Shop_Product_Currency_Region_Link.sql SQL 0 0 0 0 0 49 0 0 0 0 38 11 98
404 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\318_tri_Shop_Image_Type.sql SQL 0 0 0 0 0 48 0 0 0 0 6 10 64
405 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\320_tri_Shop_Image.sql SQL 0 0 0 0 0 58 0 0 0 0 8 10 76
406 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\322_tri_Shop_Delivery_Option.sql SQL 0 0 0 0 0 57 0 0 0 0 9 10 76
407 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\324_tri_Shop_Product_Delivery_Option_Link.sql SQL 0 0 0 0 0 46 0 0 0 0 22 10 78
408 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\330_tri_Shop_Discount.sql SQL 0 0 0 0 0 66 0 0 0 0 12 10 88
409 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\332_tri_Shop_Discount_Region_Currency_Link.sql SQL 0 0 0 0 0 40 0 0 0 0 12 10 62
410 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\353_tri_Shop_Permission_Group.sql SQL 0 0 0 0 0 49 0 0 0 0 5 10 64
411 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\355_tri_Shop_Permission.sql SQL 0 0 0 0 0 55 0 0 0 0 7 10 72
412 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\357_tri_Shop_Role.sql SQL 0 0 0 0 0 49 0 0 0 0 5 10 64
413 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\359_tri_Shop_Role_Permission_Link.sql SQL 0 0 0 0 0 43 0 0 0 0 13 10 66
414 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\361_tri_Shop_User.sql SQL 0 0 0 0 0 55 0 0 0 0 7 10 72
415 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\363_tri_Shop_User_Role_Link.sql SQL 0 0 0 0 0 40 0 0 0 0 2 10 52
416 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\365_tri_Shop_Address.sql SQL 0 0 0 0 0 64 0 0 0 0 10 9 83
417 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\367_tri_Shop_User_Basket.sql SQL 0 0 0 0 0 49 0 0 0 0 5 10 64
418 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\369_tri_Shop_User_Order_Status.sql SQL 0 0 0 0 0 48 0 0 0 0 6 10 64
419 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.0_tri_Shop_Supplier.sql SQL 0 0 0 0 0 64 0 0 0 0 10 10 84
420 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.2_tri_Shop_Unit_Measurement.sql SQL 0 0 0 0 0 52 0 0 0 0 6 10 68
421 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql SQL 0 0 0 0 0 55 0 0 0 0 7 10 72
422 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.6_tri_Shop_Supplier_Purchase_Order.sql SQL 0 0 0 0 0 46 0 0 0 0 22 11 79
423 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql SQL 0 0 0 0 0 67 0 0 0 0 11 10 88
424 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\383_tri_Shop_Manufacturing_Purchase_Order.sql SQL 0 0 0 0 0 49 0 0 0 0 5 10 64
425 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql SQL 0 0 0 0 0 67 0 0 0 0 11 10 88
426 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\387.0_tri_Shop_Customer.sql SQL 0 0 0 0 0 61 0 0 0 0 9 10 80
427 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\387.2_tri_Shop_Customer_Sales_Order.sql SQL 0 0 0 0 0 49 0 0 0 0 5 9 63
428 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\389_tri_Shop_Customer_Sales_Order_Product_Link.sql SQL 0 0 0 0 0 67 0 0 0 0 11 9 87
429 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\600_p_shop_save_product.sql SQL 0 0 0 0 0 199 0 0 0 0 28 31 258
430 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\600_p_shop_user_eval.sql SQL 0 0 0 0 0 385 0 0 0 0 312 34 731
431 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\602_p_save_supplier_purchase_order.sql SQL 0 0 0 0 0 298 0 0 0 0 181 37 516
432 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\602_p_shop_save_supplier.sql SQL 0 0 0 0 0 155 0 0 0 0 120 32 307
433 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\604_p_shop_save_manufacturing_purchase_order.sql SQL 0 0 0 0 0 312 0 0 0 0 258 37 607
434 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\605_p_shop_save_customer.sql SQL 0 0 0 0 0 125 0 0 0 0 162 27 314
435 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\606_p_shop_save_customer_sales_order.sql SQL 0 0 0 0 0 362 0 0 0 0 158 36 556
436 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\610_p_shop_save_user.sql SQL 0 0 0 0 0 94 0 0 0 0 47 26 167
437 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\611_p_shop_save_user_basket.sql SQL 0 0 0 0 0 499 0 0 0 0 297 38 834
438 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\700_p_shop_get_many_product.sql SQL 0 0 0 0 0 736 0 0 0 0 436 60 1232
439 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\701_p_shop_get_many_role_permission.sql SQL 0 0 0 0 0 0 0 0 0 0 148 5 153
440 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\702.1_p_shop_get_many_currency.sql SQL 0 0 0 0 0 26 0 0 0 0 26 6 58
441 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\702.2_p_shop_get_many_region.sql SQL 0 0 0 0 0 24 0 0 0 0 31 6 61
442 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\703_p_shop_get_many_user_order.sql SQL 0 0 0 0 0 143 0 0 0 0 111 30 284
443 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\704_p_shop_get_many_stripe_product_new.sql SQL 0 0 0 0 0 181 0 0 0 0 105 31 317
444 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\705_p_shop_get_many_stripe_price_new.sql SQL 0 0 0 0 0 130 0 0 0 0 92 32 254
445 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\706_p_shop_get_many_supplier.sql SQL 0 0 0 0 0 136 0 0 0 0 84 28 248
446 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\706_p_shop_get_many_supplier_purchase_order.sql SQL 0 0 0 0 0 487 0 0 0 0 178 45 710
447 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\708_p_shop_get_many_manufacturing_purchase_order.sql SQL 0 0 0 0 0 375 0 0 0 0 187 40 602
448 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\709_p_shop_get_many_customer.sql SQL 0 0 0 0 0 136 0 0 0 0 85 29 250
449 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\710_p_shop_get_many_customer_sales_order.sql SQL 0 0 0 0 0 469 0 0 0 0 206 44 719
450 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\900_populate.sql SQL 0 0 0 0 0 444 0 0 0 0 166 46 656
451 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\901_view.sql SQL 0 0 0 0 0 87 0 0 0 0 52 50 189
452 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\910_anal.sql SQL 0 0 0 0 0 16 0 0 0 0 1 10 27
453 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\920_edit_permissions.sql SQL 0 0 0 0 0 70 0 0 0 0 4 9 83
454 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\batch\sql_combine.bat Batch 0 0 0 0 0 0 0 0 0 61 22 15 98
455 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\button.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
456 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\card.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
457 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\dialog.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
458 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\form.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
459 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\modal.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
460 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\navigation.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
461 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\overlay.css CSS 0 0 0 0 0 0 0 0 6 0 0 0 6
462 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\table.css CSS 0 0 0 0 0 0 0 0 25 0 5 6 36
463 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\layouts\footer.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
464 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\layouts\header.css CSS 0 0 0 0 0 0 0 0 12 0 0 3 15
465 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\layouts\table-main.css CSS 0 0 0 0 0 0 0 0 14 0 0 1 15
466 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\lib\reset.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
467 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\lib\typography.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
468 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\lib\utils.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
469 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\lib\variables.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
470 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\main.css CSS 0 0 0 0 0 0 0 0 386 0 146 66 598
471 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\core\admin_home.css CSS 0 0 0 0 0 0 0 0 6 0 0 1 7
472 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\core\contact.css CSS 0 0 0 0 0 0 0 0 7 0 14 5 26
473 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\core\home.css CSS 0 0 0 0 0 0 0 0 25 0 5 6 36
474 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\core\services.css CSS 0 0 0 0 0 0 0 0 18 0 16 3 37
475 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\accessibility_report.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
476 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\accessibility_statement.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
477 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\license.css CSS 0 0 0 0 0 0 0 0 6 0 0 2 8
478 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\privacy_policy.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
479 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\retention_schedule.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
480 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\store\home.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
481 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\store\product_categories.css CSS 0 0 0 0 0 0 0 0 61 0 19 17 97
482 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\store\product_permutations.css CSS 0 0 0 0 0 0 0 0 126 0 5 12 143
483 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\store\stock_items.css CSS 0 0 0 0 0 0 0 0 33 0 0 7 40
484 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\sections\core.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
485 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\sections\legal.css CSS 0 0 0 0 0 0 0 0 0 0 0 1 1
486 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\sections\store.css CSS 0 0 0 0 0 0 0 0 42 0 1 10 53
487 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\themes\dark.css CSS 0 0 0 0 0 0 0 0 33 0 6 6 45
488 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\themes\light.css CSS 0 0 0 0 0 0 0 0 33 0 6 6 45
489 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\example abstract base class.py Python 0 0 70 0 0 0 0 0 0 0 2 17 89
490 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\server.py Python 0 0 81 0 0 0 0 0 0 0 19 24 124
491 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\template webpage.html HTML 0 0 0 0 0 0 56 0 0 0 0 8 64
492 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\test.py Python 0 0 1 0 0 0 0 0 0 0 0 0 1
493 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json JSON 0 1 0 0 0 0 0 0 0 0 0 0 1
494 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html HTML 0 0 0 0 0 0 60 0 0 0 0 0 60
495 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\images\MS_SQL_Server.svg XML 0 0 0 0 0 0 0 1 0 0 0 0 1
496 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\accessibility_statement.js JavaScript 0 0 0 0 4 0 0 0 0 0 0 2 6
497 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\api.js JavaScript 0 0 0 0 82 0 0 0 0 0 36 12 130
498 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\app.js JavaScript 0 0 0 0 37 0 0 0 0 0 37 16 90
499 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\inputs\input_date.js JavaScript 0 0 0 0 38 0 0 0 0 0 133 13 184
500 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\inputs\select.js JavaScript 0 0 0 0 14 0 0 0 0 0 0 2 16
501 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\inputs\textarea.js JavaScript 0 0 0 0 30 0 0 0 0 0 3 12 45
502 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\table.js JavaScript 0 0 0 0 13 0 0 0 0 0 1 8 22
503 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\temporary\overlay_confirm.js JavaScript 0 0 0 0 24 0 0 0 0 0 0 2 26
504 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\temporary\overlay_error.js JavaScript 0 0 0 0 17 0 0 0 0 0 0 2 19
505 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\video.js JavaScript 0 0 0 0 10 0 0 0 0 0 0 4 14
506 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\dom.js JavaScript 0 0 0 0 169 0 0 0 0 0 18 11 198
507 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\business_objects.js JavaScript 0 0 0 0 15 0 0 0 0 0 7 2 24
508 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\common.js JavaScript 0 0 0 0 63 0 0 0 0 0 3 19 85
509 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\constants.js JavaScript 0 0 0 0 4 0 0 0 0 0 1 2 7
510 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\events.js JavaScript 0 0 0 0 9 0 0 0 0 0 0 1 10
511 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\extras.js JavaScript 0 0 0 0 0 0 0 0 0 0 0 1 1
512 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\local_storage.js JavaScript 0 0 0 0 9 0 0 0 0 0 48 5 62
513 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\utils.js JavaScript 0 0 0 0 9 0 0 0 0 0 10 0 19
514 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\validation.js JavaScript 0 0 0 0 117 0 0 0 0 0 6 41 164
515 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\base.js JavaScript 0 0 0 0 183 0 0 0 0 0 16 19 218
516 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\base_table.js JavaScript 0 0 0 0 358 0 0 0 0 0 131 9 498
517 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\admin_home.js JavaScript 0 0 0 0 39 0 0 0 0 0 0 8 47
518 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\contact.js JavaScript 0 0 0 0 10 0 0 0 0 0 0 5 15
519 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\home.js JavaScript 0 0 0 0 14 0 0 0 0 0 0 6 20
520 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\services.js JavaScript 0 0 0 0 13 0 0 0 0 0 0 7 20
521 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\accessibility_report.js JavaScript 0 0 0 0 13 0 0 0 0 0 0 5 18
522 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\accessibility_statement.js JavaScript 0 0 0 0 13 0 0 0 0 0 0 5 18
523 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\license.js JavaScript 0 0 0 0 13 0 0 0 0 0 0 5 18
524 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\privacy_policy.js JavaScript 0 0 0 0 13 0 0 0 0 0 0 5 18
525 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\retention_schedule.js JavaScript 0 0 0 0 13 0 0 0 0 0 0 5 18
526 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\basket.js JavaScript 0 0 0 0 137 0 0 0 0 0 12 46 195
527 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\home.js JavaScript 0 0 0 0 15 0 0 0 0 0 0 6 21
528 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\mixin.js JavaScript 0 0 0 0 318 0 0 0 0 0 112 18 448
529 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\mixin_table.js JavaScript 0 0 0 0 20 0 0 0 0 0 3 2 25
530 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\product_categories.js JavaScript 0 0 0 0 98 0 0 0 0 0 26 15 139
531 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\product_permutations.js JavaScript 0 0 0 0 440 0 0 0 0 0 92 24 556
532 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\stock_items.js JavaScript 0 0 0 0 382 0 0 0 0 0 63 64 509
533 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\user\user.js JavaScript 0 0 0 0 14 0 0 0 0 0 0 6 20
534 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\router.js JavaScript 0 0 0 0 88 0 0 0 0 0 243 16 347
535 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\sections\core.js JavaScript 0 0 0 0 0 0 0 0 0 0 0 1 1
536 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\sections\legal.js JavaScript 0 0 0 0 0 0 0 0 0 0 0 1 1
537 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\sections\store.js JavaScript 0 0 0 0 0 0 0 0 0 0 0 1 1
538 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\python\rename_files.py Python 0 0 14 0 0 0 0 0 0 0 2 5 21
539 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\_shared.html HTML 0 0 0 0 0 0 0 0 0 0 0 2 2
540 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\buttons\_buttons_save_cancel.html HTML 0 0 0 0 0 0 48 0 0 0 0 0 48
541 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\buttons\_slider_display_order.html HTML 0 0 0 0 0 0 13 0 0 0 0 0 13
542 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\inputs\_input_number_plus_minus.html HTML 0 0 0 0 0 0 11 0 0 0 6 0 17
543 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\inputs\_option_blank.html HTML 0 0 0 0 0 0 1 0 0 0 0 0 1
544 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\_overlay_address.html HTML 0 0 0 0 0 0 4 0 0 0 5 1 10
545 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\_overlay_confirm.html HTML 0 0 0 0 0 0 14 0 0 0 0 1 15
546 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\_overlay_error.html HTML 0 0 0 0 0 0 10 0 0 0 0 1 11
547 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\template_overlay.html HTML 0 0 0 0 0 0 15 0 0 0 5 4 24
548 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_body_home.html HTML 0 0 0 0 0 0 28 0 0 0 3 6 37
549 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_currency.html HTML 0 0 0 0 0 0 15 0 0 0 0 2 17
550 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product.html HTML 0 0 0 0 0 0 13 0 0 0 0 1 14
551 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_category.html HTML 0 0 0 0 0 0 13 0 0 0 0 1 14
552 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_permutation_interval_expiration_unsealed.html HTML 0 0 0 0 0 0 16 0 0 0 0 1 17
553 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_permutation_interval_recurrence.html HTML 0 0 0 0 0 0 19 0 0 0 0 0 19
554 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_permutation_unit_measurement_quantity.html HTML 0 0 0 0 0 0 19 0 0 0 0 2 21
555 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_product_permutation_variations.html HTML 0 0 0 0 0 0 21 0 0 0 0 1 22
556 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_product_variation_types.html HTML 0 0 0 0 0 0 14 0 0 0 0 1 15
557 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_address.html HTML 0 0 0 0 0 0 65 0 0 0 3 12 80
558 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_basket.html HTML 0 0 0 0 0 0 15 0 0 0 3 0 18
559 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_basket_item.html HTML 0 0 0 0 0 0 29 0 0 0 6 0 35
560 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_product.html HTML 0 0 0 0 0 0 45 0 0 0 0 1 46
561 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_product_category.html HTML 0 0 0 0 0 0 44 0 0 0 0 0 44
562 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_product_permutation.html HTML 0 0 0 0 0 0 158 0 0 0 0 6 164
563 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_stock_item.html HTML 0 0 0 0 0 0 87 0 0 0 20 1 108
564 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\js\sections\store.js JavaScript 0 0 0 0 78 0 0 0 0 0 0 3 81
565 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\layouts\_shared_store.html HTML 0 0 0 0 0 0 30 0 0 0 1 0 31
566 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\layouts\layout.html HTML 0 0 0 0 0 0 261 0 0 0 71 12 344
567 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_admin_home.html HTML 0 0 0 0 0 0 33 0 0 0 18 5 56
568 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_contact.html HTML 0 0 0 0 0 0 70 0 0 0 38 9 117
569 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_home.html HTML 0 0 0 0 0 0 9 0 0 0 19 5 33
570 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_services.html HTML 0 0 0 0 0 0 93 0 0 0 19 9 121
571 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_accessibility_statement.html HTML 0 0 0 0 0 0 54 0 0 0 139 17 210
572 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_license.html HTML 0 0 0 0 0 0 15 0 0 0 18 7 40
573 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_privacy_policy.html HTML 0 0 0 0 0 0 68 0 0 0 18 13 99
574 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_retention_schedule.html HTML 0 0 0 0 0 0 1806 0 0 0 146 15 1967
575 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\accessibility_report.html HTML 0 0 0 0 0 0 60 0 0 0 0 0 60
576 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_basket.html HTML 0 0 0 0 0 0 36 0 0 0 28 7 71
577 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_checkout_success.html HTML 0 0 0 0 0 0 23 0 0 0 19 4 46
578 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_home.html HTML 0 0 0 0 0 0 5 0 0 0 0 2 7
579 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_product_categories.html HTML 0 0 0 0 0 0 81 0 0 0 16 8 105
580 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_product_permutations.html HTML 0 0 0 0 0 0 152 0 0 0 17 7 176
581 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_products.html HTML 0 0 0 0 0 0 87 0 0 0 16 8 111
582 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_stock_items.html HTML 0 0 0 0 0 0 115 0 0 0 23 7 145
583 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_supplier.html HTML 0 0 0 0 0 0 89 0 0 0 23 5 117
584 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\user\_user.html HTML 0 0 0 0 0 0 9 0 0 0 19 4 32
585 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\webpack.config.js JavaScript 0 0 0 0 111 0 0 0 0 0 24 1 136
586 Total - 12 4421 9239 7 3047 48524 3929 1 833 61 18431 9994 98499

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,94 @@
# Summary
Date : 2024-10-05 01:21:34
Directory c:\\Users\\edwar\\OneDrive\\Documents\\Programming\\Visual Studio 2022\\PARTS_Web\\app
Total : 584 files, 70074 codes, 18431 comments, 9994 blanks, all 98499 lines
Summary / [Details](details.md) / [Diff Summary](diff.md) / [Diff Details](diff-details.md)
## Languages
| language | files | code | comment | blank | total |
| :--- | ---: | ---: | ---: | ---: | ---: |
| SQL | 352 | 48,524 | 14,969 | 7,993 | 71,486 |
| Python | 100 | 9,239 | 1,492 | 1,174 | 11,905 |
| JSON | 3 | 4,421 | 0 | 2 | 4,423 |
| HTML | 47 | 3,929 | 699 | 196 | 4,824 |
| JavaScript | 44 | 3,047 | 1,025 | 438 | 4,510 |
| CSS | 34 | 833 | 223 | 169 | 1,225 |
| Batch | 1 | 61 | 22 | 15 | 98 |
| pip requirements | 1 | 12 | 1 | 3 | 16 |
| Markdown | 1 | 7 | 0 | 4 | 11 |
| XML | 1 | 1 | 0 | 0 | 1 |
## Directories
| path | files | code | comment | blank | total |
| :--- | ---: | ---: | ---: | ---: | ---: |
| . | 584 | 70,074 | 18,431 | 9,994 | 98,499 |
| . (Files) | 13 | 4,922 | 105 | 102 | 5,129 |
| business_objects | 26 | 4,027 | 320 | 320 | 4,667 |
| business_objects (Files) | 6 | 564 | 27 | 67 | 658 |
| business_objects\\store | 20 | 3,463 | 293 | 253 | 4,009 |
| controllers | 11 | 737 | 66 | 115 | 918 |
| controllers (Files) | 4 | 278 | 29 | 41 | 348 |
| controllers\\store | 7 | 459 | 37 | 74 | 570 |
| datastores | 11 | 1,287 | 199 | 220 | 1,706 |
| forms | 10 | 389 | 44 | 63 | 496 |
| forms (Files) | 5 | 219 | 22 | 42 | 283 |
| forms\\store | 5 | 170 | 22 | 21 | 213 |
| helpers | 3 | 64 | 7 | 18 | 89 |
| lib | 3 | 825 | 487 | 55 | 1,367 |
| models | 23 | 1,266 | 236 | 211 | 1,713 |
| payments | 1 | 106 | 30 | 34 | 170 |
| static | 437 | 52,560 | 16,238 | 8,665 | 77,463 |
| static\\MySQL | 194 | 29,105 | 6,780 | 4,700 | 40,585 |
| static\\PostgreSQL | 158 | 19,419 | 8,189 | 3,293 | 30,901 |
| static\\batch | 1 | 61 | 22 | 15 | 98 |
| static\\css | 34 | 833 | 223 | 169 | 1,225 |
| static\\css (Files) | 1 | 386 | 146 | 66 | 598 |
| static\\css\\components | 8 | 31 | 5 | 12 | 48 |
| static\\css\\layouts | 3 | 26 | 0 | 5 | 31 |
| static\\css\\lib | 4 | 0 | 0 | 4 | 4 |
| static\\css\\pages | 13 | 282 | 59 | 58 | 399 |
| static\\css\\pages\\core | 4 | 56 | 35 | 15 | 106 |
| static\\css\\pages\\legal | 5 | 6 | 0 | 6 | 12 |
| static\\css\\pages\\store | 4 | 220 | 24 | 37 | 281 |
| static\\css\\sections | 3 | 42 | 1 | 12 | 55 |
| static\\css\\themes | 2 | 66 | 12 | 12 | 90 |
| static\\docs | 6 | 269 | 21 | 49 | 339 |
| static\\images | 1 | 1 | 0 | 0 | 1 |
| static\\js | 42 | 2,858 | 1,001 | 434 | 4,293 |
| static\\js (Files) | 5 | 380 | 334 | 57 | 771 |
| static\\js\\components | 7 | 146 | 137 | 43 | 326 |
| static\\js\\components\\common | 7 | 146 | 137 | 43 | 326 |
| static\\js\\components\\common (Files) | 2 | 23 | 1 | 12 | 36 |
| static\\js\\components\\common\\inputs | 3 | 82 | 136 | 27 | 245 |
| static\\js\\components\\common\\temporary | 2 | 41 | 0 | 4 | 45 |
| static\\js\\lib | 8 | 226 | 75 | 71 | 372 |
| static\\js\\pages | 19 | 2,106 | 455 | 260 | 2,821 |
| static\\js\\pages (Files) | 2 | 541 | 147 | 28 | 716 |
| static\\js\\pages\\core | 4 | 76 | 0 | 26 | 102 |
| static\\js\\pages\\legal | 5 | 65 | 0 | 25 | 90 |
| static\\js\\pages\\store | 7 | 1,410 | 308 | 175 | 1,893 |
| static\\js\\pages\\user | 1 | 14 | 0 | 6 | 20 |
| static\\js\\sections | 3 | 0 | 0 | 3 | 3 |
| static\\python | 1 | 14 | 2 | 5 | 21 |
| templates | 46 | 3,891 | 699 | 191 | 4,781 |
| templates (Files) | 1 | 0 | 0 | 2 | 2 |
| templates\\components | 24 | 717 | 51 | 42 | 810 |
| templates\\components\\common | 8 | 116 | 16 | 7 | 139 |
| templates\\components\\common\\buttons | 2 | 61 | 0 | 0 | 61 |
| templates\\components\\common\\inputs | 2 | 12 | 6 | 0 | 18 |
| templates\\components\\common\\temporary | 4 | 43 | 10 | 7 | 60 |
| templates\\components\\store | 16 | 601 | 35 | 35 | 671 |
| templates\\js | 1 | 78 | 0 | 3 | 81 |
| templates\\js\\sections | 1 | 78 | 0 | 3 | 81 |
| templates\\layouts | 2 | 291 | 72 | 12 | 375 |
| templates\\pages | 18 | 2,805 | 576 | 132 | 3,513 |
| templates\\pages\\core | 4 | 205 | 94 | 28 | 327 |
| templates\\pages\\legal | 5 | 2,003 | 321 | 52 | 2,376 |
| templates\\pages\\store | 8 | 588 | 142 | 48 | 778 |
| templates\\pages\\user | 1 | 9 | 19 | 4 | 32 |
Summary / [Details](details.md) / [Diff Summary](diff.md) / [Diff Details](diff-details.md)

View File

@@ -0,0 +1,681 @@
Date : 2024-10-05 01:21:34
Directory : c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app
Total : 584 files, 70074 codes, 18431 comments, 9994 blanks, all 98499 lines
Languages
+------------------+------------+------------+------------+------------+------------+
| language | files | code | comment | blank | total |
+------------------+------------+------------+------------+------------+------------+
| SQL | 352 | 48,524 | 14,969 | 7,993 | 71,486 |
| Python | 100 | 9,239 | 1,492 | 1,174 | 11,905 |
| JSON | 3 | 4,421 | 0 | 2 | 4,423 |
| HTML | 47 | 3,929 | 699 | 196 | 4,824 |
| JavaScript | 44 | 3,047 | 1,025 | 438 | 4,510 |
| CSS | 34 | 833 | 223 | 169 | 1,225 |
| Batch | 1 | 61 | 22 | 15 | 98 |
| pip requirements | 1 | 12 | 1 | 3 | 16 |
| Markdown | 1 | 7 | 0 | 4 | 11 |
| XML | 1 | 1 | 0 | 0 | 1 |
+------------------+------------+------------+------------+------------+------------+
Directories
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+------------+------------+------------+------------+
| path | files | code | comment | blank | total |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+------------+------------+------------+------------+
| . | 584 | 70,074 | 18,431 | 9,994 | 98,499 |
| . (Files) | 13 | 4,922 | 105 | 102 | 5,129 |
| business_objects | 26 | 4,027 | 320 | 320 | 4,667 |
| business_objects (Files) | 6 | 564 | 27 | 67 | 658 |
| business_objects\store | 20 | 3,463 | 293 | 253 | 4,009 |
| controllers | 11 | 737 | 66 | 115 | 918 |
| controllers (Files) | 4 | 278 | 29 | 41 | 348 |
| controllers\store | 7 | 459 | 37 | 74 | 570 |
| datastores | 11 | 1,287 | 199 | 220 | 1,706 |
| forms | 10 | 389 | 44 | 63 | 496 |
| forms (Files) | 5 | 219 | 22 | 42 | 283 |
| forms\store | 5 | 170 | 22 | 21 | 213 |
| helpers | 3 | 64 | 7 | 18 | 89 |
| lib | 3 | 825 | 487 | 55 | 1,367 |
| models | 23 | 1,266 | 236 | 211 | 1,713 |
| payments | 1 | 106 | 30 | 34 | 170 |
| static | 437 | 52,560 | 16,238 | 8,665 | 77,463 |
| static\MySQL | 194 | 29,105 | 6,780 | 4,700 | 40,585 |
| static\PostgreSQL | 158 | 19,419 | 8,189 | 3,293 | 30,901 |
| static\batch | 1 | 61 | 22 | 15 | 98 |
| static\css | 34 | 833 | 223 | 169 | 1,225 |
| static\css (Files) | 1 | 386 | 146 | 66 | 598 |
| static\css\components | 8 | 31 | 5 | 12 | 48 |
| static\css\layouts | 3 | 26 | 0 | 5 | 31 |
| static\css\lib | 4 | 0 | 0 | 4 | 4 |
| static\css\pages | 13 | 282 | 59 | 58 | 399 |
| static\css\pages\core | 4 | 56 | 35 | 15 | 106 |
| static\css\pages\legal | 5 | 6 | 0 | 6 | 12 |
| static\css\pages\store | 4 | 220 | 24 | 37 | 281 |
| static\css\sections | 3 | 42 | 1 | 12 | 55 |
| static\css\themes | 2 | 66 | 12 | 12 | 90 |
| static\docs | 6 | 269 | 21 | 49 | 339 |
| static\images | 1 | 1 | 0 | 0 | 1 |
| static\js | 42 | 2,858 | 1,001 | 434 | 4,293 |
| static\js (Files) | 5 | 380 | 334 | 57 | 771 |
| static\js\components | 7 | 146 | 137 | 43 | 326 |
| static\js\components\common | 7 | 146 | 137 | 43 | 326 |
| static\js\components\common (Files) | 2 | 23 | 1 | 12 | 36 |
| static\js\components\common\inputs | 3 | 82 | 136 | 27 | 245 |
| static\js\components\common\temporary | 2 | 41 | 0 | 4 | 45 |
| static\js\lib | 8 | 226 | 75 | 71 | 372 |
| static\js\pages | 19 | 2,106 | 455 | 260 | 2,821 |
| static\js\pages (Files) | 2 | 541 | 147 | 28 | 716 |
| static\js\pages\core | 4 | 76 | 0 | 26 | 102 |
| static\js\pages\legal | 5 | 65 | 0 | 25 | 90 |
| static\js\pages\store | 7 | 1,410 | 308 | 175 | 1,893 |
| static\js\pages\user | 1 | 14 | 0 | 6 | 20 |
| static\js\sections | 3 | 0 | 0 | 3 | 3 |
| static\python | 1 | 14 | 2 | 5 | 21 |
| templates | 46 | 3,891 | 699 | 191 | 4,781 |
| templates (Files) | 1 | 0 | 0 | 2 | 2 |
| templates\components | 24 | 717 | 51 | 42 | 810 |
| templates\components\common | 8 | 116 | 16 | 7 | 139 |
| templates\components\common\buttons | 2 | 61 | 0 | 0 | 61 |
| templates\components\common\inputs | 2 | 12 | 6 | 0 | 18 |
| templates\components\common\temporary | 4 | 43 | 10 | 7 | 60 |
| templates\components\store | 16 | 601 | 35 | 35 | 671 |
| templates\js | 1 | 78 | 0 | 3 | 81 |
| templates\js\sections | 1 | 78 | 0 | 3 | 81 |
| templates\layouts | 2 | 291 | 72 | 12 | 375 |
| templates\pages | 18 | 2,805 | 576 | 132 | 3,513 |
| templates\pages\core | 4 | 205 | 94 | 28 | 327 |
| templates\pages\legal | 5 | 2,003 | 321 | 52 | 2,376 |
| templates\pages\store | 8 | 588 | 142 | 48 | 778 |
| templates\pages\user | 1 | 9 | 19 | 4 | 32 |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+------------+------------+------------+------------+
Files
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+------------+------------+------------+------------+
| filename | language | code | comment | blank | total |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+------------+------------+------------+------------+
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\README.md | Markdown | 7 | 0 | 4 | 11 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\__init__.py | Python | 13 | 2 | 6 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\app.py | Python | 107 | 12 | 21 | 140 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\__init__.py | Python | 9 | 0 | 3 | 12 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\base.py | Python | 50 | 3 | 6 | 59 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\db_base.py | Python | 65 | 7 | 8 | 80 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\sql_error.py | Python | 45 | 9 | 11 | 65 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\__init__.py | Python | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\access_level.py | Python | 78 | 2 | 6 | 86 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\basket.py | Python | 144 | 17 | 22 | 183 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\currency.py | Python | 108 | 5 | 10 | 123 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\delivery_option.py | Python | 89 | 2 | 8 | 99 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\delivery_region.py | Python | 92 | 3 | 9 | 104 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\discount.py | Python | 66 | 2 | 8 | 76 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\image.py | Python | 106 | 5 | 17 | 128 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\order.py | Python | 63 | 12 | 14 | 89 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product.py | Python | 614 | 173 | 26 | 813 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_category.py | Python | 463 | 13 | 13 | 489 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_permutation.py | Python | 577 | 16 | 23 | 616 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_price.py | Python | 97 | 3 | 9 | 109 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_variation.py | Python | 178 | 7 | 26 | 211 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_variation_tree.py | Python | 177 | 2 | 9 | 188 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\product_variation_type.py | Python | 83 | 7 | 14 | 104 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\stock_item.py | Python | 248 | 9 | 13 | 270 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\storage_location.py | Python | 61 | 2 | 7 | 70 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\store_base.py | Python | 79 | 4 | 6 | 89 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\stripe.py | Python | 140 | 9 | 12 | 161 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\unit_measurement.py | Python | 143 | 4 | 13 | 160 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\user.py | Python | 252 | 4 | 26 | 282 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\config.py | Python | 69 | 22 | 10 | 101 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\__init__.py | Python | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\core.py | Python | 77 | 6 | 12 | 95 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\legal.py | Python | 62 | 5 | 8 | 75 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\__init__.py | Python | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\product.py | Python | 80 | 6 | 13 | 99 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\product_category.py | Python | 99 | 8 | 12 | 119 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\product_permutation.py | Python | 133 | 6 | 20 | 159 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\stock_item.py | Python | 75 | 4 | 14 | 93 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\store.py | Python | 22 | 3 | 5 | 30 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\store\supplier.py | Python | 50 | 10 | 9 | 69 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\user.py | Python | 139 | 18 | 20 | 177 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\__init__.py | Python | 9 | 0 | 3 | 12 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_base.py | Python | 227 | 30 | 26 | 283 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_base.py | Python | 240 | 48 | 42 | 330 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_basket.py | Python | 113 | 21 | 20 | 154 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_product.py | Python | 108 | 8 | 14 | 130 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_product_category.py | Python | 79 | 11 | 10 | 100 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_product_permutation.py | Python | 84 | 7 | 13 | 104 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_product_variation.py | Python | 70 | 14 | 15 | 99 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_stock_item.py | Python | 82 | 13 | 13 | 108 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_stripe.py | Python | 143 | 25 | 36 | 204 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_user.py | Python | 132 | 22 | 28 | 182 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\extensions.py | Python | 11 | 0 | 3 | 14 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\__init__.py | Python | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\access_level.py | Python | 30 | 2 | 5 | 37 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\base.py | Python | 58 | 2 | 9 | 69 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\forms.py | Python | 96 | 16 | 22 | 134 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\__init__.py | Python | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\product.py | Python | 26 | 5 | 5 | 36 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\product_category.py | Python | 37 | 5 | 5 | 47 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\product_permutation.py | Python | 54 | 6 | 5 | 65 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\stock_item.py | Python | 53 | 6 | 5 | 64 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\unit_measurement.py | Python | 35 | 2 | 5 | 42 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\helpers\__init__.py | Python | 9 | 0 | 3 | 12 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\helpers\helper_app.py | Python | 25 | 4 | 6 | 35 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\helpers\helper_db_mysql.py | Python | 30 | 3 | 9 | 42 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\lib\__init__.py | Python | 9 | 0 | 3 | 12 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\lib\argument_validation.py | Python | 806 | 467 | 45 | 1,318 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\lib\data_types.py | Python | 10 | 20 | 7 | 37 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\__init__.py | Python | 9 | 0 | 3 | 12 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_accessibility_report.py | Python | 16 | 3 | 5 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_accessibility_statement.py | Python | 16 | 3 | 5 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_admin.py | Python | 17 | 2 | 6 | 25 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_admin_home.py | Python | 18 | 2 | 7 | 27 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_base.py | Python | 295 | 28 | 18 | 341 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_contact.py | Python | 25 | 5 | 8 | 38 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_home.py | Python | 16 | 3 | 5 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_license.py | Python | 16 | 3 | 5 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_privacy_policy.py | Python | 16 | 3 | 5 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_retention_schedule.py | Python | 16 | 3 | 5 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_services.py | Python | 16 | 5 | 6 | 27 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store.py | Python | 351 | 68 | 34 | 453 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_basket.py | Python | 60 | 19 | 10 | 89 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_checkout.py | Python | 42 | 14 | 16 | 72 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_checkout_success.py | Python | 27 | 13 | 9 | 49 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_home.py | Python | 33 | 17 | 10 | 60 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_product.py | Python | 40 | 15 | 12 | 67 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_product_category.py | Python | 37 | 9 | 9 | 55 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_product_permutation.py | Python | 81 | 6 | 9 | 96 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\Model_View_Store_Stock_Item.py | Python | 73 | 5 | 10 | 88 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_supplier.py | Python | 26 | 5 | 8 | 39 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_user.py | Python | 20 | 5 | 6 | 31 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\package-lock.json | JSON | 4,383 | 0 | 1 | 4,384 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\package.json | JSON | 37 | 0 | 1 | 38 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\passenger_wsgi.py | Python | 10 | 0 | 5 | 15 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\pay_stripe.py | Python | 110 | 37 | 35 | 182 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\payments\pay_stripe.py | Python | 106 | 30 | 34 | 170 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\requirements.txt | pip requirements | 12 | 1 | 3 | 16 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\routes.py | Python | 40 | 6 | 8 | 54 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\run.py | Python | 12 | 1 | 4 | 17 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\0000_combine.sql | SQL | 14,579 | 3,389 | 2,259 | 20,227 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\0001_destroy.sql | SQL | 213 | 2 | 69 | 284 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1000_tbl_Shop_Product_Change_Set.sql | SQL | 8 | 0 | 5 | 13 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1000_tbl_Split_Temp.sql | SQL | 7 | 2 | 4 | 13 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1001_tbl_Shop_User_Change_Set.sql | SQL | 8 | 0 | 5 | 13 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1002_tbl_Shop_Sales_And_Purchasing_Change_Set.sql | SQL | 8 | 0 | 5 | 13 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1003_tbl_Shop_Access_Level.sql | SQL | 16 | 0 | 8 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1004_tbl_Shop_Access_Level_Audit.sql | SQL | 17 | 0 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1005_tbl_Msg_Error_Type.sql | SQL | 8 | 0 | 6 | 14 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1010_tbl_File_Type.sql | SQL | 12 | 0 | 6 | 18 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1011_tbl_File_Type_Audit.sql | SQL | 17 | 0 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1012_tbl_Shop_General.sql | SQL | 12 | 0 | 5 | 17 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1013_tbl_Shop_General_Audit.sql | SQL | 17 | 0 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1014_tbl_Shop_Image_Type.sql | SQL | 16 | 6 | 6 | 28 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1015_tbl_Shop_Image_Type_Audit.sql | SQL | 17 | 0 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1100_tbl_Shop_Region.sql | SQL | 15 | 0 | 5 | 20 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1101_tbl_Shop_Region_Audit.sql | SQL | 17 | 0 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1102_tbl_Shop_Region_Temp.sql | SQL | 15 | 0 | 5 | 20 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1103_tbl_Shop_Region_Branch.sql | SQL | 23 | 1 | 5 | 29 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1104_tbl_Shop_Region_Branch_Audit.sql | SQL | 17 | 0 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1105_tbl_Shop_Region_Branch_Temp.sql | SQL | 9 | 1 | 5 | 15 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1106_tbl_Shop_Plant.sql | SQL | 16 | 0 | 6 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1107_tbl_Shop_Plant_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1108_tbl_Shop_Plant_Temp.sql | SQL | 10 | 0 | 6 | 16 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1109_tbl_Shop_Storage_Location.sql | SQL | 18 | 0 | 6 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1110_tbl_Shop_Storage_Location_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1111_tbl_Shop_Storage_Location_Temp.sql | SQL | 8 | 0 | 6 | 14 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1112_tbl_Shop_Storage_Location_Branch.sql | SQL | 23 | 1 | 5 | 29 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1113_tbl_Shop_Storage_Location_Branch_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1114_tbl_Shop_Storage_Location_Branch_Temp.sql | SQL | 9 | 1 | 5 | 15 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1115_tbl_Shop_Currency.sql | SQL | 18 | 0 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1116_tbl_Shop_Currency_Audit.sql | SQL | 18 | 0 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1117_tbl_Shop_Currency_Temp.sql | SQL | 11 | 0 | 5 | 16 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1118_tbl_Shop_Tax_Or_Surcharge.sql | SQL | 33 | 0 | 6 | 39 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1119_tbl_Shop_Tax_Or_Surcharge_Audit.sql | SQL | 18 | 0 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1120_tbl_Shop_Tax_Or_Surcharge_Temp.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1121_tbl_Shop_Unit_Measurement.sql | SQL | 21 | 0 | 6 | 27 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1122_tbl_Shop_Unit_Measurement_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1124_tbl_Shop_Unit_Measurement_Conversion.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1125_tbl_Shop_Unit_Measurement_Conversion_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1200_tbl_Shop_Product_Category.sql | SQL | 20 | 0 | 5 | 25 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1201_tbl_Shop_Product_Category_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1202_tbl_Shop_Product_Category_Temp.sql | SQL | 15 | 1 | 5 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1203_tbl_Shop_Product.sql | SQL | 22 | 21 | 6 | 49 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1204_tbl_Shop_Product_Audit.sql | SQL | 17 | 0 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1205_tbl_Shop_Product_Temp.sql | SQL | 15 | 1 | 5 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1206_tbl_Shop_Product_Permutation.sql | SQL | 44 | 10 | 6 | 60 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1207_tbl_Shop_Product_Permutation_Audit.sql | SQL | 18 | 0 | 6 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1208_tbl_Shop_Product_Permutation_Temp.sql | SQL | 28 | 2 | 5 | 35 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1209_tbl_Shop_Variation_Type.sql | SQL | 16 | 0 | 5 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1210_tbl_Shop_Variation_Type_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1212_tbl_Shop_Variation.sql | SQL | 20 | 0 | 6 | 26 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1213_tbl_Shop_Variation_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1215_tbl_Shop_Product_Permutation_Variation_Link.sql | SQL | 23 | 0 | 6 | 29 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1216_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql | SQL | 18 | 0 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1218_tbl_Shop_Stock_Item.sql | SQL | 33 | 0 | 6 | 39 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1219_tbl_Shop_Stock_Item_Audit.sql | SQL | 18 | 0 | 6 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1220_tbl_Shop_Stock_Item_Temp.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1221_tbl_Shop_Product_Price.sql | SQL | 27 | 0 | 5 | 32 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1222_tbl_Shop_Product_Price_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1223_tbl_Shop_Product_Price_Temp.sql | SQL | 12 | 0 | 5 | 17 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1224_tbl_Shop_Product_Image.sql | SQL | 22 | 0 | 5 | 27 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1225_tbl_Shop_Product_Image_Audit.sql | SQL | 16 | 0 | 5 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1227_tbl_Shop_Delivery_Option.sql | SQL | 18 | 4 | 6 | 28 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1228_tbl_Shop_Delivery_Option_Audit.sql | SQL | 17 | 0 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1230_tbl_Shop_Product_Permutation_Delivery_Option_Link.sql | SQL | 41 | 0 | 5 | 46 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1231_tbl_Shop_Product_Permutation_Delivery_Option_Link_Audit.sql | SQL | 17 | 0 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1233_tbl_Shop_Discount.sql | SQL | 31 | 12 | 6 | 49 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1234_tbl_Shop_Discount_Audit.sql | SQL | 18 | 0 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1236_tbl_Shop_Discount_Region_Currency_Link.sql | SQL | 27 | 0 | 5 | 32 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1237_tbl_Shop_Discount_Region_Currency_Link_Audit.sql | SQL | 18 | 0 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1300_tbl_Shop_Permission_Group.sql | SQL | 16 | 0 | 5 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1301_tbl_Shop_Permission_Group_Audit.sql | SQL | 18 | 0 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1303_tbl_Shop_Permission.sql | SQL | 24 | 0 | 5 | 29 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1304_tbl_Shop_Permission_Audit.sql | SQL | 18 | 0 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1306_tbl_Shop_Role.sql | SQL | 15 | 0 | 5 | 20 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1307_tbl_Shop_Role_Audit.sql | SQL | 18 | 0 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1309_tbl_Shop_Role_Permission_Link.sql | SQL | 26 | 0 | 5 | 31 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1310_tbl_Shop_Role_Permission_Link_Audit.sql | SQL | 17 | 0 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1312_tbl_Shop_User.sql | SQL | 21 | 0 | 6 | 27 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1313_tbl_Shop_User_Audit.sql | SQL | 18 | 0 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1315_tbl_Shop_User_Role_Link.sql | SQL | 21 | 0 | 5 | 26 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1316_tbl_Shop_User_Role_Link_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1318_tbl_Shop_Address.sql | SQL | 25 | 1 | 5 | 31 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1319_tbl_Shop_Address_Audit.sql | SQL | 18 | 0 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1321_tbl_Shop_User_Basket.sql | SQL | 28 | 6 | 6 | 40 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1322_tbl_Shop_User_Basket_Audit.sql | SQL | 17 | 6 | 5 | 28 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1397_tbl_Shop_Order_Status.sql | SQL | 16 | 0 | 6 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1398_tbl_Shop_Order_Status_Audit.sql | SQL | 17 | 0 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1400_tbl_Shop_Supplier.sql | SQL | 27 | 0 | 6 | 33 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1401_tbl_Shop_Supplier_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1409_tbl_Shop_Supplier_Purchase_Order.sql | SQL | 20 | 16 | 6 | 42 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1410_tbl_Shop_Supplier_Purchase_Order_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1412_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql | SQL | 32 | 0 | 6 | 38 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1413_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1414_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql | SQL | 22 | 6 | 7 | 35 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1415_tbl_Shop_Manufacturing_Purchase_Order.sql | SQL | 17 | 10 | 7 | 34 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1416_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1418_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql | SQL | 33 | 0 | 6 | 39 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1419_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1420_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql | SQL | 22 | 7 | 7 | 36 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1421_tbl_Shop_Customer.sql | SQL | 25 | 0 | 5 | 30 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1422_tbl_Shop_Customer_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1424_tbl_Shop_Customer_Sales_Order.sql | SQL | 20 | 10 | 6 | 36 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1425_tbl_Shop_Customer_Sales_Order_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1427_tbl_Shop_Customer_Sales_Order_Product_Link.sql | SQL | 32 | 0 | 7 | 39 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1428_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1429_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql | SQL | 22 | 6 | 7 | 35 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1500_tbl_Shop_Calc_User_Temp.sql | SQL | 20 | 3 | 3 | 26 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3000_tri_Shop_Access_Level.sql | SQL | 50 | 0 | 10 | 60 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3000_tri_Shop_Product_Change_Set.sql | SQL | 15 | 0 | 6 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3001_tri_Shop_User_Change_Set.sql | SQL | 15 | 0 | 6 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3002_tri_Shop_Sales_And_Purchasing_Change_Set.sql | SQL | 15 | 0 | 6 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3010_tri_File_Type.sql | SQL | 37 | 0 | 7 | 44 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3011_tri_File_Type_Audit.sql | SQL | 21 | 0 | 7 | 28 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3012_tri_Shop_General.sql | SQL | 34 | 0 | 7 | 41 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3014_tri_Shop_Image_Type.sql | SQL | 50 | 6 | 9 | 65 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3100_tri_Shop_Region.sql | SQL | 46 | 0 | 10 | 56 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3103_tri_Shop_Region_Branch.sql | SQL | 38 | 6 | 10 | 54 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3109_tri_Shop_Storage_Location.sql | SQL | 46 | 0 | 10 | 56 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3115_tri_Shop_Currency.sql | SQL | 54 | 0 | 9 | 63 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3118_tri_Shop_Tax_Or_Surcharge.sql | SQL | 66 | 0 | 10 | 76 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3200_tri_Shop_Category.sql | SQL | 54 | 0 | 8 | 62 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3203_tri_Shop_Product.sql | SQL | 54 | 106 | 11 | 171 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3206_tri_Shop_Product_Permutation.sql | SQL | 112 | 36 | 12 | 160 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3209_tri_Shop_Variation_Type.sql | SQL | 50 | 0 | 11 | 61 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3212_tri_Shop_Variation.sql | SQL | 46 | 0 | 10 | 56 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3215_tri_Shop_Product_Permutation_Variation_Link.sql | SQL | 38 | 10 | 9 | 57 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3218_tri_Shop_Stock_Item.sql | SQL | 82 | 0 | 10 | 92 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3221_tri_Shop_Product_Price.sql | SQL | 58 | 19 | 11 | 88 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3224_tri_Shop_Product_Image.sql | SQL | 54 | 10 | 9 | 73 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3227_tri_Shop_Delivery_Option.sql | SQL | 54 | 10 | 9 | 73 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3230_tri_Shop_Product_Permutation_Delivery_Option_Link.sql | SQL | 42 | 28 | 9 | 79 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3233_tri_Shop_Discount.sql | SQL | 74 | 0 | 10 | 84 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3236_tri_Shop_Discount_Region_Currency_Link.sql | SQL | 34 | 10 | 9 | 53 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3300_tri_Shop_Permission_Group.sql | SQL | 46 | 0 | 9 | 55 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3303_tri_Shop_Permission.sql | SQL | 54 | 0 | 9 | 63 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3306_tri_Shop_Role.sql | SQL | 46 | 0 | 10 | 56 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3309_tri_Shop_Role_Permission_Link.sql | SQL | 38 | 10 | 10 | 58 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3312_tri_Shop_User.sql | SQL | 70 | 0 | 9 | 79 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3315_tri_Shop_User_Role_Link.sql | SQL | 34 | 0 | 9 | 43 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3318_tri_Shop_Address.sql | SQL | 66 | 0 | 9 | 75 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3321_tri_Shop_User_Basket.sql | SQL | 46 | 0 | 9 | 55 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3324_tri_Shop_User_Order_Status.sql | SQL | 50 | 0 | 9 | 59 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3400_tri_Shop_Supplier.sql | SQL | 66 | 0 | 10 | 76 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3403_tri_Shop_Unit_Measurement.sql | SQL | 66 | 0 | 11 | 77 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3406_tri_Shop_Unit_Of_Measurement_Conversion.sql | SQL | 54 | 0 | 11 | 65 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3409_tri_Shop_Supplier_Purchase_Order.sql | SQL | 42 | 18 | 11 | 71 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3412_tri_Shop_Supplier_Purchase_Order_Product_Link.sql | SQL | 70 | 0 | 10 | 80 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3415_tri_Shop_Manufacturing_Purchase_Order.sql | SQL | 46 | 0 | 10 | 56 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3418_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql | SQL | 70 | 0 | 11 | 81 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3421_tri_Shop_Customer.sql | SQL | 62 | 0 | 11 | 73 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3424_tri_Shop_Customer_Sales_Order.sql | SQL | 46 | 0 | 10 | 56 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3427_tri_Shop_Customer_Sales_Order_Product_Link.sql | SQL | 70 | 0 | 10 | 80 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6000_p_debug_timing_reporting.sql | SQL | 26 | 12 | 7 | 45 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6000_p_split.sql | SQL | 68 | 16 | 19 | 103 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6001_p_clear_split_temp.sql | SQL | 14 | 8 | 8 | 30 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6001_p_validate_guid.sql | SQL | 29 | 21 | 9 | 59 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6206_fn_shop_get_product_permutation_name.sql | SQL | 27 | 0 | 7 | 34 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6500_p_shop_calc_user.sql | SQL | 425 | 87 | 45 | 557 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6501_p_shop_clear_calc_user.sql | SQL | 22 | 14 | 10 | 46 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7003_p_shop_get_many_access_level.sql | SQL | 22 | 13 | 11 | 46 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7101_p_shop_get_many_region.sql | SQL | 22 | 13 | 11 | 46 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7116_p_shop_get_many_currency.sql | SQL | 24 | 13 | 11 | 48 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7122_p_shop_get_many_unit_measurement.sql | SQL | 26 | 9 | 7 | 42 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7200_p_shop_save_product_category.sql | SQL | 224 | 13 | 32 | 269 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7200_p_shop_save_product_category_test.sql | SQL | 216 | 17 | 42 | 275 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7202_p_shop_clear_calc_product_permutation.sql | SQL | 24 | 18 | 11 | 53 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7203_p_shop_save_product.sql | SQL | 191 | 22 | 33 | 246 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7204_p_shop_calc_product_permutation.sql | SQL | 528 | 108 | 56 | 692 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7204_p_shop_get_many_product.sql | SQL | 381 | 95 | 41 | 517 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7205_p_shop_get_many_stripe_product_new.sql | SQL | 209 | 57 | 42 | 308 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7206_p_shop_save_permutation.sql | SQL | 400 | 164 | 42 | 606 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7206_p_shop_save_product_permutation.sql | SQL | 428 | 99 | 35 | 562 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7210_p_shop_get_many_product_variation.sql | SQL | 290 | 86 | 41 | 417 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7219_p_shop_get_many_stock_item.sql | SQL | 557 | 157 | 56 | 770 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7221_p_get_many_shop_product_price_and_discount_and_delivery_option.sql | SQL | 738 | 201 | 68 | 1,007 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7223_p_shop_get_many_stripe_price_new.sql | SQL | 161 | 42 | 41 | 244 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7312_p_shop_save_user.sql | SQL | 109 | 42 | 30 | 181 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7313_p_get_many_user.sql | SQL | 190 | 50 | 31 | 271 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7321_p_shop_save_user_basket.sql | SQL | 608 | 175 | 48 | 831 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7400_p_shop_save_supplier.sql | SQL | 171 | 79 | 34 | 284 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7401_p_shop_get_many_supplier.sql | SQL | 157 | 74 | 35 | 266 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7403_p_save_supplier_purchase_order.sql | SQL | 377 | 137 | 43 | 557 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7404_p_shop_get_many_supplier_purchase_order.sql | SQL | 546 | 162 | 58 | 766 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7415_p_shop_save_manufacturing_purchase_order.sql | SQL | 400 | 164 | 42 | 606 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7416_p_shop_get_many_manufacturing_purchase_order.sql | SQL | 426 | 181 | 52 | 659 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7421_p_shop_save_customer.sql | SQL | 167 | 101 | 33 | 301 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7422_p_shop_get_many_customer.sql | SQL | 169 | 63 | 40 | 272 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7424_p_shop_save_customer_sales_order.sql | SQL | 383 | 132 | 43 | 558 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7425_p_shop_get_many_customer_sales_order.sql | SQL | 534 | 181 | 62 | 777 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\9000_populate.sql | SQL | 574 | 145 | 55 | 774 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\9001_view.sql | SQL | 137 | 14 | 57 | 208 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\9010_anal.sql | SQL | 17 | 1 | 9 | 27 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\000_combine.sql | SQL | 9,567 | 4,004 | 1,543 | 15,114 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\001_destroy.sql | SQL | 214 | 3 | 76 | 293 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.0_tbl_Shop_Product_Change_Set.sql | SQL | 7 | 1 | 5 | 13 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.1_tbl_Shop_User_Change_Set.sql | SQL | 7 | 1 | 5 | 13 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.2_tbl_Shop_Access_Level.sql | SQL | 15 | 1 | 5 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.2_tbl_Shop_Sales_And_Purchasing_Change_Set.sql | SQL | 7 | 1 | 5 | 13 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100.3_tbl_Shop_Access_Level_Audit.sql | SQL | 16 | 1 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100_tbl_Msg_Error_Type.sql | SQL | 7 | 1 | 6 | 14 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\102_tbl_File_Type.sql | SQL | 11 | 1 | 6 | 18 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\103_tbl_File_Type_Audit.sql | SQL | 16 | 1 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\104_tbl_Shop_General.sql | SQL | 11 | 1 | 5 | 17 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\105_tbl_Shop_General_Audit.sql | SQL | 16 | 1 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\106_tbl_Shop_Category.sql | SQL | 15 | 1 | 6 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\107_tbl_Shop_Category_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\108_tbl_Shop_Recurrence_Interval.sql | SQL | 14 | 1 | 6 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\109_tbl_Shop_Recurrence_Interval_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.0_tbl_Shop_Region.sql | SQL | 14 | 1 | 5 | 20 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.1_tbl_Shop_Region_Audit.sql | SQL | 16 | 1 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.2_tbl_Shop_Region_Branch.sql | SQL | 22 | 2 | 5 | 29 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.3_tbl_Shop_Region_Branch_Audit.sql | SQL | 16 | 1 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.4_tbl_Shop_Currency.sql | SQL | 17 | 1 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.5_tbl_Shop_Currency_Audit.sql | SQL | 17 | 1 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.6_tbl_Shop_Tax_Or_Surcharge.sql | SQL | 32 | 1 | 6 | 39 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.7_tbl_Shop_Tax_Or_Surcharge_Audit.sql | SQL | 17 | 1 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.8_tbl_Shop_Product.sql | SQL | 19 | 24 | 6 | 49 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.9_tbl_Shop_Product_Audit.sql | SQL | 16 | 1 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\112_tbl_Shop_Variation_Type.sql | SQL | 15 | 1 | 5 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\113.0_tbl_Shop_Variation_Type_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\114_tbl_Shop_Variation.sql | SQL | 19 | 1 | 6 | 26 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\115_tbl_Shop_Variation_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.1_tbl_Shop_Product_Permutation.sql | SQL | 33 | 9 | 6 | 48 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.2_tbl_Shop_Product_Permutation_Audit.sql | SQL | 17 | 1 | 6 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.3_tbl_Shop_Product_Permutation_Variation_Link.sql | SQL | 22 | 1 | 6 | 29 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.4_tbl_Shop_Product_Permutation_Variation_Link_Audit.sql | SQL | 17 | 1 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.5_tbl_Shop_Product_Currency_Region_Link.sql | SQL | 34 | 1 | 5 | 40 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\117.6_tbl_Shop_Product_Currency_Region_Link_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\118_tbl_Shop_Image_Type.sql | SQL | 15 | 1 | 6 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\119_tbl_Shop_Image_Type_Audit.sql | SQL | 16 | 1 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\120_tbl_Shop_Image.sql | SQL | 29 | 1 | 5 | 35 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\121_tbl_Shop_Image_Audit.sql | SQL | 15 | 1 | 5 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\122_tbl_Shop_Delivery_Option.sql | SQL | 19 | 1 | 6 | 26 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\123_tbl_Shop_Delivery_Option_Audit.sql | SQL | 16 | 1 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\124_tbl_Shop_Product_Delivery_Option_Link.sql | SQL | 38 | 1 | 5 | 44 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\125_tbl_Shop_Product_Delivery_Option_Link_Audit.sql | SQL | 16 | 1 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\130.4_tbl_Shop_Discount.sql | SQL | 30 | 13 | 6 | 49 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\131_tbl_Shop_Discount_Audit.sql | SQL | 17 | 1 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\132_tbl_Shop_Discount_Region_Currency_Link.sql | SQL | 26 | 1 | 5 | 32 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\133_tbl_Shop_Discount_Region_Currency_Link_Audit.sql | SQL | 17 | 1 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\153_tbl_Shop_Permission_Group.sql | SQL | 15 | 1 | 5 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\154_tbl_Shop_Permission_Group_Audit.sql | SQL | 17 | 1 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\155_tbl_Shop_Permission.sql | SQL | 23 | 1 | 5 | 29 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\156_tbl_Shop_Permission_Audit.sql | SQL | 17 | 1 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\157_tbl_Shop_Role.sql | SQL | 14 | 1 | 5 | 20 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\158_tbl_Shop_Role_Audit.sql | SQL | 17 | 1 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\159_tbl_Shop_Role_Permission_Link.sql | SQL | 25 | 1 | 5 | 31 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\160_tbl_Shop_Role_Permission_Link_Audit.sql | SQL | 16 | 1 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\161_tbl_Shop_User.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\162_tbl_Shop_User_Audit.sql | SQL | 17 | 1 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\163_tbl_Shop_User_Role_Link.sql | SQL | 20 | 1 | 5 | 26 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\164_tbl_Shop_User_Role_Link_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\165_tbl_Shop_Address.sql | SQL | 19 | 9 | 5 | 33 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\166_tbl_Shop_Address_Audit.sql | SQL | 17 | 1 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\167_tbl_Shop_User_Basket.sql | SQL | 27 | 7 | 6 | 40 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\168_tbl_Shop_User_Basket_Audit.sql | SQL | 16 | 7 | 5 | 28 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\169_tbl_Shop_User_Order_Status.sql | SQL | 15 | 1 | 6 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\170_tbl_Shop_User_Order_Status_Audit.sql | SQL | 16 | 1 | 5 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.0_tbl_Shop_Supplier.sql | SQL | 26 | 1 | 6 | 33 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.1_tbl_Shop_Supplier_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.2_tbl_Shop_Unit_Measurement.sql | SQL | 15 | 1 | 7 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.3_tbl_Shop_Unit_Measurement_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.4_tbl_Shop_Unit_Measurement_Conversion.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.5_tbl_Shop_Unit_Measurement_Conversion_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.6_tbl_Shop_Supplier_Purchase_Order.sql | SQL | 19 | 17 | 6 | 42 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.7_tbl_Shop_Supplier_Purchase_Order_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.8_tbl_Shop_Supplier_Purchase_Order_Product_Link.sql | SQL | 31 | 1 | 6 | 38 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.9_tbl_Shop_Supplier_Purchase_Order_Product_Link_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\182.0_tbl_Shop_Supplier_Purchase_Order_Product_Link_Temp.sql | SQL | 21 | 7 | 7 | 35 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\183_tbl_Shop_Manufacturing_Purchase_Order.sql | SQL | 16 | 11 | 7 | 34 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\184_tbl_Shop_Manufacturing_Purchase_Order_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\185_tbl_Shop_Manufacturing_Purchase_Order_Product_Link.sql | SQL | 32 | 1 | 6 | 39 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\186.1_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Temp.sql | SQL | 21 | 8 | 7 | 36 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\186_tbl_Shop_Manufacturing_Purchase_Order_Product_Link_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\187.0_tbl_Shop_Customer.sql | SQL | 24 | 1 | 5 | 30 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\187.1_tbl_Shop_Customer_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\187.2_tbl_Shop_Customer_Sales_Order.sql | SQL | 19 | 11 | 6 | 36 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\188_tbl_Shop_Customer_Sales_Order_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\189_tbl_Shop_Customer_Sales_Order_Product_Link.sql | SQL | 31 | 1 | 7 | 39 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\190_tbl_Shop_Customer_Sales_Order_Product_Link_Audit.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\191_tbl_Shop_Customer_Sales_Order_Product_Link_Temp.sql | SQL | 21 | 7 | 7 | 35 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\300.2_tri_Shop_Sales_And_Purchasing_Change_Set.sql | SQL | 20 | 1 | 6 | 27 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\301.1_tri_Shop_User_Change_Set.sql | SQL | 16 | 1 | 4 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\301.2_tri_Shop_Access_Level.sql | SQL | 52 | 6 | 9 | 67 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\301_tri_Shop_Product_Change_Set.sql | SQL | 16 | 1 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\302_tri_File_Type.sql | SQL | 37 | 4 | 8 | 49 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\303_tri_File_Type_Audit.sql | SQL | 24 | 1 | 8 | 33 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\304_tri_Shop_General.sql | SQL | 36 | 2 | 9 | 47 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\306_tri_Shop_Category.sql | SQL | 48 | 6 | 10 | 64 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\308_tri_Shop_Recurrence_Interval.sql | SQL | 45 | 5 | 10 | 60 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.0_tri_Shop_Region.sql | SQL | 45 | 5 | 10 | 60 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.2_tri_Shop_Region_Branch.sql | SQL | 39 | 9 | 10 | 58 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.4_tri_Shop_Currency.sql | SQL | 55 | 7 | 10 | 72 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.6_tri_Shop_Tax_Or_Surcharge.sql | SQL | 60 | 10 | 11 | 81 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.8_tri_Shop_Product.sql | SQL | 51 | 113 | 10 | 174 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\312_tri_Shop_Variation_Type.sql | SQL | 48 | 6 | 10 | 64 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\314_tri_Shop_Variation.sql | SQL | 45 | 5 | 10 | 60 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\317.1_tri_Shop_Product_Permutation.sql | SQL | 82 | 42 | 10 | 134 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\317.3_tri_Shop_Product_Permutation_Variation_Link.sql | SQL | 43 | 13 | 10 | 66 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\317.5_tri_Shop_Product_Currency_Region_Link.sql | SQL | 49 | 38 | 11 | 98 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\318_tri_Shop_Image_Type.sql | SQL | 48 | 6 | 10 | 64 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\320_tri_Shop_Image.sql | SQL | 58 | 8 | 10 | 76 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\322_tri_Shop_Delivery_Option.sql | SQL | 57 | 9 | 10 | 76 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\324_tri_Shop_Product_Delivery_Option_Link.sql | SQL | 46 | 22 | 10 | 78 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\330_tri_Shop_Discount.sql | SQL | 66 | 12 | 10 | 88 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\332_tri_Shop_Discount_Region_Currency_Link.sql | SQL | 40 | 12 | 10 | 62 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\353_tri_Shop_Permission_Group.sql | SQL | 49 | 5 | 10 | 64 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\355_tri_Shop_Permission.sql | SQL | 55 | 7 | 10 | 72 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\357_tri_Shop_Role.sql | SQL | 49 | 5 | 10 | 64 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\359_tri_Shop_Role_Permission_Link.sql | SQL | 43 | 13 | 10 | 66 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\361_tri_Shop_User.sql | SQL | 55 | 7 | 10 | 72 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\363_tri_Shop_User_Role_Link.sql | SQL | 40 | 2 | 10 | 52 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\365_tri_Shop_Address.sql | SQL | 64 | 10 | 9 | 83 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\367_tri_Shop_User_Basket.sql | SQL | 49 | 5 | 10 | 64 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\369_tri_Shop_User_Order_Status.sql | SQL | 48 | 6 | 10 | 64 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.0_tri_Shop_Supplier.sql | SQL | 64 | 10 | 10 | 84 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.2_tri_Shop_Unit_Measurement.sql | SQL | 52 | 6 | 10 | 68 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.4_tri_Shop_Unit_Of_Measurement_Conversion.sql | SQL | 55 | 7 | 10 | 72 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.6_tri_Shop_Supplier_Purchase_Order.sql | SQL | 46 | 22 | 11 | 79 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.8_tri_Shop_Supplier_Purchase_Order_Product_Link.sql | SQL | 67 | 11 | 10 | 88 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\383_tri_Shop_Manufacturing_Purchase_Order.sql | SQL | 49 | 5 | 10 | 64 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\385_tri_Shop_Manufacturing_Purchase_Order_Product_Link.sql | SQL | 67 | 11 | 10 | 88 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\387.0_tri_Shop_Customer.sql | SQL | 61 | 9 | 10 | 80 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\387.2_tri_Shop_Customer_Sales_Order.sql | SQL | 49 | 5 | 9 | 63 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\389_tri_Shop_Customer_Sales_Order_Product_Link.sql | SQL | 67 | 11 | 9 | 87 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\600_p_shop_save_product.sql | SQL | 199 | 28 | 31 | 258 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\600_p_shop_user_eval.sql | SQL | 385 | 312 | 34 | 731 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\602_p_save_supplier_purchase_order.sql | SQL | 298 | 181 | 37 | 516 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\602_p_shop_save_supplier.sql | SQL | 155 | 120 | 32 | 307 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\604_p_shop_save_manufacturing_purchase_order.sql | SQL | 312 | 258 | 37 | 607 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\605_p_shop_save_customer.sql | SQL | 125 | 162 | 27 | 314 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\606_p_shop_save_customer_sales_order.sql | SQL | 362 | 158 | 36 | 556 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\610_p_shop_save_user.sql | SQL | 94 | 47 | 26 | 167 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\611_p_shop_save_user_basket.sql | SQL | 499 | 297 | 38 | 834 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\700_p_shop_get_many_product.sql | SQL | 736 | 436 | 60 | 1,232 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\701_p_shop_get_many_role_permission.sql | SQL | 0 | 148 | 5 | 153 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\702.1_p_shop_get_many_currency.sql | SQL | 26 | 26 | 6 | 58 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\702.2_p_shop_get_many_region.sql | SQL | 24 | 31 | 6 | 61 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\703_p_shop_get_many_user_order.sql | SQL | 143 | 111 | 30 | 284 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\704_p_shop_get_many_stripe_product_new.sql | SQL | 181 | 105 | 31 | 317 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\705_p_shop_get_many_stripe_price_new.sql | SQL | 130 | 92 | 32 | 254 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\706_p_shop_get_many_supplier.sql | SQL | 136 | 84 | 28 | 248 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\706_p_shop_get_many_supplier_purchase_order.sql | SQL | 487 | 178 | 45 | 710 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\708_p_shop_get_many_manufacturing_purchase_order.sql | SQL | 375 | 187 | 40 | 602 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\709_p_shop_get_many_customer.sql | SQL | 136 | 85 | 29 | 250 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\710_p_shop_get_many_customer_sales_order.sql | SQL | 469 | 206 | 44 | 719 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\900_populate.sql | SQL | 444 | 166 | 46 | 656 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\901_view.sql | SQL | 87 | 52 | 50 | 189 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\910_anal.sql | SQL | 16 | 1 | 10 | 27 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\920_edit_permissions.sql | SQL | 70 | 4 | 9 | 83 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\batch\sql_combine.bat | Batch | 61 | 22 | 15 | 98 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\button.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\card.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\dialog.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\form.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\modal.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\navigation.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\overlay.css | CSS | 6 | 0 | 0 | 6 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\table.css | CSS | 25 | 5 | 6 | 36 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\layouts\footer.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\layouts\header.css | CSS | 12 | 0 | 3 | 15 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\layouts\table-main.css | CSS | 14 | 0 | 1 | 15 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\lib\reset.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\lib\typography.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\lib\utils.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\lib\variables.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\main.css | CSS | 386 | 146 | 66 | 598 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\core\admin_home.css | CSS | 6 | 0 | 1 | 7 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\core\contact.css | CSS | 7 | 14 | 5 | 26 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\core\home.css | CSS | 25 | 5 | 6 | 36 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\core\services.css | CSS | 18 | 16 | 3 | 37 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\accessibility_report.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\accessibility_statement.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\license.css | CSS | 6 | 0 | 2 | 8 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\privacy_policy.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\legal\retention_schedule.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\store\home.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\store\product_categories.css | CSS | 61 | 19 | 17 | 97 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\store\product_permutations.css | CSS | 126 | 5 | 12 | 143 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\pages\store\stock_items.css | CSS | 33 | 0 | 7 | 40 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\sections\core.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\sections\legal.css | CSS | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\sections\store.css | CSS | 42 | 1 | 10 | 53 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\themes\dark.css | CSS | 33 | 6 | 6 | 45 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\themes\light.css | CSS | 33 | 6 | 6 | 45 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\example abstract base class.py | Python | 70 | 2 | 17 | 89 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\server.py | Python | 81 | 19 | 24 | 124 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\template webpage.html | HTML | 56 | 0 | 8 | 64 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\test.py | Python | 1 | 0 | 0 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-evaluation.json | JSON | 1 | 0 | 0 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\wcag_2.2AA_public-website-of-precision-and-research-technology-systems-limited-report.html | HTML | 60 | 0 | 0 | 60 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\images\MS_SQL_Server.svg | XML | 1 | 0 | 0 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\accessibility_statement.js | JavaScript | 4 | 0 | 2 | 6 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\api.js | JavaScript | 82 | 36 | 12 | 130 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\app.js | JavaScript | 37 | 37 | 16 | 90 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\inputs\input_date.js | JavaScript | 38 | 133 | 13 | 184 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\inputs\select.js | JavaScript | 14 | 0 | 2 | 16 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\inputs\textarea.js | JavaScript | 30 | 3 | 12 | 45 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\table.js | JavaScript | 13 | 1 | 8 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\temporary\overlay_confirm.js | JavaScript | 24 | 0 | 2 | 26 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\temporary\overlay_error.js | JavaScript | 17 | 0 | 2 | 19 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\video.js | JavaScript | 10 | 0 | 4 | 14 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\dom.js | JavaScript | 169 | 18 | 11 | 198 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\business_objects.js | JavaScript | 15 | 7 | 2 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\common.js | JavaScript | 63 | 3 | 19 | 85 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\constants.js | JavaScript | 4 | 1 | 2 | 7 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\events.js | JavaScript | 9 | 0 | 1 | 10 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\extras.js | JavaScript | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\local_storage.js | JavaScript | 9 | 48 | 5 | 62 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\utils.js | JavaScript | 9 | 10 | 0 | 19 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\validation.js | JavaScript | 117 | 6 | 41 | 164 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\base.js | JavaScript | 183 | 16 | 19 | 218 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\base_table.js | JavaScript | 358 | 131 | 9 | 498 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\admin_home.js | JavaScript | 39 | 0 | 8 | 47 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\contact.js | JavaScript | 10 | 0 | 5 | 15 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\home.js | JavaScript | 14 | 0 | 6 | 20 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\services.js | JavaScript | 13 | 0 | 7 | 20 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\accessibility_report.js | JavaScript | 13 | 0 | 5 | 18 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\accessibility_statement.js | JavaScript | 13 | 0 | 5 | 18 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\license.js | JavaScript | 13 | 0 | 5 | 18 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\privacy_policy.js | JavaScript | 13 | 0 | 5 | 18 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\retention_schedule.js | JavaScript | 13 | 0 | 5 | 18 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\basket.js | JavaScript | 137 | 12 | 46 | 195 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\home.js | JavaScript | 15 | 0 | 6 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\mixin.js | JavaScript | 318 | 112 | 18 | 448 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\mixin_table.js | JavaScript | 20 | 3 | 2 | 25 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\product_categories.js | JavaScript | 98 | 26 | 15 | 139 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\product_permutations.js | JavaScript | 440 | 92 | 24 | 556 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\stock_items.js | JavaScript | 382 | 63 | 64 | 509 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\user\user.js | JavaScript | 14 | 0 | 6 | 20 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\router.js | JavaScript | 88 | 243 | 16 | 347 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\sections\core.js | JavaScript | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\sections\legal.js | JavaScript | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\sections\store.js | JavaScript | 0 | 0 | 1 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\python\rename_files.py | Python | 14 | 2 | 5 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\_shared.html | HTML | 0 | 0 | 2 | 2 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\buttons\_buttons_save_cancel.html | HTML | 48 | 0 | 0 | 48 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\buttons\_slider_display_order.html | HTML | 13 | 0 | 0 | 13 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\inputs\_input_number_plus_minus.html | HTML | 11 | 6 | 0 | 17 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\inputs\_option_blank.html | HTML | 1 | 0 | 0 | 1 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\_overlay_address.html | HTML | 4 | 5 | 1 | 10 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\_overlay_confirm.html | HTML | 14 | 0 | 1 | 15 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\_overlay_error.html | HTML | 10 | 0 | 1 | 11 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\template_overlay.html | HTML | 15 | 5 | 4 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_body_home.html | HTML | 28 | 3 | 6 | 37 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_currency.html | HTML | 15 | 0 | 2 | 17 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product.html | HTML | 13 | 0 | 1 | 14 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_category.html | HTML | 13 | 0 | 1 | 14 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_permutation_interval_expiration_unsealed.html | HTML | 16 | 0 | 1 | 17 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_permutation_interval_recurrence.html | HTML | 19 | 0 | 0 | 19 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_permutation_unit_measurement_quantity.html | HTML | 19 | 0 | 2 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_product_permutation_variations.html | HTML | 21 | 0 | 1 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_product_variation_types.html | HTML | 14 | 0 | 1 | 15 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_address.html | HTML | 65 | 3 | 12 | 80 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_basket.html | HTML | 15 | 3 | 0 | 18 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_basket_item.html | HTML | 29 | 6 | 0 | 35 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_product.html | HTML | 45 | 0 | 1 | 46 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_product_category.html | HTML | 44 | 0 | 0 | 44 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_product_permutation.html | HTML | 158 | 0 | 6 | 164 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_stock_item.html | HTML | 87 | 20 | 1 | 108 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\js\sections\store.js | JavaScript | 78 | 0 | 3 | 81 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\layouts\_shared_store.html | HTML | 30 | 1 | 0 | 31 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\layouts\layout.html | HTML | 261 | 71 | 12 | 344 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_admin_home.html | HTML | 33 | 18 | 5 | 56 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_contact.html | HTML | 70 | 38 | 9 | 117 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_home.html | HTML | 9 | 19 | 5 | 33 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_services.html | HTML | 93 | 19 | 9 | 121 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_accessibility_statement.html | HTML | 54 | 139 | 17 | 210 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_license.html | HTML | 15 | 18 | 7 | 40 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_privacy_policy.html | HTML | 68 | 18 | 13 | 99 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_retention_schedule.html | HTML | 1,806 | 146 | 15 | 1,967 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\accessibility_report.html | HTML | 60 | 0 | 0 | 60 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_basket.html | HTML | 36 | 28 | 7 | 71 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_checkout_success.html | HTML | 23 | 19 | 4 | 46 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_home.html | HTML | 5 | 0 | 2 | 7 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_product_categories.html | HTML | 81 | 16 | 8 | 105 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_product_permutations.html | HTML | 152 | 17 | 7 | 176 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_products.html | HTML | 87 | 16 | 8 | 111 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_stock_items.html | HTML | 115 | 23 | 7 | 145 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_supplier.html | HTML | 89 | 23 | 5 | 117 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\user\_user.html | HTML | 9 | 19 | 4 | 32 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\webpack.config.js | JavaScript | 111 | 24 | 1 | 136 |
| Total | | 70,074 | 18,431 | 9,994 | 98,499 |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+------------+------------+------------+------------+