remodeling table models and migration to postgres

This commit is contained in:
2025-08-23 09:16:37 +02:00
parent fe2ccbe368
commit 648448ebdc
20 changed files with 166 additions and 401 deletions
+1
View File
@@ -2,3 +2,4 @@
**/.pytest_cache **/.pytest_cache
**/venv **/venv
**/.env **/.env
**/.github
+12
View File
@@ -7,5 +7,17 @@
"**/*.key", "**/*.key",
"**/*.pem" "**/*.pem"
] ]
},
"sqltools.connections": [
{
"previewLimit": 50,
"server": "localhost",
"port": 5432,
"askForPassword": true,
"driver": "PostgreSQL",
"database": "cmt_db",
"username": "admin",
"name": "CMT"
} }
]
} }
+4 -16
View File
@@ -16,9 +16,11 @@ Postgresql
```bash ```bash
# Installation - Arch # Installation - Arch
sudo pacman -Syu postgresql sudo pacman -Syu postgresql
sudo dnf install postgresql-server postgresql-contrib # fedora
# Initialising db cluster # Initialising db cluster
sudo -u postgres initdb -D /var/lib/postgres/data sudo -u postgres initdb -D /var/lib/postgres/data # Arch
sudo postgresql-setup --initdb # fedora
# enable + start service # enable + start service
sudo systemctl enable --now postgresql sudo systemctl enable --now postgresql
@@ -28,20 +30,6 @@ sudo -u postgres createuser -P appuser
# Creating db owned by this user # Creating db owned by this user
sudo -u postgres createdb -O appuser db_name sudo -u postgres createdb -O appuser db_name
# Test # Test user + db creation
psql "postgresql://appuser:secret@localhost:5432/appdb" psql "postgresql://appuser:secret@localhost:5432/appdb"
``` ```
### Testing
```
cd backend
pytest app/test.py
# Curl POST command
curl -X POST "http://localhost:8000/clients/" -H "Content-Type: application/json" -d '{"tin_number": 100752121, "names": "Pax au Telemanus", "phone_number": "0788475021"}'
# Trying updating client details
curl -X PATCH "http://localhost:8000/clients/1" -H "Content-Type: application/json" -d '{"names": "John Wick"}'
# Deletion
curl -X DELETE http://localhost:8000/clients/2
```
+2
View File
@@ -0,0 +1,2 @@
### LOGIC
- forms on the frontend
+28
View File
@@ -0,0 +1,28 @@
# CMT Backend
## Usage
### API
### Alembic
```bash
# updating changes to table models to the db
cd backend
alembic revision --autogenerate -m "Header message"
alembic upgrade head
# Forcing alembic DB is up-to-date without actually running the migration
alembic stamp head
```
### Testing
```
cd backend
pytest app/test.py
# Curl POST command
curl -X POST "http://localhost:8000/clients/" -H "Content-Type: application/json" -d '{"tin_number": 100752121, "names": "Pax au Telemanus", "phone_number": "0788475021"}'
# Trying updating client details
curl -X PATCH "http://localhost:8000/clients/1" -H "Content-Type: application/json" -d '{"names": "John Wick"}'
# Deletion
curl -X DELETE http://localhost:8000/clients/2
```
-12
View File
@@ -1,12 +0,0 @@
# CMT Backend
## Usage
### API
### Alembic
```bash
cd backend
alembic revision --autogenerate -m "Header message"
alembic upgrade head
# Making alembic DB is up-to-date without actually running the migration
alembic stamp head
```
+3 -108
View File
@@ -1,111 +1,7 @@
# A generic, single database configuration.
[alembic] [alembic]
# path to migration scripts.
# this is typically a path given in POSIX (e.g. forward slashes)
# format, relative to the token %(here)s which refers to the location of this
# ini file
script_location = app/alembic script_location = app/alembic
# The sqlalchemy.url is ignored; set in env.py via config.settings
# template used to generate migration file names; The default value is %%(rev)s_%%(slug)s
# Uncomment the line below if you want the files to be prepended with date and time
# see https://alembic.sqlalchemy.org/en/latest/tutorial.html#editing-the-ini-file
# for all available tokens
# file_template = %%(year)d_%%(month).2d_%%(day).2d_%%(hour).2d%%(minute).2d-%%(rev)s_%%(slug)s
# sys.path path, will be prepended to sys.path if present.
# defaults to the current working directory. for multiple paths, the path separator
# is defined by "path_separator" below.
prepend_sys_path = .
# timezone to use when rendering the date within the migration file
# as well as the filename.
# If specified, requires the python>=3.9 or backports.zoneinfo library and tzdata library.
# Any required deps can installed by adding `alembic[tz]` to the pip requirements
# string value is passed to ZoneInfo()
# leave blank for localtime
# timezone =
# max length of characters to apply to the "slug" field
# truncate_slug_length = 40
# set to 'true' to run the environment during
# the 'revision' command, regardless of autogenerate
# revision_environment = false
# set to 'true' to allow .pyc and .pyo files without
# a source .py file to be detected as revisions in the
# versions/ directory
# sourceless = false
# version location specification; This defaults
# to <script_location>/versions. When using multiple version
# directories, initial revisions must be specified with --version-path.
# The path separator used here should be the separator specified by "path_separator"
# below.
# version_locations = %(here)s/bar:%(here)s/bat:%(here)s/alembic/versions
# path_separator; This indicates what character is used to split lists of file
# paths, including version_locations and prepend_sys_path within configparser
# files such as alembic.ini.
# The default rendered in new alembic.ini files is "os", which uses os.pathsep
# to provide os-dependent path splitting.
#
# Note that in order to support legacy alembic.ini files, this default does NOT
# take place if path_separator is not present in alembic.ini. If this
# option is omitted entirely, fallback logic is as follows:
#
# 1. Parsing of the version_locations option falls back to using the legacy
# "version_path_separator" key, which if absent then falls back to the legacy
# behavior of splitting on spaces and/or commas.
# 2. Parsing of the prepend_sys_path option falls back to the legacy
# behavior of splitting on spaces, commas, or colons.
#
# Valid values for path_separator are:
#
# path_separator = :
# path_separator = ;
# path_separator = space
# path_separator = newline
#
# Use os.pathsep. Default configuration used for new projects.
path_separator = os
# set to 'true' to search source files recursively
# in each "version_locations" directory
# new in Alembic version 1.10
# recursive_version_locations = false
# the output encoding used when revision files
# are written from script.py.mako
# output_encoding = utf-8
# database URL. This is consumed by the user-maintained env.py script only.
# other means of configuring database URLs may be customized within the env.py
# file.
#sqlalchemy.url = driver://user:pass@localhost/dbname
[post_write_hooks]
# post_write_hooks defines scripts or Python functions that are run
# on newly generated revision scripts. See the documentation for further
# detail and examples
# format using "black" - use the console_scripts runner, against the "black" entrypoint
# hooks = black
# black.type = console_scripts
# black.entrypoint = black
# black.options = -l 79 REVISION_SCRIPT_FILENAME
# lint with attempts to fix using "ruff" - use the exec runner, execute a binary
# hooks = ruff
# ruff.type = exec
# ruff.executable = %(here)s/.venv/bin/ruff
# ruff.options = check --fix REVISION_SCRIPT_FILENAME
# Logging configuration. This is also consumed by the user-maintained
# env.py script only.
[loggers] [loggers]
keys = root,sqlalchemy,alembic keys = root,sqlalchemy,alembic
@@ -116,12 +12,12 @@ keys = console
keys = generic keys = generic
[logger_root] [logger_root]
level = WARNING level = WARN
handlers = console handlers = console
qualname = qualname =
[logger_sqlalchemy] [logger_sqlalchemy]
level = WARNING level = WARN
handlers = handlers =
qualname = sqlalchemy.engine qualname = sqlalchemy.engine
@@ -138,4 +34,3 @@ formatter = generic
[formatter_generic] [formatter_generic]
format = %(levelname)-5.5s [%(name)s] %(message)s format = %(levelname)-5.5s [%(name)s] %(message)s
datefmt = %H:%M:%S
+3 -7
View File
@@ -1,18 +1,16 @@
from logging.config import fileConfig from logging.config import fileConfig
from app.schemas.models import SQLModel
from sqlalchemy import engine_from_config from sqlalchemy import engine_from_config
from sqlalchemy import pool from sqlalchemy import pool
from alembic import context from alembic import context
import os from app.core.config import settings
from dotenv import load_dotenv
from sqlmodel import SQLModel
from app.schemas.models import Client, Supplier, Product, Payment, Credit
load_dotenv()
# this is the Alembic Config object, which provides # this is the Alembic Config object, which provides
# access to the values within the .ini file in use. # access to the values within the .ini file in use.
config = context.config config = context.config
config.set_main_option('sqlalchemy.url', str(settings.database_uri)) # type: ignore
# Interpret the config file for Python logging. # Interpret the config file for Python logging.
# This line sets up loggers basically. # This line sets up loggers basically.
@@ -24,7 +22,6 @@ if config.config_file_name is not None:
# from myapp import mymodel # from myapp import mymodel
# target_metadata = mymodel.Base.metadata # target_metadata = mymodel.Base.metadata
target_metadata = SQLModel.metadata target_metadata = SQLModel.metadata
url = os.getenv("DATABASE_URI")
# other values from the config, defined by the needs of env.py, # other values from the config, defined by the needs of env.py,
# can be acquired: # can be acquired:
@@ -66,7 +63,6 @@ def run_migrations_online() -> None:
connectable = engine_from_config( connectable = engine_from_config(
config.get_section(config.config_ini_section, {}), config.get_section(config.config_ini_section, {}),
prefix="sqlalchemy.", prefix="sqlalchemy.",
url=url,
poolclass=pool.NullPool, poolclass=pool.NullPool,
) )
+1 -1
View File
@@ -13,7 +13,7 @@ ${imports if imports else ""}
# revision identifiers, used by Alembic. # revision identifiers, used by Alembic.
revision: str = ${repr(up_revision)} revision: str = ${repr(up_revision)}
down_revision: Union[str, None] = ${repr(down_revision)} down_revision: Union[str, Sequence[str], None] = ${repr(down_revision)}
branch_labels: Union[str, Sequence[str], None] = ${repr(branch_labels)} branch_labels: Union[str, Sequence[str], None] = ${repr(branch_labels)}
depends_on: Union[str, Sequence[str], None] = ${repr(depends_on)} depends_on: Union[str, Sequence[str], None] = ${repr(depends_on)}
@@ -1,8 +1,8 @@
"""Checking for updates """Initial tables
Revision ID: e8c4300db3cb Revision ID: 0aa4734ce008
Revises: bfb086d8d500 Revises:
Create Date: 2025-06-08 19:06:55.200977 Create Date: 2025-08-17 16:44:05.785214
""" """
from typing import Sequence, Union from typing import Sequence, Union
@@ -12,8 +12,8 @@ import sqlalchemy as sa
# revision identifiers, used by Alembic. # revision identifiers, used by Alembic.
revision: str = 'e8c4300db3cb' revision: str = '0aa4734ce008'
down_revision: Union[str, None] = 'bfb086d8d500' down_revision: Union[str, Sequence[str], None] = None
branch_labels: Union[str, Sequence[str], None] = None branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None depends_on: Union[str, Sequence[str], None] = None
@@ -1,32 +0,0 @@
"""Date_modified columns - add default=None
Revision ID: 174e0494276d
Revises: d89dba0432de
Create Date: 2025-06-15 20:42:30.850962
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = '174e0494276d'
down_revision: Union[str, None] = 'd89dba0432de'
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
"""Upgrade schema."""
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###
def downgrade() -> None:
"""Downgrade schema."""
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###
@@ -1,20 +1,19 @@
"""Rebuild """Initial tables
Revision ID: 5840d2b52dd8 Revision ID: 4966e016dd7c
Revises: Revises: 0aa4734ce008
Create Date: 2025-06-01 14:27:25.657473 Create Date: 2025-08-17 16:50:53.587969
""" """
from typing import Sequence, Union from typing import Sequence, Union
from alembic import op from alembic import op
import sqlalchemy as sa import sqlalchemy as sa
import sqlmodel import sqlmodel.sql.sqltypes
# revision identifiers, used by Alembic. # revision identifiers, used by Alembic.
revision: str = '5840d2b52dd8' revision: str = '4966e016dd7c'
down_revision: Union[str, None] = None down_revision: Union[str, Sequence[str], None] = '0aa4734ce008'
branch_labels: Union[str, Sequence[str], None] = None branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None depends_on: Union[str, Sequence[str], None] = None
@@ -52,8 +51,8 @@ def upgrade() -> None:
sa.Column('id', sa.Integer(), nullable=False), sa.Column('id', sa.Integer(), nullable=False),
sa.Column('transcation_type', sa.Enum('BUY', 'SELL', name='tradetype'), nullable=False), sa.Column('transcation_type', sa.Enum('BUY', 'SELL', name='tradetype'), nullable=False),
sa.Column('product_code', sqlmodel.sql.sqltypes.AutoString(), nullable=False), sa.Column('product_code', sqlmodel.sql.sqltypes.AutoString(), nullable=False),
sa.Column('client_id', sqlmodel.sql.sqltypes.AutoString(), nullable=False), sa.Column('client_id', sa.Integer(), nullable=False),
sa.Column('supplier_id', sqlmodel.sql.sqltypes.AutoString(), nullable=False), sa.Column('supplier_id', sa.Integer(), nullable=False),
sa.Column('qty', sa.Integer(), nullable=False), sa.Column('qty', sa.Integer(), nullable=False),
sa.Column('amount', sa.Integer(), nullable=False), sa.Column('amount', sa.Integer(), nullable=False),
sa.Column('date', sa.DateTime(), server_default=sa.text('now()'), nullable=True), sa.Column('date', sa.DateTime(), server_default=sa.text('now()'), nullable=True),
@@ -66,8 +65,8 @@ def upgrade() -> None:
sa.Column('id', sa.Integer(), nullable=False), sa.Column('id', sa.Integer(), nullable=False),
sa.Column('payment_type', sa.Enum('BUY', 'SELL', name='tradetype'), nullable=False), sa.Column('payment_type', sa.Enum('BUY', 'SELL', name='tradetype'), nullable=False),
sa.Column('product_code', sqlmodel.sql.sqltypes.AutoString(), nullable=False), sa.Column('product_code', sqlmodel.sql.sqltypes.AutoString(), nullable=False),
sa.Column('client_id', sqlmodel.sql.sqltypes.AutoString(), nullable=False), sa.Column('client_id', sa.Integer(), nullable=False),
sa.Column('supplier_id', sqlmodel.sql.sqltypes.AutoString(), nullable=False), sa.Column('supplier_id', sa.Integer(), nullable=False),
sa.Column('amount', sa.Integer(), nullable=False), sa.Column('amount', sa.Integer(), nullable=False),
sa.Column('payment_method', sqlmodel.sql.sqltypes.AutoString(length=24), nullable=False), sa.Column('payment_method', sqlmodel.sql.sqltypes.AutoString(length=24), nullable=False),
sa.Column('date', sa.DateTime(), server_default=sa.text('now()'), nullable=True), sa.Column('date', sa.DateTime(), server_default=sa.text('now()'), nullable=True),
@@ -1,38 +0,0 @@
"""Product id made nullable
Revision ID: 8aefa882e096
Revises: e8c4300db3cb
Create Date: 2025-06-15 19:33:39.299803
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import mysql
# revision identifiers, used by Alembic.
revision: str = '8aefa882e096'
down_revision: Union[str, None] = 'e8c4300db3cb'
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
"""Upgrade schema."""
# ### commands auto generated by Alembic - please adjust! ###
op.alter_column('product', 'id',
existing_type=mysql.INTEGER(),
nullable=True,
autoincrement=True)
# ### end Alembic commands ###
def downgrade() -> None:
"""Downgrade schema."""
# ### commands auto generated by Alembic - please adjust! ###
op.alter_column('product', 'id',
existing_type=mysql.INTEGER(),
nullable=False,
autoincrement=True)
# ### end Alembic commands ###
@@ -1,32 +0,0 @@
"""Product id made nullable using 'default=None'
Revision ID: b5ff3e70bd95
Revises: 8aefa882e096
Create Date: 2025-06-15 19:38:20.874456
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = 'b5ff3e70bd95'
down_revision: Union[str, None] = '8aefa882e096'
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
"""Upgrade schema."""
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###
def downgrade() -> None:
"""Downgrade schema."""
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###
@@ -1,60 +0,0 @@
"""Fix client_id in Credit type to int
Revision ID: bfb086d8d500
Revises: 5840d2b52dd8
Create Date: 2025-06-01 14:53:57.095181
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel
# revision identifiers, used by Alembic.
revision: str = 'bfb086d8d500'
down_revision: Union[str, None] = '5840d2b52dd8'
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
"""Upgrade schema."""
# ### commands auto generated by Alembic - please adjust! ###
op.create_table('credit',
sa.Column('id', sa.Integer(), nullable=False),
sa.Column('transcation_type', sa.Enum('BUY', 'SELL', name='tradetype'), nullable=False),
sa.Column('product_code', sqlmodel.sql.sqltypes.AutoString(), nullable=False),
sa.Column('client_id', sa.Integer(), nullable=False),
sa.Column('supplier_id', sa.Integer(), nullable=False),
sa.Column('qty', sa.Integer(), nullable=False),
sa.Column('amount', sa.Integer(), nullable=False),
sa.Column('date', sa.DateTime(), server_default=sa.text('now()'), nullable=True),
sa.ForeignKeyConstraint(['client_id'], ['client.id'], ),
sa.ForeignKeyConstraint(['product_code'], ['product.product_code'], ),
sa.ForeignKeyConstraint(['supplier_id'], ['supplier.id'], ),
sa.PrimaryKeyConstraint('id')
)
op.create_table('payment',
sa.Column('id', sa.Integer(), nullable=False),
sa.Column('payment_type', sa.Enum('BUY', 'SELL', name='tradetype'), nullable=False),
sa.Column('product_code', sqlmodel.sql.sqltypes.AutoString(), nullable=False),
sa.Column('client_id', sa.Integer(), nullable=False),
sa.Column('supplier_id', sa.Integer(), nullable=False),
sa.Column('amount', sa.Integer(), nullable=False),
sa.Column('payment_method', sqlmodel.sql.sqltypes.AutoString(length=24), nullable=False),
sa.Column('date', sa.DateTime(), server_default=sa.text('now()'), nullable=True),
sa.ForeignKeyConstraint(['client_id'], ['client.id'], ),
sa.ForeignKeyConstraint(['product_code'], ['product.product_code'], ),
sa.ForeignKeyConstraint(['supplier_id'], ['supplier.id'], ),
sa.PrimaryKeyConstraint('id')
)
# ### end Alembic commands ###
def downgrade() -> None:
"""Downgrade schema."""
# ### commands auto generated by Alembic - please adjust! ###
op.drop_table('payment')
op.drop_table('credit')
# ### end Alembic commands ###
@@ -1,32 +0,0 @@
"""Making Product.date_modified default=None
Revision ID: d89dba0432de
Revises: b5ff3e70bd95
Create Date: 2025-06-15 20:06:11.734486
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = 'd89dba0432de'
down_revision: Union[str, None] = 'b5ff3e70bd95'
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
"""Upgrade schema."""
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###
def downgrade() -> None:
"""Downgrade schema."""
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###
View File
+26
View File
@@ -0,0 +1,26 @@
from sqlmodel import SQLModel
from enum import Enum
class UserRole(str, Enum):
ADMIN = "admin"
WRITE = "write"
READ_ONLY = "read_only"
class TransactionType(str, Enum):
SALE = "sell"
PURCHASE = "buy"
CREDIT = "credit"
class TransactionStatus(str, Enum):
UNPAID = "unpaid"
PARTIALLY_PAID = "partially_paid"
PAID = "paid"
CANCELLED = 'cancelled'
class PartnerType(str, Enum):
CLIENT = "client"
SUPPLIER = "supplier"
+57 -43
View File
@@ -18,86 +18,100 @@ from datetime import datetime
from sqlalchemy import Column, DateTime, func, Enum as SQLEnum from sqlalchemy import Column, DateTime, func, Enum as SQLEnum
from enum import Enum from enum import Enum
from typing import Optional from typing import Optional
from base import UserRole, PartnerType, TransactionType, TransactionStatus
class TradeType(str, Enum): class User(SQLModel, table=True):
BUY = "Buy" """
SELL = "Sell" User table mapping, api response validation and serialisation
"""
id: Optional[int] = Field(default=None, primary_key=True)
username: str = Field(nullable=False,unique=True, max_length=100)
role: UserRole = Field(nullable=True, default=PartnerType.CLIENT)
password_hash: str = Field(nullable=False)
class Partner(SQLModel, table=True):
class Client(SQLModel, table=True):
"""Clients table mapping, api response validation and serialisation""" """Clients table mapping, api response validation and serialisation"""
id: Optional[int] = Field(default=None, primary_key=True) id: Optional[int] = Field(default=None, primary_key=True)
tin_number: int = Field(nullable=False, unique=True) tin_number: int = Field(nullable=False, unique=True)
names: str = Field(max_length=100, nullable=False) names: str = Field(max_length=100, nullable=False)
phone_number: str = Field(max_length=10, nullable=False) type: PartnerType = Field(nullable=False, default=PartnerType.CLIENT)
phone_number: str = Field(max_length=10, nullable=True)
class Supplier(SQLModel, table=True):
"""Supplier table mapping, api response validation and serialisation"""
id: Optional[int] = Field(default=None, primary_key=True)
tin_number: int = Field(nullable=False, unique=True)
names: str = Field(max_length=100, nullable=False)
phone_number: str = Field(max_length=10, nullable=False)
class Product(SQLModel, table=True): class Product(SQLModel, table=True):
"""Products table mapping, api response validation and serialisation """Products table mapping, api response validation and serialisation
NOTE: purchase price should update every time a supplier credits us goods NOTE: Every time a product's purchase price changes, it should be updated
and price has changed here as well
""" """
__table_args__ = (UniqueConstraint("product_code"),) __table_args__ = (UniqueConstraint("product_code"))
id: Optional[int] = Field(default=None, primary_key=True) id: Optional[int] = Field(default=None, primary_key=True)
product_code: str = Field(max_length=10, nullable=False) product_code: str = Field(max_length=10, unique=True, nullable=False)
product_name: str = Field(max_length=20, nullable=False, unique=True) product_name: str = Field(max_length=20, nullable=False, unique=True)
purchase_price: int = Field(nullable=False) purchase_price: int = Field(nullable=False)
date_modified: datetime = Field( date_modified: datetime = Field(
default=None, default=None,
sa_column=Column(DateTime, sa_column=Column(DateTime(timezone=True),
server_default=func.now(), server_default=func.now(),
server_onupdate=func.now()) server_onupdate=func.now())
) )
class Transaction(SQLModel, table=True):
"""
Transaction table mapping, api response validation and serialisation
Include both business events to/from suppliers and to/from clients
"""
__tablename__: str = "transactions"
id: Optional[int] = Field(default=None, primary_key=True)
partner_id: Optional[int] = Field(nullable=False, foreign_key="partner.id")
transcation_type: TransactionType = Field(
sa_column=Column(SQLEnum(TransactionType), nullable=False)
)
transaction_status: TransactionStatus
created_on: datetime = Field(
default=None,
sa_column=Column(DateTime(timezone=True), server_default=func.now())
)
updated_on: datetime = Field(
default=None,
sa_column=Column(
DateTime(timezone=True),
onupdate=func.now(),
server_default=func.now()
)
)
class Transaction_items(SQLModel, table=True):
"""
Transaction table mapping, api response validation and serialisation
Includes transactions details from transactions
"""
class Payment(SQLModel, table=True): class Payment(SQLModel, table=True):
""" """
Payments table mapping, api response validation and serialisation
Include both payments to suppliers and from clients
""" """
id: Optional[int] = Field(default=None, primary_key=True)
payment_type: TradeType = Field(
sa_column=Column(SQLEnum(TradeType), nullable=False)
)
product_code: str = Field(nullable=False, foreign_key="product.product_code")
client_id: Optional[int] = Field(nullable=False, foreign_key="client.id")
supplier_id: Optional[int] = Field(nullable=False, foreign_key="supplier.id") class Credit_accounts(SQLModel, table=True):
amount: int = Field(nullable=False)
payment_method: str = Field(max_length=24, nullable=False)
date: datetime = Field(
default=None,
sa_column=Column(DateTime, server_default=func.now())
)
class Credit(SQLModel, table=True):
"""Credit table mapping, api response validation and serialisation """Credit table mapping, api response validation and serialisation
Include both credit from suppliers and to clients Include both credit from suppliers and to clients
""" """
__tablename__: str = "credit_accounts"
id: Optional[int] = Field(default=None, primary_key=True) id: Optional[int] = Field(default=None, primary_key=True)
transcation_type: TradeType = Field(
sa_column=Column(SQLEnum(TradeType), nullable=False)
)
product_code: str = Field(nullable=False, foreign_key="product.product_code") product_code: str = Field(nullable=False, foreign_key="product.product_code")
client_id: Optional[int] = Field(nullable=False, foreign_key="client.id") client_id: Optional[int] = Field(nullable=True, foreign_key="client.id")
supplier_id: Optional[int] = Field(nullable=False, foreign_key="supplier.id") supplier_id: Optional[int] = Field(nullable=True, foreign_key="supplier.id")
qty: int = Field(nullable=False) qty: int = Field(nullable=False)
amount: int = Field(nullable=False) amount: int = Field(nullable=False)
date: datetime = Field( date: datetime = Field(
default=None, default=None,
sa_column=Column(DateTime, server_default=func.now()) sa_column=Column(DateTime(timezone=True), server_default=func.now())
) )
+10
View File
@@ -1,15 +1,25 @@
alembic==1.16.4 alembic==1.16.4
annotated-types==0.7.0 annotated-types==0.7.0
anyio==4.10.0 anyio==4.10.0
asyncpg==0.30.0
fastapi==0.116.1 fastapi==0.116.1
greenlet==3.2.4 greenlet==3.2.4
idna==3.10 idna==3.10
iniconfig==2.1.0
Mako==1.3.10 Mako==1.3.10
MarkupSafe==3.0.2 MarkupSafe==3.0.2
packaging==25.0
pluggy==1.6.0
psycopg2-binary==2.9.10
pydantic==2.11.7 pydantic==2.11.7
pydantic-settings==2.10.1
pydantic_core==2.33.2 pydantic_core==2.33.2
Pygments==2.19.2
pytest==8.4.1
python-dotenv==1.1.1
sniffio==1.3.1 sniffio==1.3.1
SQLAlchemy==2.0.43 SQLAlchemy==2.0.43
sqlmodel==0.0.24
starlette==0.47.2 starlette==0.47.2
typing-inspection==0.4.1 typing-inspection==0.4.1
typing_extensions==4.14.1 typing_extensions==4.14.1