Skip to content

Commit

Permalink
release v137
Browse files Browse the repository at this point in the history
  • Loading branch information
admin-forus committed Nov 26, 2024
1 parent 428f574 commit 0c3d6c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend
Submodule backend updated 48 files
+15 −17 app/Http/Controllers/Api/FileController.php
+1 −1 app/Http/Controllers/Api/Platform/Organizations/ProductReservationsController.php
+10 −1 app/Http/Controllers/Api/Platform/Organizations/Sponsor/PayoutsController.php
+13 −8 app/Http/Controllers/Api/Platform/Organizations/Sponsor/ProductsController.php
+10 −2 app/Http/Controllers/Api/Platform/Organizations/Sponsor/TransactionsController.php
+29 −18 app/Http/Controllers/Api/Platform/Organizations/Sponsor/VouchersController.php
+15 −3 app/Http/Controllers/Api/Platform/PrevalidationController.php
+1 −0 app/Http/Requests/Api/Platform/Organizations/Sponsor/Payouts/StorePayoutTransactionBatchRequest.php
+1 −0 app/Http/Requests/Api/Platform/Organizations/Sponsor/Products/IndexProductsRequest.php
+1 −0 app/Http/Requests/Api/Platform/Organizations/Sponsor/Transactions/StoreTransactionBatchRequest.php
+2 −1 app/Http/Requests/Api/Platform/Organizations/Vouchers/StoreBatchVoucherRequest.php
+1 −0 app/Http/Requests/Api/Platform/Prevalidations/UploadPrevalidationsRequest.php
+16 −0 app/Http/Requests/BaseFormRequest.php
+9 −9 app/Http/Resources/ReimbursementResource.php
+58 −23 app/Http/Resources/Sponsor/SponsorProductResource.php
+1 −1 app/Http/Resources/VoucherResource.php
+79 −1 app/Models/Employee.php
+53 −55 app/Models/Fund.php
+111 −106 app/Models/FundConfig.php
+23 −6 app/Models/Product.php
+83 −74 app/Models/ProductReservation.php
+30 −27 app/Models/Reimbursement.php
+2 −2 app/Models/ReservationExtraPayment.php
+0 −34 app/Models/Traits/UpdatesModel.php
+89 −58 app/Models/Voucher.php
+4 −0 app/Policies/FilePolicy.php
+1 −1 app/Policies/ProductPolicy.php
+1 −1 app/Policies/ProductReservationPolicy.php
+18 −0 app/Scopes/Builders/ProductQuery.php
+45 −36 app/Scopes/Builders/ProductReservationQuery.php
+19 −1 app/Scopes/Builders/ReimbursementQuery.php
+10 −1 app/Searches/ProductSearch.php
+13 −5 app/Services/FileService/FileService.php
+2 −2 app/Services/FileService/Models/File.php
+1 −1 app/Services/Forus/TestData/TestData.php
+0 −3 app/Services/MediaService/Models/Media.php
+12 −11 app/helpers.php
+6 −6 composer.lock
+0 −1 config/forus/test_data/configs/default/config.php
+1 −0 config/forus/test_data/configs/default/organizations.php
+35 −0 database/migrations/2024_11_06_072241_add_reservation_and_reimbursement_days_offset_to_fund_configs_table.php
+28 −0 database/migrations/2024_11_08_101709_drop_expire_at_from_product_reservations_table.php
+23 −0 database/migrations/2024_11_21_091402_remove_outdated_product_event_logs.php
+12 −1 tests/Browser/ReimbursementTest.php
+88 −33 tests/Feature/ProductReservationTest.php
+74 −34 tests/Feature/ReimbursementTest.php
+54 −0 tests/Traits/MakesTestVouchers.php
+8 −2 tests/Unit/FundRequestRuleTest.php
2 changes: 1 addition & 1 deletion forus-frontend-react

0 comments on commit 0c3d6c8

Please sign in to comment.