Changelog

778797fc lilo.herbi 2024-05-23 enu search permissions
backend/app/Http/Controllers/UserTypePermissionsController.php +2 -0
frontend/src/layout/NavBar.vue +3 -1
79cefbdd lilo.herbi 2024-05-23 Bug fixes
frontend/src/pages/reservation_temp/index.vue +9 -6
2cd74d01 lilo.herbi 2024-05-23 Reservation changes and fixes
backend/app/Http/Controllers/GeneralController.php +11 -3
backend/app/Http/Controllers/UserTypePermissionsController.php +6 -4
frontend/src/pages/reservation_temp/index.vue +85 -40
frontend/src/stores/diary.js +1 -1
frontend/src/stores/reservation_temp.js +4 -0
df975e9c lilo.herbi 2024-05-22 Bug fixes
frontend/src/pages/reservation_temp/index.vue +5 -13
fdad29e5 lilo.herbi 2024-05-22 reservation delivery status and print template
backend/app/Http/Controllers/GeneralController.php +23 -2
backend/routes/api.php +2 -0
frontend/src/pages/reservation_temp/index.vue +253 -29
frontend/src/stores/reservation_temp.js +16 -2
9bb6dac2 lilo.herbi 2024-05-21 Reservation module temp
backend/app/Http/Controllers/GeneralController.php +230 -0
backend/app/Http/Controllers/ProcessController.php +59 -4
backend/app/Http/Controllers/UserTypePermissionsController.php +22 -5
backend/routes/api.php +13 -0
frontend/src/components/Menu.vue +5 -0
frontend/src/pages/reservation_temp/index.vue +445 -0
frontend/src/routes.js +7 -1
frontend/src/stores/process.js +2 -1
frontend/src/stores/reservation_temp.js +184 -0
59126459 lilo.herbi 2024-05-10 Discount total bug fixes
backend/app/Http/Controllers/DiaryController.php +3 -0
frontend/src/pages/diary/discount_list.vue +5 -4
frontend/src/stores/diary.js +46 -7
frontend/src/stores/process.js +3 -1
c242bab7 lilo.herbi 2024-05-09 Discount amount calculation
backend/app/Http/Controllers/DiaryController.php +5 -3
frontend/src/pages/diary/discount_list.vue +20 -11
frontend/src/stores/diary.js +6 -3
a0721447 lilo.herbi 2024-04-30 Total discount - Save API
backend/app/Http/Controllers/DiaryController.php +40 -13
backend/routes/api.php +5 -0
frontend/src/pages/diary/discount_list.vue +19 -9
frontend/src/stores/diary.js +66 -7
01faa1fe lilo.herbi 2024-04-26 customer, diary - sales_type
backend/app/Http/Controllers/CustomerController.php +4 -2
backend/app/Http/Controllers/DiaryController.php +15 -8
backend/app/Models/Customer.php +2 -1
frontend/src/pages/customers/forms/create.js +21 -1
frontend/src/pages/customers/forms/edit.js +22 -11
frontend/src/pages/diary/discount_list.vue +34 -1
frontend/src/pages/diary/index.vue +13 -0
frontend/src/stores/diary.js +10 -0
d443cd13 lilo.herbi 2024-04-25 job bug fixes
backend/app/Http/Controllers/CustomerController.php +2 -0
backend/app/Http/Controllers/ProcessController.php +6 -1
backend/app/Models/Customer.php +1 -1
frontend/src/pages/process/components/jobs_list/index.vue +114 -82
frontend/src/pages/sales/components/sales-customers.vue +1 -1
45ee8a9c lilo.herbi 2024-04-24 change statuses of jobs and process_services
backend/app/Http/Controllers/JobController.php +41 -6
backend/routes/api.php +2 -0
frontend/src/pages/process/components/jobs_list/index.vue +161 -25
frontend/src/pages/process/components/process_activities/index.vue +5 -5
frontend/src/pages/process/components/step_disputes.vue +1 -0
frontend/src/stores/job.js +6 -3
af6e7ecf lilo.herbi 2024-04-22 Bug fixes
backend/app/Http/Controllers/ProcessController.php +18 -3
backend/routes/api.php +1 -2
frontend/src/pages/process/components/process_activities/index.vue +36 -4
frontend/src/pages/process/components/product_list/index.vue +2 -1
frontend/src/stores/job.js +5 -3
d1b18d8e lilo.herbi 2024-04-19 Print warranties in process
backend/app/Http/Controllers/DocumentController.php +26 -0
backend/app/Http/Controllers/ProcessController.php +19 -4
backend/app/Http/Controllers/ProductController.php +4 -2
backend/app/Models/Product.php +2 -1
backend/routes/api.php +3 -0
frontend/src/pages/process/components/process_print/receipt_modal.vue +1 -0
frontend/src/pages/process/components/process_warranty/index.vue +34 -0
frontend/src/pages/process/components/process_warranty/process_print_warranty.vue +118 -0
frontend/src/pages/process/components/product_list/index.vue +16 -4
frontend/src/pages/process/components/step_disputes.vue +5 -3
frontend/src/pages/process_new/components/document-total.vue +11 -0
frontend/src/pages/processes/components/print-template.vue +2 -27
frontend/src/pages/processes/components/step-content.vue +14 -1
frontend/src/pages/products/forms/product form/create.js +23 -0
frontend/src/pages/products/forms/product form/edit.js +25 -8
frontend/src/pages/products/index.vue +3 -3
frontend/src/stores/print.js +4 -2
frontend/src/stores/process.js +22 -1
f2824373 lilo.herbi 2024-04-18 fixes
frontend/src/pages/main_search/index.vue +2 -2
frontend/src/pages/stock/index.vue +2 -2
2ab6203c lilo.herbi 2024-04-18 Production push
fd05b4a8 lilo.herbi 2024-04-17 Product details, diary list
backend/app/Http/Controllers/ProductController.php +35 -11
backend/routes/api.php +3 -1
frontend/src/pages/products/components/product-diary-tab.vue +105 -0
frontend/src/pages/products/components/product-process-tab.vue +105 -0
frontend/src/pages/products/index.vue +14 -8
frontend/src/services/Product.js +16 -1
e30a9590 lilo.herbi 2024-04-15 Single product diary and process stock
backend/app/Http/Controllers/ProductController.php +10 -12
backend/app/Http/Controllers/StockController.php +8 -4
frontend/src/pages/products/components/product-stock.vue +61 -11
frontend/src/pages/products/index.vue +9 -1
2ad1314b lilo.herbi 2024-04-12 Group change modal
backend/app/Http/Controllers/DiaryController.php +1 -1
backend/app/Http/Controllers/DocumentController.php +2 -3
backend/app/Http/Controllers/InvoiceController.php +4 -4
backend/app/Http/Controllers/MainSearchController.php +3 -3
backend/app/Http/Controllers/ProcessController.php +4 -4
backend/app/Http/Controllers/ProcessController.php.backup +0 -1326
backend/app/Http/Controllers/ProcessController.php.daniel +0 -557
backend/app/Http/Controllers/ProcessController_24jan.php +0 -2729
backend/app/Http/Controllers/ProductController.php +12 -6
backend/app/Models/Product.php +0 -1
backend/routes/api.php +3 -0
frontend/src/components/exclusive_dropdown.vue +1 -1
frontend/src/main.js +0 -2
frontend/src/pages/process/components/product_list/product_accessories.vue +1 -1
frontend/src/pages/process/components/search/search_result.vue +2 -2
frontend/src/pages/products/components/group_change_modal.vue +71 -0
frontend/src/pages/products/index.vue +47 -17
frontend/src/services/Product.js +1 -1
frontend/src/stores/process.js +3 -3
76106344 Daniel Taga 2024-04-12 comment in products controller for logs logic
backend/app/Http/Controllers/ProductController.php +1 -1
bdf688c4 Daniel Taga 2024-04-12 default values, etc
backend/app/Http/Controllers/ProductController.php +39 -20
frontend/src/components/Dable.vue +147 -66
frontend/src/main.js +7 -5
frontend/src/pages/products/index.vue +15 -24
714182ef lilo.herbi 2024-04-09 Origjina e produktit - DB, join origin name - hiden_cloumns localstorage
backend/app/Http/Controllers/ProductController.php +7 -0
backend/app/Models/Product.php +2 -1
backend/app/Repositories/ProductRepository.php +6 -9
backend/routes/api.php +1 -0
frontend/src/components/grid_col_manage.vue +7 -1
frontend/src/layout/NavBar.vue +1 -0
frontend/src/pages/products/forms/product form/create.js +9 -1
frontend/src/pages/products/forms/product form/edit.js +10 -0
frontend/src/pages/products/index.vue +48 -4
frontend/src/services/Product.js +12 -0
75f59f7b Daniel Taga 2024-04-09 added other fields to product table
backend/app/Repositories/ProductRepository.php +6 -1
frontend/src/components/Dable.vue +46 -23
frontend/src/pages/products/forms/product form/edit.js +352 -352
frontend/src/pages/products/index.vue +79 -8
26a9dc96 Daniel Taga 2024-04-08 edit columndefs fields in products list
backend/app/Http/Controllers/ProductController.php +25 -5
backend/routes/api.php +14 -13
frontend/src/components/Dable.vue +246 -172
frontend/src/pages/products/index.vue +59 -32
1dcb1b60 Daniel Taga 2024-04-08 Fixes in products list query
backend/app/Repositories/ProductRepository.php +2 -2
b72fe299 lilo.herbi 2024-04-06 Product table columns fields
frontend/src/pages/products/index.vue +93 -1
8e2fc39c Daniel Taga 2024-04-06 fixed filter column with select, and structure
frontend/src/components/Dable.vue +79 -42
frontend/src/pages/products/index.vue +4 -1
856dd196 lilo.herbi 2024-04-05 Main search bug fixes
backend/app/Http/Controllers/DiaryController.php +4 -3
backend/app/Http/Controllers/MainSearchController.php +11 -9
frontend/src/pages/diary/index.vue +1 -1
frontend/src/pages/main_search/index.vue +233 -116
frontend/src/pages/process/components/step_disputes.vue +4 -0
frontend/src/stores/diary.js +2 -0
frontend/src/stores/main_search.js +16 -27
405089ad Daniel Taga 2024-04-05 edit mode in products
frontend/src/components/Dable.vue +87 -12
frontend/src/pages/products/index.vue +1 -0
48ecbc21 lilo.herbi 2024-04-04 Main search product cart with multiple products and warehouses
backend/app/Http/Controllers/DiaryController.php +6 -3
backend/app/Http/Controllers/MainSearchController.php +30 -4
backend/routes/api.php +1 -1
frontend/src/pages/main_search/index.vue +48 -24
frontend/src/stores/main_search.js +58 -4
3bcfa91c lilo.herbi 2024-04-03 Main search, add product from multiple origins (frontend)
backend/app/Http/Controllers/MainSearchController.php +15 -9
frontend/src/pages/main_search/index.vue +123 -23
frontend/src/stores/main_search.js +18 -1
aa090fb8 lilo.herbi 2024-04-02 Required ID in process if amount exeeds limit, bug fixes
backend/app/Http/Controllers/DiaryController.php +2 -2
backend/app/Http/Controllers/ProcessController.php +18 -3
backend/app/Http/Controllers/ProductController.php +13 -2
backend/app/Models/Product.php +0 -1
backend/app/Repositories/ProductRepository.php +0 -7
backend/routes/api.php +3 -0
frontend/src/components/Dable.vue +0 -4
frontend/src/pages/diary/index.vue +7 -4
frontend/src/pages/process/components/step_disputes.vue +62 -29
frontend/src/pages/products/forms/product form/create.js +37 -26
frontend/src/pages/products/forms/product form/edit.js +4 -23
frontend/src/stores/process.js +13 -1
908a128b lilo.herbi 2024-03-28 Product form - add new fields
backend/app/Http/Controllers/AttributeController.php +10 -2
backend/app/Http/Controllers/GeneralController.php +0 -13
backend/app/Http/Controllers/MainSearchController.php +9 -6
backend/app/Http/Controllers/ProductController.php +30 -2
backend/app/Models/Attribute.php +1 -1
backend/app/Models/Product.php +1 -1
backend/app/Repositories/ProductRepository.php +19 -0
backend/routes/api.php +10 -8
frontend/src/components/Dable.vue +12 -2
frontend/src/pages/attributes/forms/create.js +25 -8
frontend/src/pages/attributes/forms/edit.js +29 -9
frontend/src/pages/company/index.vue +15 -37
frontend/src/pages/products/forms/product form/create.js +34 -9
frontend/src/pages/products/forms/product form/edit.js +79 -18
frontend/src/pages/products/index.vue +1 -1
frontend/src/services/Configuration.js +1 -8
23e759f4 lilo.herbi 2024-03-27 Product fields - packaging, has_airbag, in_web
backend/app/Http/Controllers/ProductController.php +6 -0
backend/app/Models/Product.php +3 -0
frontend/src/pages/products/forms/product form/create.js +14 -0
frontend/src/pages/products/forms/product form/edit.js +29 -0
842e03d6 lilo.herbi 2024-03-27 Product form fields - Known name, barcode, origin of product, product_manager, kategori furnitori, energy_efficiency
backend/app/Http/Controllers/GeneralController.php +17 -2
backend/app/Http/Controllers/MainSearchController.php +3 -2
backend/app/Http/Controllers/ProductController.php +25 -21
backend/app/Models/Product.php +8 -1
backend/routes/api.php +6 -1
frontend/src/pages/company/index.vue +39 -3
frontend/src/pages/diary/index.vue +9 -9
frontend/src/pages/main_search/index.vue +7 -3
frontend/src/pages/products/forms/product form/create.js +83 -0
frontend/src/pages/products/forms/product form/edit.js +175 -87
frontend/src/services/Configuration.js +17 -0
frontend/src/services/Product.js +11 -0
4d6f07f1 lilo.herbi 2024-03-25 Diary add product like main search
backend/app/Http/Controllers/DiaryController.php +0 -1
backend/app/Http/Controllers/MainSearchController.php +29 -26
frontend/src/pages/diary/index.vue +28 -6
frontend/src/pages/main_search/index.vue +42 -12
frontend/src/stores/diary.js +2 -1
14044569 lilo.herbi 2024-03-21 Menaxhimi i kohes modal, Mbyllja refuzimi i ditarit.
backend/app/Http/Controllers/DiaryController.php +22 -8
frontend/src/pages/diary/index.vue +271 -208
frontend/src/pages/diary/open.vue +22 -12
frontend/src/stores/diary.js +32 -5
88ac4cc0 lilo.herbi 2024-03-20 Cancel postpone diary
backend/app/Http/Controllers/ProcessController.php +1 -1
frontend/src/pages/diary/index.vue +5 -4
frontend/src/pages/diary/open.vue +24 -0
4a81b245 lilo.herbi 2024-03-20 Postpone diary - bug fixes
backend/app/Http/Controllers/DiaryController.php +12 -16
frontend/src/pages/diary/index.vue +43 -36
frontend/src/stores/diary.js +17 -4
ebd66b48 lilo.herbi 2024-03-18 Delete diary item, Postpone create, edit, reject
backend/app/Http/Controllers/DiaryController.php +164 -45
backend/app/Http/Controllers/MainSearchController.php +1 -1
backend/app/Http/Controllers/UserTypePermissionsController.php +2 -0
backend/routes/api.php +3 -0
frontend/src/pages/diary/index.vue +181 -7
frontend/src/pages/diary/open.vue +30 -13
frontend/src/stores/diary.js +50 -1
bd6c016b Daniel Taga 2024-03-17 customer overview data
backend/app/Http/Controllers/MainSearchController.php +52 -4
73e7dc00 lilo.herbi 2024-03-15 General bug fixes
backend/app/Http/Controllers/DiaryController.php +12 -6
backend/app/Http/Controllers/MainSearchController.php +15 -0
backend/routes/api.php +1 -0
frontend/src/pages/diary/index.vue +4 -0
frontend/src/pages/main_search/components/customer_search_tab.vue +29 -16
frontend/src/pages/main_search/index.vue +2 -2
frontend/src/pages/process_new/components/reject_process.vue +1 -1
frontend/src/pages/process_new/index.vue +5 -5
frontend/src/stores/main_search.js +17 -1
e7a51c0f lilo.herbi 2024-03-14 Main search - customer search result structure
backend/app/Http/Controllers/MainSearchController.php +12 -0
backend/app/Http/Controllers/ProcessController.php +1 -1
backend/routes/api.php +1 -0
frontend/src/pages/main_search/components/customer_search_tab.vue +207 -0
frontend/src/pages/main_search/index.vue +18 -2
frontend/src/stores/main_search.js +37 -1
f1cf6a65 lilo.herbi 2024-03-12 Reject process. save, process design, list design
backend/app/Http/Controllers/ProcessController.php +23 -2
backend/routes/api.php +2 -0
frontend/src/pages/process/components/documents_list/index.vue +7 -2
frontend/src/pages/process_new/components/reject_process.vue +78 -2
frontend/src/pages/process_new/index.vue +21 -5
dd2fbfac Daniel Taga 2024-03-12 connection to erp and document type in process step configuration
backend/app/Http/Controllers/ProcessController.php +78 -3
backend/routes/api.php +11 -8
frontend/src/pages/processes/components/step-content.vue +37 -1
frontend/src/pages/processes/index.vue +11 -4
346a59b7 lilo.herbi 2024-03-12 Diart countdown - bug fix
backend/app/Http/Controllers/GeneralController.php +11 -2
backend/routes/api.php +2 -0
frontend/src/components/Menu.vue +5 -3
frontend/src/pages/company/index.vue +34 -2
frontend/src/pages/process/components/step_disputes.vue +2 -0
frontend/src/pages/process_new/components/reject_process.vue +5 -0
frontend/src/services/Configuration.js +8 -1
0571278e Daniel Taga 2024-03-12 showing diary code, made code 3 chars
backend/app/Http/Controllers/DiaryController.php +1 -1
frontend/src/pages/diary/index.vue +1 -0
459517ff Daniel Taga 2024-03-12 add number to diary
backend/app/Http/Controllers/DiaryController.php +27 -7
e9b1bfdb lilo.herbi 2024-03-12 Process - Create new user, select newly created user
frontend/src/pages/customers/forms/create.js +32 -30
frontend/src/pages/process_new/components/party-component.vue +65 -41
frontend/src/stores/process.js +25 -8
c837293c lilo.herbi 2024-03-11 Diary amount bug fix
backend/app/Http/Controllers/DiaryController.php +14 -4
frontend/src/pages/diary/index.vue +21 -14
frontend/src/pages/main_search/index.vue +6 -5
frontend/src/stores/diary.js +24 -3