585 lines
28 KiB
Python
585 lines
28 KiB
Python
# The Mia! Accounting Project.
|
|
# Author: imacat@mail.imacat.idv.tw (imacat), 2023/4/8
|
|
|
|
# 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.
|
|
"""The test for the unmatched offsets.
|
|
|
|
"""
|
|
import unittest
|
|
|
|
import httpx
|
|
from click.testing import Result
|
|
from flask import Flask
|
|
from flask.testing import FlaskCliRunner
|
|
|
|
from test_site import db
|
|
from testlib import create_test_app, get_client, Accounts, \
|
|
JournalEntryCurrencyData, JournalEntryData, BaseTestData
|
|
|
|
PREFIX: str = "/accounting/unmatched-offsets"
|
|
"""The URL prefix for the unmatched offset management."""
|
|
|
|
|
|
class UnmatchedOffsetTestCase(unittest.TestCase):
|
|
"""The unmatched offset test case."""
|
|
|
|
def setUp(self) -> None:
|
|
"""Sets up the test.
|
|
This is run once per test.
|
|
|
|
:return: None.
|
|
"""
|
|
self.app: Flask = create_test_app()
|
|
|
|
runner: FlaskCliRunner = self.app.test_cli_runner()
|
|
with self.app.app_context():
|
|
from accounting.models import BaseAccount, JournalEntry, \
|
|
JournalEntryLineItem
|
|
result: Result
|
|
result = runner.invoke(args="init-db")
|
|
self.assertEqual(result.exit_code, 0)
|
|
if BaseAccount.query.first() is None:
|
|
result = runner.invoke(args="accounting-init-base")
|
|
self.assertEqual(result.exit_code, 0)
|
|
result = runner.invoke(args=["accounting-init-currencies",
|
|
"-u", "editor"])
|
|
self.assertEqual(result.exit_code, 0)
|
|
result = runner.invoke(args=["accounting-init-accounts",
|
|
"-u", "editor"])
|
|
self.assertEqual(result.exit_code, 0)
|
|
JournalEntry.query.delete()
|
|
JournalEntryLineItem.query.delete()
|
|
|
|
self.client, self.csrf_token = get_client(self.app, "editor")
|
|
|
|
def test_nobody(self) -> None:
|
|
"""Test the permission as nobody.
|
|
|
|
:return: None.
|
|
"""
|
|
client, csrf_token = get_client(self.app, "nobody")
|
|
DifferentTestData(self.app, self.client, self.csrf_token)
|
|
response: httpx.Response
|
|
|
|
response = client.get(PREFIX)
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
response = client.get(f"{PREFIX}/{Accounts.PAYABLE}")
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
response = client.post(f"{PREFIX}/{Accounts.PAYABLE}",
|
|
data={"csrf_token": csrf_token})
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
def test_viewer(self) -> None:
|
|
"""Test the permission as viewer.
|
|
|
|
:return: None.
|
|
"""
|
|
client, csrf_token = get_client(self.app, "viewer")
|
|
DifferentTestData(self.app, self.client, self.csrf_token)
|
|
response: httpx.Response
|
|
|
|
response = client.get(PREFIX)
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
response = client.get(f"{PREFIX}/{Accounts.PAYABLE}")
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
response = client.post(f"{PREFIX}/{Accounts.PAYABLE}",
|
|
data={"csrf_token": csrf_token})
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
def test_editor(self) -> None:
|
|
"""Test the permission as editor.
|
|
|
|
:return: None.
|
|
"""
|
|
DifferentTestData(self.app, self.client, self.csrf_token)
|
|
response: httpx.Response
|
|
|
|
response = self.client.get(PREFIX)
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
response = self.client.get(f"{PREFIX}/{Accounts.PAYABLE}")
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
response = self.client.post(f"{PREFIX}/{Accounts.PAYABLE}",
|
|
data={"csrf_token": self.csrf_token})
|
|
self.assertEqual(response.status_code, 302)
|
|
self.assertEqual(response.headers["Location"],
|
|
f"{PREFIX}/{Accounts.PAYABLE}")
|
|
|
|
def test_empty_db(self) -> None:
|
|
"""Test the empty database.
|
|
|
|
:return: None.
|
|
"""
|
|
response: httpx.Response
|
|
|
|
response = self.client.get(PREFIX)
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
response = self.client.get(f"{PREFIX}/{Accounts.PAYABLE}")
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
response = self.client.post(f"{PREFIX}/{Accounts.PAYABLE}",
|
|
data={"csrf_token": self.csrf_token})
|
|
self.assertEqual(response.status_code, 302)
|
|
self.assertEqual(response.headers["Location"],
|
|
f"{PREFIX}/{Accounts.PAYABLE}")
|
|
|
|
def test_different(self) -> None:
|
|
"""Tests to match against different descriptions and amounts.
|
|
|
|
:return: None.
|
|
"""
|
|
from accounting.models import Account, JournalEntryLineItem
|
|
from accounting.utils.offset_matcher import OffsetMatcher
|
|
data: DifferentTestData \
|
|
= DifferentTestData(self.app, self.client, self.csrf_token)
|
|
account: Account | None
|
|
line_item: JournalEntryLineItem | None
|
|
matcher: OffsetMatcher
|
|
list_uri: str
|
|
match_uri: str
|
|
response: httpx.Response
|
|
|
|
# The receivables
|
|
with self.app.app_context():
|
|
account = Account.find_by_code(Accounts.RECEIVABLE)
|
|
assert account is not None
|
|
matcher = OffsetMatcher(account)
|
|
self.assertEqual({x.id for x in matcher.unapplied},
|
|
{data.l_r_or1d.id, data.l_r_or2d.id,
|
|
data.l_r_or3d.id, data.l_r_or4d.id})
|
|
self.assertEqual({x.id for x in matcher.unmatched_offsets},
|
|
{data.l_r_of1c.id, data.l_r_of2c.id,
|
|
data.l_r_of3c.id, data.l_r_of4c.id,
|
|
data.l_r_of5c.id})
|
|
self.assertEqual({(x.original_line_item.id, x.offset.id)
|
|
for x in matcher.matched_pairs},
|
|
{(data.l_r_or4d.id, data.l_r_of5c.id)})
|
|
for line_item_id in {data.l_r_of1c.id, data.l_r_of2c.id,
|
|
data.l_r_of3c.id, data.l_r_of4c.id,
|
|
data.l_r_of5c.id}:
|
|
line_item = db.session.get(JournalEntryLineItem, line_item_id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNone(line_item.original_line_item_id)
|
|
|
|
list_uri = f"{PREFIX}/{Accounts.RECEIVABLE}"
|
|
match_uri = f"{PREFIX}/{Accounts.RECEIVABLE}"
|
|
response = self.client.post(match_uri,
|
|
data={"csrf_token": self.csrf_token})
|
|
self.assertEqual(response.status_code, 302)
|
|
self.assertEqual(response.headers["Location"], list_uri)
|
|
|
|
with self.app.app_context():
|
|
account = Account.find_by_code(Accounts.RECEIVABLE)
|
|
assert account is not None
|
|
matcher = OffsetMatcher(account)
|
|
self.assertEqual({x.id for x in matcher.unapplied},
|
|
{data.l_r_or1d.id, data.l_r_or2d.id,
|
|
data.l_r_or3d.id})
|
|
self.assertEqual({x.id for x in matcher.unmatched_offsets},
|
|
{data.l_r_of1c.id, data.l_r_of2c.id,
|
|
data.l_r_of3c.id, data.l_r_of4c.id})
|
|
self.assertEqual(matcher.matches, 0)
|
|
for line_item_id in {data.l_r_of1c.id, data.l_r_of2c.id,
|
|
data.l_r_of3c.id, data.l_r_of4c.id}:
|
|
line_item = db.session.get(JournalEntryLineItem, line_item_id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNone(line_item.original_line_item_id)
|
|
line_item = db.session.get(JournalEntryLineItem, data.l_r_of5c.id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNotNone(line_item.original_line_item_id)
|
|
self.assertEqual(line_item.original_line_item_id, data.l_r_or4d.id)
|
|
|
|
# The payables
|
|
with self.app.app_context():
|
|
account = Account.find_by_code(Accounts.PAYABLE)
|
|
assert account is not None
|
|
matcher = OffsetMatcher(account)
|
|
self.assertEqual({x.id for x in matcher.unapplied},
|
|
{data.l_p_or1c.id, data.l_p_or2c.id,
|
|
data.l_p_or3c.id, data.l_p_or4c.id})
|
|
self.assertEqual({x.id for x in matcher.unmatched_offsets},
|
|
{data.l_p_of1d.id, data.l_p_of2d.id,
|
|
data.l_p_of3d.id, data.l_p_of4d.id,
|
|
data.l_p_of5d.id})
|
|
self.assertEqual({(x.original_line_item.id, x.offset.id)
|
|
for x in matcher.matched_pairs},
|
|
{(data.l_p_or4c.id, data.l_p_of5d.id)})
|
|
for line_item_id in {data.l_p_of1d.id, data.l_p_of2d.id,
|
|
data.l_p_of3d.id, data.l_p_of4d.id,
|
|
data.l_p_of5d.id}:
|
|
line_item = db.session.get(JournalEntryLineItem, line_item_id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNone(line_item.original_line_item_id)
|
|
|
|
list_uri = f"{PREFIX}/{Accounts.PAYABLE}"
|
|
match_uri = f"{PREFIX}/{Accounts.PAYABLE}"
|
|
response = self.client.post(match_uri,
|
|
data={"csrf_token": self.csrf_token})
|
|
self.assertEqual(response.status_code, 302)
|
|
self.assertEqual(response.headers["Location"], list_uri)
|
|
|
|
with self.app.app_context():
|
|
account = Account.find_by_code(Accounts.PAYABLE)
|
|
assert account is not None
|
|
matcher = OffsetMatcher(account)
|
|
self.assertEqual({x.id for x in matcher.unapplied},
|
|
{data.l_p_or1c.id, data.l_p_or2c.id,
|
|
data.l_p_or3c.id})
|
|
self.assertEqual({x.id for x in matcher.unmatched_offsets},
|
|
{data.l_p_of1d.id, data.l_p_of2d.id,
|
|
data.l_p_of3d.id, data.l_p_of4d.id})
|
|
self.assertEqual(matcher.matches, 0)
|
|
for line_item_id in {data.l_p_of1d.id, data.l_p_of2d.id,
|
|
data.l_p_of3d.id, data.l_p_of4d.id}:
|
|
line_item = db.session.get(JournalEntryLineItem, line_item_id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNone(line_item.original_line_item_id)
|
|
line_item = db.session.get(JournalEntryLineItem, data.l_p_of5d.id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNotNone(line_item.original_line_item_id)
|
|
self.assertEqual(line_item.original_line_item_id, data.l_p_or4c.id)
|
|
|
|
def test_same(self) -> None:
|
|
"""Tests to match against same descriptions and amounts.
|
|
|
|
:return: None.
|
|
"""
|
|
from accounting.models import Account, JournalEntryLineItem
|
|
from accounting.utils.offset_matcher import OffsetMatcher
|
|
data: SameTestData \
|
|
= SameTestData(self.app, self.client, self.csrf_token)
|
|
account: Account | None
|
|
line_item: JournalEntryLineItem | None
|
|
matcher: OffsetMatcher
|
|
list_uri: str
|
|
match_uri: str
|
|
response: httpx.Response
|
|
|
|
# The receivables
|
|
with self.app.app_context():
|
|
account = Account.find_by_code(Accounts.RECEIVABLE)
|
|
assert account is not None
|
|
matcher = OffsetMatcher(account)
|
|
self.assertEqual({x.id for x in matcher.unapplied},
|
|
{data.l_r_or1d.id, data.l_r_or3d.id,
|
|
data.l_r_or4d.id, data.l_r_or5d.id,
|
|
data.l_r_or6d.id})
|
|
self.assertEqual({x.id for x in matcher.unmatched_offsets},
|
|
{data.l_r_of1c.id, data.l_r_of2c.id,
|
|
data.l_r_of4c.id, data.l_r_of5c.id,
|
|
data.l_r_of6c.id})
|
|
self.assertEqual({(x.original_line_item.id, x.offset.id)
|
|
for x in matcher.matched_pairs},
|
|
{(data.l_r_or1d.id, data.l_r_of2c.id),
|
|
(data.l_r_or3d.id, data.l_r_of4c.id),
|
|
(data.l_r_or4d.id, data.l_r_of6c.id)})
|
|
for line_item_id in {data.l_r_of1c.id, data.l_r_of2c.id,
|
|
data.l_r_of4c.id, data.l_r_of5c.id,
|
|
data.l_r_of6c.id}:
|
|
line_item = db.session.get(JournalEntryLineItem, line_item_id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNone(line_item.original_line_item_id)
|
|
line_item = db.session.get(JournalEntryLineItem, data.l_r_of3c.id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNotNone(line_item.original_line_item_id)
|
|
self.assertEqual(line_item.original_line_item_id, data.l_r_or2d.id)
|
|
|
|
list_uri = f"{PREFIX}/{Accounts.RECEIVABLE}"
|
|
match_uri = f"{PREFIX}/{Accounts.RECEIVABLE}"
|
|
response = self.client.post(match_uri,
|
|
data={"csrf_token": self.csrf_token})
|
|
self.assertEqual(response.status_code, 302)
|
|
self.assertEqual(response.headers["Location"], list_uri)
|
|
|
|
with self.app.app_context():
|
|
account = Account.find_by_code(Accounts.RECEIVABLE)
|
|
assert account is not None
|
|
matcher = OffsetMatcher(account)
|
|
self.assertEqual({x.id for x in matcher.unapplied},
|
|
{data.l_r_or5d.id, data.l_r_or6d.id})
|
|
self.assertEqual({x.id for x in matcher.unmatched_offsets},
|
|
{data.l_r_of1c.id, data.l_r_of5c.id})
|
|
self.assertEqual(matcher.matches, 0)
|
|
for line_item_id in {data.l_r_of1c.id, data.l_r_of5c.id}:
|
|
line_item = db.session.get(JournalEntryLineItem, line_item_id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNone(line_item.original_line_item_id)
|
|
line_item = db.session.get(JournalEntryLineItem, data.l_r_of2c.id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNotNone(line_item.original_line_item_id)
|
|
self.assertEqual(line_item.original_line_item_id, data.l_r_or1d.id)
|
|
line_item = db.session.get(JournalEntryLineItem, data.l_r_of3c.id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNotNone(line_item.original_line_item_id)
|
|
self.assertEqual(line_item.original_line_item_id, data.l_r_or2d.id)
|
|
line_item = db.session.get(JournalEntryLineItem, data.l_r_of4c.id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNotNone(line_item.original_line_item_id)
|
|
self.assertEqual(line_item.original_line_item_id, data.l_r_or3d.id)
|
|
line_item = db.session.get(JournalEntryLineItem, data.l_r_of6c.id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNotNone(line_item.original_line_item_id)
|
|
self.assertEqual(line_item.original_line_item_id, data.l_r_or4d.id)
|
|
|
|
# The payables
|
|
with self.app.app_context():
|
|
account = Account.find_by_code(Accounts.PAYABLE)
|
|
assert account is not None
|
|
matcher = OffsetMatcher(account)
|
|
self.assertEqual({x.id for x in matcher.unapplied},
|
|
{data.l_p_or1c.id, data.l_p_or3c.id,
|
|
data.l_p_or4c.id, data.l_p_or5c.id,
|
|
data.l_p_or6c.id})
|
|
self.assertEqual({x.id for x in matcher.unmatched_offsets},
|
|
{data.l_p_of1d.id, data.l_p_of2d.id,
|
|
data.l_p_of4d.id, data.l_p_of5d.id,
|
|
data.l_p_of6d.id})
|
|
self.assertEqual({(x.original_line_item.id, x.offset.id)
|
|
for x in matcher.matched_pairs},
|
|
{(data.l_p_or1c.id, data.l_p_of2d.id),
|
|
(data.l_p_or3c.id, data.l_p_of4d.id),
|
|
(data.l_p_or4c.id, data.l_p_of6d.id)})
|
|
for line_item_id in {data.l_p_of1d.id, data.l_p_of2d.id,
|
|
data.l_p_of4d.id, data.l_p_of5d.id,
|
|
data.l_p_of6d.id}:
|
|
line_item = db.session.get(JournalEntryLineItem, line_item_id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNone(line_item.original_line_item_id)
|
|
line_item = db.session.get(JournalEntryLineItem, data.l_p_of3d.id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNotNone(line_item.original_line_item_id)
|
|
self.assertEqual(line_item.original_line_item_id, data.l_p_or2c.id)
|
|
|
|
list_uri = f"{PREFIX}/{Accounts.PAYABLE}"
|
|
match_uri = f"{PREFIX}/{Accounts.PAYABLE}"
|
|
response = self.client.post(match_uri,
|
|
data={"csrf_token": self.csrf_token})
|
|
self.assertEqual(response.status_code, 302)
|
|
self.assertEqual(response.headers["Location"], list_uri)
|
|
|
|
with self.app.app_context():
|
|
account = Account.find_by_code(Accounts.PAYABLE)
|
|
assert account is not None
|
|
matcher = OffsetMatcher(account)
|
|
self.assertEqual({x.id for x in matcher.unapplied},
|
|
{data.l_p_or5c.id, data.l_p_or6c.id})
|
|
self.assertEqual({x.id for x in matcher.unmatched_offsets},
|
|
{data.l_p_of1d.id, data.l_p_of5d.id})
|
|
self.assertEqual(matcher.matches, 0)
|
|
for line_item_id in {data.l_p_of1d.id, data.l_p_of5d.id}:
|
|
line_item = db.session.get(JournalEntryLineItem, line_item_id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNone(line_item.original_line_item_id)
|
|
line_item = db.session.get(JournalEntryLineItem, data.l_p_of2d.id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNotNone(line_item.original_line_item_id)
|
|
self.assertEqual(line_item.original_line_item_id, data.l_p_or1c.id)
|
|
line_item = db.session.get(JournalEntryLineItem, data.l_p_of3d.id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNotNone(line_item.original_line_item_id)
|
|
self.assertEqual(line_item.original_line_item_id, data.l_p_or2c.id)
|
|
line_item = db.session.get(JournalEntryLineItem, data.l_p_of4d.id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNotNone(line_item.original_line_item_id)
|
|
self.assertEqual(line_item.original_line_item_id, data.l_p_or3c.id)
|
|
line_item = db.session.get(JournalEntryLineItem, data.l_p_of6d.id)
|
|
self.assertIsNotNone(line_item)
|
|
self.assertIsNotNone(line_item.original_line_item_id)
|
|
self.assertEqual(line_item.original_line_item_id, data.l_p_or4c.id)
|
|
|
|
|
|
class DifferentTestData(BaseTestData):
|
|
"""The test data for different descriptions and amounts."""
|
|
|
|
def _init_data(self) -> None:
|
|
# Receivable original line items
|
|
self.l_r_or1d, self.l_r_or1c = self._couple(
|
|
"Accountant", "1200", Accounts.RECEIVABLE, Accounts.SERVICE)
|
|
self.l_r_or2d, self.l_r_or2c = self._couple(
|
|
"Toy", "600", Accounts.RECEIVABLE, Accounts.SALES)
|
|
self.l_r_or3d, self.l_r_or3c = self._couple(
|
|
"Noodles", "100", Accounts.RECEIVABLE, Accounts.SALES)
|
|
self.l_r_or4d, self.l_r_or4c = self._couple(
|
|
"Interest", "3.4", Accounts.RECEIVABLE, Accounts.INTEREST)
|
|
|
|
# Payable original line items
|
|
self.l_p_or1d, self.l_p_or1c = self._couple(
|
|
"Airplane", "2000", Accounts.TRAVEL, Accounts.PAYABLE)
|
|
self.l_p_or2d, self.l_p_or2c = self._couple(
|
|
"Phone", "900", Accounts.OFFICE, Accounts.PAYABLE)
|
|
self.l_p_or3d, self.l_p_or3c = self._couple(
|
|
"Steak", "120", Accounts.MEAL, Accounts.PAYABLE)
|
|
self.l_p_or4d, self.l_p_or4c = self._couple(
|
|
"Envelop", "0.9", Accounts.OFFICE, Accounts.PAYABLE)
|
|
|
|
# Original journal entries
|
|
self.j_r_or1: JournalEntryData = JournalEntryData(
|
|
50, [JournalEntryCurrencyData(
|
|
"USD", [self.l_r_or1d, self.l_r_or4d],
|
|
[self.l_r_or1c, self.l_r_or4c])])
|
|
self.j_r_or2: JournalEntryData = JournalEntryData(
|
|
30, [JournalEntryCurrencyData(
|
|
"USD", [self.l_r_or2d, self.l_r_or3d],
|
|
[self.l_r_or2c, self.l_r_or3c])])
|
|
self.j_p_or1: JournalEntryData = JournalEntryData(
|
|
40, [JournalEntryCurrencyData(
|
|
"USD", [self.l_p_or1d, self.l_p_or4d],
|
|
[self.l_p_or1c, self.l_p_or4c])])
|
|
self.j_p_or2: JournalEntryData = JournalEntryData(
|
|
20, [JournalEntryCurrencyData(
|
|
"USD", [self.l_p_or2d, self.l_p_or3d],
|
|
[self.l_p_or2c, self.l_p_or3c])])
|
|
|
|
self._add_journal_entry(self.j_r_or1)
|
|
self._add_journal_entry(self.j_r_or2)
|
|
self._add_journal_entry(self.j_p_or1)
|
|
self._add_journal_entry(self.j_p_or2)
|
|
|
|
# Receivable offset items
|
|
self.l_r_of1d, self.l_r_of1c = self._couple(
|
|
"Accountant", "500", Accounts.CASH, Accounts.RECEIVABLE)
|
|
self.l_r_of2d, self.l_r_of2c = self._couple(
|
|
"Accountant", "200", Accounts.CASH, Accounts.RECEIVABLE)
|
|
self.l_r_of3d, self.l_r_of3c = self._couple(
|
|
"Accountant", "100", Accounts.CASH, Accounts.RECEIVABLE)
|
|
self.l_r_of4d, self.l_r_of4c = self._couple(
|
|
"Toy", "240", Accounts.CASH, Accounts.RECEIVABLE)
|
|
self.l_r_of5d, self.l_r_of5c = self._couple(
|
|
"Interest", "3.4", Accounts.CASH, Accounts.RECEIVABLE)
|
|
|
|
# Payable offset items
|
|
self.l_p_of1d, self.l_p_of1c = self._couple(
|
|
"Airplane", "800", Accounts.PAYABLE, Accounts.CASH)
|
|
self.l_p_of2d, self.l_p_of2c = self._couple(
|
|
"Airplane", "300", Accounts.PAYABLE, Accounts.CASH)
|
|
self.l_p_of3d, self.l_p_of3c = self._couple(
|
|
"Airplane", "100", Accounts.PAYABLE, Accounts.CASH)
|
|
self.l_p_of4d, self.l_p_of4c = self._couple(
|
|
"Phone", "400", Accounts.PAYABLE, Accounts.CASH)
|
|
self.l_p_of5d, self.l_p_of5c = self._couple(
|
|
"Envelop", "0.9", Accounts.PAYABLE, Accounts.CASH)
|
|
|
|
# Offset journal entries
|
|
self.j_r_of1: JournalEntryData = JournalEntryData(
|
|
25, [JournalEntryCurrencyData(
|
|
"USD", [self.l_r_of1d], [self.l_r_of1c])])
|
|
self.j_r_of2: JournalEntryData = JournalEntryData(
|
|
20, [JournalEntryCurrencyData(
|
|
"USD", [self.l_r_of2d, self.l_r_of3d, self.l_r_of4d],
|
|
[self.l_r_of2c, self.l_r_of3c, self.l_r_of4c])])
|
|
self.j_r_of3: JournalEntryData = JournalEntryData(
|
|
15, [JournalEntryCurrencyData(
|
|
"USD", [self.l_r_of5d], [self.l_r_of5c])])
|
|
self.j_p_of1: JournalEntryData = JournalEntryData(
|
|
15, [JournalEntryCurrencyData(
|
|
"USD", [self.l_p_of1d], [self.l_p_of1c])])
|
|
self.j_p_of2: JournalEntryData = JournalEntryData(
|
|
10, [JournalEntryCurrencyData(
|
|
"USD", [self.l_p_of2d, self.l_p_of3d, self.l_p_of4d],
|
|
[self.l_p_of2c, self.l_p_of3c, self.l_p_of4c])])
|
|
self.j_p_of3: JournalEntryData = JournalEntryData(
|
|
5, [JournalEntryCurrencyData(
|
|
"USD", [self.l_p_of5d], [self.l_p_of5c])])
|
|
|
|
self._set_need_offset({Accounts.RECEIVABLE, Accounts.PAYABLE}, False)
|
|
self._add_journal_entry(self.j_r_of1)
|
|
self._add_journal_entry(self.j_r_of2)
|
|
self._add_journal_entry(self.j_r_of3)
|
|
self._add_journal_entry(self.j_p_of1)
|
|
self._add_journal_entry(self.j_p_of2)
|
|
self._add_journal_entry(self.j_p_of3)
|
|
self._set_need_offset({Accounts.RECEIVABLE, Accounts.PAYABLE}, True)
|
|
|
|
|
|
class SameTestData(BaseTestData):
|
|
"""The test data with same descriptions and amounts."""
|
|
|
|
def _init_data(self) -> None:
|
|
# Receivable original line items
|
|
self.l_r_or1d, self.l_r_or1c = self._add_simple_journal_entry(
|
|
60, "USD", "Noodles", "100", Accounts.RECEIVABLE, Accounts.SALES)
|
|
self.l_r_or2d, self.l_r_or2c = self._add_simple_journal_entry(
|
|
50, "USD", "Noodles", "100", Accounts.RECEIVABLE, Accounts.SALES)
|
|
self.l_r_or3d, self.l_r_or3c = self._add_simple_journal_entry(
|
|
40, "USD", "Noodles", "100", Accounts.RECEIVABLE, Accounts.SALES)
|
|
self.l_r_or4d, self.l_r_or4c = self._add_simple_journal_entry(
|
|
30, "USD", "Noodles", "100", Accounts.RECEIVABLE, Accounts.SALES)
|
|
self.l_r_or5d, self.l_r_or5c = self._add_simple_journal_entry(
|
|
20, "USD", "Noodles", "100", Accounts.RECEIVABLE, Accounts.SALES)
|
|
self.l_r_or6d, self.l_r_or6c = self._add_simple_journal_entry(
|
|
10, "USD", "Noodles", "100", Accounts.RECEIVABLE, Accounts.SALES)
|
|
|
|
# Payable original line items
|
|
self.l_p_or1d, self.l_p_or1c = self._add_simple_journal_entry(
|
|
60, "USD", "Steak", "120", Accounts.MEAL, Accounts.PAYABLE)
|
|
self.l_p_or2d, self.l_p_or2c = self._add_simple_journal_entry(
|
|
50, "USD", "Steak", "120", Accounts.MEAL, Accounts.PAYABLE)
|
|
self.l_p_or3d, self.l_p_or3c = self._add_simple_journal_entry(
|
|
40, "USD", "Steak", "120", Accounts.MEAL, Accounts.PAYABLE)
|
|
self.l_p_or4d, self.l_p_or4c = self._add_simple_journal_entry(
|
|
30, "USD", "Steak", "120", Accounts.MEAL, Accounts.PAYABLE)
|
|
self.l_p_or5d, self.l_p_or5c = self._add_simple_journal_entry(
|
|
20, "USD", "Steak", "120", Accounts.MEAL, Accounts.PAYABLE)
|
|
self.l_p_or6d, self.l_p_or6c = self._add_simple_journal_entry(
|
|
10, "USD", "Steak", "120", Accounts.MEAL, Accounts.PAYABLE)
|
|
|
|
self._set_need_offset({Accounts.RECEIVABLE, Accounts.PAYABLE}, False)
|
|
|
|
# Receivable offset items
|
|
self.l_r_of1d, self.l_r_of1c = self._add_simple_journal_entry(
|
|
65, "USD", "Noodles", "100", Accounts.CASH, Accounts.RECEIVABLE)
|
|
self.l_r_of2d, self.l_r_of2c = self._add_simple_journal_entry(
|
|
35, "USD", "Noodles", "100", Accounts.CASH, Accounts.RECEIVABLE)
|
|
self.l_r_of3d, self.l_r_of3c = self._couple(
|
|
"Noodles", "100", Accounts.CASH, Accounts.RECEIVABLE)
|
|
self.l_r_of3c.original_line_item = self.l_r_or2d
|
|
j_r_of3: JournalEntryData = JournalEntryData(
|
|
35, [JournalEntryCurrencyData(
|
|
"USD", [self.l_r_of3d], [self.l_r_of3c])])
|
|
self.l_r_of4d, self.l_r_of4c = self._add_simple_journal_entry(
|
|
35, "USD", "Noodles", "100", Accounts.CASH, Accounts.RECEIVABLE)
|
|
self.l_r_of5d, self.l_r_of5c = self._add_simple_journal_entry(
|
|
35, "USD", "Noodles", "100", Accounts.CASH, Accounts.RECEIVABLE)
|
|
self.l_r_of6d, self.l_r_of6c = self._add_simple_journal_entry(
|
|
15, "USD", "Noodles", "100", Accounts.CASH, Accounts.RECEIVABLE)
|
|
|
|
# Payable offset items
|
|
self.l_p_of1d, self.l_p_of1c = self._add_simple_journal_entry(
|
|
65, "USD", "Steak", "120", Accounts.PAYABLE, Accounts.CASH)
|
|
self.l_p_of2d, self.l_p_of2c = self._add_simple_journal_entry(
|
|
35, "USD", "Steak", "120", Accounts.PAYABLE, Accounts.CASH)
|
|
self.l_p_of3d, self.l_p_of3c = self._couple(
|
|
"Steak", "120", Accounts.PAYABLE, Accounts.CASH)
|
|
self.l_p_of3d.original_line_item = self.l_p_or2c
|
|
j_p_of3: JournalEntryData = JournalEntryData(
|
|
35, [JournalEntryCurrencyData(
|
|
"USD", [self.l_p_of3d], [self.l_p_of3c])])
|
|
self.l_p_of4d, self.l_p_of4c = self._add_simple_journal_entry(
|
|
35, "USD", "Steak", "120", Accounts.PAYABLE, Accounts.CASH)
|
|
self.l_p_of5d, self.l_p_of5c = self._add_simple_journal_entry(
|
|
35, "USD", "Steak", "120", Accounts.PAYABLE, Accounts.CASH)
|
|
self.l_p_of6d, self.l_p_of6c = self._add_simple_journal_entry(
|
|
15, "USD", "Steak", "120", Accounts.PAYABLE, Accounts.CASH)
|
|
|
|
self._set_need_offset({Accounts.RECEIVABLE, Accounts.PAYABLE}, True)
|
|
self._add_journal_entry(j_r_of3)
|
|
self._add_journal_entry(j_p_of3)
|