- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Magento custom shipping extension for generate tracking number
Hi..
I am working on magento 2 custom shipping extension that will generate PDF which contain Tracking number. I want to create this type of extension that is available for magento 1x
https://www.magentocommerce.com/magento-connect/c-o-d-shipping-booking.html
Please guide me workflow for doing this.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento custom shipping extension for generate tracking number
I am working on same TCS module. Have you completed this module?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento custom shipping extension for generate tracking number
To create a similar custom shipping extension for Magento 2, you will need to follow these steps:
- Create a custom module for your extension
- Define the module's configuration settings and options
- Create a template file for the PDF document that will include the tracking number
- Use the Magento API to fetch the tracking number from the shipment object
- Generate the PDF document using a PDF library such as TCPDF or FPDF
- Attach the PDF document to the shipment email that is sent to the customer
To get started, you can refer to Magento 2's official documentation on creating a custom module and accessing order and shipment data via the API. You can also take inspiration from the Magento 1x extension you provided to understand the workflow and features. Good luck with your project!