Integration Sap
Project description
django-sap
Starting
These instructions will allow you to install the library in your python project.
Current features
- Send invoice reserve.
- Send incoming payment.
Pre-requisitos
- Python >= 3.7
- Django >= 3
- requests >= 2
Installation
- To get the latest stable release from PyPi:
pip install django-sap
or
- From a build
git clone https://gitlab.com/linets/ecommerce/oms/integrations/oms-sap
cd {{project}}
python setup.py sdist
and, install in your project django
pip install {{path}}/oms-sap/dist/{{tar.gz file}}
- Settings in django project
DJANGO_SAP = {
'SAP': {
'BASE_URL': '<SAP_BASE_URL>',
'USERNAME': '<SAP_USERNAME>',
'PASSWORD': '<SAP_PASSWORD>',
'COMPANY_DB': '<SAP_COMPANY_DB>',
'SERIE': '<SAP_SERIE>',
'CARD_CODE': '<SAP_CARD_CODE>',
'WAREHOUSE_CODE': '<SAP_WAREHOUSE_CODE>',
'TAX_CODE': '<SAP_TAX_CODE>',
'COSTING_CODE': '<SAP_COSTING_CODE>',
'COSTING_CODE2': '<SAP_COSTING_CODE2>',
'COSTING_CODE3': '<SAP_COSTING_CODE3>',
'INDICATOR': '<SAP_INDICATOR>',
'RESERVE_INVOICE': '<SAP_RESERVE_INVOICE>',
'U_TIPO_PED_WMS': '<SAP_U_TIPO_PED_WMS>',
}
}
Usage
- Send invoice reserve:
from sap.handler import SapHandler
handler = SapHandler()
default_data = handler.default_payload_invoice_reserve(instance)
response = handler.send_invoice_reserve(default_data)
- Send incoming payment:
from sap.handler import SapHandler
handler = SapHandler()
default_data = handler.default_payload_incoming_payment(instance)
response = handler.send_incoming_payment(default_data)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-sap-1.0.0.tar.gz
(5.8 kB
view details)
File details
Details for the file django-sap-1.0.0.tar.gz
.
File metadata
- Download URL: django-sap-1.0.0.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6bca8918bf0b2abe73458d7c2b5da39659e55af1a970a9cc34a11873f5c8e29e |
|
MD5 | af6de5121aaed8874a5bd79efd5a726f |
|
BLAKE2b-256 | 1c60b12474b11a4c2cfc5612414a79b00f18374eb18a71c10de1503eb85be2c3 |