Skip to main content

Django Vtex Integration

Project description

django-vtex

Starting

These instructions will allow you to install the library in your python project.

Current features

  • Get tracking info.

Pre-requisitos

  • Python >= 3.7
  • Django >= 3
  • requests >= 2

Installation

  1. To get the latest stable release from PyPi:
pip install django-vtex

or

  1. From a build
git clone https://gitlab.com/linets/ecommerce/oms/integrations/django-vtex
cd {{project}}
python setup.py sdist

and, install in your project django

pip install {{path}}/django-vtex/dist/{{tar.gz file}}
  1. Settings in django project
DJANGO_VTEX = {
    'VTEX': {
        'BASE_URL': '<VTEX_BASE_URL>',
        'APP_KEY': '<VTEX_APP_KEY>',
        'APP_TOKEN': '<VTEX_APP_TOKEN>',
    }
}

Usage

  1. Get orders:
from vtex.handler import VtexHandler

handler = VtexHandler()
response = handler.get_orders(<offset>)
  1. Get order detail:
from vtex.handler import VtexHandler

handler = VtexHandler()
response = handler.get_order_detail(<identifier>)
  1. Create instance to be sent in create_invoice

    import json
    from collections import namedtuple
    
    dict_ = {
        'invoice_number': 'NFe-00001',
        'courier': '',
        'tracking_number': '',
        'tracking_url': '',
        'items': [
          {
              'id': '345117',
              'quantity': 1,
              'price': 9003
          }
        ],
        'total_value': 9508
    }
    
    instance = namedtuple('VtexInstance', dict_.keys())(*dict_.values())
    
  2. Create invoice:

from vtex.handler import VtexHandler

handler = VtexHandler()
response = handler.create_invoice(<identifier>, <instance>)
  1. Update order status:
from vtex.handler import VtexHandler

handler = VtexHandler()

response = handler.update_order_status(<identifier>, <status>)
  1. Update tracking status:
from vtex.handler import VtexHandler

handler = VtexHandler()

# events = [] default
# is_delivered = False default
response = handler.update_tracking_status(
    <identifier>, <wms_reference>, <events>, <is_delivered>)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-vtex-1.1.3.tar.gz (5.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page