SAP Business One - Python Service Layer Sales wrapper
This package provides a base wrapper for accessing the SAP service layer in Python for sales objects.
Installation
$ python -m pip install sbo-service-sales
Helpful Examples
def read_sales_order_by_po_and_shipto(sbo: service, po, shipto):
filter = f"(NumAtCard eq '{po}') and (ShipToCode eq '{shipto}')"
return read_sales_order_with_filter(sbo, filter)
def so_exists_by_cust_po(sbo: service, customer, po_number):
filter = f'(CardCode eq \'{customer}\') and (NumAtCard eq \'{po_number}\')'
response = read_sales_order_with_filter(sbo, filter)
return response['success']
Release files for sbo-service-sales 0.2.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| sbo_service_sales-0.2.1.tar.gz | 7.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| sbo_service_sales-0.2.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 10.7 kB
Release files / sbo_service_sales-0.2.1.tar.gz
| Download URL | sbo_service_sales-0.2.1.tar.gz |
|---|---|
| Size | 7.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8631deee90590fbcda3075a3c764632388c900f9e005ce0babba5298be612212
|
|
BLAKE2b-256 checksum How to use checksums |
119da551424e22b7c088eccb9f9aebee1160a86120e776409020309271ecc424
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.14.4
|
Release files / sbo_service_sales-0.2.1-py3-none-any.whl
| Download URL | sbo_service_sales-0.2.1-py3-none-any.whl |
|---|---|
| Size | 2.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
f451333852d10139184dee4d7fb5e8e788d45f1258d128a45ea613bb2caf6862
|
|
BLAKE2b-256 checksum How to use checksums |
5b9b93fc01df020aa5890847973546a490f24fc4450159df85551360b55662b8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.14.4
|