feature/endpoint-list-by-product-presentation-ids#92
Merged
andres15alvarez merged 6 commits intoMay 6, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces support for specifying payment methods in orders, enhances the payment confirmation process by linking it to orders, and adds a new filter for product queries by ID. Below is a summary of the most important changes grouped by theme:
Payment Method Support in Orders:
paymentMethodproperty to theCreateOrderDTOandResponseOrderDTOclasses, with validation and API documentation annotations (src/order/dto/order.ts). [1] [2]Orderentity to include apaymentMethodcolumn with an enum type and a default value ofCASH(src/order/entities/order.entity.ts).payment_methodcolumn to theordertable and define its enum type (src/order/migrations/1746555455789-add-payment-method-order-migration.ts).OrderServiceto handle thepaymentMethodfield when creating orders (src/order/order.service.ts).Payment Confirmation Enhancements:
PaymentConfirmationentity to theOrderentity via a foreign key relationship and updated its creation logic to associate it with an order (src/payments/entities/payment-confirmation.entity.ts,src/payments/services/payment-confirmation.service.ts). [1] [2]CreatePaymentConfirmationDTOto include anorderIdfield for linking payment confirmations to orders (src/payments/dto/payment-confirmation.dto.ts).Product Query Enhancements:
idfilter to theProductQueryDTOclass to allow querying products by their IDs, and updated theProductsControllerandProductsServiceto support this new filter (src/products/dto/product.dto.ts,src/products/products.controller.ts,src/products/products.service.ts). [1] [2] [3]