django-barobill 0.1.2__tar.gz → 0.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {django_barobill-0.1.2/django_barobill.egg-info → django_barobill-0.1.3}/PKG-INFO +1 -1
- django_barobill-0.1.3/django_barobill/migrations/0002_partner_unique_partner_brn_userid.py +17 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/models.py +3 -2
- {django_barobill-0.1.2 → django_barobill-0.1.3/django_barobill.egg-info}/PKG-INFO +1 -1
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill.egg-info/SOURCES.txt +1 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/setup.py +1 -1
- {django_barobill-0.1.2 → django_barobill-0.1.3}/LICENSE +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/MANIFEST.in +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/README.md +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/__init__.py +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/admin.py +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/apps.py +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/choices.py +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/errors.py +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/migrations/0001_initial.py +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/migrations/__init__.py +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/migrations/__pycache__/0001_initial.cpython-312.pyc +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/migrations/__pycache__/__init__.cpython-312.pyc +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/parsers.py +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/tests.py +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/utils.py +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill/views.py +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill.egg-info/dependency_links.txt +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill.egg-info/requires.txt +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill.egg-info/top_level.txt +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/setup.cfg +0 -0
- {django_barobill-0.1.2 → django_barobill-0.1.3}/tests/test_app.py +0 -0
@@ -0,0 +1,17 @@
|
|
1
|
+
# Generated by Django 5.1.5 on 2025-07-21 04:42
|
2
|
+
|
3
|
+
from django.db import migrations, models
|
4
|
+
|
5
|
+
|
6
|
+
class Migration(migrations.Migration):
|
7
|
+
|
8
|
+
dependencies = [
|
9
|
+
('django_barobill', '0001_initial'),
|
10
|
+
]
|
11
|
+
|
12
|
+
operations = [
|
13
|
+
migrations.AddConstraint(
|
14
|
+
model_name='partner',
|
15
|
+
constraint=models.UniqueConstraint(fields=('brn', 'userid', 'dev'), name='unique_partner_brn_userid'),
|
16
|
+
),
|
17
|
+
]
|
@@ -3,7 +3,7 @@ from typing import Optional
|
|
3
3
|
|
4
4
|
from django.db import models
|
5
5
|
from django.utils import timezone
|
6
|
-
from zeep import Client
|
6
|
+
from zeep import Client, Transport
|
7
7
|
|
8
8
|
from django_barobill.choices import BankAccountCollectCycle, BankAccountBank, BankAccountAccountType, BankAccountTransactionDirection
|
9
9
|
from django_barobill.errors import BarobillAPIError, BarobillError
|
@@ -20,7 +20,8 @@ class BankHelper:
|
|
20
20
|
endpoint = "https://testws.baroservice.com/BANKACCOUNT.asmx?wsdl"
|
21
21
|
else:
|
22
22
|
endpoint = "https://ws.baroservice.com/BANKACCOUNT.asmx?wsdl"
|
23
|
-
|
23
|
+
transport = Transport(timeout=60)
|
24
|
+
return Client(endpoint, transport=transport)
|
24
25
|
|
25
26
|
def get_bank_account_management_url(self):
|
26
27
|
return self.client.service.GetBankAccountManagementURL(
|
@@ -19,6 +19,7 @@ django_barobill.egg-info/dependency_links.txt
|
|
19
19
|
django_barobill.egg-info/requires.txt
|
20
20
|
django_barobill.egg-info/top_level.txt
|
21
21
|
django_barobill/migrations/0001_initial.py
|
22
|
+
django_barobill/migrations/0002_partner_unique_partner_brn_userid.py
|
22
23
|
django_barobill/migrations/__init__.py
|
23
24
|
django_barobill/migrations/__pycache__/0001_initial.cpython-312.pyc
|
24
25
|
django_barobill/migrations/__pycache__/__init__.cpython-312.pyc
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
long_description=open("README.md").read()
|
3
3
|
setup(
|
4
4
|
name="django-barobill", # 패키지 이름 (PyPI에 등록될 이름)
|
5
|
-
version="0.1.
|
5
|
+
version="0.1.3", # 초기 버전
|
6
6
|
packages=find_packages(exclude=["tests*", "docs*"]), # 'django_barobill' 폴더 포함
|
7
7
|
include_package_data=True, # MANIFEST.in 파일에 포함된 파일도 추가
|
8
8
|
license="MIT License", # 라이선스
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{django_barobill-0.1.2 → django_barobill-0.1.3}/django_barobill.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|