fix: modify rows and columns for ledger view
This commit is contained in:
parent
c973e3c746
commit
944244ceff
@ -55,7 +55,7 @@ frappe.query_reports["Purchase Register"] = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "include_payments",
|
"fieldname": "include_payments",
|
||||||
"label": __("Include Payments"),
|
"label": __("Show Ledger View"),
|
||||||
"fieldtype": "Check",
|
"fieldtype": "Check",
|
||||||
"default": 0
|
"default": 0
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,17 +5,19 @@
|
|||||||
import frappe
|
import frappe
|
||||||
from frappe import _, msgprint
|
from frappe import _, msgprint
|
||||||
from frappe.query_builder.custom import ConstantColumn
|
from frappe.query_builder.custom import ConstantColumn
|
||||||
from frappe.utils import flt
|
from frappe.utils import flt, getdate
|
||||||
from pypika import Order
|
from pypika import Order
|
||||||
|
|
||||||
from erpnext.accounts.doctype.accounting_dimension.accounting_dimension import (
|
from erpnext.accounts.doctype.accounting_dimension.accounting_dimension import (
|
||||||
get_accounting_dimensions,
|
get_accounting_dimensions,
|
||||||
)
|
)
|
||||||
|
from erpnext.accounts.party import get_party_account
|
||||||
from erpnext.accounts.report.utils import (
|
from erpnext.accounts.report.utils import (
|
||||||
filter_invoices_based_on_dimensions,
|
filter_invoices_based_on_dimensions,
|
||||||
get_advance_taxes_and_charges,
|
get_advance_taxes_and_charges,
|
||||||
get_conditions,
|
get_conditions,
|
||||||
get_journal_entries,
|
get_journal_entries,
|
||||||
|
get_opening_row,
|
||||||
get_party_details,
|
get_party_details,
|
||||||
get_payment_entries,
|
get_payment_entries,
|
||||||
get_query_columns,
|
get_query_columns,
|
||||||
@ -33,10 +35,10 @@ def _execute(filters=None, additional_table_columns=None):
|
|||||||
filters = {}
|
filters = {}
|
||||||
|
|
||||||
include_payments = filters.get("include_payments")
|
include_payments = filters.get("include_payments")
|
||||||
|
if filters.get("include_payments") and not filters.get("supplier"):
|
||||||
|
frappe.throw(_("Please select a supplier for fetching payments."))
|
||||||
invoice_list = get_invoices(filters, get_query_columns(additional_table_columns))
|
invoice_list = get_invoices(filters, get_query_columns(additional_table_columns))
|
||||||
if filters.get("include_payments"):
|
if filters.get("include_payments"):
|
||||||
if not filters.get("supplier"):
|
|
||||||
frappe.throw(_("Please select a supplier for fetching payments."))
|
|
||||||
invoice_list += get_payments(filters, additional_table_columns)
|
invoice_list += get_payments(filters, additional_table_columns)
|
||||||
|
|
||||||
accounting_dimensions = get_accounting_dimensions(as_list=False)
|
accounting_dimensions = get_accounting_dimensions(as_list=False)
|
||||||
@ -62,6 +64,21 @@ def _execute(filters=None, additional_table_columns=None):
|
|||||||
|
|
||||||
company_currency = frappe.get_cached_value("Company", filters.company, "default_currency")
|
company_currency = frappe.get_cached_value("Company", filters.company, "default_currency")
|
||||||
|
|
||||||
|
res = []
|
||||||
|
if include_payments:
|
||||||
|
opening_row = get_opening_row(
|
||||||
|
"Supplier", filters.supplier, getdate(filters.from_date), filters.company
|
||||||
|
)[0]
|
||||||
|
print(opening_row)
|
||||||
|
res.append(
|
||||||
|
{
|
||||||
|
"payable_account": opening_row.account,
|
||||||
|
"debit": flt(opening_row.debit),
|
||||||
|
"credit": flt(opening_row.credit),
|
||||||
|
"balance": flt(opening_row.balance),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
running_balance = flt(opening_row.balance)
|
||||||
data = []
|
data = []
|
||||||
for inv in invoice_list:
|
for inv in invoice_list:
|
||||||
# invoice details
|
# invoice details
|
||||||
@ -69,25 +86,23 @@ def _execute(filters=None, additional_table_columns=None):
|
|||||||
purchase_receipt = list(set(invoice_po_pr_map.get(inv.name, {}).get("purchase_receipt", [])))
|
purchase_receipt = list(set(invoice_po_pr_map.get(inv.name, {}).get("purchase_receipt", [])))
|
||||||
project = list(set(invoice_po_pr_map.get(inv.name, {}).get("project", [])))
|
project = list(set(invoice_po_pr_map.get(inv.name, {}).get("project", [])))
|
||||||
|
|
||||||
row = [
|
row = {
|
||||||
inv.doctype,
|
"voucher_type": inv.doctype,
|
||||||
inv.name,
|
"voucher_no": inv.name,
|
||||||
inv.posting_date,
|
"posting_date": inv.posting_date,
|
||||||
inv.supplier,
|
"supplier_id": inv.supplier,
|
||||||
inv.supplier_name,
|
"supplier_name": inv.supplier_name,
|
||||||
*get_values_for_columns(additional_table_columns, inv).values(),
|
**get_values_for_columns(additional_table_columns, inv),
|
||||||
supplier_details.get(inv.supplier).get("supplier_group"),
|
"supplier_group": supplier_details.get(inv.supplier).get("supplier_group"),
|
||||||
supplier_details.get(inv.supplier).get("tax_id"),
|
"tax_id": supplier_details.get(inv.supplier).get("tax_id"),
|
||||||
inv.credit_to,
|
"payable_account": inv.credit_to,
|
||||||
inv.mode_of_payment,
|
"mode_of_payment": inv.mode_of_payment,
|
||||||
", ".join(project) if inv.doctype == "Purchase Invoice" else inv.project,
|
"project": ", ".join(project) if inv.doctype == "Purchase Invoice" else inv.project,
|
||||||
inv.bill_no,
|
"remarks": inv.remarks,
|
||||||
inv.bill_date,
|
"purchase_order": ", ".join(purchase_order),
|
||||||
inv.remarks,
|
"purchase_receipt": ", ".join(purchase_receipt),
|
||||||
", ".join(purchase_order),
|
"currency": company_currency,
|
||||||
", ".join(purchase_receipt),
|
}
|
||||||
company_currency,
|
|
||||||
]
|
|
||||||
|
|
||||||
# map expense values
|
# map expense values
|
||||||
base_net_total = 0
|
base_net_total = 0
|
||||||
@ -97,14 +112,16 @@ def _execute(filters=None, additional_table_columns=None):
|
|||||||
else:
|
else:
|
||||||
expense_amount = flt(invoice_expense_map.get(inv.name, {}).get(expense_acc))
|
expense_amount = flt(invoice_expense_map.get(inv.name, {}).get(expense_acc))
|
||||||
base_net_total += expense_amount
|
base_net_total += expense_amount
|
||||||
row.append(expense_amount)
|
row.update({frappe.scrub(expense_acc): expense_amount})
|
||||||
|
|
||||||
# Add amount in unrealized account
|
# Add amount in unrealized account
|
||||||
for account in unrealized_profit_loss_accounts:
|
for account in unrealized_profit_loss_accounts:
|
||||||
row.append(flt(internal_invoice_map.get((inv.name, account))))
|
row.update(
|
||||||
|
{frappe.scrub(account + "_unrealized"): flt(internal_invoice_map.get((inv.name, account)))}
|
||||||
|
)
|
||||||
|
|
||||||
# net total
|
# net total
|
||||||
row.append(base_net_total or inv.base_net_total)
|
row.update({"net_total": base_net_total or inv.base_net_total})
|
||||||
|
|
||||||
# tax account
|
# tax account
|
||||||
total_tax = 0
|
total_tax = 0
|
||||||
@ -112,13 +129,29 @@ def _execute(filters=None, additional_table_columns=None):
|
|||||||
if tax_acc not in expense_accounts:
|
if tax_acc not in expense_accounts:
|
||||||
tax_amount = flt(invoice_tax_map.get(inv.name, {}).get(tax_acc))
|
tax_amount = flt(invoice_tax_map.get(inv.name, {}).get(tax_acc))
|
||||||
total_tax += tax_amount
|
total_tax += tax_amount
|
||||||
row.append(tax_amount)
|
row.update({frappe.scrub(tax_acc): tax_amount})
|
||||||
|
|
||||||
# total tax, grand total, rounded total & outstanding amount
|
# total tax, grand total, rounded total & outstanding amount
|
||||||
row += [total_tax, inv.base_grand_total, flt(inv.base_grand_total, 0), inv.outstanding_amount]
|
row.update(
|
||||||
|
{
|
||||||
|
"total_tax": total_tax,
|
||||||
|
"garnd_total": inv.base_grand_total,
|
||||||
|
"rounded_total": inv.base_rounded_total,
|
||||||
|
"outstanding_amount": inv.outstanding_amount,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
if inv.doctype == "Purchase Invoice":
|
||||||
|
row.update({"debit": inv.base_grand_total, "credit": 0.0})
|
||||||
|
else:
|
||||||
|
row.update({"debit": 0.0, "credit": inv.base_grand_total})
|
||||||
|
if include_payments:
|
||||||
|
running_balance += row["debit"] - row["credit"]
|
||||||
|
row.update({"balance": running_balance})
|
||||||
data.append(row)
|
data.append(row)
|
||||||
|
|
||||||
return columns, sorted(data, key=lambda x: x[2])
|
res += sorted(data, key=lambda x: x["posting_date"])
|
||||||
|
return columns, res, None, None, None, include_payments
|
||||||
|
|
||||||
|
|
||||||
def get_columns(invoice_list, additional_table_columns, include_payments=False):
|
def get_columns(invoice_list, additional_table_columns, include_payments=False):
|
||||||
@ -134,6 +167,7 @@ def get_columns(invoice_list, additional_table_columns, include_payments=False):
|
|||||||
if additional_table_columns:
|
if additional_table_columns:
|
||||||
columns += additional_table_columns
|
columns += additional_table_columns
|
||||||
|
|
||||||
|
if not include_payments:
|
||||||
columns += [
|
columns += [
|
||||||
_("Supplier Group") + ":Link/Supplier Group:120",
|
_("Supplier Group") + ":Link/Supplier Group:120",
|
||||||
_("Tax Id") + "::50",
|
_("Tax Id") + "::50",
|
||||||
@ -142,12 +176,39 @@ def get_columns(invoice_list, additional_table_columns, include_payments=False):
|
|||||||
_("Project") + ":Link/Project:80",
|
_("Project") + ":Link/Project:80",
|
||||||
_("Bill No") + "::120",
|
_("Bill No") + "::120",
|
||||||
_("Bill Date") + ":Date:80",
|
_("Bill Date") + ":Date:80",
|
||||||
_("Remarks") + "::150",
|
|
||||||
_("Purchase Order") + ":Link/Purchase Order:100",
|
_("Purchase Order") + ":Link/Purchase Order:100",
|
||||||
_("Purchase Receipt") + ":Link/Purchase Receipt:100",
|
_("Purchase Receipt") + ":Link/Purchase Receipt:100",
|
||||||
{"fieldname": "currency", "label": _("Currency"), "fieldtype": "Data", "width": 80},
|
{"fieldname": "currency", "label": _("Currency"), "fieldtype": "Data", "width": 80},
|
||||||
]
|
]
|
||||||
|
else:
|
||||||
|
columns += [
|
||||||
|
_("Payable Account") + ":Link/Account:120",
|
||||||
|
_("Debit") + ":Currency/currency:120",
|
||||||
|
_("Credit") + ":Currency/currency:120",
|
||||||
|
_("Balance") + ":Currency/currency:120",
|
||||||
|
]
|
||||||
|
|
||||||
|
account_columns, accounts = get_account_columns(invoice_list, include_payments)
|
||||||
|
|
||||||
|
columns = (
|
||||||
|
columns
|
||||||
|
+ account_columns[0]
|
||||||
|
+ account_columns[1]
|
||||||
|
+ [_("Net Total") + ":Currency/currency:120"]
|
||||||
|
+ account_columns[2]
|
||||||
|
+ [_("Total Tax") + ":Currency/currency:120"]
|
||||||
|
)
|
||||||
|
|
||||||
|
if not include_payments:
|
||||||
|
columns += [
|
||||||
|
_("Rounded Total") + ":Currency/currency:120",
|
||||||
|
_("Outstanding Amount") + ":Currency/currency:120",
|
||||||
|
]
|
||||||
|
columns += [_("Remarks") + "::120"]
|
||||||
|
return columns, accounts[0], accounts[2], accounts[1]
|
||||||
|
|
||||||
|
|
||||||
|
def get_account_columns(invoice_list, include_payments):
|
||||||
expense_accounts = []
|
expense_accounts = []
|
||||||
tax_accounts = []
|
tax_accounts = []
|
||||||
unrealized_profit_loss_accounts = []
|
unrealized_profit_loss_accounts = []
|
||||||
@ -194,21 +255,10 @@ def get_columns(invoice_list, additional_table_columns, include_payments=False):
|
|||||||
if account not in expense_accounts
|
if account not in expense_accounts
|
||||||
]
|
]
|
||||||
|
|
||||||
columns = (
|
columns = [expense_columns, unrealized_profit_loss_account_columns, tax_columns]
|
||||||
columns
|
accounts = [expense_accounts, unrealized_profit_loss_accounts, tax_accounts]
|
||||||
+ expense_columns
|
|
||||||
+ unrealized_profit_loss_account_columns
|
|
||||||
+ [_("Net Total") + ":Currency/currency:120"]
|
|
||||||
+ tax_columns
|
|
||||||
+ [
|
|
||||||
_("Total Tax") + ":Currency/currency:120",
|
|
||||||
_("Grand Total") + ":Currency/currency:120",
|
|
||||||
_("Rounded Total") + ":Currency/currency:120",
|
|
||||||
_("Outstanding Amount") + ":Currency/currency:120",
|
|
||||||
]
|
|
||||||
)
|
|
||||||
|
|
||||||
return columns, expense_accounts, tax_accounts, unrealized_profit_loss_accounts
|
return columns, accounts
|
||||||
|
|
||||||
|
|
||||||
def get_invoices(filters, additional_query_columns):
|
def get_invoices(filters, additional_query_columns):
|
||||||
@ -240,6 +290,11 @@ def get_invoices(filters, additional_query_columns):
|
|||||||
if filters.get("supplier"):
|
if filters.get("supplier"):
|
||||||
query = query.where(pi.supplier == filters.supplier)
|
query = query.where(pi.supplier == filters.supplier)
|
||||||
query = get_conditions(filters, query, [pi, invoice_item])
|
query = get_conditions(filters, query, [pi, invoice_item])
|
||||||
|
if filters.get("include_payments"):
|
||||||
|
party_account = get_party_account(
|
||||||
|
"Supplier", filters.get("supplier"), filters.get("company"), include_advance=True
|
||||||
|
)
|
||||||
|
query = query.where(pi.credit_to.isin(party_account))
|
||||||
invoices = query.run(as_dict=True)
|
invoices = query.run(as_dict=True)
|
||||||
return invoices
|
return invoices
|
||||||
|
|
||||||
@ -252,6 +307,9 @@ def get_payments(filters, additional_query_columns):
|
|||||||
account="credit_to",
|
account="credit_to",
|
||||||
party="supplier",
|
party="supplier",
|
||||||
party_name="supplier_name",
|
party_name="supplier_name",
|
||||||
|
party_account=get_party_account(
|
||||||
|
"Supplier", filters.supplier, filters.company, include_advance=True
|
||||||
|
),
|
||||||
additional_query_columns="" if not additional_query_columns else additional_query_columns,
|
additional_query_columns="" if not additional_query_columns else additional_query_columns,
|
||||||
)
|
)
|
||||||
payment_entries = get_payment_entries(filters, args)
|
payment_entries = get_payment_entries(filters, args)
|
||||||
|
|||||||
@ -67,7 +67,7 @@ frappe.query_reports["Sales Register"] = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "include_payments",
|
"fieldname": "include_payments",
|
||||||
"label": __("Include Payments"),
|
"label": __("Show Ledger View"),
|
||||||
"fieldtype": "Check",
|
"fieldtype": "Check",
|
||||||
"default": 0
|
"default": 0
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,17 +6,19 @@ import frappe
|
|||||||
from frappe import _, msgprint
|
from frappe import _, msgprint
|
||||||
from frappe.model.meta import get_field_precision
|
from frappe.model.meta import get_field_precision
|
||||||
from frappe.query_builder.custom import ConstantColumn
|
from frappe.query_builder.custom import ConstantColumn
|
||||||
from frappe.utils import flt
|
from frappe.utils import flt, getdate
|
||||||
from pypika import Order
|
from pypika import Order
|
||||||
|
|
||||||
from erpnext.accounts.doctype.accounting_dimension.accounting_dimension import (
|
from erpnext.accounts.doctype.accounting_dimension.accounting_dimension import (
|
||||||
get_accounting_dimensions,
|
get_accounting_dimensions,
|
||||||
)
|
)
|
||||||
|
from erpnext.accounts.party import get_party_account
|
||||||
from erpnext.accounts.report.utils import (
|
from erpnext.accounts.report.utils import (
|
||||||
filter_invoices_based_on_dimensions,
|
filter_invoices_based_on_dimensions,
|
||||||
get_advance_taxes_and_charges,
|
get_advance_taxes_and_charges,
|
||||||
get_conditions,
|
get_conditions,
|
||||||
get_journal_entries,
|
get_journal_entries,
|
||||||
|
get_opening_row,
|
||||||
get_party_details,
|
get_party_details,
|
||||||
get_payment_entries,
|
get_payment_entries,
|
||||||
get_query_columns,
|
get_query_columns,
|
||||||
@ -34,10 +36,10 @@ def _execute(filters, additional_table_columns=None):
|
|||||||
filters = frappe._dict({})
|
filters = frappe._dict({})
|
||||||
|
|
||||||
include_payments = filters.get("include_payments")
|
include_payments = filters.get("include_payments")
|
||||||
|
if filters.get("include_payments") and not filters.get("customer"):
|
||||||
|
frappe.throw(_("Please select a customer for fetching payments."))
|
||||||
invoice_list = get_invoices(filters, get_query_columns(additional_table_columns))
|
invoice_list = get_invoices(filters, get_query_columns(additional_table_columns))
|
||||||
if filters.get("include_payments"):
|
if filters.get("include_payments"):
|
||||||
if not filters.get("customer"):
|
|
||||||
frappe.throw(_("Please select a customer for fetching payments."))
|
|
||||||
invoice_list += get_payments(filters, additional_table_columns)
|
invoice_list += get_payments(filters, additional_table_columns)
|
||||||
|
|
||||||
accounting_dimensions = get_accounting_dimensions(as_list=False)
|
accounting_dimensions = get_accounting_dimensions(as_list=False)
|
||||||
@ -65,6 +67,20 @@ def _execute(filters, additional_table_columns=None):
|
|||||||
customers = list(set(d.customer for d in invoice_list))
|
customers = list(set(d.customer for d in invoice_list))
|
||||||
customer_details = get_party_details("Customer", customers)
|
customer_details = get_party_details("Customer", customers)
|
||||||
|
|
||||||
|
res = []
|
||||||
|
if include_payments:
|
||||||
|
opening_row = get_opening_row(
|
||||||
|
"Customer", filters.customer, getdate(filters.from_date), filters.company
|
||||||
|
)[0]
|
||||||
|
res.append(
|
||||||
|
{
|
||||||
|
"receivable_account": opening_row,
|
||||||
|
"debit": flt(opening_row.debit),
|
||||||
|
"credit": flt(opening_row.credit),
|
||||||
|
"balance": flt(opening_row.balance),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
running_balance = flt(opening_row.balance)
|
||||||
data = []
|
data = []
|
||||||
for inv in invoice_list:
|
for inv in invoice_list:
|
||||||
# invoice details
|
# invoice details
|
||||||
@ -75,7 +91,7 @@ def _execute(filters, additional_table_columns=None):
|
|||||||
|
|
||||||
row = {
|
row = {
|
||||||
"voucher_type": inv.doctype,
|
"voucher_type": inv.doctype,
|
||||||
"invoice": inv.name,
|
"voucher_no": inv.name,
|
||||||
"posting_date": inv.posting_date,
|
"posting_date": inv.posting_date,
|
||||||
"customer": inv.customer,
|
"customer": inv.customer,
|
||||||
"customer_name": inv.customer_name,
|
"customer_name": inv.customer_name,
|
||||||
@ -140,9 +156,17 @@ def _execute(filters, additional_table_columns=None):
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if inv.doctype == "Sales Invoice":
|
||||||
|
row.update({"debit": inv.base_grand_total, "credit": 0.0})
|
||||||
|
else:
|
||||||
|
row.update({"debit": 0.0, "credit": inv.base_grand_total})
|
||||||
|
if include_payments:
|
||||||
|
running_balance += row["debit"] - row["credit"]
|
||||||
|
row.update({"balance": running_balance})
|
||||||
data.append(row)
|
data.append(row)
|
||||||
|
|
||||||
return columns, sorted(data, key=lambda x: x["posting_date"])
|
res += sorted(data, key=lambda x: x["posting_date"])
|
||||||
|
return columns, res, None, None, None, include_payments
|
||||||
|
|
||||||
|
|
||||||
def get_columns(invoice_list, additional_table_columns, include_payments=False):
|
def get_columns(invoice_list, additional_table_columns, include_payments=False):
|
||||||
@ -155,7 +179,7 @@ def get_columns(invoice_list, additional_table_columns, include_payments=False):
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": _("Voucher"),
|
"label": _("Voucher"),
|
||||||
"fieldname": "invoice",
|
"fieldname": "voucher_no",
|
||||||
"fieldtype": "Dynamic Link",
|
"fieldtype": "Dynamic Link",
|
||||||
"options": "voucher_type",
|
"options": "voucher_type",
|
||||||
"width": 120,
|
"width": 120,
|
||||||
@ -174,6 +198,7 @@ def get_columns(invoice_list, additional_table_columns, include_payments=False):
|
|||||||
if additional_table_columns:
|
if additional_table_columns:
|
||||||
columns += additional_table_columns
|
columns += additional_table_columns
|
||||||
|
|
||||||
|
if not include_payments:
|
||||||
columns += [
|
columns += [
|
||||||
{
|
{
|
||||||
"label": _("Customer Group"),
|
"label": _("Customer Group"),
|
||||||
@ -211,7 +236,6 @@ def get_columns(invoice_list, additional_table_columns, include_payments=False):
|
|||||||
"width": 80,
|
"width": 80,
|
||||||
},
|
},
|
||||||
{"label": _("Owner"), "fieldname": "owner", "fieldtype": "Data", "width": 100},
|
{"label": _("Owner"), "fieldname": "owner", "fieldtype": "Data", "width": 100},
|
||||||
{"label": _("Remarks"), "fieldname": "remarks", "fieldtype": "Data", "width": 150},
|
|
||||||
{
|
{
|
||||||
"label": _("Sales Order"),
|
"label": _("Sales Order"),
|
||||||
"fieldname": "sales_order",
|
"fieldname": "sales_order",
|
||||||
@ -242,12 +266,79 @@ def get_columns(invoice_list, additional_table_columns, include_payments=False):
|
|||||||
},
|
},
|
||||||
{"fieldname": "currency", "label": _("Currency"), "fieldtype": "Data", "width": 80},
|
{"fieldname": "currency", "label": _("Currency"), "fieldtype": "Data", "width": 80},
|
||||||
]
|
]
|
||||||
|
else:
|
||||||
|
columns += [
|
||||||
|
_("Receivable Account") + ":Link/Account:120",
|
||||||
|
_("Debit") + ":Currency/currency:120",
|
||||||
|
_("Credit") + ":Currency/currency:120",
|
||||||
|
_("Balance") + ":Currency/currency:120",
|
||||||
|
]
|
||||||
|
|
||||||
|
account_columns, accounts = get_account_columns(invoice_list, include_payments)
|
||||||
|
|
||||||
|
net_total_column = [
|
||||||
|
{
|
||||||
|
"label": _("Net Total"),
|
||||||
|
"fieldname": "net_total",
|
||||||
|
"fieldtype": "Currency",
|
||||||
|
"options": "currency",
|
||||||
|
"width": 120,
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
total_columns = [
|
||||||
|
{
|
||||||
|
"label": _("Tax Total"),
|
||||||
|
"fieldname": "tax_total",
|
||||||
|
"fieldtype": "Currency",
|
||||||
|
"options": "currency",
|
||||||
|
"width": 120,
|
||||||
|
}
|
||||||
|
]
|
||||||
|
if not include_payments:
|
||||||
|
total_columns += [
|
||||||
|
{
|
||||||
|
"label": _("Grand Total"),
|
||||||
|
"fieldname": "grand_total",
|
||||||
|
"fieldtype": "Currency",
|
||||||
|
"options": "currency",
|
||||||
|
"width": 120,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": _("Rounded Total"),
|
||||||
|
"fieldname": "rounded_total",
|
||||||
|
"fieldtype": "Currency",
|
||||||
|
"options": "currency",
|
||||||
|
"width": 120,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": _("Outstanding Amount"),
|
||||||
|
"fieldname": "outstanding_amount",
|
||||||
|
"fieldtype": "Currency",
|
||||||
|
"options": "currency",
|
||||||
|
"width": 120,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
columns = (
|
||||||
|
columns
|
||||||
|
+ account_columns[0]
|
||||||
|
+ account_columns[2]
|
||||||
|
+ net_total_column
|
||||||
|
+ account_columns[1]
|
||||||
|
+ total_columns
|
||||||
|
)
|
||||||
|
columns += [{"label": _("Remarks"), "fieldname": "remarks", "fieldtype": "Data", "width": 150}]
|
||||||
|
return columns, accounts[0], accounts[1], accounts[2]
|
||||||
|
|
||||||
|
|
||||||
|
def get_account_columns(invoice_list, include_payments):
|
||||||
income_accounts = []
|
income_accounts = []
|
||||||
tax_accounts = []
|
tax_accounts = []
|
||||||
|
unrealized_profit_loss_accounts = []
|
||||||
|
|
||||||
income_columns = []
|
income_columns = []
|
||||||
tax_columns = []
|
tax_columns = []
|
||||||
unrealized_profit_loss_accounts = []
|
|
||||||
unrealized_profit_loss_account_columns = []
|
unrealized_profit_loss_account_columns = []
|
||||||
|
|
||||||
if invoice_list:
|
if invoice_list:
|
||||||
@ -314,57 +405,10 @@ def get_columns(invoice_list, additional_table_columns, include_payments=False):
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
net_total_column = [
|
columns = [income_columns, unrealized_profit_loss_account_columns, tax_columns]
|
||||||
{
|
accounts = [income_accounts, unrealized_profit_loss_accounts, tax_accounts]
|
||||||
"label": _("Net Total"),
|
|
||||||
"fieldname": "net_total",
|
|
||||||
"fieldtype": "Currency",
|
|
||||||
"options": "currency",
|
|
||||||
"width": 120,
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
total_columns = [
|
return columns, accounts
|
||||||
{
|
|
||||||
"label": _("Tax Total"),
|
|
||||||
"fieldname": "tax_total",
|
|
||||||
"fieldtype": "Currency",
|
|
||||||
"options": "currency",
|
|
||||||
"width": 120,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": _("Grand Total"),
|
|
||||||
"fieldname": "grand_total",
|
|
||||||
"fieldtype": "Currency",
|
|
||||||
"options": "currency",
|
|
||||||
"width": 120,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": _("Rounded Total"),
|
|
||||||
"fieldname": "rounded_total",
|
|
||||||
"fieldtype": "Currency",
|
|
||||||
"options": "currency",
|
|
||||||
"width": 120,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": _("Outstanding Amount"),
|
|
||||||
"fieldname": "outstanding_amount",
|
|
||||||
"fieldtype": "Currency",
|
|
||||||
"options": "currency",
|
|
||||||
"width": 120,
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
columns = (
|
|
||||||
columns
|
|
||||||
+ income_columns
|
|
||||||
+ unrealized_profit_loss_account_columns
|
|
||||||
+ net_total_column
|
|
||||||
+ tax_columns
|
|
||||||
+ total_columns
|
|
||||||
)
|
|
||||||
|
|
||||||
return columns, income_accounts, tax_accounts, unrealized_profit_loss_accounts
|
|
||||||
|
|
||||||
|
|
||||||
def get_invoices(filters, additional_query_columns):
|
def get_invoices(filters, additional_query_columns):
|
||||||
@ -416,6 +460,9 @@ def get_payments(filters, additional_query_columns):
|
|||||||
account="debit_to",
|
account="debit_to",
|
||||||
party="customer",
|
party="customer",
|
||||||
party_name="customer_name",
|
party_name="customer_name",
|
||||||
|
party_account=get_party_account(
|
||||||
|
"Customer", filters.customer, filters.company, include_advance=True
|
||||||
|
),
|
||||||
additional_query_columns="" if not additional_query_columns else additional_query_columns,
|
additional_query_columns="" if not additional_query_columns else additional_query_columns,
|
||||||
)
|
)
|
||||||
payment_entries = get_payment_entries(filters, args)
|
payment_entries = get_payment_entries(filters, args)
|
||||||
|
|||||||
@ -9,6 +9,7 @@ from erpnext.accounts.doctype.accounting_dimension.accounting_dimension import (
|
|||||||
get_dimension_with_children,
|
get_dimension_with_children,
|
||||||
)
|
)
|
||||||
from erpnext.accounts.doctype.fiscal_year.fiscal_year import get_from_and_to_date
|
from erpnext.accounts.doctype.fiscal_year.fiscal_year import get_from_and_to_date
|
||||||
|
from erpnext.accounts.party import get_party_account
|
||||||
from erpnext.setup.utils import get_exchange_rate
|
from erpnext.setup.utils import get_exchange_rate
|
||||||
|
|
||||||
__exchange_rates = {}
|
__exchange_rates = {}
|
||||||
@ -247,7 +248,11 @@ def get_journal_entries(filters, args):
|
|||||||
je.mode_of_payment,
|
je.mode_of_payment,
|
||||||
journal_account.project,
|
journal_account.project,
|
||||||
)
|
)
|
||||||
.where((je.voucher_type == "Journal Entry") & (journal_account.party == filters.get(args.party)))
|
.where(
|
||||||
|
(je.voucher_type == "Journal Entry")
|
||||||
|
& (journal_account.party == filters.get(args.party))
|
||||||
|
& (journal_account.account.isin(args.party_account))
|
||||||
|
)
|
||||||
.orderby(je.posting_date, je.name, order=Order.desc)
|
.orderby(je.posting_date, je.name, order=Order.desc)
|
||||||
)
|
)
|
||||||
query = get_conditions(filters, query, [je], payments=True)
|
query = get_conditions(filters, query, [je], payments=True)
|
||||||
@ -273,7 +278,7 @@ def get_payment_entries(filters, args):
|
|||||||
pe.project,
|
pe.project,
|
||||||
pe.cost_center,
|
pe.cost_center,
|
||||||
)
|
)
|
||||||
.where((pe.party == filters.get(args.party)))
|
.where((pe.party == filters.get(args.party)) & (pe.paid_to.isin(args.party_account)))
|
||||||
.orderby(pe.posting_date, pe.name, order=Order.desc)
|
.orderby(pe.posting_date, pe.name, order=Order.desc)
|
||||||
)
|
)
|
||||||
query = get_conditions(filters, query, [pe], payments=True)
|
query = get_conditions(filters, query, [pe], payments=True)
|
||||||
@ -356,3 +361,18 @@ def filter_invoices_based_on_dimensions(filters, accounting_dimensions, invoices
|
|||||||
else:
|
else:
|
||||||
invoices_with_acc_dimensions.append(inv)
|
invoices_with_acc_dimensions.append(inv)
|
||||||
return invoices_with_acc_dimensions
|
return invoices_with_acc_dimensions
|
||||||
|
|
||||||
|
|
||||||
|
def get_opening_row(party_type, party, from_date, company):
|
||||||
|
party_account = get_party_account(party_type, party, company, include_advance=True)
|
||||||
|
gle = frappe.qb.DocType("GL Entry")
|
||||||
|
return (
|
||||||
|
frappe.qb.from_(gle)
|
||||||
|
.select(
|
||||||
|
ConstantColumn("Opening").as_("account"),
|
||||||
|
Sum(gle.debit).as_("debit"),
|
||||||
|
Sum(gle.credit).as_("credit"),
|
||||||
|
(Sum(gle.debit) - Sum(gle.credit)).as_("balance"),
|
||||||
|
)
|
||||||
|
.where((gle.account.isin(party_account)) & (gle.posting_date < from_date))
|
||||||
|
).run(as_dict=True)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user