Skip to content

Commit

Permalink
release v136
Browse files Browse the repository at this point in the history
  • Loading branch information
admin-forus committed Nov 14, 2024
1 parent 2d105c5 commit 428f574
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 67 files
+1 −1 .github/workflows/psalm.yml
+1 −1 .github/workflows/unit_and_feature_tests.yml
+33 −0 app/Console/Commands/Digests/SendSponsorProductsUpdateDigest.php
+5 −0 app/Console/Kernel.php
+87 −0 app/Digests/SponsorProductUpdatesDigest.php
+27 −0 app/Events/Products/ProductMonitoredFieldsUpdated.php
+6 −1 app/Exports/BIExporters/BIFundsDetailedExporter.php
+6 −1 app/Exports/BIExporters/BIFundsExporter.php
+27 −17 app/Exports/FundsExport.php
+4 −0 app/Exports/ProductReservationsExport.php
+1 −0 app/Exports/VoucherTransactionsProviderExport.php
+1 −0 app/Exports/VoucherTransactionsSponsorExport.php
+5 −9 app/Http/Controllers/Api/Platform/Organizations/Funds/FundProviders/ProductsController.php
+14 −14 app/Http/Controllers/Api/Platform/Organizations/FundsController.php
+1 −6 app/Http/Controllers/Api/Platform/Organizations/ProductsController.php
+62 −0 app/Http/Controllers/Api/Platform/Organizations/Sponsor/ProductsController.php
+12 −14 app/Http/Controllers/Api/Platform/Organizations/Sponsor/Providers/ProductsController.php
+4 −0 app/Http/Controllers/Api/Platform/Vouchers/TransactionsController.php
+1 −0 app/Http/Requests/Api/Platform/Organizations/Funds/FinanceOverviewRequest.php
+1 −0 app/Http/Requests/Api/Platform/Organizations/Funds/IndexFundRequest.php
+55 −4 app/Http/Requests/Api/Platform/Organizations/Products/BaseProductRequest.php
+2 −42 app/Http/Requests/Api/Platform/Organizations/Products/StoreProductRequest.php
+2 −31 app/Http/Requests/Api/Platform/Organizations/Products/UpdateProductRequest.php
+28 −0 app/Http/Requests/Api/Platform/Organizations/Sponsor/Products/IndexProductsRequest.php
+8 −0 app/Http/Requests/Api/Platform/Vouchers/Transactions/StoreVoucherTransactionRequest.php
+5 −92 app/Http/Resources/FundResource.php
+1 −0 app/Http/Resources/OrganizationResource.php
+1 −1 app/Http/Resources/OrganizationWithPrivateResource.php
+3 −0 app/Http/Resources/Provider/ProviderProductResource.php
+2 −0 app/Http/Resources/Provider/ProviderVoucherTransactionEmployeeResource.php
+2 −0 app/Http/Resources/Provider/ProviderVoucherTransactionResource.php
+72 −13 app/Http/Resources/Sponsor/SponsorProductResource.php
+2 −0 app/Http/Resources/Sponsor/SponsorVoucherTransactionResource.php
+2 −0 app/Http/Resources/Sponsor/VoucherTransactionPayoutResource.php
+8 −6 app/Http/Resources/Tiny/FundTinyResource.php
+5 −0 app/Http/Resources/VoucherTransactionResource.php
+21 −3 app/Listeners/ProductSubscriber.php
+15 −0 app/Mail/Digest/DigestSponsorProductUpdatesMail.php
+2 −2 app/Mail/User/EmployeeAddedMail.php
+5 −111 app/Models/Fund.php
+69 −66 app/Models/Organization.php
+145 −65 app/Models/Product.php
+6 −2 app/Models/VoucherTransaction.php
+33 −0 app/Policies/ProductPolicy.php
+45 −0 app/Rules/EanCodeRule.php
+0 −1 app/Scopes/Builders/FundProviderProductQuery.php
+10 −8 app/Scopes/Builders/FundQuery.php
+19 −0 app/Scopes/Builders/ProductQuery.php
+0 −28 app/Scopes/Builders/VoucherQuery.php
+11 −0 app/Scopes/Builders/VoucherTransactionQuery.php
+125 −0 app/Searches/ProductSearch.php
+4 −1 app/Services/Forus/Notification/Repositories/NotificationRepo.php
+284 −0 app/Statistics/Funds/FinancialOverviewStatistic.php
+216 −0 app/Statistics/Funds/FinancialOverviewStatisticQueries.php
+0 −4 app/Statistics/Funds/FinancialStatistic.php
+0 −4 app/Statistics/Funds/FinancialStatisticQueries.php
+1 −1 composer.json
+320 −318 composer.lock
+1 −0 config/forus/transactions.php
+28 −0 database/migrations/2024_10_10_084006_add_amount_extra_cash_to_voucher_transactions.php
+29 −0 database/migrations/2024_10_31_183326_add_ean_and_sku_columns_to_products.php
+29 −0 database/migrations/2024_11_14_140032_add_allow_product_updates_to_organizations_table.php
+15 −0 resources/lang/nl/digests/sponsor_product_updates.php
+2 −2 resources/lang/nl/digests/validator.php
+4 −0 resources/lang/nl/validation.php
+5 −0 routes/api-platform.php
+8 −4 tests/Browser/EmployeeTest.php
2 changes: 1 addition & 1 deletion forus-frontend-react

0 comments on commit 428f574

Please sign in to comment.