Download the PHP package unarii/sylius-zasilkovna-plugin without Composer
On this page you can find all versions of the php package unarii/sylius-zasilkovna-plugin. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download unarii/sylius-zasilkovna-plugin
More information about unarii/sylius-zasilkovna-plugin
Files in unarii/sylius-zasilkovna-plugin
Package sylius-zasilkovna-plugin
Short Description Zasilkovna plugin for Sylius
License MIT
Informations about the package sylius-zasilkovna-plugin
Zásilkovna Plugin
Features
- Enables sending shipments via [cz] [pl] [sk] [hu] [ro] to Zasilkovna branch or to the customer's address via Zasilkovna service.
- The user can choose the Zásilkovna branch from the map during checkout in the Shipment step.
- See Zásilkovna branch in final checkout step and also in the admin panel.
- Export CSV with the Zásilkovna shipments (both to Zasilkovna branch or customer's address) and import it easily into Zásilkovna's system.
Installation
- Run
$ composer require 3brs/sylius-zasilkovna-plugin
. -
Add plugin classes to your
config/bundles.php
: -
Add resource to
config/packeges/_sylius.yaml
-
Add routing to
config/_routes.yaml
-
Your Entity
Shipment
has to implement\ThreeBRS\SyliusZasilkovnaPlugin\Model\ZasilkovnaShipmentInterface
. You can use the trait\ThreeBRS\SyliusZasilkovnaPlugin\Model\ZasilkovnaShipmentTrait
. -
Your Entity
ShippingMethod
has to implement\ThreeBRS\SyliusZasilkovnaPlugin\Model\ZasilkovnaShipmentInterface
. You can use the trait\ThreeBRS\SyliusZasilkovnaPlugin\Model\ZasilkovnaShipmentTrait
. -
Include
@ThreeBRSSyliusZasilkovnaPlugin/Admin/ShippingMethod/:zasilkovnaForm.html.twig
into@SyliusAdmin/ShippingMethod/_form.html.twig
. -
Include
@ThreeBRSSyliusZasilkovnaPlugin/Shop/Checkout/SelectShipping/_zasilkovnaChoice.html.twig
into@SyliusShop/Checkout/SelectShipping/_choice.html.twig
. -
Replace
{% include '@SyliusShop/Common/_address.html.twig' with {'address': order.shippingAddress} %}
with{{ include('@ThreeBRSSyliusZasilkovnaPlugin/Shop/Common/Order/_addresses.html.twig') }}
in@SyliusShop/Common/Order/_addresses.html.twig
-
Replace
{% include '@SyliusAdmin/Common/_address.html.twig' with {'address': order.shippingAddress} %}
with{{ include('@ThreeBRSSyliusZasilkovnaPlugin/Admin/Common/Order/_addresses.html.twig') }}
in@SyliusAdmin/Order/Show/_addresses.html.twig
-
Override the template in
@ThreeBRSSyliusShipmentExportPlugin/_row.html.twig
- Create and run doctrine database migrations.
For the guide how to use your own entity see Sylius docs - Customizing Models
Usage
- For delivery to the Zasilkovna branch, create new shipping method in the admin panel, set
Zásilkovna api key
and leaveCarrier ID
empty. - For delivery to customer's address, create new shipping method in the admin panel, set the
Carrier ID
and leave theZasilkovna API key
empty. - If you need to filter the points in the map by country, use the
Show only pickup points from specific country in the map
. If you leave this blank, all points in all supported countries will be shown. -
Zásilkovna CSV export will be generated for shipping method which has the code 'zasilkovna', you can change this in parameters, it is an array (therefore can contain more codes, e.g. if you need to have different prices for different countries, you will need more shipping methods; it is okay to use always the same API key)
You should add to this array both methods for shipping to Zasilkovna branch and also to customer's address via Zasilkovna service.
- Packeta API documentation: https://docs.packetery.com/03-creating-packets/01-csv-import.html
- You can expand the list of countries by the parameter
Development
Usage
- Develop your plugin in
/src
- See
bin/
for useful commands
Testing
After your changes you must ensure that the tests are still passing.
License
This library is under the MIT license.
Credits
All versions of sylius-zasilkovna-plugin with dependencies
php Version ^7.3|^8.0
sylius/sylius Version 1.7.*|1.8.*|1.9.*|1.10.*
3brs/sylius-shipment-export-plugin Version 0.5.*