thelia/dpd-predict-module

This package is abandoned and no longer maintained. The author suggests using the thelia/predict-module package instead.

Predict by DPD

Installs: 18

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 6

Forks: 5

Open Issues: 1

Type:thelia-module

2.1.0 2024-03-28 13:49 UTC

This package is auto-updated.

Last update: 2024-03-28 13:50:20 UTC


README

Predict by DPD module ~2.1.0 Works with Thelia >= 2.5.2
If you want to use it with Thelia <= 2.5.2 see Predict ~2.0.0

Installation

composer require thelia/predict-module ~2.1.0

Usage

Before using this module you first need to configure your DPD account number, and optionally your cellphone number and check if you have the Predict SMS option. Don't forget to assign the shipping zones to the Predict module and to configure your store's address, it's necessary in order to use this module.

The loops

The Predict module brings you three loops:

  • predict.check.rights

  • predict.notsend.loop

  • predict

Check if the Config folder and the prices.json file are readable and writable

{loop name="predict.check.rights.loop" type="predict.check.rights"}
    <div class="alert alert-danger">
        {$ERRMES} {$ERRFILE}
    </div>
{/loop}

{elseloop rel="predict.check.rights.loop"}
    <!-- No error, we can continue -->
{/elseloop}

Get every order which are paid and not sent and has Predict as delivery module

{loop name="get.predict.orders" type="predict.notsend.loop"}
    ...
{/loop}

Get the prices of a given area

{loop name="predict.prices" type="predict" area="1"}
    ...
{/loop}

Integration

This module uses the Hooks order-delivery.stylesheet and order-delivery.extra, the integration with the default template is already done.

If you want to custom the integration, you can see how to do that in the documentation