fix: Fixed test case and sider issues

This commit is contained in:
Nabin Hait 2022-01-31 17:24:50 +05:30
parent 3dadfc9048
commit 6099af5d00
5 changed files with 31 additions and 27 deletions

View File

@ -4,7 +4,8 @@
import frappe
from frappe import _
from frappe.model.document import Document
from frappe.utils import getdate, format_date, add_days
from frappe.utils import add_days, format_date, getdate
class MainCostCenterCantBeChild(frappe.ValidationError):
pass

View File

@ -34,11 +34,11 @@ class TestCostCenterAllocation(unittest.TestCase):
gle = frappe.qb.DocType("GL Entry")
gl_entries = (
frappe.qb.from_(gle)
.select(gle.cost_center, gle.debit, gle.credit)
.where(gle.voucher_type == 'Journal Entry')
.where(gle.voucher_no == jv.name)
.where(gle.account == 'Sales - _TC')
.orderby(gle.cost_center)
.select(gle.cost_center, gle.debit, gle.credit)
.where(gle.voucher_type == 'Journal Entry')
.where(gle.voucher_no == jv.name)
.where(gle.account == 'Sales - _TC')
.orderby(gle.cost_center)
).run(as_dict=1)
self.assertTrue(gl_entries)
@ -57,8 +57,8 @@ class TestCostCenterAllocation(unittest.TestCase):
{
"Sub Cost Center 1 - _TC": 60,
"Main Cost Center 1 - _TC": 40
}
, save=False)
}, save=False
)
self.assertRaises(MainCostCenterCantBeChild, cca.save)
@ -75,8 +75,8 @@ class TestCostCenterAllocation(unittest.TestCase):
cca2 = create_cost_center_allocation("_Test Company", "Sub Cost Center 1 - _TC",
{
"Sub Cost Center 2 - _TC": 100
}
, save=False)
}, save=False
)
self.assertRaises(InvalidMainCostCenter, cca2.save)
@ -96,8 +96,8 @@ class TestCostCenterAllocation(unittest.TestCase):
{
"Main Cost Center 1 - _TC": 60,
"Sub Cost Center 1 - _TC": 40
}
, save=False)
}, save=False
)
self.assertRaises(InvalidChildCostCenter, cca2.save)
@ -108,8 +108,8 @@ class TestCostCenterAllocation(unittest.TestCase):
{
"Sub Cost Center 1 - _TC": 40,
"Sub Cost Center 2 - _TC": 40
}
, save=False)
}, save=False
)
self.assertRaises(WrongPercentageAllocation, cca.save)
def test_valid_from_based_on_existing_gle(self):
@ -122,8 +122,8 @@ class TestCostCenterAllocation(unittest.TestCase):
{
"Sub Cost Center 1 - _TC": 60,
"Sub Cost Center 2 - _TC": 40
}
, valid_from=add_days(today(), -1), save=False)
}, valid_from=add_days(today(), -1), save=False
)
self.assertRaises(InvalidDateError, cca.save)

View File

@ -52,6 +52,9 @@ def validate_accounting_period(gl_map):
.format(frappe.bold(accounting_periods[0].name)), ClosedAccountingPeriod)
def process_gl_map(gl_map, merge_entries=True, precision=None):
if not gl_map:
return []
gl_map = distribute_gl_based_on_cost_center_allocation(gl_map, precision)
if merge_entries:
@ -86,8 +89,7 @@ def get_cost_center_allocation_data(company, posting_date):
child = frappe.qb.DocType("Cost Center Allocation Percentage")
records = (
frappe.qb.from_(par)
.inner_join(child).on(par.name == child.parent)
frappe.qb.from_(par).inner_join(child).on(par.name == child.parent)
.select(par.main_cost_center, child.cost_center, child.percentage)
.where(par.docstatus == 1)
.where(par.company == company)

View File

@ -393,8 +393,9 @@ def set_gl_entries_by_account(
where company=%(company)s
{additional_conditions}
and posting_date <= %(to_date)s
and is_cancelled = 0
""".format(additional_conditions=additional_conditions), gl_filters, as_dict=True) #nosec
and is_cancelled = 0""".format(
additional_conditions=additional_conditions), gl_filters, as_dict=True
)
if filters and filters.get('presentation_currency'):
convert_to_presentation_currency(gl_entries, get_currency(filters), filters.get('company'))

View File

@ -35,9 +35,9 @@ def get_existing_cost_center_allocations():
records = (
frappe.qb.from_(par)
.inner_join(child).on(par.name == child.parent)
.select(par.name, child.cost_center, child.percentage_allocation)
.where(par.enable_distributed_cost_center == 1)
.inner_join(child).on(par.name == child.parent)
.select(par.name, child.cost_center, child.percentage_allocation)
.where(par.enable_distributed_cost_center == 1)
).run(as_dict=True)
cc_allocations = frappe._dict()