TRK-004: Embed QR code into invoice PDF - #60
Merged
Conversation
Test Coverage Report
|
* adding TrackingEvent entity * creating TrackingEventRepository * creating TrackingEvent entity,service,updating FreightOrderController and FreightOrderService * adding an arrayList of events on traking orderResponse,updating freightOrder class by adding an one to many association to TrakingEvent * test writting * creating test for trakingEvent in FreightOrderContollerTest and TrackingControllerTest * creating test for trakingEvent in FreightOrderContollerTest and TrackingControllerTest * creating test for trakingEvent in FreightOrderContollerTest and TrackingControllerTest * test bug fixing * test bug fixing * test bug fixing
…e' into feature/TRK-004-embede-QR-invoice # Conflicts: # src/test/java/com/shipping/freightops/controller/TrackingControllerTest.java
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.
Summary
Adds a QR code to the invoice PDF linking to the order tracking page.
Changes
• Updated InvoiceService to add a QR code in the bottom-right area
• QR value: {app.base-url}/api/v1/track/order/{orderId}
• Added label: Scan to track your shipment
• Reused BarcodeService from TRK-001
• Embedded QR as image bytes in the PDF
• Kept QR small to preserve layout
Checks
• Invoice PDF includes QR code
• QR encodes the correct tracking URL
• Existing invoice tests still pass
• QR does not overlap other content
• Code formatted
Closes #32