npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pz_package_test_pay_on_delivery

v1.0.1

Published

A library module for enabling "Pay On Delivery" payment module at order/payment step.

Downloads

1

Readme

pz_pay_on_delivery

A library module for enabling "Pay On Delivery" payment module at order/payment step.

It doesn't work in projects where the "Pay On Delivery" feature is not active.

Usage

1. Install the app

At project root, create a requirements.txt if it doesn't exist and add the following line to it;

-e git+https://[email protected]/akinonteam/pz_pay_on_delivery.git@000000#egg=pz_pay_on_delivery
# "000000" is the latest commit id or hash

Note: always make sure to use the latest commit id in the above example.
For more information about this syntax, check pip install docs.

Next, run the following command to install the package.

# in venv
pip install -r requirements.txt

2. Install the npm package

# in /templates
yarn add git+ssh://[email protected]:akinonteam/pz_pay_on_delivery.git#000000
# or
npm i git+ssh://[email protected]:akinonteam/pz_pay_on_delivery.git#000000
# "000000" is the latest commit id or hash

Make sure to use the same git commit id as in requirements.txt.

3. Add to the project

# omnife_base/settings.py:
INSTALLED_APPS.append('pz_pay_on_delivery')

4. Import template:

{# in templates/orders/payment-tab.html #}
{% from 'pz_pay_on_delivery/index.html' import PayOnDeliveryForm %}

{# example using scenario at tabs structure #}

{# should use where there are tab buttons #}
<button class="js-payment-tab" data-type="pay_on_delivery">Kapıda Ödeme</button>

{# should use where there are tab contents #}
<div class="js-payment-tab-content" data-type="pay_on_delivery">
  {{ PayOnDeliveryForm() }}
</div>

5. Import and initialize JS

// in templates/orders/checkout/paymentTab.js
import PayOnDeliveryOption from 'pz_pay_on_delivery';

class PaymentTab {
  paymentOptions = new Map([
    // other payment options ...
    [ 'pay_on_delivery', PayOnDeliveryOption ],
  ]);
  // ...
}

6. Import styles:

@import "~pz_pay_on_delivery/";

Customizing the Html (Jinja Macro)

{# Simple Using #}
{{ PayOnDeliveryForm() }}

{# Using w/ Custom Template #}
{% call PayOnDeliveryForm() %}
  {# ...custom html elements... #}
{% endcall %}

{# Simple w/ Passing Parameters (Default Parameters) #}
{{ PayOnDeliveryForm(
  formId='PayOnDeliveryForm',
  formClass=false,
  description=false,
  aggrementModal='#salesModal') }}

All of the following are optional parameters for the Jinja2 macro.

  • formId: (String)
  • formClass: (String)
  • description: (String)
  • aggrementModal: (String)

JS settings

Pass an object, which will be taken as destructured parameters, to customize things on the JS class.

// w/ Defaults
new PzPayOnDelivery({
  pk,
  formSelector = '#PayOnDeliveryForm',
  methodTemplateSelector = '#PayOnDeliveryMethodTemplate',
  methodItemInputSelector = '.js-pay-on-delivery-method',
  methodListSelector = '#PayOnDeliveryMethodList',
  agreementInputSelector = '.js-checkout-agreement-input',
  completeButtonSelector = '#PayOnDeliveryCompleteButton'
});
  • pk: (String, Required) Payment Option Primary Key
  • formSelector: (String)
  • methodTemplateSelector: (String)
  • methodItemInputSelector: (String)
  • methodListSelector: (String)
  • agreementInputSelector: (String)
  • completeButtonSelector: (String)