2023-02-01 15:37:56 +08:00
|
|
|
# The Mia! Accounting Flask Project.
|
2023-02-01 15:44:58 +08:00
|
|
|
# Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/25
|
2023-02-01 15:37:56 +08:00
|
|
|
|
|
|
|
# Copyright (c) 2023 imacat.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2023-02-01 15:44:58 +08:00
|
|
|
"""The data models.
|
2023-02-01 15:37:56 +08:00
|
|
|
|
|
|
|
"""
|
2023-02-27 15:28:45 +08:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-02-01 15:37:56 +08:00
|
|
|
import re
|
|
|
|
import typing as t
|
2023-03-17 22:32:01 +08:00
|
|
|
from datetime import date
|
2023-02-27 15:28:45 +08:00
|
|
|
from decimal import Decimal
|
2023-02-01 15:37:56 +08:00
|
|
|
|
|
|
|
import sqlalchemy as sa
|
|
|
|
from flask import current_app
|
|
|
|
from flask_babel import get_locale
|
|
|
|
from sqlalchemy import text
|
|
|
|
|
2023-02-08 11:13:09 +08:00
|
|
|
from accounting import db
|
2023-02-27 15:28:45 +08:00
|
|
|
from accounting.locale import gettext
|
2023-02-01 22:05:12 +08:00
|
|
|
from accounting.utils.user import user_cls, user_pk_column
|
2023-02-01 15:37:56 +08:00
|
|
|
|
|
|
|
|
2023-02-01 15:44:58 +08:00
|
|
|
class BaseAccount(db.Model):
|
|
|
|
"""A base account."""
|
|
|
|
__tablename__ = "accounting_base_accounts"
|
|
|
|
"""The table name."""
|
|
|
|
code = db.Column(db.String, nullable=False, primary_key=True)
|
|
|
|
"""The code."""
|
|
|
|
title_l10n = db.Column("title", db.String, nullable=False)
|
|
|
|
"""The title."""
|
|
|
|
l10n = db.relationship("BaseAccountL10n", back_populates="account",
|
|
|
|
lazy=False)
|
|
|
|
"""The localized titles."""
|
2023-02-01 16:54:45 +08:00
|
|
|
accounts = db.relationship("Account", back_populates="base")
|
|
|
|
"""The descendant accounts under the base account."""
|
2023-02-01 15:44:58 +08:00
|
|
|
|
|
|
|
def __str__(self) -> str:
|
|
|
|
"""Returns the string representation of the base account.
|
|
|
|
|
|
|
|
:return: The string representation of the base account.
|
|
|
|
"""
|
2023-03-08 12:13:59 +08:00
|
|
|
return f"{self.code} {self.title}"
|
2023-02-01 15:44:58 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def title(self) -> str:
|
|
|
|
"""Returns the title in the current locale.
|
|
|
|
|
|
|
|
:return: The title in the current locale.
|
|
|
|
"""
|
|
|
|
current_locale = str(get_locale())
|
|
|
|
if current_locale == current_app.config["BABEL_DEFAULT_LOCALE"]:
|
|
|
|
return self.title_l10n
|
|
|
|
for l10n in self.l10n:
|
|
|
|
if l10n.locale == current_locale:
|
|
|
|
return l10n.title
|
|
|
|
return self.title_l10n
|
|
|
|
|
2023-02-07 20:18:57 +08:00
|
|
|
@property
|
|
|
|
def query_values(self) -> list[str]:
|
|
|
|
"""Returns the values to be queried.
|
|
|
|
|
|
|
|
:return: The values to be queried.
|
|
|
|
"""
|
|
|
|
return [self.code, self.title_l10n] + [x.title for x in self.l10n]
|
|
|
|
|
2023-02-01 15:44:58 +08:00
|
|
|
|
|
|
|
class BaseAccountL10n(db.Model):
|
|
|
|
"""A localized base account title."""
|
|
|
|
__tablename__ = "accounting_base_accounts_l10n"
|
|
|
|
"""The table name."""
|
2023-02-03 17:14:32 +08:00
|
|
|
account_code = db.Column(db.String,
|
|
|
|
db.ForeignKey(BaseAccount.code,
|
|
|
|
onupdate="CASCADE",
|
|
|
|
ondelete="CASCADE"),
|
2023-02-01 15:44:58 +08:00
|
|
|
nullable=False, primary_key=True)
|
|
|
|
"""The code of the account."""
|
|
|
|
account = db.relationship(BaseAccount, back_populates="l10n")
|
|
|
|
"""The account."""
|
|
|
|
locale = db.Column(db.String, nullable=False, primary_key=True)
|
|
|
|
"""The locale."""
|
|
|
|
title = db.Column(db.String, nullable=False)
|
|
|
|
"""The localized title."""
|
|
|
|
|
|
|
|
|
2023-02-01 15:37:56 +08:00
|
|
|
class Account(db.Model):
|
|
|
|
"""An account."""
|
|
|
|
__tablename__ = "accounting_accounts"
|
|
|
|
"""The table name."""
|
2023-02-03 13:26:20 +08:00
|
|
|
id = db.Column(db.Integer, nullable=False, primary_key=True,
|
|
|
|
autoincrement=False)
|
2023-02-01 15:37:56 +08:00
|
|
|
"""The account ID."""
|
2023-02-03 17:14:32 +08:00
|
|
|
base_code = db.Column(db.String,
|
|
|
|
db.ForeignKey(BaseAccount.code, onupdate="CASCADE",
|
|
|
|
ondelete="CASCADE"),
|
2023-02-01 15:37:56 +08:00
|
|
|
nullable=False)
|
|
|
|
"""The code of the base account."""
|
2023-02-01 16:54:45 +08:00
|
|
|
base = db.relationship(BaseAccount, back_populates="accounts")
|
2023-02-01 15:37:56 +08:00
|
|
|
"""The base account."""
|
|
|
|
no = db.Column(db.Integer, nullable=False, default=text("1"))
|
|
|
|
"""The account number under the base account."""
|
|
|
|
title_l10n = db.Column("title", db.String, nullable=False)
|
|
|
|
"""The title."""
|
2023-03-18 22:52:29 +08:00
|
|
|
is_need_offset = db.Column(db.Boolean, nullable=False, default=False)
|
2023-03-09 17:16:05 +08:00
|
|
|
"""Whether the entries of this account need offset."""
|
2023-02-01 15:37:56 +08:00
|
|
|
created_at = db.Column(db.DateTime(timezone=True), nullable=False,
|
|
|
|
server_default=db.func.now())
|
|
|
|
"""The time of creation."""
|
2023-02-03 17:14:32 +08:00
|
|
|
created_by_id = db.Column(db.Integer,
|
|
|
|
db.ForeignKey(user_pk_column,
|
|
|
|
onupdate="CASCADE"),
|
2023-02-01 15:37:56 +08:00
|
|
|
nullable=False)
|
|
|
|
"""The ID of the creator."""
|
|
|
|
created_by = db.relationship(user_cls, foreign_keys=created_by_id)
|
|
|
|
"""The creator."""
|
|
|
|
updated_at = db.Column(db.DateTime(timezone=True), nullable=False,
|
|
|
|
server_default=db.func.now())
|
|
|
|
"""The time of last update."""
|
2023-02-03 17:14:32 +08:00
|
|
|
updated_by_id = db.Column(db.Integer,
|
|
|
|
db.ForeignKey(user_pk_column,
|
|
|
|
onupdate="CASCADE"),
|
2023-02-01 15:37:56 +08:00
|
|
|
nullable=False)
|
|
|
|
"""The ID of the updator."""
|
|
|
|
updated_by = db.relationship(user_cls, foreign_keys=updated_by_id)
|
|
|
|
"""The updator."""
|
|
|
|
l10n = db.relationship("AccountL10n", back_populates="account",
|
|
|
|
lazy=False)
|
|
|
|
"""The localized titles."""
|
2023-02-27 15:28:45 +08:00
|
|
|
entries = db.relationship("JournalEntry", back_populates="account")
|
|
|
|
"""The journal entries."""
|
2023-02-01 15:37:56 +08:00
|
|
|
|
2023-03-08 18:32:27 +08:00
|
|
|
CASH_CODE: str = "1111-001"
|
2023-02-01 15:37:56 +08:00
|
|
|
"""The code of the cash account,"""
|
2023-03-08 18:32:27 +08:00
|
|
|
ACCUMULATED_CHANGE_CODE: str = "3351-001"
|
2023-02-01 15:37:56 +08:00
|
|
|
"""The code of the accumulated-change account,"""
|
2023-03-08 18:32:27 +08:00
|
|
|
NET_CHANGE_CODE: str = "3353-001"
|
2023-02-01 15:37:56 +08:00
|
|
|
"""The code of the net-change account,"""
|
|
|
|
|
|
|
|
def __str__(self) -> str:
|
|
|
|
"""Returns the string representation of this account.
|
|
|
|
|
|
|
|
:return: The string representation of this account.
|
|
|
|
"""
|
2023-03-08 12:13:59 +08:00
|
|
|
return f"{self.base_code}-{self.no:03d} {self.title}"
|
2023-02-01 15:37:56 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def code(self) -> str:
|
|
|
|
"""Returns the code.
|
|
|
|
|
|
|
|
:return: The code.
|
|
|
|
"""
|
2023-03-08 12:13:59 +08:00
|
|
|
return f"{self.base_code}-{self.no:03d}"
|
2023-02-01 15:37:56 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def title(self) -> str:
|
|
|
|
"""Returns the title in the current locale.
|
|
|
|
|
|
|
|
:return: The title in the current locale.
|
|
|
|
"""
|
|
|
|
current_locale = str(get_locale())
|
|
|
|
if current_locale == current_app.config["BABEL_DEFAULT_LOCALE"]:
|
|
|
|
return self.title_l10n
|
|
|
|
for l10n in self.l10n:
|
|
|
|
if l10n.locale == current_locale:
|
|
|
|
return l10n.title
|
|
|
|
return self.title_l10n
|
|
|
|
|
|
|
|
@title.setter
|
|
|
|
def title(self, value: str) -> None:
|
|
|
|
"""Sets the title in the current locale.
|
|
|
|
|
|
|
|
:param value: The new title.
|
|
|
|
:return: None.
|
|
|
|
"""
|
|
|
|
if self.title_l10n is None:
|
|
|
|
self.title_l10n = value
|
|
|
|
return
|
|
|
|
current_locale = str(get_locale())
|
|
|
|
if current_locale == current_app.config["BABEL_DEFAULT_LOCALE"]:
|
|
|
|
self.title_l10n = value
|
|
|
|
return
|
|
|
|
for l10n in self.l10n:
|
|
|
|
if l10n.locale == current_locale:
|
|
|
|
l10n.title = value
|
|
|
|
return
|
2023-02-06 11:42:22 +08:00
|
|
|
self.l10n.append(AccountL10n(locale=current_locale, title=value))
|
2023-02-01 15:37:56 +08:00
|
|
|
|
2023-03-18 19:33:41 +08:00
|
|
|
@property
|
|
|
|
def is_real(self) -> bool:
|
|
|
|
"""Returns whether the account is a real account.
|
|
|
|
|
|
|
|
:return: True if the account is a real account, or False otherwise.
|
|
|
|
"""
|
|
|
|
return self.base_code[0] in {"1", "2", "3"}
|
|
|
|
|
2023-03-18 19:20:50 +08:00
|
|
|
@property
|
|
|
|
def is_nominal(self) -> bool:
|
|
|
|
"""Returns whether the account is a nominal account.
|
|
|
|
|
|
|
|
:return: True if the account is a nominal account, or False otherwise.
|
|
|
|
"""
|
2023-03-18 19:33:41 +08:00
|
|
|
return not self.is_real
|
2023-03-18 19:20:50 +08:00
|
|
|
|
2023-03-18 19:06:12 +08:00
|
|
|
@property
|
|
|
|
def query_values(self) -> list[str]:
|
|
|
|
"""Returns the values to be queried.
|
|
|
|
|
|
|
|
:return: The values to be queried.
|
|
|
|
"""
|
|
|
|
return [self.code, self.title_l10n] + [x.title for x in self.l10n]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_modified(self) -> bool:
|
|
|
|
"""Returns whether a product account was modified.
|
|
|
|
|
|
|
|
:return: True if modified, or False otherwise.
|
|
|
|
"""
|
|
|
|
if db.session.is_modified(self):
|
|
|
|
return True
|
|
|
|
for l10n in self.l10n:
|
|
|
|
if db.session.is_modified(l10n):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def delete(self) -> None:
|
|
|
|
"""Deletes this account.
|
|
|
|
|
|
|
|
:return: None.
|
|
|
|
"""
|
|
|
|
AccountL10n.query.filter(AccountL10n.account == self).delete()
|
|
|
|
cls: t.Type[t.Self] = self.__class__
|
|
|
|
cls.query.filter(cls.id == self.id).delete()
|
|
|
|
|
2023-02-01 15:37:56 +08:00
|
|
|
@classmethod
|
|
|
|
def find_by_code(cls, code: str) -> t.Self | None:
|
2023-02-07 11:30:25 +08:00
|
|
|
"""Finds an account by its code.
|
2023-02-01 15:37:56 +08:00
|
|
|
|
|
|
|
:param code: The code.
|
2023-02-07 11:30:25 +08:00
|
|
|
:return: The account, or None if this account does not exist.
|
2023-02-01 15:37:56 +08:00
|
|
|
"""
|
2023-02-27 10:50:49 +08:00
|
|
|
m = re.match(r"^([1-9]{4})-(\d{3})$", code)
|
2023-02-01 15:37:56 +08:00
|
|
|
if m is None:
|
|
|
|
return None
|
|
|
|
return cls.query.filter(cls.base_code == m.group(1),
|
|
|
|
cls.no == int(m.group(2))).first()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def debit(cls) -> list[t.Self]:
|
|
|
|
"""Returns the debit accounts.
|
|
|
|
|
|
|
|
:return: The debit accounts.
|
|
|
|
"""
|
|
|
|
return cls.query.filter(sa.or_(cls.base_code.startswith("1"),
|
|
|
|
cls.base_code.startswith("2"),
|
|
|
|
cls.base_code.startswith("3"),
|
|
|
|
cls.base_code.startswith("5"),
|
|
|
|
cls.base_code.startswith("6"),
|
|
|
|
cls.base_code.startswith("75"),
|
|
|
|
cls.base_code.startswith("76"),
|
|
|
|
cls.base_code.startswith("77"),
|
|
|
|
cls.base_code.startswith("78"),
|
|
|
|
cls.base_code.startswith("8"),
|
|
|
|
cls.base_code.startswith("9")),
|
|
|
|
cls.base_code != "3351",
|
|
|
|
cls.base_code != "3353")\
|
|
|
|
.order_by(cls.base_code, cls.no).all()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def credit(cls) -> list[t.Self]:
|
|
|
|
"""Returns the debit accounts.
|
|
|
|
|
|
|
|
:return: The debit accounts.
|
|
|
|
"""
|
|
|
|
return cls.query.filter(sa.or_(cls.base_code.startswith("1"),
|
|
|
|
cls.base_code.startswith("2"),
|
|
|
|
cls.base_code.startswith("3"),
|
|
|
|
cls.base_code.startswith("4"),
|
|
|
|
cls.base_code.startswith("71"),
|
|
|
|
cls.base_code.startswith("72"),
|
|
|
|
cls.base_code.startswith("73"),
|
|
|
|
cls.base_code.startswith("74"),
|
|
|
|
cls.base_code.startswith("8"),
|
|
|
|
cls.base_code.startswith("9")),
|
|
|
|
cls.base_code != "3351",
|
|
|
|
cls.base_code != "3353")\
|
|
|
|
.order_by(cls.base_code, cls.no).all()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def cash(cls) -> t.Self:
|
|
|
|
"""Returns the cash account.
|
|
|
|
|
|
|
|
:return: The cash account
|
|
|
|
"""
|
2023-03-08 18:31:35 +08:00
|
|
|
return cls.find_by_code(cls.CASH_CODE)
|
2023-02-01 15:37:56 +08:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def accumulated_change(cls) -> t.Self:
|
|
|
|
"""Returns the accumulated-change account.
|
|
|
|
|
|
|
|
:return: The accumulated-change account
|
|
|
|
"""
|
2023-03-08 18:31:35 +08:00
|
|
|
return cls.find_by_code(cls.ACCUMULATED_CHANGE_CODE)
|
2023-02-01 15:37:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
class AccountL10n(db.Model):
|
|
|
|
"""A localized account title."""
|
|
|
|
__tablename__ = "accounting_accounts_l10n"
|
2023-02-07 00:23:45 +08:00
|
|
|
"""The table name."""
|
2023-02-03 17:14:32 +08:00
|
|
|
account_id = db.Column(db.Integer,
|
|
|
|
db.ForeignKey(Account.id, onupdate="CASCADE",
|
|
|
|
ondelete="CASCADE"),
|
2023-02-01 15:37:56 +08:00
|
|
|
nullable=False, primary_key=True)
|
2023-02-07 00:23:45 +08:00
|
|
|
"""The account ID."""
|
2023-02-01 15:37:56 +08:00
|
|
|
account = db.relationship(Account, back_populates="l10n")
|
2023-02-07 00:23:45 +08:00
|
|
|
"""The account."""
|
2023-02-01 15:37:56 +08:00
|
|
|
locale = db.Column(db.String, nullable=False, primary_key=True)
|
2023-02-07 00:23:45 +08:00
|
|
|
"""The locale."""
|
2023-02-01 15:37:56 +08:00
|
|
|
title = db.Column(db.String, nullable=False)
|
2023-02-07 00:23:45 +08:00
|
|
|
"""The localized title."""
|
2023-02-07 00:07:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Currency(db.Model):
|
|
|
|
"""A currency."""
|
|
|
|
__tablename__ = "accounting_currencies"
|
|
|
|
"""The table name."""
|
|
|
|
code = db.Column(db.String, nullable=False, primary_key=True)
|
|
|
|
"""The code."""
|
|
|
|
name_l10n = db.Column("name", db.String, nullable=False)
|
|
|
|
"""The name."""
|
|
|
|
created_at = db.Column(db.DateTime(timezone=True), nullable=False,
|
|
|
|
server_default=db.func.now())
|
|
|
|
"""The time of creation."""
|
|
|
|
created_by_id = db.Column(db.Integer,
|
|
|
|
db.ForeignKey(user_pk_column,
|
|
|
|
onupdate="CASCADE"),
|
|
|
|
nullable=False)
|
|
|
|
"""The ID of the creator."""
|
|
|
|
created_by = db.relationship(user_cls, foreign_keys=created_by_id)
|
|
|
|
"""The creator."""
|
|
|
|
updated_at = db.Column(db.DateTime(timezone=True), nullable=False,
|
|
|
|
server_default=db.func.now())
|
|
|
|
"""The time of last update."""
|
|
|
|
updated_by_id = db.Column(db.Integer,
|
|
|
|
db.ForeignKey(user_pk_column,
|
|
|
|
onupdate="CASCADE"),
|
|
|
|
nullable=False)
|
|
|
|
"""The ID of the updator."""
|
|
|
|
updated_by = db.relationship(user_cls, foreign_keys=updated_by_id)
|
|
|
|
"""The updator."""
|
|
|
|
l10n = db.relationship("CurrencyL10n", back_populates="currency",
|
|
|
|
lazy=False)
|
|
|
|
"""The localized names."""
|
2023-02-27 15:28:45 +08:00
|
|
|
entries = db.relationship("JournalEntry", back_populates="currency")
|
|
|
|
"""The journal entries."""
|
2023-02-07 00:07:23 +08:00
|
|
|
|
|
|
|
def __str__(self) -> str:
|
|
|
|
"""Returns the string representation of the currency.
|
|
|
|
|
|
|
|
:return: The string representation of the currency.
|
|
|
|
"""
|
2023-03-08 12:13:59 +08:00
|
|
|
return f"{self.name} ({self.code})"
|
2023-02-07 00:07:23 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self) -> str:
|
|
|
|
"""Returns the name in the current locale.
|
|
|
|
|
|
|
|
:return: The name in the current locale.
|
|
|
|
"""
|
|
|
|
current_locale = str(get_locale())
|
|
|
|
if current_locale == current_app.config["BABEL_DEFAULT_LOCALE"]:
|
|
|
|
return self.name_l10n
|
|
|
|
for l10n in self.l10n:
|
|
|
|
if l10n.locale == current_locale:
|
|
|
|
return l10n.name
|
|
|
|
return self.name_l10n
|
|
|
|
|
|
|
|
@name.setter
|
|
|
|
def name(self, value: str) -> None:
|
|
|
|
"""Sets the name in the current locale.
|
|
|
|
|
|
|
|
:param value: The new name.
|
|
|
|
:return: None.
|
|
|
|
"""
|
|
|
|
if self.name_l10n is None:
|
|
|
|
self.name_l10n = value
|
|
|
|
return
|
|
|
|
current_locale = str(get_locale())
|
|
|
|
if current_locale == current_app.config["BABEL_DEFAULT_LOCALE"]:
|
|
|
|
self.name_l10n = value
|
|
|
|
return
|
|
|
|
for l10n in self.l10n:
|
|
|
|
if l10n.locale == current_locale:
|
|
|
|
l10n.name = value
|
|
|
|
return
|
|
|
|
self.l10n.append(CurrencyL10n(locale=current_locale, name=value))
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_modified(self) -> bool:
|
|
|
|
"""Returns whether a product account was modified.
|
|
|
|
|
|
|
|
:return: True if modified, or False otherwise.
|
|
|
|
"""
|
|
|
|
if db.session.is_modified(self):
|
|
|
|
return True
|
|
|
|
for l10n in self.l10n:
|
|
|
|
if db.session.is_modified(l10n):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def delete(self) -> None:
|
|
|
|
"""Deletes the currency.
|
|
|
|
|
|
|
|
:return: None.
|
|
|
|
"""
|
|
|
|
CurrencyL10n.query.filter(CurrencyL10n.currency == self).delete()
|
|
|
|
cls: t.Type[t.Self] = self.__class__
|
|
|
|
cls.query.filter(cls.code == self.code).delete()
|
|
|
|
|
|
|
|
|
|
|
|
class CurrencyL10n(db.Model):
|
|
|
|
"""A localized currency name."""
|
|
|
|
__tablename__ = "accounting_currencies_l10n"
|
|
|
|
"""The table name."""
|
|
|
|
currency_code = db.Column(db.String,
|
|
|
|
db.ForeignKey(Currency.code, onupdate="CASCADE",
|
|
|
|
ondelete="CASCADE"),
|
|
|
|
nullable=False, primary_key=True)
|
|
|
|
"""The currency code."""
|
|
|
|
currency = db.relationship(Currency, back_populates="l10n")
|
|
|
|
"""The currency."""
|
|
|
|
locale = db.Column(db.String, nullable=False, primary_key=True)
|
|
|
|
"""The locale."""
|
|
|
|
name = db.Column(db.String, nullable=False)
|
|
|
|
"""The localized name."""
|
2023-02-27 15:28:45 +08:00
|
|
|
|
|
|
|
|
2023-03-19 13:44:51 +08:00
|
|
|
class VoucherCurrency:
|
|
|
|
"""A currency in a voucher."""
|
2023-02-27 15:28:45 +08:00
|
|
|
|
|
|
|
def __init__(self, code: str, debit: list[JournalEntry],
|
|
|
|
credit: list[JournalEntry]):
|
2023-03-19 13:44:51 +08:00
|
|
|
"""Constructs the currency in the voucher.
|
2023-02-27 15:28:45 +08:00
|
|
|
|
|
|
|
:param code: The currency code.
|
|
|
|
:param debit: The debit entries.
|
|
|
|
:param credit: The credit entries.
|
|
|
|
"""
|
|
|
|
self.code: str = code
|
|
|
|
"""The currency code."""
|
|
|
|
self.debit: list[JournalEntry] = debit
|
|
|
|
"""The debit entries."""
|
|
|
|
self.credit: list[JournalEntry] = credit
|
|
|
|
"""The credit entries."""
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self) -> str:
|
|
|
|
"""Returns the currency name.
|
|
|
|
|
|
|
|
:return: The currency name.
|
|
|
|
"""
|
|
|
|
return db.session.get(Currency, self.code).name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def debit_total(self) -> Decimal:
|
|
|
|
"""Returns the total amount of the debit journal entries.
|
|
|
|
|
|
|
|
:return: The total amount of the debit journal entries.
|
|
|
|
"""
|
|
|
|
return sum([x.amount for x in self.debit])
|
|
|
|
|
|
|
|
@property
|
|
|
|
def credit_total(self) -> str:
|
|
|
|
"""Returns the total amount of the credit journal entries.
|
|
|
|
|
|
|
|
:return: The total amount of the credit journal entries.
|
|
|
|
"""
|
|
|
|
return sum([x.amount for x in self.credit])
|
|
|
|
|
|
|
|
|
2023-03-19 13:44:51 +08:00
|
|
|
class Voucher(db.Model):
|
|
|
|
"""A voucher."""
|
|
|
|
__tablename__ = "accounting_vouchers"
|
2023-02-27 15:28:45 +08:00
|
|
|
"""The table name."""
|
|
|
|
id = db.Column(db.Integer, nullable=False, primary_key=True,
|
|
|
|
autoincrement=False)
|
2023-03-19 13:44:51 +08:00
|
|
|
"""The voucher ID."""
|
2023-02-27 15:28:45 +08:00
|
|
|
date = db.Column(db.Date, nullable=False)
|
|
|
|
"""The date."""
|
|
|
|
no = db.Column(db.Integer, nullable=False, default=text("1"))
|
|
|
|
"""The account number under the date."""
|
|
|
|
note = db.Column(db.String)
|
|
|
|
"""The note."""
|
|
|
|
created_at = db.Column(db.DateTime(timezone=True), nullable=False,
|
|
|
|
server_default=db.func.now())
|
|
|
|
"""The time of creation."""
|
|
|
|
created_by_id = db.Column(db.Integer,
|
|
|
|
db.ForeignKey(user_pk_column,
|
|
|
|
onupdate="CASCADE"),
|
|
|
|
nullable=False)
|
|
|
|
"""The ID of the creator."""
|
|
|
|
created_by = db.relationship(user_cls, foreign_keys=created_by_id)
|
|
|
|
"""The creator."""
|
|
|
|
updated_at = db.Column(db.DateTime(timezone=True), nullable=False,
|
|
|
|
server_default=db.func.now())
|
|
|
|
"""The time of last update."""
|
|
|
|
updated_by_id = db.Column(db.Integer,
|
|
|
|
db.ForeignKey(user_pk_column,
|
|
|
|
onupdate="CASCADE"),
|
|
|
|
nullable=False)
|
|
|
|
"""The ID of the updator."""
|
|
|
|
updated_by = db.relationship(user_cls, foreign_keys=updated_by_id)
|
|
|
|
"""The updator."""
|
2023-03-19 13:44:51 +08:00
|
|
|
entries = db.relationship("JournalEntry", back_populates="voucher")
|
2023-02-27 15:28:45 +08:00
|
|
|
"""The journal entries."""
|
|
|
|
|
|
|
|
def __str__(self) -> str:
|
2023-03-19 13:44:51 +08:00
|
|
|
"""Returns the string representation of this voucher.
|
2023-02-27 15:28:45 +08:00
|
|
|
|
2023-03-19 13:44:51 +08:00
|
|
|
:return: The string representation of this voucher.
|
2023-02-27 15:28:45 +08:00
|
|
|
"""
|
2023-03-19 13:44:51 +08:00
|
|
|
if self.is_cash_disbursement:
|
|
|
|
return gettext("Cash Disbursement Voucher#%(id)s", id=self.id)
|
|
|
|
if self.is_cash_receipt:
|
|
|
|
return gettext("Cash Receipt Voucher#%(id)s", id=self.id)
|
|
|
|
return gettext("Transfer Voucher#%(id)s", id=self.id)
|
2023-02-27 15:28:45 +08:00
|
|
|
|
|
|
|
@property
|
2023-03-19 13:44:51 +08:00
|
|
|
def currencies(self) -> list[VoucherCurrency]:
|
2023-02-27 15:28:45 +08:00
|
|
|
"""Returns the journal entries categorized by their currencies.
|
|
|
|
|
|
|
|
:return: The currency categories.
|
|
|
|
"""
|
|
|
|
entries: list[JournalEntry] = sorted(self.entries, key=lambda x: x.no)
|
|
|
|
codes: list[str] = []
|
|
|
|
by_currency: dict[str, list[JournalEntry]] = {}
|
|
|
|
for entry in entries:
|
|
|
|
if entry.currency_code not in by_currency:
|
|
|
|
codes.append(entry.currency_code)
|
|
|
|
by_currency[entry.currency_code] = []
|
|
|
|
by_currency[entry.currency_code].append(entry)
|
2023-03-19 13:44:51 +08:00
|
|
|
return [VoucherCurrency(code=x,
|
|
|
|
debit=[y for y in by_currency[x]
|
|
|
|
if y.is_debit],
|
|
|
|
credit=[y for y in by_currency[x]
|
|
|
|
if not y.is_debit])
|
2023-02-27 15:28:45 +08:00
|
|
|
for x in codes]
|
|
|
|
|
|
|
|
@property
|
2023-03-19 13:44:51 +08:00
|
|
|
def is_cash_receipt(self) -> bool:
|
|
|
|
"""Returns whether this is a cash receipt voucher.
|
2023-02-27 15:28:45 +08:00
|
|
|
|
2023-03-19 13:44:51 +08:00
|
|
|
:return: True if this is a cash receipt voucher, or False otherwise.
|
2023-02-27 15:28:45 +08:00
|
|
|
"""
|
|
|
|
for currency in self.currencies:
|
|
|
|
if len(currency.debit) > 1:
|
|
|
|
return False
|
2023-03-08 18:31:35 +08:00
|
|
|
if currency.debit[0].account.code != Account.CASH_CODE:
|
2023-02-27 15:28:45 +08:00
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
@property
|
2023-03-19 13:44:51 +08:00
|
|
|
def is_cash_disbursement(self) -> bool:
|
|
|
|
"""Returns whether this is a cash disbursement voucher.
|
2023-02-27 15:28:45 +08:00
|
|
|
|
2023-03-19 13:44:51 +08:00
|
|
|
:return: True if this is a cash disbursement voucher, or False
|
2023-02-27 15:28:45 +08:00
|
|
|
otherwise.
|
|
|
|
"""
|
|
|
|
for currency in self.currencies:
|
|
|
|
if len(currency.credit) > 1:
|
|
|
|
return False
|
2023-03-08 18:31:35 +08:00
|
|
|
if currency.credit[0].account.code != Account.CASH_CODE:
|
2023-02-27 15:28:45 +08:00
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2023-03-17 22:32:01 +08:00
|
|
|
@property
|
|
|
|
def can_delete(self) -> bool:
|
2023-03-19 13:44:51 +08:00
|
|
|
"""Returns whether the voucher can be deleted.
|
2023-03-17 22:32:01 +08:00
|
|
|
|
2023-03-19 13:44:51 +08:00
|
|
|
:return: True if the voucher can be deleted, or False otherwise.
|
2023-03-17 22:32:01 +08:00
|
|
|
"""
|
|
|
|
if not hasattr(self, "__can_delete"):
|
|
|
|
def has_offset() -> bool:
|
|
|
|
for entry in self.entries:
|
|
|
|
if len(entry.offsets) > 0:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
setattr(self, "__can_delete", not has_offset())
|
|
|
|
return getattr(self, "__can_delete")
|
|
|
|
|
2023-02-27 15:28:45 +08:00
|
|
|
def delete(self) -> None:
|
2023-03-19 13:44:51 +08:00
|
|
|
"""Deletes the voucher.
|
2023-02-27 15:28:45 +08:00
|
|
|
|
|
|
|
:return: None.
|
|
|
|
"""
|
|
|
|
JournalEntry.query\
|
2023-03-19 13:44:51 +08:00
|
|
|
.filter(JournalEntry.voucher_id == self.id).delete()
|
2023-02-27 15:28:45 +08:00
|
|
|
db.session.delete(self)
|
|
|
|
|
|
|
|
|
|
|
|
class JournalEntry(db.Model):
|
|
|
|
"""An accounting journal entry."""
|
|
|
|
__tablename__ = "accounting_journal_entries"
|
|
|
|
"""The table name."""
|
|
|
|
id = db.Column(db.Integer, nullable=False, primary_key=True,
|
|
|
|
autoincrement=False)
|
|
|
|
"""The entry ID."""
|
2023-03-19 13:44:51 +08:00
|
|
|
voucher_id = db.Column(db.Integer,
|
|
|
|
db.ForeignKey(Voucher.id, onupdate="CASCADE",
|
|
|
|
ondelete="CASCADE"),
|
|
|
|
nullable=False)
|
|
|
|
"""The voucher ID."""
|
|
|
|
voucher = db.relationship(Voucher, back_populates="entries")
|
|
|
|
"""The voucher."""
|
2023-02-27 15:28:45 +08:00
|
|
|
is_debit = db.Column(db.Boolean, nullable=False)
|
|
|
|
"""True for a debit entry, or False for a credit entry."""
|
|
|
|
no = db.Column(db.Integer, nullable=False)
|
2023-03-19 13:44:51 +08:00
|
|
|
"""The entry number under the voucher and debit or credit."""
|
2023-03-11 12:40:51 +08:00
|
|
|
original_entry_id = db.Column(db.Integer,
|
|
|
|
db.ForeignKey(id, onupdate="CASCADE"),
|
|
|
|
nullable=True)
|
|
|
|
"""The ID of the original entry."""
|
|
|
|
original_entry = db.relationship("JournalEntry", back_populates="offsets",
|
|
|
|
remote_side=id, passive_deletes=True)
|
|
|
|
"""The original entry."""
|
|
|
|
offsets = db.relationship("JournalEntry", back_populates="original_entry")
|
2023-03-09 17:16:05 +08:00
|
|
|
"""The offset entries."""
|
2023-02-27 15:28:45 +08:00
|
|
|
currency_code = db.Column(db.String,
|
|
|
|
db.ForeignKey(Currency.code, onupdate="CASCADE"),
|
|
|
|
nullable=False)
|
|
|
|
"""The currency code."""
|
|
|
|
currency = db.relationship(Currency, back_populates="entries")
|
|
|
|
"""The currency."""
|
|
|
|
account_id = db.Column(db.Integer,
|
|
|
|
db.ForeignKey(Account.id,
|
|
|
|
onupdate="CASCADE"),
|
|
|
|
nullable=False)
|
|
|
|
"""The account ID."""
|
2023-03-09 07:21:01 +08:00
|
|
|
account = db.relationship(Account, back_populates="entries", lazy=False)
|
2023-02-27 15:28:45 +08:00
|
|
|
"""The account."""
|
|
|
|
summary = db.Column(db.String, nullable=True)
|
|
|
|
"""The summary."""
|
|
|
|
amount = db.Column(db.Numeric(14, 2), nullable=False)
|
|
|
|
"""The amount."""
|
|
|
|
|
2023-03-17 22:32:01 +08:00
|
|
|
def __str__(self) -> str:
|
|
|
|
"""Returns the string representation of the journal entry.
|
|
|
|
|
|
|
|
:return: The string representation of the journal entry.
|
|
|
|
"""
|
|
|
|
if not hasattr(self, "__str"):
|
|
|
|
from accounting.template_filters import format_date, format_amount
|
|
|
|
setattr(self, "__str",
|
|
|
|
gettext("%(date)s %(summary)s %(amount)s",
|
2023-03-19 13:44:51 +08:00
|
|
|
date=format_date(self.voucher.date),
|
2023-03-17 22:32:01 +08:00
|
|
|
summary="" if self.summary is None
|
|
|
|
else self.summary,
|
|
|
|
amount=format_amount(self.amount)))
|
|
|
|
return getattr(self, "__str")
|
|
|
|
|
2023-02-27 15:28:45 +08:00
|
|
|
@property
|
|
|
|
def eid(self) -> int | None:
|
|
|
|
"""Returns the journal entry ID. This is the alternative name of the
|
|
|
|
ID field, to work with WTForms.
|
|
|
|
|
|
|
|
:return: The journal entry ID.
|
|
|
|
"""
|
|
|
|
return self.id
|
|
|
|
|
|
|
|
@property
|
|
|
|
def account_code(self) -> str:
|
|
|
|
"""Returns the account code.
|
|
|
|
|
|
|
|
:return: The account code.
|
|
|
|
"""
|
|
|
|
return self.account.code
|
2023-03-09 07:55:36 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def debit(self) -> Decimal | None:
|
|
|
|
"""Returns the debit amount.
|
|
|
|
|
|
|
|
:return: The debit amount, or None if this is not a debit entry.
|
|
|
|
"""
|
|
|
|
return self.amount if self.is_debit else None
|
|
|
|
|
2023-03-17 22:32:01 +08:00
|
|
|
@property
|
2023-03-18 18:55:31 +08:00
|
|
|
def is_need_offset(self) -> bool:
|
|
|
|
"""Returns whether the entry needs offset.
|
2023-03-17 22:32:01 +08:00
|
|
|
|
2023-03-18 18:55:31 +08:00
|
|
|
:return: True if the entry needs offset, or False otherwise.
|
2023-03-17 22:32:01 +08:00
|
|
|
"""
|
2023-03-18 22:52:29 +08:00
|
|
|
if not self.account.is_need_offset:
|
2023-03-17 22:32:01 +08:00
|
|
|
return False
|
|
|
|
if self.account.base_code[0] == "1" and not self.is_debit:
|
|
|
|
return False
|
|
|
|
if self.account.base_code[0] == "2" and self.is_debit:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2023-03-09 07:55:36 +08:00
|
|
|
@property
|
|
|
|
def credit(self) -> Decimal | None:
|
|
|
|
"""Returns the credit amount.
|
|
|
|
|
|
|
|
:return: The credit amount, or None if this is not a credit entry.
|
|
|
|
"""
|
|
|
|
return None if self.is_debit else self.amount
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def net_balance(self) -> Decimal:
|
|
|
|
"""Returns the net balance.
|
|
|
|
|
|
|
|
:return: The net balance.
|
|
|
|
"""
|
|
|
|
if not hasattr(self, "__net_balance"):
|
|
|
|
setattr(self, "__net_balance", self.amount + sum(
|
|
|
|
[x.amount if x.is_debit == self.is_debit else -x.amount
|
|
|
|
for x in self.offsets]))
|
|
|
|
return getattr(self, "__net_balance")
|
|
|
|
|
|
|
|
@net_balance.setter
|
|
|
|
def net_balance(self, net_balance: Decimal) -> None:
|
|
|
|
"""Sets the net balance.
|
|
|
|
|
|
|
|
:param net_balance: The net balance.
|
|
|
|
:return: None.
|
|
|
|
"""
|
|
|
|
setattr(self, "__net_balance", net_balance)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def query_values(self) -> tuple[list[str], list[str]]:
|
|
|
|
"""Returns the values to be queried.
|
|
|
|
|
|
|
|
:return: The values to be queried.
|
|
|
|
"""
|
|
|
|
def format_amount(value: Decimal) -> str:
|
|
|
|
whole: int = int(value)
|
|
|
|
frac: Decimal = (value - whole).normalize()
|
|
|
|
return str(whole) + str(abs(frac))[1:]
|
|
|
|
|
2023-03-19 13:44:51 +08:00
|
|
|
voucher_day: date = self.voucher.date
|
2023-03-17 22:32:01 +08:00
|
|
|
summary: str = "" if self.summary is None else self.summary
|
|
|
|
return ([summary],
|
2023-03-19 13:44:51 +08:00
|
|
|
[str(voucher_day.year),
|
|
|
|
"{}/{}".format(voucher_day.year, voucher_day.month),
|
|
|
|
"{}/{}".format(voucher_day.month, voucher_day.day),
|
|
|
|
"{}/{}/{}".format(voucher_day.year, voucher_day.month,
|
|
|
|
voucher_day.day),
|
2023-03-17 22:32:01 +08:00
|
|
|
format_amount(self.amount),
|
|
|
|
format_amount(self.net_balance)])
|