refactor(SQL): Staging tables and Calc stored procedures used for modular stored procedure archicture for scalability. Implemented for Product Catalogue. \n BREAKING CHANGE: BIT argument a_debug added to all but basic stored procedures for analysis of performance and results.

This commit is contained in:
2024-10-02 15:59:53 +01:00
parent cf78e4b3bc
commit 005a377ff9
655 changed files with 31538 additions and 2453 deletions

View File

@@ -0,0 +1,639 @@
# Details
Date : 2024-09-25 13:20:08
Directory c:\\Users\\edwar\\OneDrive\\Documents\\Programming\\Visual Studio 2022\\PARTS_Web\\app
Total : 624 files, 86678 codes, 23871 comments, 12053 blanks, all 122602 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 | 60 | 7 | 8 | 75 |
| [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 | 611 | 172 | 26 | 809 |
| [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 | 352 | 11 | 14 | 377 |
| [business_objects/store/store_base.py](/business_objects/store/store_base.py) | Python | 78 | 4 | 6 | 88 |
| [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 | 132 | 18 | 20 | 170 |
| [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 | 141 | 17 | 17 | 175 |
| [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 | 53 | 2 | 9 | 64 |
| [forms/forms.py](/forms/forms.py) | Python | 102 | 16 | 23 | 141 |
| [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 | 36 | 5 | 5 | 46 |
| [forms/store/product_permutation.py](/forms/store/product_permutation.py) | Python | 54 | 6 | 5 | 65 |
| [forms/unit_measurement.py](/forms/unit_measurement.py) | Python | 35 | 2 | 5 | 42 |
| [git-filter-repo/.github/workflows/test.yml](/git-filter-repo/.github/workflows/test.yml) | YAML | 32 | 3 | 5 | 40 |
| [git-filter-repo/Documentation/Contributing.md](/git-filter-repo/Documentation/Contributing.md) | Markdown | 69 | 0 | 8 | 77 |
| [git-filter-repo/Documentation/converting-from-bfg-repo-cleaner.md](/git-filter-repo/Documentation/converting-from-bfg-repo-cleaner.md) | Markdown | 124 | 0 | 34 | 158 |
| [git-filter-repo/Documentation/converting-from-filter-branch.md](/git-filter-repo/Documentation/converting-from-filter-branch.md) | Markdown | 273 | 0 | 74 | 347 |
| [git-filter-repo/contrib/filter-repo-demos/README.md](/git-filter-repo/contrib/filter-repo-demos/README.md) | Markdown | 31 | 0 | 8 | 39 |
| [git-filter-repo/release/setup.cfg](/git-filter-repo/release/setup.cfg) | Properties | 30 | 0 | 3 | 33 |
| [git-filter-repo/release/setup.py](/git-filter-repo/release/setup.py) | Python | 14 | 0 | 8 | 22 |
| [git-filter-repo/t/t9390-filter-repo.sh](/git-filter-repo/t/t9390-filter-repo.sh) | Shell Script | 1,495 | 51 | 297 | 1,843 |
| [git-filter-repo/t/t9391-filter-repo-lib-usage.sh](/git-filter-repo/t/t9391-filter-repo-lib-usage.sh) | Shell Script | 180 | 3 | 24 | 207 |
| [git-filter-repo/t/t9391/commit_info.py](/git-filter-repo/t/t9391/commit_info.py) | Python | 21 | 5 | 9 | 35 |
| [git-filter-repo/t/t9391/create_fast_export_output.py](/git-filter-repo/t/t9391/create_fast_export_output.py) | Python | 98 | 5 | 20 | 123 |
| [git-filter-repo/t/t9391/erroneous.py](/git-filter-repo/t/t9391/erroneous.py) | Python | 11 | 1 | 5 | 17 |
| [git-filter-repo/t/t9391/file_filter.py](/git-filter-repo/t/t9391/file_filter.py) | Python | 23 | 1 | 7 | 31 |
| [git-filter-repo/t/t9391/print_progress.py](/git-filter-repo/t/t9391/print_progress.py) | Python | 32 | 1 | 9 | 42 |
| [git-filter-repo/t/t9391/rename-master-to-develop.py](/git-filter-repo/t/t9391/rename-master-to-develop.py) | Python | 13 | 1 | 5 | 19 |
| [git-filter-repo/t/t9391/splice_repos.py](/git-filter-repo/t/t9391/splice_repos.py) | Python | 63 | 7 | 18 | 88 |
| [git-filter-repo/t/t9391/strip-cvs-keywords.py](/git-filter-repo/t/t9391/strip-cvs-keywords.py) | Python | 14 | 4 | 5 | 23 |
| [git-filter-repo/t/t9391/unusual.py](/git-filter-repo/t/t9391/unusual.py) | Python | 89 | 25 | 18 | 132 |
| [git-filter-repo/t/t9392-python-callback.sh](/git-filter-repo/t/t9392-python-callback.sh) | Shell Script | 173 | 2 | 22 | 197 |
| [git-filter-repo/t/test-lib-functions.sh](/git-filter-repo/t/test-lib-functions.sh) | Shell Script | 868 | 322 | 122 | 1,312 |
| [git-filter-repo/t/test-lib.sh](/git-filter-repo/t/test-lib.sh) | Shell Script | 1,082 | 186 | 159 | 1,427 |
| [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_items.py](/models/model_view_store_stock_items.py) | Python | 66 | 5 | 10 | 81 |
| [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 | 16 | 5 | 6 | 27 |
| [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 |
| [run.py](/run.py) | Python | 12 | 1 | 4 | 17 |
| [static/MySQL/0000_combine.sql](/static/MySQL/0000_combine.sql) | SQL | 13,221 | 3,440 | 2,110 | 18,771 |
| [static/MySQL/0001_destroy.sql](/static/MySQL/0001_destroy.sql) | SQL | 196 | 2 | 66 | 264 |
| [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/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 | 12 | 1 | 5 | 18 |
| [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 | 13 | 0 | 6 | 19 |
| [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 | 38 | 1 | 6 | 45 |
| [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 | 20 | 0 | 6 | 26 |
| [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_Delivery_Option_Link.sql](/static/MySQL/1230_tbl_Shop_Product_Delivery_Option_Link.sql) | SQL | 39 | 0 | 5 | 44 |
| [static/MySQL/1231_tbl_Shop_Product_Delivery_Option_Link_Audit.sql](/static/MySQL/1231_tbl_Shop_Product_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/1236_tbl_Shop_Product_Currency_Region_Link.sql](/static/MySQL/1236_tbl_Shop_Product_Currency_Region_Link.sql) | SQL | 35 | 0 | 5 | 40 |
| [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/1237_tbl_Shop_Product_Currency_Region_Link_Audit.sql](/static/MySQL/1237_tbl_Shop_Product_Currency_Region_Link_Audit.sql) | SQL | 17 | 0 | 6 | 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/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 | 62 | 0 | 9 | 71 |
| [static/MySQL/3230_tri_Shop_Product_Delivery_Option_Link.sql](/static/MySQL/3230_tri_Shop_Product_Delivery_Option_Link.sql) | SQL | 42 | 18 | 9 | 69 |
| [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_split.sql](/static/MySQL/6000_p_split.sql) | SQL | 36 | 38 | 23 | 97 |
| [static/MySQL/6001_p_clear_split_temp.sql](/static/MySQL/6001_p_clear_split_temp.sql) | SQL | 10 | 11 | 7 | 28 |
| [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_user_eval.sql](/static/MySQL/6500_p_shop_user_eval.sql) | SQL | 350 | 361 | 43 | 754 |
| [static/MySQL/6501_p_shop_clear_user_eval_temp.sql](/static/MySQL/6501_p_shop_clear_user_eval_temp.sql) | SQL | 18 | 11 | 11 | 40 |
| [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/7203_p_shop_save_product.sql](/static/MySQL/7203_p_shop_save_product.sql) | SQL | 191 | 22 | 33 | 246 |
| [static/MySQL/7204_p_shop_get_many_product.sql](/static/MySQL/7204_p_shop_get_many_product.sql) | SQL | 388 | 144 | 47 | 579 |
| [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_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 | 216 | 80 | 37 | 333 |
| [static/MySQL/7219_p_shop_get_many_stock_item.sql](/static/MySQL/7219_p_shop_get_many_stock_item.sql) | SQL | 594 | 230 | 47 | 871 |
| [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 | 566 | 195 | 51 | 812 |
| [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/MySQL/deprecated/000_init_tables_authentication.sql](/static/MySQL/deprecated/000_init_tables_authentication.sql) | SQL | 741 | 1 | 83 | 825 |
| [static/MySQL/deprecated/000_init_tables_product.sql](/static/MySQL/deprecated/000_init_tables_product.sql) | SQL | 1,288 | 94 | 139 | 1,521 |
| [static/MySQL/deprecated/108_tbl_Shop_Recurrence_Interval.sql](/static/MySQL/deprecated/108_tbl_Shop_Recurrence_Interval.sql) | SQL | 15 | 0 | 6 | 21 |
| [static/MySQL/deprecated/109_tbl_Shop_Recurrence_Interval_Audit.sql](/static/MySQL/deprecated/109_tbl_Shop_Recurrence_Interval_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/deprecated/113.1_tbl_Shop_Product_Variation_Type_Link.sql](/static/MySQL/deprecated/113.1_tbl_Shop_Product_Variation_Type_Link.sql) | SQL | 23 | 0 | 6 | 29 |
| [static/MySQL/deprecated/113.2_tbl_Shop_Product_Variation_Type_Link_Audit.sql](/static/MySQL/deprecated/113.2_tbl_Shop_Product_Variation_Type_Link_Audit.sql) | SQL | 18 | 0 | 6 | 24 |
| [static/MySQL/deprecated/116_tbl_Shop_Product_Variation_Link.sql](/static/MySQL/deprecated/116_tbl_Shop_Product_Variation_Link.sql) | SQL | 23 | 7 | 6 | 36 |
| [static/MySQL/deprecated/117.0_tbl_Shop_Product_Variation_Link_Audit.sql](/static/MySQL/deprecated/117.0_tbl_Shop_Product_Variation_Link_Audit.sql) | SQL | 18 | 0 | 6 | 24 |
| [static/MySQL/deprecated/128_tbl_Shop_Product_Delivery_Region_Link.sql](/static/MySQL/deprecated/128_tbl_Shop_Product_Delivery_Region_Link.sql) | SQL | 27 | 0 | 5 | 32 |
| [static/MySQL/deprecated/129_tbl_Shop_Product_Delivery_Region_Link_Audit.sql](/static/MySQL/deprecated/129_tbl_Shop_Product_Delivery_Region_Link_Audit.sql) | SQL | 18 | 0 | 5 | 23 |
| [static/MySQL/deprecated/170_ish_tbl_ERP_Order.sql](/static/MySQL/deprecated/170_ish_tbl_ERP_Order.sql) | SQL | 14 | 0 | 6 | 20 |
| [static/MySQL/deprecated/171_tbl_Shop_User_Order.sql](/static/MySQL/deprecated/171_tbl_Shop_User_Order.sql) | SQL | 28 | 6 | 6 | 40 |
| [static/MySQL/deprecated/172_tbl_Shop_User_Order_Audit.sql](/static/MySQL/deprecated/172_tbl_Shop_User_Order_Audit.sql) | SQL | 17 | 6 | 5 | 28 |
| [static/MySQL/deprecated/173_tbl_Shop_User_Order_Product_Link.sql](/static/MySQL/deprecated/173_tbl_Shop_User_Order_Product_Link.sql) | SQL | 28 | 0 | 5 | 33 |
| [static/MySQL/deprecated/174_tbl_Shop_User_Order_Product_Link_Audit.sql](/static/MySQL/deprecated/174_tbl_Shop_User_Order_Product_Link_Audit.sql) | SQL | 17 | 0 | 6 | 23 |
| [static/MySQL/deprecated/308_tri_Shop_Recurrence_Interval.sql](/static/MySQL/deprecated/308_tri_Shop_Recurrence_Interval.sql) | SQL | 46 | 0 | 10 | 56 |
| [static/MySQL/deprecated/313.1_tri_Shop_Product_Variation_Type_Link.sql](/static/MySQL/deprecated/313.1_tri_Shop_Product_Variation_Type_Link.sql) | SQL | 42 | 10 | 9 | 61 |
| [static/MySQL/deprecated/316_tri_Shop_Product_Variation_Link.sql](/static/MySQL/deprecated/316_tri_Shop_Product_Variation_Link.sql) | SQL | 42 | 10 | 9 | 61 |
| [static/MySQL/deprecated/322_tri_Shop_Price.sql](/static/MySQL/deprecated/322_tri_Shop_Price.sql) | SQL | 50 | 33 | 11 | 94 |
| [static/MySQL/deprecated/328_tri_Shop_Product_Delivery_Region_Link.sql](/static/MySQL/deprecated/328_tri_Shop_Product_Delivery_Region_Link.sql) | SQL | 38 | 10 | 9 | 57 |
| [static/MySQL/deprecated/371_tri_Shop_User_Order.sql](/static/MySQL/deprecated/371_tri_Shop_User_Order.sql) | SQL | 58 | 0 | 9 | 67 |
| [static/MySQL/deprecated/373_tri_Shop_User_Order_Product_Link.sql](/static/MySQL/deprecated/373_tri_Shop_User_Order_Product_Link.sql) | SQL | 46 | 0 | 9 | 55 |
| [static/MySQL/deprecated/7000_p_shop_get_many_role_permission.sql](/static/MySQL/deprecated/7000_p_shop_get_many_role_permission.sql) | SQL | 82 | 33 | 17 | 132 |
| [static/MySQL/deprecated/7000_p_shop_get_many_user_order.sql](/static/MySQL/deprecated/7000_p_shop_get_many_user_order.sql) | SQL | 188 | 61 | 37 | 286 |
| [static/MySQL/deprecated/706_p_shop_get_product.sql](/static/MySQL/deprecated/706_p_shop_get_product.sql) | SQL | 536 | 68 | 54 | 658 |
| [static/MySQL/deprecated/9020_edit_permissions.sql](/static/MySQL/deprecated/9020_edit_permissions.sql) | SQL | 70 | 4 | 9 | 83 |
| [static/MySQL/deprecated/dump.sql](/static/MySQL/deprecated/dump.sql) | SQL | 5,529 | 2,193 | 514 | 8,236 |
| [static/MySQL/deprecated/dump2.sql](/static/MySQL/deprecated/dump2.sql) | SQL | 5,529 | 2,193 | 514 | 8,236 |
| [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_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,380 @@
# Diff Summary
Date : 2024-09-25 13:20:08
Directory c:\\Users\\edwar\\OneDrive\\Documents\\Programming\\Visual Studio 2022\\PARTS_Web\\app
Total : 2238 files, -686215 codes, -44464 comments, -103319 blanks, all -833998 lines
[Summary](results.md) / [Details](details.md) / Diff Summary / [Diff Details](diff-details.md)
## Languages
| language | files | code | comment | blank | total |
| :--- | ---: | ---: | ---: | ---: | ---: |
| Properties | 4 | -18 | 0 | -4 | -22 |
| XML | 2 | -28 | -2 | -2 | -32 |
| Batch | 8 | -158 | -4 | -68 | -230 |
| PowerShell | 4 | -428 | -1,185 | -138 | -1,751 |
| Python | 2,220 | -685,583 | -43,273 | -103,107 | -831,963 |
## Directories
| path | files | code | comment | blank | total |
| :--- | ---: | ---: | ---: | ---: | ---: |
| . | 2,238 | -686,215 | -44,464 | -103,319 | -833,998 |
| 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 |
| env_web | 630 | -192,112 | -13,588 | -30,355 | -236,055 |
| env_web (Files) | 1 | -5 | 0 | -1 | -6 |
| env_web\\Lib | 626 | -191,959 | -13,227 | -30,302 | -235,488 |
| env_web\\Lib\\site-packages | 626 | -191,959 | -13,227 | -30,302 | -235,488 |
| env_web\\Lib\\site-packages\\_distutils_hack | 2 | -94 | -3 | -34 | -131 |
| env_web\\Lib\\site-packages\\pip | 487 | -152,746 | -8,554 | -21,663 | -182,963 |
| env_web\\Lib\\site-packages\\pip (Files) | 3 | -47 | -14 | -29 | -90 |
| env_web\\Lib\\site-packages\\pip\\_internal | 139 | -23,202 | -2,152 | -4,977 | -30,331 |
| env_web\\Lib\\site-packages\\pip\\_internal (Files) | 9 | -1,897 | -172 | -463 | -2,532 |
| env_web\\Lib\\site-packages\\pip\\_internal\\cli | 12 | -2,139 | -201 | -430 | -2,770 |
| env_web\\Lib\\site-packages\\pip\\_internal\\commands | 18 | -2,779 | -119 | -529 | -3,427 |
| env_web\\Lib\\site-packages\\pip\\_internal\\distributions | 5 | -227 | -22 | -53 | -302 |
| env_web\\Lib\\site-packages\\pip\\_internal\\index | 4 | -1,461 | -71 | -293 | -1,825 |
| env_web\\Lib\\site-packages\\pip\\_internal\\locations | 4 | -685 | -83 | -169 | -937 |
| env_web\\Lib\\site-packages\\pip\\_internal\\metadata | 8 | -1,318 | -56 | -303 | -1,677 |
| env_web\\Lib\\site-packages\\pip\\_internal\\metadata (Files) | 4 | -940 | -38 | -218 | -1,196 |
| env_web\\Lib\\site-packages\\pip\\_internal\\metadata\\importlib | 4 | -378 | -18 | -85 | -481 |
| env_web\\Lib\\site-packages\\pip\\_internal\\models | 12 | -1,076 | -111 | -261 | -1,448 |
| env_web\\Lib\\site-packages\\pip\\_internal\\network | 8 | -1,236 | -214 | -301 | -1,751 |
| env_web\\Lib\\site-packages\\pip\\_internal\\operations | 7 | -1,446 | -229 | -286 | -1,961 |
| env_web\\Lib\\site-packages\\pip\\_internal\\operations (Files) | 4 | -881 | -135 | -160 | -1,176 |
| env_web\\Lib\\site-packages\\pip\\_internal\\operations\\install | 3 | -565 | -94 | -126 | -785 |
| env_web\\Lib\\site-packages\\pip\\_internal\\req | 6 | -2,297 | -193 | -429 | -2,919 |
| env_web\\Lib\\site-packages\\pip\\_internal\\resolution | 13 | -2,403 | -274 | -477 | -3,154 |
| env_web\\Lib\\site-packages\\pip\\_internal\\resolution (Files) | 2 | -15 | 0 | -7 | -22 |
| env_web\\Lib\\site-packages\\pip\\_internal\\resolution\\legacy | 2 | -448 | -70 | -82 | -600 |
| env_web\\Lib\\site-packages\\pip\\_internal\\resolution\\resolvelib | 9 | -1,940 | -204 | -388 | -2,532 |
| env_web\\Lib\\site-packages\\pip\\_internal\\utils | 27 | -2,778 | -280 | -719 | -3,777 |
| env_web\\Lib\\site-packages\\pip\\_internal\\vcs | 6 | -1,460 | -127 | -264 | -1,851 |
| env_web\\Lib\\site-packages\\pip\\_vendor | 345 | -129,497 | -6,388 | -16,657 | -152,542 |
| env_web\\Lib\\site-packages\\pip\\_vendor (Files) | 3 | -3,144 | -273 | -777 | -4,194 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\cachecontrol | 12 | -1,084 | -204 | -310 | -1,598 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\cachecontrol (Files) | 9 | -925 | -175 | -258 | -1,358 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\cachecontrol\\caches | 3 | -159 | -29 | -52 | -240 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\certifi | 3 | -63 | -37 | -27 | -127 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\chardet | 48 | -39,303 | -1,440 | -587 | -41,330 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\chardet (Files) | 44 | -38,901 | -1,404 | -557 | -40,862 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\chardet\\cli | 2 | -94 | -2 | -18 | -114 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\chardet\\metadata | 2 | -308 | -34 | -12 | -354 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\colorama | 13 | -1,288 | -106 | -298 | -1,692 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\colorama (Files) | 6 | -662 | -79 | -147 | -888 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\colorama\\tests | 7 | -626 | -27 | -151 | -804 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\distlib | 13 | -8,447 | -768 | -1,443 | -10,658 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\distro | 3 | -1,090 | -90 | -280 | -1,460 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\idna | 8 | -11,158 | -18 | -208 | -11,384 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\msgpack | 4 | -1,072 | -30 | -210 | -1,312 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\packaging | 11 | -2,010 | -336 | -593 | -2,939 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pkg_resources | 1 | -2,548 | -154 | -660 | -3,362 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\platformdirs | 8 | -1,342 | -18 | -273 | -1,633 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pygments | 35 | -8,491 | -430 | -1,498 | -10,419 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pygments (Files) | 16 | -2,650 | -194 | -583 | -3,427 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pygments\\filters | 1 | -858 | -3 | -80 | -941 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pygments\\formatters | 14 | -3,006 | -139 | -680 | -3,825 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pygments\\lexers | 3 | -1,887 | -91 | -144 | -2,122 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pygments\\styles | 1 | -90 | -3 | -11 | -104 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pyparsing | 11 | -8,596 | -505 | -1,823 | -10,924 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pyparsing (Files) | 10 | -8,079 | -446 | -1,742 | -10,267 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pyparsing\\diagram | 1 | -517 | -59 | -81 | -657 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pyproject_hooks | 5 | -573 | -11 | -153 | -737 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pyproject_hooks (Files) | 3 | -285 | -4 | -75 | -364 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\pyproject_hooks\\_in_process | 2 | -288 | -7 | -78 | -373 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\requests | 18 | -3,927 | -424 | -1,084 | -5,435 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\resolvelib | 7 | -708 | -33 | -191 | -932 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\resolvelib (Files) | 5 | -703 | -33 | -188 | -924 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\resolvelib\\compat | 2 | -5 | 0 | -3 | -8 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\rich | 77 | -22,291 | -211 | -3,138 | -25,640 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\tenacity | 11 | -1,085 | -206 | -371 | -1,662 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\tomli | 4 | -629 | -60 | -134 | -823 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\truststore | 6 | -1,130 | -97 | -246 | -1,473 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\urllib3 | 39 | -8,591 | -910 | -2,192 | -11,693 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\urllib3 (Files) | 11 | -3,269 | -331 | -858 | -4,458 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\contrib | 10 | -2,273 | -247 | -541 | -3,061 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\contrib (Files) | 7 | -1,574 | -187 | -381 | -2,142 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\contrib\\_securetransport | 3 | -699 | -60 | -160 | -919 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\packages | 5 | -972 | -69 | -246 | -1,287 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\packages (Files) | 2 | -805 | -53 | -220 | -1,078 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\packages\\backports | 3 | -167 | -16 | -26 | -209 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\urllib3\\util | 13 | -2,077 | -263 | -547 | -2,887 |
| env_web\\Lib\\site-packages\\pip\\_vendor\\webencodings | 5 | -927 | -27 | -161 | -1,115 |
| env_web\\Lib\\site-packages\\pkg_resources | 17 | -9,520 | -951 | -2,175 | -12,646 |
| env_web\\Lib\\site-packages\\pkg_resources (Files) | 1 | -2,468 | -167 | -654 | -3,289 |
| env_web\\Lib\\site-packages\\pkg_resources\\_vendor | 14 | -6,985 | -784 | -1,507 | -9,276 |
| env_web\\Lib\\site-packages\\pkg_resources\\_vendor (Files) | 3 | -5,141 | -282 | -930 | -6,353 |
| env_web\\Lib\\site-packages\\pkg_resources\\_vendor\\packaging | 11 | -1,844 | -502 | -577 | -2,923 |
| env_web\\Lib\\site-packages\\pkg_resources\\extern | 1 | -61 | 0 | -13 | -74 |
| env_web\\Lib\\site-packages\\pkg_resources\\tests | 1 | -6 | 0 | -1 | -7 |
| env_web\\Lib\\site-packages\\pkg_resources\\tests\\data | 1 | -6 | 0 | -1 | -7 |
| env_web\\Lib\\site-packages\\pkg_resources\\tests\\data\\my-test-package-source | 1 | -6 | 0 | -1 | -7 |
| env_web\\Lib\\site-packages\\setuptools | 120 | -29,599 | -3,719 | -6,430 | -39,748 |
| env_web\\Lib\\site-packages\\setuptools (Files) | 26 | -5,839 | -331 | -1,398 | -7,568 |
| env_web\\Lib\\site-packages\\setuptools\\_distutils | 54 | -12,051 | -2,260 | -2,563 | -16,874 |
| env_web\\Lib\\site-packages\\setuptools\\_distutils (Files) | 30 | -7,362 | -1,433 | -1,589 | -10,384 |
| env_web\\Lib\\site-packages\\setuptools\\_distutils\\command | 24 | -4,689 | -827 | -974 | -6,490 |
| env_web\\Lib\\site-packages\\setuptools\\_vendor | 14 | -6,897 | -772 | -1,487 | -9,156 |
| env_web\\Lib\\site-packages\\setuptools\\_vendor (Files) | 3 | -5,053 | -270 | -910 | -6,233 |
| env_web\\Lib\\site-packages\\setuptools\\_vendor\\packaging | 11 | -1,844 | -502 | -577 | -2,923 |
| env_web\\Lib\\site-packages\\setuptools\\command | 25 | -4,751 | -356 | -969 | -6,076 |
| env_web\\Lib\\site-packages\\setuptools\\extern | 1 | -61 | 0 | -13 | -74 |
| env_web\\Scripts | 3 | -148 | -361 | -52 | -561 |
[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,626 @@
"filename", "language", "HTML", "JavaScript", "Python", "SQL", "XML", "JSON", "CSS", "Batch", "Markdown", "pip requirements", "Properties", "Shell Script", "YAML", "comment", "blank", "total"
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\README.md", "Markdown", 0, 0, 0, 0, 0, 0, 0, 0, 7, 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, 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, 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, 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, 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, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 75
"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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 26, 809
"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, 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, 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, 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, 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, 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, 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, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 14, 377
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\store_base.py", "Python", 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 88
"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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 0, 0, 0, 10, 9, 69
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\user.py", "Python", 0, 0, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 20, 170
"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, 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, 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, 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, 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, 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, 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, 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, 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, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 17, 175
"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, 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, 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, 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, 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, 0, 0, 0, 2, 5, 37
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\base.py", "Python", 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 9, 64
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\forms.py", "Python", 0, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 23, 141
"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, 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, 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, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 46
"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, 0, 0, 0, 6, 5, 65
"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, 0, 0, 0, 2, 5, 42
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\.github\workflows\test.yml", "YAML", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 3, 5, 40
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\Documentation\Contributing.md", "Markdown", 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 8, 77
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\Documentation\converting-from-bfg-repo-cleaner.md", "Markdown", 0, 0, 0, 0, 0, 0, 0, 0, 124, 0, 0, 0, 0, 0, 34, 158
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\Documentation\converting-from-filter-branch.md", "Markdown", 0, 0, 0, 0, 0, 0, 0, 0, 273, 0, 0, 0, 0, 0, 74, 347
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\contrib\filter-repo-demos\README.md", "Markdown", 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 8, 39
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\release\setup.cfg", "Properties", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 3, 33
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\release\setup.py", "Python", 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 22
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9390-filter-repo.sh", "Shell Script", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1495, 0, 51, 297, 1843
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391-filter-repo-lib-usage.sh", "Shell Script", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 0, 3, 24, 207
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\commit_info.py", "Python", 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 35
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\create_fast_export_output.py", "Python", 0, 0, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 20, 123
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\erroneous.py", "Python", 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 17
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\file_filter.py", "Python", 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7, 31
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\print_progress.py", "Python", 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 9, 42
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\rename-master-to-develop.py", "Python", 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 19
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\splice_repos.py", "Python", 0, 0, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 18, 88
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\strip-cvs-keywords.py", "Python", 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\unusual.py", "Python", 0, 0, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 18, 132
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9392-python-callback.sh", "Shell Script", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 0, 2, 22, 197
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\test-lib-functions.sh", "Shell Script", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 868, 0, 322, 122, 1312
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\test-lib.sh", "Shell Script", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1082, 0, 186, 159, 1427
"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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 0, 0, 0, 6, 9, 96
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_stock_items.py", "Python", 0, 0, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 81
"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, 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, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 6, 27
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\package-lock.json", "JSON", 0, 0, 0, 0, 0, 4383, 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, 0, 0, 0, 0, 37, 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, 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, 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, 0, 0, 0, 30, 34, 170
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\requirements.txt", "pip requirements", 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 1, 3, 16
"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, 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, 13221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3440, 2110, 18771
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\0001_destroy.sql", "SQL", 0, 0, 0, 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 66, 264
"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, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 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, 8, 0, 0, 0, 0, 0, 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, 8, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 8, 0, 0, 0, 0, 0, 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, 12, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 12, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 23, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 9, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 10, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 8, 0, 0, 0, 0, 0, 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, 23, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 9, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 11, 0, 0, 0, 0, 0, 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, 33, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 21, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 20, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 18
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1203_tbl_Shop_Product.sql", "SQL", 0, 0, 0, 22, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 19
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1206_tbl_Shop_Product_Permutation.sql", "SQL", 0, 0, 0, 44, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 45
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1209_tbl_Shop_Variation_Type.sql", "SQL", 0, 0, 0, 16, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 20, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 23, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 33, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 27, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 12, 0, 0, 0, 0, 0, 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, 22, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 26
"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, 17, 0, 0, 0, 0, 0, 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_Delivery_Option_Link.sql", "SQL", 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 44
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1231_tbl_Shop_Product_Delivery_Option_Link_Audit.sql", "SQL", 0, 0, 0, 17, 0, 0, 0, 0, 0, 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, 31, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 32
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1236_tbl_Shop_Product_Currency_Region_Link.sql", "SQL", 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 40
"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, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1237_tbl_Shop_Product_Currency_Region_Link_Audit.sql", "SQL", 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 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, 16, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 24, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 26, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 21, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 21, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 25, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 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, 28, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 27, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 20, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 32, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 22, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 33, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 22, 0, 0, 0, 0, 0, 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, 25, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 20, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 32, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 35
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3000_tri_Shop_Access_Level.sql", "SQL", 0, 0, 0, 50, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 37, 0, 0, 0, 0, 0, 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, 21, 0, 0, 0, 0, 0, 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, 34, 0, 0, 0, 0, 0, 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, 50, 0, 0, 0, 0, 0, 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, 46, 0, 0, 0, 0, 0, 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, 38, 0, 0, 0, 0, 0, 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, 46, 0, 0, 0, 0, 0, 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, 54, 0, 0, 0, 0, 0, 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, 66, 0, 0, 0, 0, 0, 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, 54, 0, 0, 0, 0, 0, 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, 54, 0, 0, 0, 0, 0, 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, 112, 0, 0, 0, 0, 0, 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, 50, 0, 0, 0, 0, 0, 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, 46, 0, 0, 0, 0, 0, 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, 38, 0, 0, 0, 0, 0, 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, 82, 0, 0, 0, 0, 0, 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, 58, 0, 0, 0, 0, 0, 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, 54, 0, 0, 0, 0, 0, 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, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 71
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3230_tri_Shop_Product_Delivery_Option_Link.sql", "SQL", 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 9, 69
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3233_tri_Shop_Discount.sql", "SQL", 0, 0, 0, 74, 0, 0, 0, 0, 0, 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, 34, 0, 0, 0, 0, 0, 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, 46, 0, 0, 0, 0, 0, 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, 54, 0, 0, 0, 0, 0, 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, 46, 0, 0, 0, 0, 0, 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, 38, 0, 0, 0, 0, 0, 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, 70, 0, 0, 0, 0, 0, 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, 34, 0, 0, 0, 0, 0, 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, 66, 0, 0, 0, 0, 0, 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, 46, 0, 0, 0, 0, 0, 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, 50, 0, 0, 0, 0, 0, 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, 66, 0, 0, 0, 0, 0, 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, 66, 0, 0, 0, 0, 0, 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, 54, 0, 0, 0, 0, 0, 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, 42, 0, 0, 0, 0, 0, 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, 70, 0, 0, 0, 0, 0, 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, 46, 0, 0, 0, 0, 0, 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, 70, 0, 0, 0, 0, 0, 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, 62, 0, 0, 0, 0, 0, 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, 46, 0, 0, 0, 0, 0, 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, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 80
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6000_p_split.sql", "SQL", 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 23, 97
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6001_p_clear_split_temp.sql", "SQL", 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 7, 28
"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, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 34
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6500_p_shop_user_eval.sql", "SQL", 0, 0, 0, 350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, 43, 754
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6501_p_shop_clear_user_eval_temp.sql", "SQL", 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 11, 40
"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, 22, 0, 0, 0, 0, 0, 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, 22, 0, 0, 0, 0, 0, 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, 24, 0, 0, 0, 0, 0, 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, 26, 0, 0, 0, 0, 0, 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, 224, 0, 0, 0, 0, 0, 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, 216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 42, 275
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7203_p_shop_save_product.sql", "SQL", 0, 0, 0, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 33, 246
"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, 388, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 47, 579
"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, 209, 0, 0, 0, 0, 0, 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_product_permutation.sql", "SQL", 0, 0, 0, 428, 0, 0, 0, 0, 0, 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, 216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 37, 333
"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, 594, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 47, 871
"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, 566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195, 51, 812
"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, 161, 0, 0, 0, 0, 0, 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, 109, 0, 0, 0, 0, 0, 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, 190, 0, 0, 0, 0, 0, 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, 608, 0, 0, 0, 0, 0, 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, 171, 0, 0, 0, 0, 0, 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, 157, 0, 0, 0, 0, 0, 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, 377, 0, 0, 0, 0, 0, 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, 546, 0, 0, 0, 0, 0, 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, 400, 0, 0, 0, 0, 0, 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, 426, 0, 0, 0, 0, 0, 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, 167, 0, 0, 0, 0, 0, 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, 169, 0, 0, 0, 0, 0, 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, 383, 0, 0, 0, 0, 0, 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, 534, 0, 0, 0, 0, 0, 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, 574, 0, 0, 0, 0, 0, 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, 137, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 9, 27
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\000_init_tables_authentication.sql", "SQL", 0, 0, 0, 741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 83, 825
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\000_init_tables_product.sql", "SQL", 0, 0, 0, 1288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 139, 1521
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\108_tbl_Shop_Recurrence_Interval.sql", "SQL", 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 21
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\109_tbl_Shop_Recurrence_Interval_Audit.sql", "SQL", 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\113.1_tbl_Shop_Product_Variation_Type_Link.sql", "SQL", 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 29
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\113.2_tbl_Shop_Product_Variation_Type_Link_Audit.sql", "SQL", 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\116_tbl_Shop_Product_Variation_Link.sql", "SQL", 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 36
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\117.0_tbl_Shop_Product_Variation_Link_Audit.sql", "SQL", 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 24
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\128_tbl_Shop_Product_Delivery_Region_Link.sql", "SQL", 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 32
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\129_tbl_Shop_Product_Delivery_Region_Link_Audit.sql", "SQL", 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\170_ish_tbl_ERP_Order.sql", "SQL", 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 20
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\171_tbl_Shop_User_Order.sql", "SQL", 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 40
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\172_tbl_Shop_User_Order_Audit.sql", "SQL", 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 28
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\173_tbl_Shop_User_Order_Product_Link.sql", "SQL", 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 33
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\174_tbl_Shop_User_Order_Product_Link_Audit.sql", "SQL", 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 23
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\308_tri_Shop_Recurrence_Interval.sql", "SQL", 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 56
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\313.1_tri_Shop_Product_Variation_Type_Link.sql", "SQL", 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 9, 61
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\316_tri_Shop_Product_Variation_Link.sql", "SQL", 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 9, 61
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\322_tri_Shop_Price.sql", "SQL", 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 11, 94
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\328_tri_Shop_Product_Delivery_Region_Link.sql", "SQL", 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 9, 57
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\371_tri_Shop_User_Order.sql", "SQL", 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 67
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\373_tri_Shop_User_Order_Product_Link.sql", "SQL", 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 55
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\7000_p_shop_get_many_role_permission.sql", "SQL", 0, 0, 0, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 17, 132
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\7000_p_shop_get_many_user_order.sql", "SQL", 0, 0, 0, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 37, 286
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\706_p_shop_get_product.sql", "SQL", 0, 0, 0, 536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 54, 658
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\9020_edit_permissions.sql", "SQL", 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 83
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\dump.sql", "SQL", 0, 0, 0, 5529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2193, 514, 8236
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\dump2.sql", "SQL", 0, 0, 0, 5529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2193, 514, 8236
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\000_combine.sql", "SQL", 0, 0, 0, 9567, 0, 0, 0, 0, 0, 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, 214, 0, 0, 0, 0, 0, 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, 7, 0, 0, 0, 0, 0, 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, 7, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 7, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 7, 0, 0, 0, 0, 0, 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, 11, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 11, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 14, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 14, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 22, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 32, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 19, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 19, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 33, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 22, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 34, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 29, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 19, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 38, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 30, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 26, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 23, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 14, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 25, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 20, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 19, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 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, 27, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 26, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 19, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 31, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 21, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 32, 0, 0, 0, 0, 0, 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, 21, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 24, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 19, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 31, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 21, 0, 0, 0, 0, 0, 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, 20, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 52, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 37, 0, 0, 0, 0, 0, 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, 24, 0, 0, 0, 0, 0, 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, 36, 0, 0, 0, 0, 0, 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, 48, 0, 0, 0, 0, 0, 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, 45, 0, 0, 0, 0, 0, 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, 45, 0, 0, 0, 0, 0, 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, 39, 0, 0, 0, 0, 0, 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, 55, 0, 0, 0, 0, 0, 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, 60, 0, 0, 0, 0, 0, 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, 51, 0, 0, 0, 0, 0, 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, 48, 0, 0, 0, 0, 0, 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, 45, 0, 0, 0, 0, 0, 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, 82, 0, 0, 0, 0, 0, 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, 43, 0, 0, 0, 0, 0, 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, 49, 0, 0, 0, 0, 0, 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, 48, 0, 0, 0, 0, 0, 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, 58, 0, 0, 0, 0, 0, 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, 57, 0, 0, 0, 0, 0, 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, 46, 0, 0, 0, 0, 0, 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, 66, 0, 0, 0, 0, 0, 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, 40, 0, 0, 0, 0, 0, 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, 49, 0, 0, 0, 0, 0, 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, 55, 0, 0, 0, 0, 0, 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, 49, 0, 0, 0, 0, 0, 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, 43, 0, 0, 0, 0, 0, 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, 55, 0, 0, 0, 0, 0, 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, 40, 0, 0, 0, 0, 0, 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, 64, 0, 0, 0, 0, 0, 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, 49, 0, 0, 0, 0, 0, 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, 48, 0, 0, 0, 0, 0, 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, 64, 0, 0, 0, 0, 0, 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, 52, 0, 0, 0, 0, 0, 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, 55, 0, 0, 0, 0, 0, 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, 46, 0, 0, 0, 0, 0, 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, 67, 0, 0, 0, 0, 0, 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, 49, 0, 0, 0, 0, 0, 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, 67, 0, 0, 0, 0, 0, 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, 61, 0, 0, 0, 0, 0, 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, 49, 0, 0, 0, 0, 0, 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, 67, 0, 0, 0, 0, 0, 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, 199, 0, 0, 0, 0, 0, 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, 385, 0, 0, 0, 0, 0, 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, 298, 0, 0, 0, 0, 0, 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, 155, 0, 0, 0, 0, 0, 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, 312, 0, 0, 0, 0, 0, 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, 125, 0, 0, 0, 0, 0, 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, 362, 0, 0, 0, 0, 0, 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, 94, 0, 0, 0, 0, 0, 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, 499, 0, 0, 0, 0, 0, 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, 736, 0, 0, 0, 0, 0, 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, 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, 26, 0, 0, 0, 0, 0, 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, 24, 0, 0, 0, 0, 0, 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, 143, 0, 0, 0, 0, 0, 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, 181, 0, 0, 0, 0, 0, 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, 130, 0, 0, 0, 0, 0, 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, 136, 0, 0, 0, 0, 0, 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, 487, 0, 0, 0, 0, 0, 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, 375, 0, 0, 0, 0, 0, 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, 136, 0, 0, 0, 0, 0, 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, 469, 0, 0, 0, 0, 0, 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, 444, 0, 0, 0, 0, 0, 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, 87, 0, 0, 0, 0, 0, 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, 16, 0, 0, 0, 0, 0, 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, 70, 0, 0, 0, 0, 0, 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, 61, 0, 0, 0, 0, 0, 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, 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, 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, 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, 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, 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, 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, 6, 0, 0, 0, 0, 0, 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, 25, 0, 0, 0, 0, 0, 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, 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, 12, 0, 0, 0, 0, 0, 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, 14, 0, 0, 0, 0, 0, 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, 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, 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, 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, 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, 386, 0, 0, 0, 0, 0, 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, 6, 0, 0, 0, 0, 0, 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, 7, 0, 0, 0, 0, 0, 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, 25, 0, 0, 0, 0, 0, 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, 18, 0, 0, 0, 0, 0, 0, 16, 3, 37
"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, 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, 6, 0, 0, 0, 0, 0, 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, 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, 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, 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, 61, 0, 0, 0, 0, 0, 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, 126, 0, 0, 0, 0, 0, 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, 33, 0, 0, 0, 0, 0, 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, 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, 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, 42, 0, 0, 0, 0, 0, 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, 33, 0, 0, 0, 0, 0, 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, 33, 0, 0, 0, 0, 0, 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, 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, 0, 0, 0, 19, 24, 124
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\template webpage.html", "HTML", 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 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, 0, 0, 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-report.html", "HTML", 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 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\js\accessibility_statement.js", "JavaScript", 0, 4, 0, 0, 0, 0, 0, 0, 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, 82, 0, 0, 0, 0, 0, 0, 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, 37, 0, 0, 0, 0, 0, 0, 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, 38, 0, 0, 0, 0, 0, 0, 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, 14, 0, 0, 0, 0, 0, 0, 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, 30, 0, 0, 0, 0, 0, 0, 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, 13, 0, 0, 0, 0, 0, 0, 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, 24, 0, 0, 0, 0, 0, 0, 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, 17, 0, 0, 0, 0, 0, 0, 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, 10, 0, 0, 0, 0, 0, 0, 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, 169, 0, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 0, 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, 63, 0, 0, 0, 0, 0, 0, 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, 4, 0, 0, 0, 0, 0, 0, 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, 9, 0, 0, 0, 0, 0, 0, 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, 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, 9, 0, 0, 0, 0, 0, 0, 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, 9, 0, 0, 0, 0, 0, 0, 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, 117, 0, 0, 0, 0, 0, 0, 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, 183, 0, 0, 0, 0, 0, 0, 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, 358, 0, 0, 0, 0, 0, 0, 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, 39, 0, 0, 0, 0, 0, 0, 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, 10, 0, 0, 0, 0, 0, 0, 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, 14, 0, 0, 0, 0, 0, 0, 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, 13, 0, 0, 0, 0, 0, 0, 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, 13, 0, 0, 0, 0, 0, 0, 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, 13, 0, 0, 0, 0, 0, 0, 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, 13, 0, 0, 0, 0, 0, 0, 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, 13, 0, 0, 0, 0, 0, 0, 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, 13, 0, 0, 0, 0, 0, 0, 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, 137, 0, 0, 0, 0, 0, 0, 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, 15, 0, 0, 0, 0, 0, 0, 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, 318, 0, 0, 0, 0, 0, 0, 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, 20, 0, 0, 0, 0, 0, 0, 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, 98, 0, 0, 0, 0, 0, 0, 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, 440, 0, 0, 0, 0, 0, 0, 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, 382, 0, 0, 0, 0, 0, 0, 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, 14, 0, 0, 0, 0, 0, 0, 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, 88, 0, 0, 0, 0, 0, 0, 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, 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, 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, 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, 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, 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", 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 78, 0, 0, 0, 0, 0, 0, 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", 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 31
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\layouts\layout.html", "HTML", 261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 5, 56
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_contact.html", "HTML", 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 9, 117
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_home.html", "HTML", 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 5, 33
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_services.html", "HTML", 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 17, 210
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_license.html", "HTML", 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 1806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_basket.html", "HTML", 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, 46
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_home.html", "HTML", 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 7, 176
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_products.html", "HTML", 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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", 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 7, 145
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_supplier.html", "HTML", 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 5, 117
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\user\_user.html", "HTML", 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 4, 32
"c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\webpack.config.js", "JavaScript", 0, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 1, 136
"Total", "-", 3929, 3047, 9599, 60411, 1, 4421, 833, 61, 504, 12, 30, 3798, 32, 23871, 12053, 122602
1 filename language HTML JavaScript Python SQL XML JSON CSS Batch Markdown pip requirements Properties Shell Script YAML comment blank total
2 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\README.md Markdown 0 0 0 0 0 0 0 0 7 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 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 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 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 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 60 0 0 0 0 0 0 0 0 0 0 7 8 75
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 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 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 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 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 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 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 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 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 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 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 611 0 0 0 0 0 0 0 0 0 0 172 26 809
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 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 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 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 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 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 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 352 0 0 0 0 0 0 0 0 0 0 11 14 377
26 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\store_base.py Python 0 0 78 0 0 0 0 0 0 0 0 0 0 4 6 88
27 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 0 0 0 9 12 161
28 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 0 0 0 4 13 160
29 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 0 0 0 4 26 282
30 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 0 0 0 22 10 101
31 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 0 0 0 1 1
32 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 0 0 0 6 12 95
33 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 0 0 0 5 8 75
34 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 0 0 0 1 1
35 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 0 0 0 6 13 99
36 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 0 0 0 8 12 119
37 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 0 0 0 6 20 159
38 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 0 0 0 4 14 93
39 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 0 0 0 3 5 30
40 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 0 0 0 10 9 69
41 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\controllers\user.py Python 0 0 132 0 0 0 0 0 0 0 0 0 0 18 20 170
42 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 0 0 0 3 12
43 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 0 0 0 30 26 283
44 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 0 0 0 48 42 330
45 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 0 0 0 21 20 154
46 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 0 0 0 8 14 130
47 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 0 0 0 11 10 100
48 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 0 0 0 7 13 104
49 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 0 0 0 14 15 99
50 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\datastores\datastore_store_stock_item.py Python 0 0 141 0 0 0 0 0 0 0 0 0 0 17 17 175
51 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 0 0 0 25 36 204
52 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 0 0 0 22 28 182
53 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 0 0 0 3 14
54 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 0 0 0 1 1
55 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 0 0 0 2 5 37
56 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\base.py Python 0 0 53 0 0 0 0 0 0 0 0 0 0 2 9 64
57 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\forms.py Python 0 0 102 0 0 0 0 0 0 0 0 0 0 16 23 141
58 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 0 0 0 1 1
59 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 0 0 0 5 5 36
60 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\store\product_category.py Python 0 0 36 0 0 0 0 0 0 0 0 0 0 5 5 46
61 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 0 0 0 6 5 65
62 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 0 0 0 2 5 42
63 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\.github\workflows\test.yml YAML 0 0 0 0 0 0 0 0 0 0 0 0 32 3 5 40
64 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\Documentation\Contributing.md Markdown 0 0 0 0 0 0 0 0 69 0 0 0 0 0 8 77
65 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\Documentation\converting-from-bfg-repo-cleaner.md Markdown 0 0 0 0 0 0 0 0 124 0 0 0 0 0 34 158
66 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\Documentation\converting-from-filter-branch.md Markdown 0 0 0 0 0 0 0 0 273 0 0 0 0 0 74 347
67 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\contrib\filter-repo-demos\README.md Markdown 0 0 0 0 0 0 0 0 31 0 0 0 0 0 8 39
68 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\release\setup.cfg Properties 0 0 0 0 0 0 0 0 0 0 30 0 0 0 3 33
69 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\release\setup.py Python 0 0 14 0 0 0 0 0 0 0 0 0 0 0 8 22
70 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9390-filter-repo.sh Shell Script 0 0 0 0 0 0 0 0 0 0 0 1495 0 51 297 1843
71 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391-filter-repo-lib-usage.sh Shell Script 0 0 0 0 0 0 0 0 0 0 0 180 0 3 24 207
72 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\commit_info.py Python 0 0 21 0 0 0 0 0 0 0 0 0 0 5 9 35
73 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\create_fast_export_output.py Python 0 0 98 0 0 0 0 0 0 0 0 0 0 5 20 123
74 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\erroneous.py Python 0 0 11 0 0 0 0 0 0 0 0 0 0 1 5 17
75 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\file_filter.py Python 0 0 23 0 0 0 0 0 0 0 0 0 0 1 7 31
76 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\print_progress.py Python 0 0 32 0 0 0 0 0 0 0 0 0 0 1 9 42
77 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\rename-master-to-develop.py Python 0 0 13 0 0 0 0 0 0 0 0 0 0 1 5 19
78 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\splice_repos.py Python 0 0 63 0 0 0 0 0 0 0 0 0 0 7 18 88
79 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\strip-cvs-keywords.py Python 0 0 14 0 0 0 0 0 0 0 0 0 0 4 5 23
80 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\unusual.py Python 0 0 89 0 0 0 0 0 0 0 0 0 0 25 18 132
81 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9392-python-callback.sh Shell Script 0 0 0 0 0 0 0 0 0 0 0 173 0 2 22 197
82 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\test-lib-functions.sh Shell Script 0 0 0 0 0 0 0 0 0 0 0 868 0 322 122 1312
83 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\test-lib.sh Shell Script 0 0 0 0 0 0 0 0 0 0 0 1082 0 186 159 1427
84 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 0 0 0 3 12
85 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 0 0 0 4 6 35
86 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 0 0 0 3 9 42
87 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 0 0 0 3 12
88 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 0 0 0 467 45 1318
89 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 0 0 0 20 7 37
90 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 0 0 0 3 12
91 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 0 0 0 3 5 24
92 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 0 0 0 3 5 24
93 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 0 0 0 2 6 25
94 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 0 0 0 2 7 27
95 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 0 0 0 28 18 341
96 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 0 0 0 5 8 38
97 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 0 0 0 3 5 24
98 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 0 0 0 3 5 24
99 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 0 0 0 3 5 24
100 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 0 0 0 3 5 24
101 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 0 0 0 5 6 27
102 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 0 0 0 68 34 453
103 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 0 0 0 19 10 89
104 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 0 0 0 14 16 72
105 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 0 0 0 13 9 49
106 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 0 0 0 17 10 60
107 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 0 0 0 15 12 67
108 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 0 0 0 9 9 55
109 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 0 0 0 6 9 96
110 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_store_stock_items.py Python 0 0 66 0 0 0 0 0 0 0 0 0 0 5 10 81
111 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 0 0 0 5 8 39
112 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\models\model_view_user.py Python 0 0 16 0 0 0 0 0 0 0 0 0 0 5 6 27
113 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\package-lock.json JSON 0 0 0 0 0 4383 0 0 0 0 0 0 0 0 1 4384
114 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\package.json JSON 0 0 0 0 0 37 0 0 0 0 0 0 0 0 1 38
115 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 0 0 0 5 15
116 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 0 0 0 37 35 182
117 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 0 0 0 30 34 170
118 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\requirements.txt pip requirements 0 0 0 0 0 0 0 0 0 12 0 0 0 1 3 16
119 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 0 0 0 1 4 17
120 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\0000_combine.sql SQL 0 0 0 13221 0 0 0 0 0 0 0 0 0 3440 2110 18771
121 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\0001_destroy.sql SQL 0 0 0 196 0 0 0 0 0 0 0 0 0 2 66 264
122 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 8 0 0 0 0 0 0 0 0 0 0 5 13
123 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 8 0 0 0 0 0 0 0 0 0 0 5 13
124 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 8 0 0 0 0 0 0 0 0 0 0 5 13
125 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1003_tbl_Shop_Access_Level.sql SQL 0 0 0 16 0 0 0 0 0 0 0 0 0 0 8 24
126 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 17 0 0 0 0 0 0 0 0 0 0 5 22
127 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1005_tbl_Msg_Error_Type.sql SQL 0 0 0 8 0 0 0 0 0 0 0 0 0 0 6 14
128 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1010_tbl_File_Type.sql SQL 0 0 0 12 0 0 0 0 0 0 0 0 0 0 6 18
129 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1011_tbl_File_Type_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 0 5 22
130 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1012_tbl_Shop_General.sql SQL 0 0 0 12 0 0 0 0 0 0 0 0 0 0 5 17
131 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1013_tbl_Shop_General_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 0 5 22
132 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1014_tbl_Shop_Image_Type.sql SQL 0 0 0 16 0 0 0 0 0 0 0 0 0 6 6 28
133 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 17 0 0 0 0 0 0 0 0 0 0 5 22
134 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1100_tbl_Shop_Region.sql SQL 0 0 0 15 0 0 0 0 0 0 0 0 0 0 5 20
135 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1101_tbl_Shop_Region_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 0 5 22
136 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1102_tbl_Shop_Region_Temp.sql SQL 0 0 0 15 0 0 0 0 0 0 0 0 0 0 5 20
137 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1103_tbl_Shop_Region_Branch.sql SQL 0 0 0 23 0 0 0 0 0 0 0 0 0 1 5 29
138 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 17 0 0 0 0 0 0 0 0 0 0 5 22
139 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 9 0 0 0 0 0 0 0 0 0 1 5 15
140 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1106_tbl_Shop_Plant.sql SQL 0 0 0 16 0 0 0 0 0 0 0 0 0 0 6 22
141 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1107_tbl_Shop_Plant_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 0 6 23
142 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1108_tbl_Shop_Plant_Temp.sql SQL 0 0 0 10 0 0 0 0 0 0 0 0 0 0 6 16
143 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1109_tbl_Shop_Storage_Location.sql SQL 0 0 0 18 0 0 0 0 0 0 0 0 0 0 6 24
144 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 17 0 0 0 0 0 0 0 0 0 0 6 23
145 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 8 0 0 0 0 0 0 0 0 0 0 6 14
146 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 23 0 0 0 0 0 0 0 0 0 1 5 29
147 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 17 0 0 0 0 0 0 0 0 0 0 6 23
148 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 9 0 0 0 0 0 0 0 0 0 1 5 15
149 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1115_tbl_Shop_Currency.sql SQL 0 0 0 18 0 0 0 0 0 0 0 0 0 0 5 23
150 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1116_tbl_Shop_Currency_Audit.sql SQL 0 0 0 18 0 0 0 0 0 0 0 0 0 0 5 23
151 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1117_tbl_Shop_Currency_Temp.sql SQL 0 0 0 11 0 0 0 0 0 0 0 0 0 0 5 16
152 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 33 0 0 0 0 0 0 0 0 0 0 6 39
153 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 18 0 0 0 0 0 0 0 0 0 0 5 23
154 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 17 0 0 0 0 0 0 0 0 0 0 6 23
155 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1121_tbl_Shop_Unit_Measurement.sql SQL 0 0 0 21 0 0 0 0 0 0 0 0 0 0 6 27
156 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 17 0 0 0 0 0 0 0 0 0 0 6 23
157 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 17 0 0 0 0 0 0 0 0 0 0 6 23
158 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 17 0 0 0 0 0 0 0 0 0 0 6 23
159 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1200_tbl_Shop_Product_Category.sql SQL 0 0 0 20 0 0 0 0 0 0 0 0 0 0 5 25
160 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 17 0 0 0 0 0 0 0 0 0 0 6 23
161 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 12 0 0 0 0 0 0 0 0 0 1 5 18
162 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1203_tbl_Shop_Product.sql SQL 0 0 0 22 0 0 0 0 0 0 0 0 0 21 6 49
163 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1204_tbl_Shop_Product_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 0 5 22
164 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1205_tbl_Shop_Product_Temp.sql SQL 0 0 0 13 0 0 0 0 0 0 0 0 0 0 6 19
165 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1206_tbl_Shop_Product_Permutation.sql SQL 0 0 0 44 0 0 0 0 0 0 0 0 0 10 6 60
166 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 18 0 0 0 0 0 0 0 0 0 0 6 24
167 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 38 0 0 0 0 0 0 0 0 0 1 6 45
168 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1209_tbl_Shop_Variation_Type.sql SQL 0 0 0 16 0 0 0 0 0 0 0 0 0 0 5 21
169 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 17 0 0 0 0 0 0 0 0 0 0 6 23
170 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1212_tbl_Shop_Variation.sql SQL 0 0 0 20 0 0 0 0 0 0 0 0 0 0 6 26
171 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1213_tbl_Shop_Variation_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 0 6 23
172 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 23 0 0 0 0 0 0 0 0 0 0 6 29
173 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 18 0 0 0 0 0 0 0 0 0 0 5 23
174 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1218_tbl_Shop_Stock_Item.sql SQL 0 0 0 33 0 0 0 0 0 0 0 0 0 0 6 39
175 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 18 0 0 0 0 0 0 0 0 0 0 6 24
176 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 17 0 0 0 0 0 0 0 0 0 0 6 23
177 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1221_tbl_Shop_Product_Price.sql SQL 0 0 0 27 0 0 0 0 0 0 0 0 0 0 5 32
178 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 17 0 0 0 0 0 0 0 0 0 0 6 23
179 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 12 0 0 0 0 0 0 0 0 0 0 5 17
180 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1224_tbl_Shop_Product_Image.sql SQL 0 0 0 22 0 0 0 0 0 0 0 0 0 0 5 27
181 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 16 0 0 0 0 0 0 0 0 0 0 5 21
182 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1227_tbl_Shop_Delivery_Option.sql SQL 0 0 0 20 0 0 0 0 0 0 0 0 0 0 6 26
183 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 17 0 0 0 0 0 0 0 0 0 0 5 22
184 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1230_tbl_Shop_Product_Delivery_Option_Link.sql SQL 0 0 0 39 0 0 0 0 0 0 0 0 0 0 5 44
185 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1231_tbl_Shop_Product_Delivery_Option_Link_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 0 5 22
186 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1233_tbl_Shop_Discount.sql SQL 0 0 0 31 0 0 0 0 0 0 0 0 0 12 6 49
187 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1234_tbl_Shop_Discount_Audit.sql SQL 0 0 0 18 0 0 0 0 0 0 0 0 0 0 5 23
188 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 27 0 0 0 0 0 0 0 0 0 0 5 32
189 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1236_tbl_Shop_Product_Currency_Region_Link.sql SQL 0 0 0 35 0 0 0 0 0 0 0 0 0 0 5 40
190 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 18 0 0 0 0 0 0 0 0 0 0 5 23
191 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1237_tbl_Shop_Product_Currency_Region_Link_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 0 6 23
192 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1300_tbl_Shop_Permission_Group.sql SQL 0 0 0 16 0 0 0 0 0 0 0 0 0 0 5 21
193 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 18 0 0 0 0 0 0 0 0 0 0 5 23
194 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1303_tbl_Shop_Permission.sql SQL 0 0 0 24 0 0 0 0 0 0 0 0 0 0 5 29
195 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1304_tbl_Shop_Permission_Audit.sql SQL 0 0 0 18 0 0 0 0 0 0 0 0 0 0 5 23
196 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1306_tbl_Shop_Role.sql SQL 0 0 0 15 0 0 0 0 0 0 0 0 0 0 5 20
197 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1307_tbl_Shop_Role_Audit.sql SQL 0 0 0 18 0 0 0 0 0 0 0 0 0 0 5 23
198 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 26 0 0 0 0 0 0 0 0 0 0 5 31
199 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 17 0 0 0 0 0 0 0 0 0 0 5 22
200 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1312_tbl_Shop_User.sql SQL 0 0 0 21 0 0 0 0 0 0 0 0 0 0 6 27
201 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1313_tbl_Shop_User_Audit.sql SQL 0 0 0 18 0 0 0 0 0 0 0 0 0 0 5 23
202 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 21 0 0 0 0 0 0 0 0 0 0 5 26
203 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 17 0 0 0 0 0 0 0 0 0 0 6 23
204 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1318_tbl_Shop_Address.sql SQL 0 0 0 25 0 0 0 0 0 0 0 0 0 1 5 31
205 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1319_tbl_Shop_Address_Audit.sql SQL 0 0 0 18 0 0 0 0 0 0 0 0 0 0 5 23
206 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1321_tbl_Shop_User_Basket.sql SQL 0 0 0 28 0 0 0 0 0 0 0 0 0 6 6 40
207 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 17 0 0 0 0 0 0 0 0 0 6 5 28
208 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1397_tbl_Shop_Order_Status.sql SQL 0 0 0 16 0 0 0 0 0 0 0 0 0 0 6 22
209 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 17 0 0 0 0 0 0 0 0 0 0 5 22
210 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1400_tbl_Shop_Supplier.sql SQL 0 0 0 27 0 0 0 0 0 0 0 0 0 0 6 33
211 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1401_tbl_Shop_Supplier_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 0 6 23
212 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 20 0 0 0 0 0 0 0 0 0 16 6 42
213 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 17 0 0 0 0 0 0 0 0 0 0 6 23
214 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 32 0 0 0 0 0 0 0 0 0 0 6 38
215 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 17 0 0 0 0 0 0 0 0 0 0 6 23
216 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 22 0 0 0 0 0 0 0 0 0 6 7 35
217 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 17 0 0 0 0 0 0 0 0 0 10 7 34
218 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 17 0 0 0 0 0 0 0 0 0 0 6 23
219 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 33 0 0 0 0 0 0 0 0 0 0 6 39
220 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 17 0 0 0 0 0 0 0 0 0 0 6 23
221 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 22 0 0 0 0 0 0 0 0 0 7 7 36
222 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1421_tbl_Shop_Customer.sql SQL 0 0 0 25 0 0 0 0 0 0 0 0 0 0 5 30
223 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1422_tbl_Shop_Customer_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 0 6 23
224 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 20 0 0 0 0 0 0 0 0 0 10 6 36
225 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 17 0 0 0 0 0 0 0 0 0 0 6 23
226 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 32 0 0 0 0 0 0 0 0 0 0 7 39
227 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 17 0 0 0 0 0 0 0 0 0 0 6 23
228 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 22 0 0 0 0 0 0 0 0 0 6 7 35
229 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3000_tri_Shop_Access_Level.sql SQL 0 0 0 50 0 0 0 0 0 0 0 0 0 0 10 60
230 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 15 0 0 0 0 0 0 0 0 0 0 6 21
231 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 15 0 0 0 0 0 0 0 0 0 0 6 21
232 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 15 0 0 0 0 0 0 0 0 0 0 6 21
233 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3010_tri_File_Type.sql SQL 0 0 0 37 0 0 0 0 0 0 0 0 0 0 7 44
234 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3011_tri_File_Type_Audit.sql SQL 0 0 0 21 0 0 0 0 0 0 0 0 0 0 7 28
235 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3012_tri_Shop_General.sql SQL 0 0 0 34 0 0 0 0 0 0 0 0 0 0 7 41
236 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3014_tri_Shop_Image_Type.sql SQL 0 0 0 50 0 0 0 0 0 0 0 0 0 6 9 65
237 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3100_tri_Shop_Region.sql SQL 0 0 0 46 0 0 0 0 0 0 0 0 0 0 10 56
238 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3103_tri_Shop_Region_Branch.sql SQL 0 0 0 38 0 0 0 0 0 0 0 0 0 6 10 54
239 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3109_tri_Shop_Storage_Location.sql SQL 0 0 0 46 0 0 0 0 0 0 0 0 0 0 10 56
240 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3115_tri_Shop_Currency.sql SQL 0 0 0 54 0 0 0 0 0 0 0 0 0 0 9 63
241 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 66 0 0 0 0 0 0 0 0 0 0 10 76
242 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3200_tri_Shop_Category.sql SQL 0 0 0 54 0 0 0 0 0 0 0 0 0 0 8 62
243 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3203_tri_Shop_Product.sql SQL 0 0 0 54 0 0 0 0 0 0 0 0 0 106 11 171
244 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3206_tri_Shop_Product_Permutation.sql SQL 0 0 0 112 0 0 0 0 0 0 0 0 0 36 12 160
245 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3209_tri_Shop_Variation_Type.sql SQL 0 0 0 50 0 0 0 0 0 0 0 0 0 0 11 61
246 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3212_tri_Shop_Variation.sql SQL 0 0 0 46 0 0 0 0 0 0 0 0 0 0 10 56
247 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 38 0 0 0 0 0 0 0 0 0 10 9 57
248 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3218_tri_Shop_Stock_Item.sql SQL 0 0 0 82 0 0 0 0 0 0 0 0 0 0 10 92
249 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3221_tri_Shop_Product_Price.sql SQL 0 0 0 58 0 0 0 0 0 0 0 0 0 19 11 88
250 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3224_tri_Shop_Product_Image.sql SQL 0 0 0 54 0 0 0 0 0 0 0 0 0 10 9 73
251 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3227_tri_Shop_Delivery_Option.sql SQL 0 0 0 62 0 0 0 0 0 0 0 0 0 0 9 71
252 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3230_tri_Shop_Product_Delivery_Option_Link.sql SQL 0 0 0 42 0 0 0 0 0 0 0 0 0 18 9 69
253 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3233_tri_Shop_Discount.sql SQL 0 0 0 74 0 0 0 0 0 0 0 0 0 0 10 84
254 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 34 0 0 0 0 0 0 0 0 0 10 9 53
255 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3300_tri_Shop_Permission_Group.sql SQL 0 0 0 46 0 0 0 0 0 0 0 0 0 0 9 55
256 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3303_tri_Shop_Permission.sql SQL 0 0 0 54 0 0 0 0 0 0 0 0 0 0 9 63
257 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3306_tri_Shop_Role.sql SQL 0 0 0 46 0 0 0 0 0 0 0 0 0 0 10 56
258 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 38 0 0 0 0 0 0 0 0 0 10 10 58
259 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3312_tri_Shop_User.sql SQL 0 0 0 70 0 0 0 0 0 0 0 0 0 0 9 79
260 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 34 0 0 0 0 0 0 0 0 0 0 9 43
261 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3318_tri_Shop_Address.sql SQL 0 0 0 66 0 0 0 0 0 0 0 0 0 0 9 75
262 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3321_tri_Shop_User_Basket.sql SQL 0 0 0 46 0 0 0 0 0 0 0 0 0 0 9 55
263 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 50 0 0 0 0 0 0 0 0 0 0 9 59
264 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3400_tri_Shop_Supplier.sql SQL 0 0 0 66 0 0 0 0 0 0 0 0 0 0 10 76
265 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3403_tri_Shop_Unit_Measurement.sql SQL 0 0 0 66 0 0 0 0 0 0 0 0 0 0 11 77
266 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 54 0 0 0 0 0 0 0 0 0 0 11 65
267 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 42 0 0 0 0 0 0 0 0 0 18 11 71
268 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 70 0 0 0 0 0 0 0 0 0 0 10 80
269 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 46 0 0 0 0 0 0 0 0 0 0 10 56
270 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 70 0 0 0 0 0 0 0 0 0 0 11 81
271 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3421_tri_Shop_Customer.sql SQL 0 0 0 62 0 0 0 0 0 0 0 0 0 0 11 73
272 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 46 0 0 0 0 0 0 0 0 0 0 10 56
273 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 70 0 0 0 0 0 0 0 0 0 0 10 80
274 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6000_p_split.sql SQL 0 0 0 36 0 0 0 0 0 0 0 0 0 38 23 97
275 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6001_p_clear_split_temp.sql SQL 0 0 0 10 0 0 0 0 0 0 0 0 0 11 7 28
276 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 27 0 0 0 0 0 0 0 0 0 0 7 34
277 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6500_p_shop_user_eval.sql SQL 0 0 0 350 0 0 0 0 0 0 0 0 0 361 43 754
278 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6501_p_shop_clear_user_eval_temp.sql SQL 0 0 0 18 0 0 0 0 0 0 0 0 0 11 11 40
279 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 22 0 0 0 0 0 0 0 0 0 13 11 46
280 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 22 0 0 0 0 0 0 0 0 0 13 11 46
281 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 24 0 0 0 0 0 0 0 0 0 13 11 48
282 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 26 0 0 0 0 0 0 0 0 0 9 7 42
283 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 224 0 0 0 0 0 0 0 0 0 13 32 269
284 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 216 0 0 0 0 0 0 0 0 0 17 42 275
285 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7203_p_shop_save_product.sql SQL 0 0 0 191 0 0 0 0 0 0 0 0 0 22 33 246
286 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 388 0 0 0 0 0 0 0 0 0 144 47 579
287 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 209 0 0 0 0 0 0 0 0 0 57 42 308
288 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 428 0 0 0 0 0 0 0 0 0 99 35 562
289 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 216 0 0 0 0 0 0 0 0 0 80 37 333
290 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 594 0 0 0 0 0 0 0 0 0 230 47 871
291 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 566 0 0 0 0 0 0 0 0 0 195 51 812
292 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 161 0 0 0 0 0 0 0 0 0 42 41 244
293 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7312_p_shop_save_user.sql SQL 0 0 0 109 0 0 0 0 0 0 0 0 0 42 30 181
294 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7313_p_get_many_user.sql SQL 0 0 0 190 0 0 0 0 0 0 0 0 0 50 31 271
295 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 608 0 0 0 0 0 0 0 0 0 175 48 831
296 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7400_p_shop_save_supplier.sql SQL 0 0 0 171 0 0 0 0 0 0 0 0 0 79 34 284
297 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 157 0 0 0 0 0 0 0 0 0 74 35 266
298 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 377 0 0 0 0 0 0 0 0 0 137 43 557
299 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 546 0 0 0 0 0 0 0 0 0 162 58 766
300 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 400 0 0 0 0 0 0 0 0 0 164 42 606
301 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 426 0 0 0 0 0 0 0 0 0 181 52 659
302 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7421_p_shop_save_customer.sql SQL 0 0 0 167 0 0 0 0 0 0 0 0 0 101 33 301
303 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 169 0 0 0 0 0 0 0 0 0 63 40 272
304 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 383 0 0 0 0 0 0 0 0 0 132 43 558
305 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 534 0 0 0 0 0 0 0 0 0 181 62 777
306 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\9000_populate.sql SQL 0 0 0 574 0 0 0 0 0 0 0 0 0 145 55 774
307 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\9001_view.sql SQL 0 0 0 137 0 0 0 0 0 0 0 0 0 14 57 208
308 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\9010_anal.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 1 9 27
309 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\000_init_tables_authentication.sql SQL 0 0 0 741 0 0 0 0 0 0 0 0 0 1 83 825
310 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\000_init_tables_product.sql SQL 0 0 0 1288 0 0 0 0 0 0 0 0 0 94 139 1521
311 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\108_tbl_Shop_Recurrence_Interval.sql SQL 0 0 0 15 0 0 0 0 0 0 0 0 0 0 6 21
312 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\109_tbl_Shop_Recurrence_Interval_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 0 6 23
313 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\113.1_tbl_Shop_Product_Variation_Type_Link.sql SQL 0 0 0 23 0 0 0 0 0 0 0 0 0 0 6 29
314 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\113.2_tbl_Shop_Product_Variation_Type_Link_Audit.sql SQL 0 0 0 18 0 0 0 0 0 0 0 0 0 0 6 24
315 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\116_tbl_Shop_Product_Variation_Link.sql SQL 0 0 0 23 0 0 0 0 0 0 0 0 0 7 6 36
316 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\117.0_tbl_Shop_Product_Variation_Link_Audit.sql SQL 0 0 0 18 0 0 0 0 0 0 0 0 0 0 6 24
317 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\128_tbl_Shop_Product_Delivery_Region_Link.sql SQL 0 0 0 27 0 0 0 0 0 0 0 0 0 0 5 32
318 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\129_tbl_Shop_Product_Delivery_Region_Link_Audit.sql SQL 0 0 0 18 0 0 0 0 0 0 0 0 0 0 5 23
319 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\170_ish_tbl_ERP_Order.sql SQL 0 0 0 14 0 0 0 0 0 0 0 0 0 0 6 20
320 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\171_tbl_Shop_User_Order.sql SQL 0 0 0 28 0 0 0 0 0 0 0 0 0 6 6 40
321 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\172_tbl_Shop_User_Order_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 6 5 28
322 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\173_tbl_Shop_User_Order_Product_Link.sql SQL 0 0 0 28 0 0 0 0 0 0 0 0 0 0 5 33
323 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\174_tbl_Shop_User_Order_Product_Link_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 0 6 23
324 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\308_tri_Shop_Recurrence_Interval.sql SQL 0 0 0 46 0 0 0 0 0 0 0 0 0 0 10 56
325 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\313.1_tri_Shop_Product_Variation_Type_Link.sql SQL 0 0 0 42 0 0 0 0 0 0 0 0 0 10 9 61
326 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\316_tri_Shop_Product_Variation_Link.sql SQL 0 0 0 42 0 0 0 0 0 0 0 0 0 10 9 61
327 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\322_tri_Shop_Price.sql SQL 0 0 0 50 0 0 0 0 0 0 0 0 0 33 11 94
328 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\328_tri_Shop_Product_Delivery_Region_Link.sql SQL 0 0 0 38 0 0 0 0 0 0 0 0 0 10 9 57
329 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\371_tri_Shop_User_Order.sql SQL 0 0 0 58 0 0 0 0 0 0 0 0 0 0 9 67
330 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\373_tri_Shop_User_Order_Product_Link.sql SQL 0 0 0 46 0 0 0 0 0 0 0 0 0 0 9 55
331 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\7000_p_shop_get_many_role_permission.sql SQL 0 0 0 82 0 0 0 0 0 0 0 0 0 33 17 132
332 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\7000_p_shop_get_many_user_order.sql SQL 0 0 0 188 0 0 0 0 0 0 0 0 0 61 37 286
333 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\706_p_shop_get_product.sql SQL 0 0 0 536 0 0 0 0 0 0 0 0 0 68 54 658
334 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\9020_edit_permissions.sql SQL 0 0 0 70 0 0 0 0 0 0 0 0 0 4 9 83
335 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\dump.sql SQL 0 0 0 5529 0 0 0 0 0 0 0 0 0 2193 514 8236
336 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\dump2.sql SQL 0 0 0 5529 0 0 0 0 0 0 0 0 0 2193 514 8236
337 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\000_combine.sql SQL 0 0 0 9567 0 0 0 0 0 0 0 0 0 4004 1543 15114
338 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\001_destroy.sql SQL 0 0 0 214 0 0 0 0 0 0 0 0 0 3 76 293
339 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 7 0 0 0 0 0 0 0 0 0 1 5 13
340 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 7 0 0 0 0 0 0 0 0 0 1 5 13
341 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 15 0 0 0 0 0 0 0 0 0 1 5 21
342 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 7 0 0 0 0 0 0 0 0 0 1 5 13
343 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 16 0 0 0 0 0 0 0 0 0 1 5 22
344 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\100_tbl_Msg_Error_Type.sql SQL 0 0 0 7 0 0 0 0 0 0 0 0 0 1 6 14
345 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\102_tbl_File_Type.sql SQL 0 0 0 11 0 0 0 0 0 0 0 0 0 1 6 18
346 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\103_tbl_File_Type_Audit.sql SQL 0 0 0 16 0 0 0 0 0 0 0 0 0 1 5 22
347 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\104_tbl_Shop_General.sql SQL 0 0 0 11 0 0 0 0 0 0 0 0 0 1 5 17
348 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\105_tbl_Shop_General_Audit.sql SQL 0 0 0 16 0 0 0 0 0 0 0 0 0 1 5 22
349 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\106_tbl_Shop_Category.sql SQL 0 0 0 15 0 0 0 0 0 0 0 0 0 1 6 22
350 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\107_tbl_Shop_Category_Audit.sql SQL 0 0 0 16 0 0 0 0 0 0 0 0 0 1 6 23
351 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\108_tbl_Shop_Recurrence_Interval.sql SQL 0 0 0 14 0 0 0 0 0 0 0 0 0 1 6 21
352 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 16 0 0 0 0 0 0 0 0 0 1 6 23
353 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.0_tbl_Shop_Region.sql SQL 0 0 0 14 0 0 0 0 0 0 0 0 0 1 5 20
354 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 16 0 0 0 0 0 0 0 0 0 1 5 22
355 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 22 0 0 0 0 0 0 0 0 0 2 5 29
356 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 16 0 0 0 0 0 0 0 0 0 1 5 22
357 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.4_tbl_Shop_Currency.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 1 5 23
358 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 17 0 0 0 0 0 0 0 0 0 1 5 23
359 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 32 0 0 0 0 0 0 0 0 0 1 6 39
360 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 17 0 0 0 0 0 0 0 0 0 1 5 23
361 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\110.8_tbl_Shop_Product.sql SQL 0 0 0 19 0 0 0 0 0 0 0 0 0 24 6 49
362 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 16 0 0 0 0 0 0 0 0 0 1 5 22
363 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\112_tbl_Shop_Variation_Type.sql SQL 0 0 0 15 0 0 0 0 0 0 0 0 0 1 5 21
364 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 16 0 0 0 0 0 0 0 0 0 1 6 23
365 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\114_tbl_Shop_Variation.sql SQL 0 0 0 19 0 0 0 0 0 0 0 0 0 1 6 26
366 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\115_tbl_Shop_Variation_Audit.sql SQL 0 0 0 16 0 0 0 0 0 0 0 0 0 1 6 23
367 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 33 0 0 0 0 0 0 0 0 0 9 6 48
368 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 17 0 0 0 0 0 0 0 0 0 1 6 24
369 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 22 0 0 0 0 0 0 0 0 0 1 6 29
370 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 17 0 0 0 0 0 0 0 0 0 1 5 23
371 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 34 0 0 0 0 0 0 0 0 0 1 5 40
372 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 16 0 0 0 0 0 0 0 0 0 1 6 23
373 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\118_tbl_Shop_Image_Type.sql SQL 0 0 0 15 0 0 0 0 0 0 0 0 0 1 6 22
374 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 16 0 0 0 0 0 0 0 0 0 1 5 22
375 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\120_tbl_Shop_Image.sql SQL 0 0 0 29 0 0 0 0 0 0 0 0 0 1 5 35
376 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\121_tbl_Shop_Image_Audit.sql SQL 0 0 0 15 0 0 0 0 0 0 0 0 0 1 5 21
377 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\122_tbl_Shop_Delivery_Option.sql SQL 0 0 0 19 0 0 0 0 0 0 0 0 0 1 6 26
378 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 16 0 0 0 0 0 0 0 0 0 1 5 22
379 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 38 0 0 0 0 0 0 0 0 0 1 5 44
380 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 16 0 0 0 0 0 0 0 0 0 1 5 22
381 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\130.4_tbl_Shop_Discount.sql SQL 0 0 0 30 0 0 0 0 0 0 0 0 0 13 6 49
382 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\131_tbl_Shop_Discount_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 1 5 23
383 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 26 0 0 0 0 0 0 0 0 0 1 5 32
384 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 17 0 0 0 0 0 0 0 0 0 1 5 23
385 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\153_tbl_Shop_Permission_Group.sql SQL 0 0 0 15 0 0 0 0 0 0 0 0 0 1 5 21
386 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 17 0 0 0 0 0 0 0 0 0 1 5 23
387 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\155_tbl_Shop_Permission.sql SQL 0 0 0 23 0 0 0 0 0 0 0 0 0 1 5 29
388 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\156_tbl_Shop_Permission_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 1 5 23
389 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\157_tbl_Shop_Role.sql SQL 0 0 0 14 0 0 0 0 0 0 0 0 0 1 5 20
390 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\158_tbl_Shop_Role_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 1 5 23
391 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 25 0 0 0 0 0 0 0 0 0 1 5 31
392 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 16 0 0 0 0 0 0 0 0 0 1 5 22
393 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\161_tbl_Shop_User.sql SQL 0 0 0 16 0 0 0 0 0 0 0 0 0 1 6 23
394 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\162_tbl_Shop_User_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 1 5 23
395 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 20 0 0 0 0 0 0 0 0 0 1 5 26
396 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 16 0 0 0 0 0 0 0 0 0 1 6 23
397 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\165_tbl_Shop_Address.sql SQL 0 0 0 19 0 0 0 0 0 0 0 0 0 9 5 33
398 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\166_tbl_Shop_Address_Audit.sql SQL 0 0 0 17 0 0 0 0 0 0 0 0 0 1 5 23
399 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\167_tbl_Shop_User_Basket.sql SQL 0 0 0 27 0 0 0 0 0 0 0 0 0 7 6 40
400 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 16 0 0 0 0 0 0 0 0 0 7 5 28
401 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 15 0 0 0 0 0 0 0 0 0 1 6 22
402 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 16 0 0 0 0 0 0 0 0 0 1 5 22
403 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\181.0_tbl_Shop_Supplier.sql SQL 0 0 0 26 0 0 0 0 0 0 0 0 0 1 6 33
404 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 16 0 0 0 0 0 0 0 0 0 1 6 23
405 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 15 0 0 0 0 0 0 0 0 0 1 7 23
406 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 16 0 0 0 0 0 0 0 0 0 1 6 23
407 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 16 0 0 0 0 0 0 0 0 0 1 6 23
408 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 16 0 0 0 0 0 0 0 0 0 1 6 23
409 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 19 0 0 0 0 0 0 0 0 0 17 6 42
410 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 16 0 0 0 0 0 0 0 0 0 1 6 23
411 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 31 0 0 0 0 0 0 0 0 0 1 6 38
412 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 16 0 0 0 0 0 0 0 0 0 1 6 23
413 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 21 0 0 0 0 0 0 0 0 0 7 7 35
414 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 16 0 0 0 0 0 0 0 0 0 11 7 34
415 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 16 0 0 0 0 0 0 0 0 0 1 6 23
416 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 32 0 0 0 0 0 0 0 0 0 1 6 39
417 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 21 0 0 0 0 0 0 0 0 0 8 7 36
418 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 16 0 0 0 0 0 0 0 0 0 1 6 23
419 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\187.0_tbl_Shop_Customer.sql SQL 0 0 0 24 0 0 0 0 0 0 0 0 0 1 5 30
420 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 16 0 0 0 0 0 0 0 0 0 1 6 23
421 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 19 0 0 0 0 0 0 0 0 0 11 6 36
422 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 16 0 0 0 0 0 0 0 0 0 1 6 23
423 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 31 0 0 0 0 0 0 0 0 0 1 7 39
424 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 16 0 0 0 0 0 0 0 0 0 1 6 23
425 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 21 0 0 0 0 0 0 0 0 0 7 7 35
426 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 20 0 0 0 0 0 0 0 0 0 1 6 27
427 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 16 0 0 0 0 0 0 0 0 0 1 4 21
428 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 52 0 0 0 0 0 0 0 0 0 6 9 67
429 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 16 0 0 0 0 0 0 0 0 0 1 6 23
430 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\302_tri_File_Type.sql SQL 0 0 0 37 0 0 0 0 0 0 0 0 0 4 8 49
431 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\303_tri_File_Type_Audit.sql SQL 0 0 0 24 0 0 0 0 0 0 0 0 0 1 8 33
432 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\304_tri_Shop_General.sql SQL 0 0 0 36 0 0 0 0 0 0 0 0 0 2 9 47
433 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\306_tri_Shop_Category.sql SQL 0 0 0 48 0 0 0 0 0 0 0 0 0 6 10 64
434 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\308_tri_Shop_Recurrence_Interval.sql SQL 0 0 0 45 0 0 0 0 0 0 0 0 0 5 10 60
435 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.0_tri_Shop_Region.sql SQL 0 0 0 45 0 0 0 0 0 0 0 0 0 5 10 60
436 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 39 0 0 0 0 0 0 0 0 0 9 10 58
437 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.4_tri_Shop_Currency.sql SQL 0 0 0 55 0 0 0 0 0 0 0 0 0 7 10 72
438 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 60 0 0 0 0 0 0 0 0 0 10 11 81
439 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\310.8_tri_Shop_Product.sql SQL 0 0 0 51 0 0 0 0 0 0 0 0 0 113 10 174
440 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\312_tri_Shop_Variation_Type.sql SQL 0 0 0 48 0 0 0 0 0 0 0 0 0 6 10 64
441 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\314_tri_Shop_Variation.sql SQL 0 0 0 45 0 0 0 0 0 0 0 0 0 5 10 60
442 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 82 0 0 0 0 0 0 0 0 0 42 10 134
443 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 43 0 0 0 0 0 0 0 0 0 13 10 66
444 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 49 0 0 0 0 0 0 0 0 0 38 11 98
445 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\318_tri_Shop_Image_Type.sql SQL 0 0 0 48 0 0 0 0 0 0 0 0 0 6 10 64
446 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\320_tri_Shop_Image.sql SQL 0 0 0 58 0 0 0 0 0 0 0 0 0 8 10 76
447 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\322_tri_Shop_Delivery_Option.sql SQL 0 0 0 57 0 0 0 0 0 0 0 0 0 9 10 76
448 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 46 0 0 0 0 0 0 0 0 0 22 10 78
449 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\330_tri_Shop_Discount.sql SQL 0 0 0 66 0 0 0 0 0 0 0 0 0 12 10 88
450 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 40 0 0 0 0 0 0 0 0 0 12 10 62
451 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\353_tri_Shop_Permission_Group.sql SQL 0 0 0 49 0 0 0 0 0 0 0 0 0 5 10 64
452 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\355_tri_Shop_Permission.sql SQL 0 0 0 55 0 0 0 0 0 0 0 0 0 7 10 72
453 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\357_tri_Shop_Role.sql SQL 0 0 0 49 0 0 0 0 0 0 0 0 0 5 10 64
454 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 43 0 0 0 0 0 0 0 0 0 13 10 66
455 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\361_tri_Shop_User.sql SQL 0 0 0 55 0 0 0 0 0 0 0 0 0 7 10 72
456 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 40 0 0 0 0 0 0 0 0 0 2 10 52
457 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\365_tri_Shop_Address.sql SQL 0 0 0 64 0 0 0 0 0 0 0 0 0 10 9 83
458 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\367_tri_Shop_User_Basket.sql SQL 0 0 0 49 0 0 0 0 0 0 0 0 0 5 10 64
459 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 48 0 0 0 0 0 0 0 0 0 6 10 64
460 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\381.0_tri_Shop_Supplier.sql SQL 0 0 0 64 0 0 0 0 0 0 0 0 0 10 10 84
461 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 52 0 0 0 0 0 0 0 0 0 6 10 68
462 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 55 0 0 0 0 0 0 0 0 0 7 10 72
463 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 46 0 0 0 0 0 0 0 0 0 22 11 79
464 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 67 0 0 0 0 0 0 0 0 0 11 10 88
465 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 49 0 0 0 0 0 0 0 0 0 5 10 64
466 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 67 0 0 0 0 0 0 0 0 0 11 10 88
467 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\387.0_tri_Shop_Customer.sql SQL 0 0 0 61 0 0 0 0 0 0 0 0 0 9 10 80
468 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 49 0 0 0 0 0 0 0 0 0 5 9 63
469 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 67 0 0 0 0 0 0 0 0 0 11 9 87
470 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\600_p_shop_save_product.sql SQL 0 0 0 199 0 0 0 0 0 0 0 0 0 28 31 258
471 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\600_p_shop_user_eval.sql SQL 0 0 0 385 0 0 0 0 0 0 0 0 0 312 34 731
472 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 298 0 0 0 0 0 0 0 0 0 181 37 516
473 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\602_p_shop_save_supplier.sql SQL 0 0 0 155 0 0 0 0 0 0 0 0 0 120 32 307
474 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 312 0 0 0 0 0 0 0 0 0 258 37 607
475 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\605_p_shop_save_customer.sql SQL 0 0 0 125 0 0 0 0 0 0 0 0 0 162 27 314
476 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 362 0 0 0 0 0 0 0 0 0 158 36 556
477 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\610_p_shop_save_user.sql SQL 0 0 0 94 0 0 0 0 0 0 0 0 0 47 26 167
478 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 499 0 0 0 0 0 0 0 0 0 297 38 834
479 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 736 0 0 0 0 0 0 0 0 0 436 60 1232
480 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 0 0 0 148 5 153
481 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 26 0 0 0 0 0 0 0 0 0 26 6 58
482 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 24 0 0 0 0 0 0 0 0 0 31 6 61
483 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 143 0 0 0 0 0 0 0 0 0 111 30 284
484 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 181 0 0 0 0 0 0 0 0 0 105 31 317
485 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 130 0 0 0 0 0 0 0 0 0 92 32 254
486 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 136 0 0 0 0 0 0 0 0 0 84 28 248
487 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 487 0 0 0 0 0 0 0 0 0 178 45 710
488 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 375 0 0 0 0 0 0 0 0 0 187 40 602
489 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 136 0 0 0 0 0 0 0 0 0 85 29 250
490 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 469 0 0 0 0 0 0 0 0 0 206 44 719
491 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\900_populate.sql SQL 0 0 0 444 0 0 0 0 0 0 0 0 0 166 46 656
492 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\901_view.sql SQL 0 0 0 87 0 0 0 0 0 0 0 0 0 52 50 189
493 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\910_anal.sql SQL 0 0 0 16 0 0 0 0 0 0 0 0 0 1 10 27
494 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\PostgreSQL\920_edit_permissions.sql SQL 0 0 0 70 0 0 0 0 0 0 0 0 0 4 9 83
495 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 61 0 0 0 0 0 22 15 98
496 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 0 0 0 1 1
497 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 0 0 0 1 1
498 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 0 0 0 1 1
499 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 0 0 0 1 1
500 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 0 0 0 1 1
501 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 0 0 0 1 1
502 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\overlay.css CSS 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 6
503 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\components\table.css CSS 0 0 0 0 0 0 25 0 0 0 0 0 0 5 6 36
504 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 0 0 0 1 1
505 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\layouts\header.css CSS 0 0 0 0 0 0 12 0 0 0 0 0 0 0 3 15
506 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 14 0 0 0 0 0 0 0 1 15
507 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 0 0 0 1 1
508 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 0 0 0 1 1
509 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 0 0 0 1 1
510 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 0 0 0 1 1
511 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\main.css CSS 0 0 0 0 0 0 386 0 0 0 0 0 0 146 66 598
512 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 6 0 0 0 0 0 0 0 1 7
513 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 7 0 0 0 0 0 0 14 5 26
514 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 25 0 0 0 0 0 0 5 6 36
515 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 18 0 0 0 0 0 0 16 3 37
516 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 0 0 0 1 1
517 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 6 0 0 0 0 0 0 0 2 8
518 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 0 0 0 1 1
519 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 0 0 0 1 1
520 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 0 0 0 1 1
521 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 61 0 0 0 0 0 0 19 17 97
522 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 126 0 0 0 0 0 0 5 12 143
523 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 33 0 0 0 0 0 0 0 7 40
524 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 0 0 0 1 1
525 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 0 0 0 1 1
526 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\sections\store.css CSS 0 0 0 0 0 0 42 0 0 0 0 0 0 1 10 53
527 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\themes\dark.css CSS 0 0 0 0 0 0 33 0 0 0 0 0 0 6 6 45
528 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\css\themes\light.css CSS 0 0 0 0 0 0 33 0 0 0 0 0 0 6 6 45
529 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 0 0 0 2 17 89
530 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 0 0 0 19 24 124
531 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\docs\template webpage.html HTML 56 0 0 0 0 0 0 0 0 0 0 0 0 0 8 64
532 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 0 0 0 1
533 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1
534 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 0 0 0 0 0 0 0 0 0 0 0 0 60
535 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\images\MS_SQL_Server.svg XML 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1
536 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\accessibility_statement.js JavaScript 0 4 0 0 0 0 0 0 0 0 0 0 0 0 2 6
537 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\api.js JavaScript 0 82 0 0 0 0 0 0 0 0 0 0 0 36 12 130
538 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\app.js JavaScript 0 37 0 0 0 0 0 0 0 0 0 0 0 37 16 90
539 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\inputs\input_date.js JavaScript 0 38 0 0 0 0 0 0 0 0 0 0 0 133 13 184
540 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\inputs\select.js JavaScript 0 14 0 0 0 0 0 0 0 0 0 0 0 0 2 16
541 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\inputs\textarea.js JavaScript 0 30 0 0 0 0 0 0 0 0 0 0 0 3 12 45
542 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\table.js JavaScript 0 13 0 0 0 0 0 0 0 0 0 0 0 1 8 22
543 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\temporary\overlay_confirm.js JavaScript 0 24 0 0 0 0 0 0 0 0 0 0 0 0 2 26
544 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\temporary\overlay_error.js JavaScript 0 17 0 0 0 0 0 0 0 0 0 0 0 0 2 19
545 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\components\common\video.js JavaScript 0 10 0 0 0 0 0 0 0 0 0 0 0 0 4 14
546 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\dom.js JavaScript 0 169 0 0 0 0 0 0 0 0 0 0 0 18 11 198
547 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\business_objects.js JavaScript 0 15 0 0 0 0 0 0 0 0 0 0 0 7 2 24
548 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\common.js JavaScript 0 63 0 0 0 0 0 0 0 0 0 0 0 3 19 85
549 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\constants.js JavaScript 0 4 0 0 0 0 0 0 0 0 0 0 0 1 2 7
550 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\events.js JavaScript 0 9 0 0 0 0 0 0 0 0 0 0 0 0 1 10
551 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 0 0 0 1 1
552 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\local_storage.js JavaScript 0 9 0 0 0 0 0 0 0 0 0 0 0 48 5 62
553 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\utils.js JavaScript 0 9 0 0 0 0 0 0 0 0 0 0 0 10 0 19
554 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\lib\validation.js JavaScript 0 117 0 0 0 0 0 0 0 0 0 0 0 6 41 164
555 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\base.js JavaScript 0 183 0 0 0 0 0 0 0 0 0 0 0 16 19 218
556 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\base_table.js JavaScript 0 358 0 0 0 0 0 0 0 0 0 0 0 131 9 498
557 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\admin_home.js JavaScript 0 39 0 0 0 0 0 0 0 0 0 0 0 0 8 47
558 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\contact.js JavaScript 0 10 0 0 0 0 0 0 0 0 0 0 0 0 5 15
559 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\home.js JavaScript 0 14 0 0 0 0 0 0 0 0 0 0 0 0 6 20
560 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\core\services.js JavaScript 0 13 0 0 0 0 0 0 0 0 0 0 0 0 7 20
561 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\accessibility_report.js JavaScript 0 13 0 0 0 0 0 0 0 0 0 0 0 0 5 18
562 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\accessibility_statement.js JavaScript 0 13 0 0 0 0 0 0 0 0 0 0 0 0 5 18
563 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\license.js JavaScript 0 13 0 0 0 0 0 0 0 0 0 0 0 0 5 18
564 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\privacy_policy.js JavaScript 0 13 0 0 0 0 0 0 0 0 0 0 0 0 5 18
565 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\legal\retention_schedule.js JavaScript 0 13 0 0 0 0 0 0 0 0 0 0 0 0 5 18
566 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\basket.js JavaScript 0 137 0 0 0 0 0 0 0 0 0 0 0 12 46 195
567 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\home.js JavaScript 0 15 0 0 0 0 0 0 0 0 0 0 0 0 6 21
568 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\mixin.js JavaScript 0 318 0 0 0 0 0 0 0 0 0 0 0 112 18 448
569 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\mixin_table.js JavaScript 0 20 0 0 0 0 0 0 0 0 0 0 0 3 2 25
570 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\product_categories.js JavaScript 0 98 0 0 0 0 0 0 0 0 0 0 0 26 15 139
571 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\product_permutations.js JavaScript 0 440 0 0 0 0 0 0 0 0 0 0 0 92 24 556
572 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\store\stock_items.js JavaScript 0 382 0 0 0 0 0 0 0 0 0 0 0 63 64 509
573 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\pages\user\user.js JavaScript 0 14 0 0 0 0 0 0 0 0 0 0 0 0 6 20
574 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\js\router.js JavaScript 0 88 0 0 0 0 0 0 0 0 0 0 0 243 16 347
575 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 0 0 0 1 1
576 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 0 0 0 1 1
577 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 0 0 0 1 1
578 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 0 0 0 2 5 21
579 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 0 0 0 2 2
580 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\buttons\_buttons_save_cancel.html HTML 48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48
581 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\buttons\_slider_display_order.html HTML 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13
582 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\inputs\_input_number_plus_minus.html HTML 11 0 0 0 0 0 0 0 0 0 0 0 0 6 0 17
583 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\inputs\_option_blank.html HTML 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
584 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\_overlay_address.html HTML 4 0 0 0 0 0 0 0 0 0 0 0 0 5 1 10
585 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\_overlay_confirm.html HTML 14 0 0 0 0 0 0 0 0 0 0 0 0 0 1 15
586 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\_overlay_error.html HTML 10 0 0 0 0 0 0 0 0 0 0 0 0 0 1 11
587 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\common\temporary\template_overlay.html HTML 15 0 0 0 0 0 0 0 0 0 0 0 0 5 4 24
588 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_body_home.html HTML 28 0 0 0 0 0 0 0 0 0 0 0 0 3 6 37
589 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_currency.html HTML 15 0 0 0 0 0 0 0 0 0 0 0 0 0 2 17
590 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product.html HTML 13 0 0 0 0 0 0 0 0 0 0 0 0 0 1 14
591 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_DDL_product_category.html HTML 13 0 0 0 0 0 0 0 0 0 0 0 0 0 1 14
592 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 0 0 0 0 0 0 0 0 0 0 0 0 1 17
593 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 0 0 0 0 0 0 0 0 0 0 0 0 19
594 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 0 0 0 0 0 0 0 0 0 0 0 0 2 21
595 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_product_permutation_variations.html HTML 21 0 0 0 0 0 0 0 0 0 0 0 0 0 1 22
596 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_preview_product_variation_types.html HTML 14 0 0 0 0 0 0 0 0 0 0 0 0 0 1 15
597 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_address.html HTML 65 0 0 0 0 0 0 0 0 0 0 0 0 3 12 80
598 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_basket.html HTML 15 0 0 0 0 0 0 0 0 0 0 0 0 3 0 18
599 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_basket_item.html HTML 29 0 0 0 0 0 0 0 0 0 0 0 0 6 0 35
600 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_product.html HTML 45 0 0 0 0 0 0 0 0 0 0 0 0 0 1 46
601 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_product_category.html HTML 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44
602 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_product_permutation.html HTML 158 0 0 0 0 0 0 0 0 0 0 0 0 0 6 164
603 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\components\store\_row_stock_item.html HTML 87 0 0 0 0 0 0 0 0 0 0 0 0 20 1 108
604 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\js\sections\store.js JavaScript 0 78 0 0 0 0 0 0 0 0 0 0 0 0 3 81
605 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\layouts\_shared_store.html HTML 30 0 0 0 0 0 0 0 0 0 0 0 0 1 0 31
606 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\layouts\layout.html HTML 261 0 0 0 0 0 0 0 0 0 0 0 0 71 12 344
607 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_admin_home.html HTML 33 0 0 0 0 0 0 0 0 0 0 0 0 18 5 56
608 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_contact.html HTML 70 0 0 0 0 0 0 0 0 0 0 0 0 38 9 117
609 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_home.html HTML 9 0 0 0 0 0 0 0 0 0 0 0 0 19 5 33
610 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\core\_services.html HTML 93 0 0 0 0 0 0 0 0 0 0 0 0 19 9 121
611 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_accessibility_statement.html HTML 54 0 0 0 0 0 0 0 0 0 0 0 0 139 17 210
612 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_license.html HTML 15 0 0 0 0 0 0 0 0 0 0 0 0 18 7 40
613 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_privacy_policy.html HTML 68 0 0 0 0 0 0 0 0 0 0 0 0 18 13 99
614 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\_retention_schedule.html HTML 1806 0 0 0 0 0 0 0 0 0 0 0 0 146 15 1967
615 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\legal\accessibility_report.html HTML 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60
616 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_basket.html HTML 36 0 0 0 0 0 0 0 0 0 0 0 0 28 7 71
617 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_checkout_success.html HTML 23 0 0 0 0 0 0 0 0 0 0 0 0 19 4 46
618 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_home.html HTML 5 0 0 0 0 0 0 0 0 0 0 0 0 0 2 7
619 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_product_categories.html HTML 81 0 0 0 0 0 0 0 0 0 0 0 0 16 8 105
620 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_product_permutations.html HTML 152 0 0 0 0 0 0 0 0 0 0 0 0 17 7 176
621 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_products.html HTML 87 0 0 0 0 0 0 0 0 0 0 0 0 16 8 111
622 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_stock_items.html HTML 115 0 0 0 0 0 0 0 0 0 0 0 0 23 7 145
623 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\store\_supplier.html HTML 89 0 0 0 0 0 0 0 0 0 0 0 0 23 5 117
624 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\templates\pages\user\_user.html HTML 9 0 0 0 0 0 0 0 0 0 0 0 0 19 4 32
625 c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\webpack.config.js JavaScript 0 111 0 0 0 0 0 0 0 0 0 0 0 24 1 136
626 Total - 3929 3047 9599 60411 1 4421 833 61 504 12 30 3798 32 23871 12053 122602

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,109 @@
# Summary
Date : 2024-09-25 13:20:08
Directory c:\\Users\\edwar\\OneDrive\\Documents\\Programming\\Visual Studio 2022\\PARTS_Web\\app
Total : 624 files, 86678 codes, 23871 comments, 12053 blanks, all 122602 lines
Summary / [Details](details.md) / [Diff Summary](diff.md) / [Diff Details](diff-details.md)
## Languages
| language | files | code | comment | blank | total |
| :--- | ---: | ---: | ---: | ---: | ---: |
| SQL | 375 | 60,411 | 19,801 | 9,207 | 89,419 |
| Python | 107 | 9,599 | 1,533 | 1,264 | 12,396 |
| JSON | 3 | 4,421 | 0 | 2 | 4,423 |
| HTML | 47 | 3,929 | 699 | 196 | 4,824 |
| Shell Script | 5 | 3,798 | 564 | 624 | 4,986 |
| JavaScript | 44 | 3,047 | 1,025 | 438 | 4,510 |
| CSS | 33 | 833 | 223 | 168 | 1,224 |
| Markdown | 5 | 504 | 0 | 128 | 632 |
| Batch | 1 | 61 | 22 | 15 | 98 |
| YAML | 1 | 32 | 3 | 5 | 40 |
| Properties | 1 | 30 | 0 | 3 | 33 |
| pip requirements | 1 | 12 | 1 | 3 | 16 |
| XML | 1 | 1 | 0 | 0 | 1 |
## Directories
| path | files | code | comment | blank | total |
| :--- | ---: | ---: | ---: | ---: | ---: |
| . | 624 | 86,678 | 23,871 | 12,053 | 122,602 |
| . (Files) | 12 | 4,882 | 99 | 94 | 5,075 |
| business_objects | 25 | 4,061 | 319 | 314 | 4,694 |
| business_objects (Files) | 6 | 559 | 27 | 67 | 653 |
| business_objects\\store | 19 | 3,502 | 292 | 247 | 4,041 |
| controllers | 11 | 730 | 66 | 115 | 911 |
| controllers (Files) | 4 | 271 | 29 | 41 | 341 |
| controllers\\store | 7 | 459 | 37 | 74 | 570 |
| datastores | 11 | 1,346 | 203 | 224 | 1,773 |
| forms | 9 | 336 | 38 | 59 | 433 |
| forms (Files) | 5 | 220 | 22 | 43 | 285 |
| forms\\store | 4 | 116 | 16 | 16 | 148 |
| git-filter-repo | 21 | 4,735 | 617 | 860 | 6,212 |
| git-filter-repo\\.github | 1 | 32 | 3 | 5 | 40 |
| git-filter-repo\\.github\\workflows | 1 | 32 | 3 | 5 | 40 |
| git-filter-repo\\Documentation | 3 | 466 | 0 | 116 | 582 |
| git-filter-repo\\contrib | 1 | 31 | 0 | 8 | 39 |
| git-filter-repo\\contrib\\filter-repo-demos | 1 | 31 | 0 | 8 | 39 |
| git-filter-repo\\release | 2 | 44 | 0 | 11 | 55 |
| git-filter-repo\\t | 14 | 4,162 | 614 | 720 | 5,496 |
| git-filter-repo\\t (Files) | 5 | 3,798 | 564 | 624 | 4,986 |
| git-filter-repo\\t\\t9391 | 9 | 364 | 50 | 96 | 510 |
| helpers | 3 | 64 | 7 | 18 | 89 |
| lib | 3 | 825 | 487 | 55 | 1,367 |
| models | 23 | 1,255 | 236 | 211 | 1,702 |
| payments | 1 | 106 | 30 | 34 | 170 |
| static | 459 | 64,447 | 21,070 | 9,878 | 95,395 |
| static\\MySQL | 217 | 40,992 | 11,612 | 5,914 | 58,518 |
| static\\MySQL (Files) | 189 | 26,444 | 6,883 | 4,407 | 37,734 |
| static\\MySQL\\deprecated | 28 | 14,548 | 4,729 | 1,507 | 20,784 |
| static\\PostgreSQL | 158 | 19,419 | 8,189 | 3,293 | 30,901 |
| static\\batch | 1 | 61 | 22 | 15 | 98 |
| static\\css | 33 | 833 | 223 | 168 | 1,224 |
| 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 | 12 | 282 | 59 | 57 | 398 |
| static\\css\\pages\\core | 4 | 56 | 35 | 15 | 106 |
| static\\css\\pages\\legal | 4 | 6 | 0 | 5 | 11 |
| 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,736 @@
Date : 2024-09-25 13:20:08
Directory : c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app
Total : 624 files, 86678 codes, 23871 comments, 12053 blanks, all 122602 lines
Languages
+------------------+------------+------------+------------+------------+------------+
| language | files | code | comment | blank | total |
+------------------+------------+------------+------------+------------+------------+
| SQL | 375 | 60,411 | 19,801 | 9,207 | 89,419 |
| Python | 107 | 9,599 | 1,533 | 1,264 | 12,396 |
| JSON | 3 | 4,421 | 0 | 2 | 4,423 |
| HTML | 47 | 3,929 | 699 | 196 | 4,824 |
| Shell Script | 5 | 3,798 | 564 | 624 | 4,986 |
| JavaScript | 44 | 3,047 | 1,025 | 438 | 4,510 |
| CSS | 33 | 833 | 223 | 168 | 1,224 |
| Markdown | 5 | 504 | 0 | 128 | 632 |
| Batch | 1 | 61 | 22 | 15 | 98 |
| YAML | 1 | 32 | 3 | 5 | 40 |
| Properties | 1 | 30 | 0 | 3 | 33 |
| pip requirements | 1 | 12 | 1 | 3 | 16 |
| XML | 1 | 1 | 0 | 0 | 1 |
+------------------+------------+------------+------------+------------+------------+
Directories
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+------------+------------+------------+------------+
| path | files | code | comment | blank | total |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+------------+------------+------------+------------+
| . | 624 | 86,678 | 23,871 | 12,053 | 122,602 |
| . (Files) | 12 | 4,882 | 99 | 94 | 5,075 |
| business_objects | 25 | 4,061 | 319 | 314 | 4,694 |
| business_objects (Files) | 6 | 559 | 27 | 67 | 653 |
| business_objects\store | 19 | 3,502 | 292 | 247 | 4,041 |
| controllers | 11 | 730 | 66 | 115 | 911 |
| controllers (Files) | 4 | 271 | 29 | 41 | 341 |
| controllers\store | 7 | 459 | 37 | 74 | 570 |
| datastores | 11 | 1,346 | 203 | 224 | 1,773 |
| forms | 9 | 336 | 38 | 59 | 433 |
| forms (Files) | 5 | 220 | 22 | 43 | 285 |
| forms\store | 4 | 116 | 16 | 16 | 148 |
| git-filter-repo | 21 | 4,735 | 617 | 860 | 6,212 |
| git-filter-repo\.github | 1 | 32 | 3 | 5 | 40 |
| git-filter-repo\.github\workflows | 1 | 32 | 3 | 5 | 40 |
| git-filter-repo\Documentation | 3 | 466 | 0 | 116 | 582 |
| git-filter-repo\contrib | 1 | 31 | 0 | 8 | 39 |
| git-filter-repo\contrib\filter-repo-demos | 1 | 31 | 0 | 8 | 39 |
| git-filter-repo\release | 2 | 44 | 0 | 11 | 55 |
| git-filter-repo\t | 14 | 4,162 | 614 | 720 | 5,496 |
| git-filter-repo\t (Files) | 5 | 3,798 | 564 | 624 | 4,986 |
| git-filter-repo\t\t9391 | 9 | 364 | 50 | 96 | 510 |
| helpers | 3 | 64 | 7 | 18 | 89 |
| lib | 3 | 825 | 487 | 55 | 1,367 |
| models | 23 | 1,255 | 236 | 211 | 1,702 |
| payments | 1 | 106 | 30 | 34 | 170 |
| static | 459 | 64,447 | 21,070 | 9,878 | 95,395 |
| static\MySQL | 217 | 40,992 | 11,612 | 5,914 | 58,518 |
| static\MySQL (Files) | 189 | 26,444 | 6,883 | 4,407 | 37,734 |
| static\MySQL\deprecated | 28 | 14,548 | 4,729 | 1,507 | 20,784 |
| static\PostgreSQL | 158 | 19,419 | 8,189 | 3,293 | 30,901 |
| static\batch | 1 | 61 | 22 | 15 | 98 |
| static\css | 33 | 833 | 223 | 168 | 1,224 |
| 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 | 12 | 282 | 59 | 57 | 398 |
| static\css\pages\core | 4 | 56 | 35 | 15 | 106 |
| static\css\pages\legal | 4 | 6 | 0 | 5 | 11 |
| 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 | 60 | 7 | 8 | 75 |
| 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 | 611 | 172 | 26 | 809 |
| 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 | 352 | 11 | 14 | 377 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\business_objects\store\store_base.py | Python | 78 | 4 | 6 | 88 |
| 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 | 132 | 18 | 20 | 170 |
| 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 | 141 | 17 | 17 | 175 |
| 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 | 53 | 2 | 9 | 64 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\forms\forms.py | Python | 102 | 16 | 23 | 141 |
| 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 | 36 | 5 | 5 | 46 |
| 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\unit_measurement.py | Python | 35 | 2 | 5 | 42 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\.github\workflows\test.yml | YAML | 32 | 3 | 5 | 40 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\Documentation\Contributing.md | Markdown | 69 | 0 | 8 | 77 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\Documentation\converting-from-bfg-repo-cleaner.md | Markdown | 124 | 0 | 34 | 158 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\Documentation\converting-from-filter-branch.md | Markdown | 273 | 0 | 74 | 347 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\contrib\filter-repo-demos\README.md | Markdown | 31 | 0 | 8 | 39 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\release\setup.cfg | Properties | 30 | 0 | 3 | 33 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\release\setup.py | Python | 14 | 0 | 8 | 22 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9390-filter-repo.sh | Shell Script | 1,495 | 51 | 297 | 1,843 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391-filter-repo-lib-usage.sh | Shell Script | 180 | 3 | 24 | 207 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\commit_info.py | Python | 21 | 5 | 9 | 35 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\create_fast_export_output.py | Python | 98 | 5 | 20 | 123 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\erroneous.py | Python | 11 | 1 | 5 | 17 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\file_filter.py | Python | 23 | 1 | 7 | 31 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\print_progress.py | Python | 32 | 1 | 9 | 42 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\rename-master-to-develop.py | Python | 13 | 1 | 5 | 19 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\splice_repos.py | Python | 63 | 7 | 18 | 88 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\strip-cvs-keywords.py | Python | 14 | 4 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9391\unusual.py | Python | 89 | 25 | 18 | 132 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\t9392-python-callback.sh | Shell Script | 173 | 2 | 22 | 197 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\test-lib-functions.sh | Shell Script | 868 | 322 | 122 | 1,312 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\git-filter-repo\t\test-lib.sh | Shell Script | 1,082 | 186 | 159 | 1,427 |
| 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_items.py | Python | 66 | 5 | 10 | 81 |
| 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 | 16 | 5 | 6 | 27 |
| 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\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 | 13,221 | 3,440 | 2,110 | 18,771 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\0001_destroy.sql | SQL | 196 | 2 | 66 | 264 |
| 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\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 | 12 | 1 | 5 | 18 |
| 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 | 13 | 0 | 6 | 19 |
| 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 | 38 | 1 | 6 | 45 |
| 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 | 20 | 0 | 6 | 26 |
| 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_Delivery_Option_Link.sql | SQL | 39 | 0 | 5 | 44 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\1231_tbl_Shop_Product_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\1236_tbl_Shop_Product_Currency_Region_Link.sql | SQL | 35 | 0 | 5 | 40 |
| 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\1237_tbl_Shop_Product_Currency_Region_Link_Audit.sql | SQL | 17 | 0 | 6 | 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\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 | 62 | 0 | 9 | 71 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\3230_tri_Shop_Product_Delivery_Option_Link.sql | SQL | 42 | 18 | 9 | 69 |
| 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_split.sql | SQL | 36 | 38 | 23 | 97 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6001_p_clear_split_temp.sql | SQL | 10 | 11 | 7 | 28 |
| 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_user_eval.sql | SQL | 350 | 361 | 43 | 754 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\6501_p_shop_clear_user_eval_temp.sql | SQL | 18 | 11 | 11 | 40 |
| 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\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_get_many_product.sql | SQL | 388 | 144 | 47 | 579 |
| 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_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 | 216 | 80 | 37 | 333 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\7219_p_shop_get_many_stock_item.sql | SQL | 594 | 230 | 47 | 871 |
| 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 | 566 | 195 | 51 | 812 |
| 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\MySQL\deprecated\000_init_tables_authentication.sql | SQL | 741 | 1 | 83 | 825 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\000_init_tables_product.sql | SQL | 1,288 | 94 | 139 | 1,521 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\108_tbl_Shop_Recurrence_Interval.sql | SQL | 15 | 0 | 6 | 21 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\109_tbl_Shop_Recurrence_Interval_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\113.1_tbl_Shop_Product_Variation_Type_Link.sql | SQL | 23 | 0 | 6 | 29 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\113.2_tbl_Shop_Product_Variation_Type_Link_Audit.sql | SQL | 18 | 0 | 6 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\116_tbl_Shop_Product_Variation_Link.sql | SQL | 23 | 7 | 6 | 36 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\117.0_tbl_Shop_Product_Variation_Link_Audit.sql | SQL | 18 | 0 | 6 | 24 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\128_tbl_Shop_Product_Delivery_Region_Link.sql | SQL | 27 | 0 | 5 | 32 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\129_tbl_Shop_Product_Delivery_Region_Link_Audit.sql | SQL | 18 | 0 | 5 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\170_ish_tbl_ERP_Order.sql | SQL | 14 | 0 | 6 | 20 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\171_tbl_Shop_User_Order.sql | SQL | 28 | 6 | 6 | 40 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\172_tbl_Shop_User_Order_Audit.sql | SQL | 17 | 6 | 5 | 28 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\173_tbl_Shop_User_Order_Product_Link.sql | SQL | 28 | 0 | 5 | 33 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\174_tbl_Shop_User_Order_Product_Link_Audit.sql | SQL | 17 | 0 | 6 | 23 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\308_tri_Shop_Recurrence_Interval.sql | SQL | 46 | 0 | 10 | 56 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\313.1_tri_Shop_Product_Variation_Type_Link.sql | SQL | 42 | 10 | 9 | 61 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\316_tri_Shop_Product_Variation_Link.sql | SQL | 42 | 10 | 9 | 61 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\322_tri_Shop_Price.sql | SQL | 50 | 33 | 11 | 94 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\328_tri_Shop_Product_Delivery_Region_Link.sql | SQL | 38 | 10 | 9 | 57 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\371_tri_Shop_User_Order.sql | SQL | 58 | 0 | 9 | 67 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\373_tri_Shop_User_Order_Product_Link.sql | SQL | 46 | 0 | 9 | 55 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\7000_p_shop_get_many_role_permission.sql | SQL | 82 | 33 | 17 | 132 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\7000_p_shop_get_many_user_order.sql | SQL | 188 | 61 | 37 | 286 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\706_p_shop_get_product.sql | SQL | 536 | 68 | 54 | 658 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\9020_edit_permissions.sql | SQL | 70 | 4 | 9 | 83 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\dump.sql | SQL | 5,529 | 2,193 | 514 | 8,236 |
| c:\Users\edwar\OneDrive\Documents\Programming\Visual Studio 2022\PARTS_Web\app\static\MySQL\deprecated\dump2.sql | SQL | 5,529 | 2,193 | 514 | 8,236 |
| 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_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 | | 86,678 | 23,871 | 12,053 | 122,602 |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------+------------+------------+------------+------------+