2015-03-03 09:25:30 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
2013-01-22 06:23:14 +00:00
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
2014-02-14 10:17:51 +00:00
|
|
|
import frappe
|
2015-02-17 05:41:11 +00:00
|
|
|
from frappe.utils import cint, flt, cstr, comma_or
|
2013-12-12 13:42:19 +00:00
|
|
|
from erpnext.setup.utils import get_company_currency
|
2014-04-14 13:50:45 +00:00
|
|
|
from frappe import _, throw
|
2016-02-25 13:29:20 +00:00
|
|
|
from erpnext.stock.get_item_details import get_bin_details
|
2016-04-18 10:24:01 +00:00
|
|
|
from erpnext.stock.utils import get_incoming_rate
|
2013-01-22 06:23:14 +00:00
|
|
|
|
2013-12-12 13:42:19 +00:00
|
|
|
from erpnext.controllers.stock_controller import StockController
|
2013-01-30 07:19:08 +00:00
|
|
|
|
2013-03-19 06:31:24 +00:00
|
|
|
class SellingController(StockController):
|
2014-07-18 11:09:31 +00:00
|
|
|
def __setup__(self):
|
2015-02-22 19:36:00 +00:00
|
|
|
if hasattr(self, "taxes"):
|
2015-02-03 12:25:52 +00:00
|
|
|
self.print_templates = {
|
|
|
|
"taxes": "templates/print_formats/includes/taxes.html"
|
2014-07-21 12:55:45 +00:00
|
|
|
}
|
2014-07-18 11:09:31 +00:00
|
|
|
|
2014-09-09 10:45:35 +00:00
|
|
|
def get_feed(self):
|
|
|
|
return _("To {0} | {1} {2}").format(self.customer_name, self.currency,
|
2015-02-12 10:39:11 +00:00
|
|
|
self.grand_total)
|
2014-09-09 10:45:35 +00:00
|
|
|
|
2014-07-29 10:37:43 +00:00
|
|
|
def onload(self):
|
|
|
|
if self.doctype in ("Sales Order", "Delivery Note", "Sales Invoice"):
|
2014-12-26 07:45:21 +00:00
|
|
|
for item in self.get("items"):
|
2016-02-25 13:29:20 +00:00
|
|
|
item.update(get_bin_details(item.item_code,
|
2014-07-29 10:37:43 +00:00
|
|
|
item.warehouse))
|
|
|
|
|
2013-10-18 06:59:11 +00:00
|
|
|
def validate(self):
|
|
|
|
super(SellingController, self).validate()
|
|
|
|
self.validate_max_discount()
|
|
|
|
check_active_sales_items(self)
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-05-21 14:05:06 +00:00
|
|
|
def set_missing_values(self, for_validate=False):
|
2013-06-14 12:14:03 +00:00
|
|
|
super(SellingController, self).set_missing_values(for_validate)
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-05-21 14:05:06 +00:00
|
|
|
# set contact and address details for customer, if they are not mentioned
|
2013-06-14 12:14:03 +00:00
|
|
|
self.set_missing_lead_customer_details()
|
2013-10-17 11:31:14 +00:00
|
|
|
self.set_price_list_and_item_details()
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-06-14 12:14:03 +00:00
|
|
|
def set_missing_lead_customer_details(self):
|
2014-04-03 09:00:42 +00:00
|
|
|
if getattr(self, "customer", None):
|
2014-02-25 10:12:16 +00:00
|
|
|
from erpnext.accounts.party import _get_party_details
|
2015-02-26 09:31:23 +00:00
|
|
|
party_details = _get_party_details(self.customer,
|
|
|
|
ignore_permissions=self.flags.ignore_permissions)
|
2014-05-02 10:15:10 +00:00
|
|
|
if not self.meta.get_field("sales_team"):
|
|
|
|
party_details.pop("sales_team")
|
|
|
|
|
|
|
|
self.update_if_missing(party_details)
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2014-04-03 09:00:42 +00:00
|
|
|
elif getattr(self, "lead", None):
|
2015-02-17 05:06:54 +00:00
|
|
|
from erpnext.crm.doctype.lead.lead import get_lead_details
|
2016-04-08 12:06:10 +00:00
|
|
|
self.update_if_missing(get_lead_details(
|
|
|
|
self.lead,
|
|
|
|
posting_date=self.get('transaction_date') or self.get('posting_date'),
|
|
|
|
company=self.company))
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-10-17 11:31:14 +00:00
|
|
|
def set_price_list_and_item_details(self):
|
|
|
|
self.set_price_list_currency("Selling")
|
2014-02-11 10:44:52 +00:00
|
|
|
self.set_missing_item_details()
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-07-04 11:43:53 +00:00
|
|
|
def apply_shipping_rule(self):
|
2014-03-28 08:25:00 +00:00
|
|
|
if self.shipping_rule:
|
2014-03-28 11:14:37 +00:00
|
|
|
shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
|
2015-02-12 10:39:11 +00:00
|
|
|
value = self.base_net_total
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-07-04 11:43:53 +00:00
|
|
|
# TODO
|
|
|
|
# shipping rule calculation based on item's net weight
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-07-04 11:43:53 +00:00
|
|
|
shipping_amount = 0.0
|
2014-12-25 10:31:55 +00:00
|
|
|
for condition in shipping_rule.get("conditions"):
|
2013-07-04 11:43:53 +00:00
|
|
|
if not condition.to_value or (flt(condition.from_value) <= value <= flt(condition.to_value)):
|
|
|
|
shipping_amount = condition.shipping_amount
|
|
|
|
break
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2014-04-17 20:00:14 +00:00
|
|
|
shipping_charge = {
|
2013-07-04 18:15:22 +00:00
|
|
|
"doctype": "Sales Taxes and Charges",
|
|
|
|
"charge_type": "Actual",
|
2014-03-28 08:25:00 +00:00
|
|
|
"account_head": shipping_rule.account,
|
2014-04-17 20:00:14 +00:00
|
|
|
"cost_center": shipping_rule.cost_center
|
|
|
|
}
|
|
|
|
|
2014-12-25 10:31:55 +00:00
|
|
|
existing_shipping_charge = self.get("taxes", filters=shipping_charge)
|
2014-04-17 20:00:14 +00:00
|
|
|
if existing_shipping_charge:
|
|
|
|
# take the last record found
|
2015-05-26 22:06:09 +00:00
|
|
|
existing_shipping_charge[-1].tax_amount = shipping_amount
|
2014-04-17 20:00:14 +00:00
|
|
|
else:
|
2015-05-26 22:06:09 +00:00
|
|
|
shipping_charge["tax_amount"] = shipping_amount
|
2014-04-17 20:00:14 +00:00
|
|
|
shipping_charge["description"] = shipping_rule.label
|
2014-12-25 10:31:55 +00:00
|
|
|
self.append("taxes", shipping_charge)
|
2014-04-17 20:00:14 +00:00
|
|
|
|
|
|
|
self.calculate_taxes_and_totals()
|
|
|
|
|
|
|
|
def remove_shipping_charge(self):
|
|
|
|
if self.shipping_rule:
|
|
|
|
shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
|
2014-12-25 10:31:55 +00:00
|
|
|
existing_shipping_charge = self.get("taxes", {
|
2014-04-17 20:00:14 +00:00
|
|
|
"doctype": "Sales Taxes and Charges",
|
|
|
|
"charge_type": "Actual",
|
|
|
|
"account_head": shipping_rule.account,
|
|
|
|
"cost_center": shipping_rule.cost_center
|
2013-07-04 18:15:22 +00:00
|
|
|
})
|
2014-04-17 20:00:14 +00:00
|
|
|
if existing_shipping_charge:
|
2014-12-25 10:31:55 +00:00
|
|
|
self.get("taxes").remove(existing_shipping_charge[-1])
|
2014-04-17 20:00:14 +00:00
|
|
|
self.calculate_taxes_and_totals()
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-01-22 06:23:14 +00:00
|
|
|
def set_total_in_words(self):
|
2014-02-14 10:17:51 +00:00
|
|
|
from frappe.utils import money_in_words
|
2014-03-28 08:25:00 +00:00
|
|
|
company_currency = get_company_currency(self.company)
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2015-07-22 12:17:49 +00:00
|
|
|
disable_rounded_total = cint(frappe.db.get_value("Global Defaults", None, "disable_rounded_total"))
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2015-02-12 10:39:11 +00:00
|
|
|
if self.meta.get_field("base_in_words"):
|
|
|
|
self.base_in_words = money_in_words(disable_rounded_total and
|
2015-07-22 12:17:49 +00:00
|
|
|
abs(self.base_grand_total) or abs(self.base_rounded_total), company_currency)
|
2013-01-22 06:23:14 +00:00
|
|
|
if self.meta.get_field("in_words"):
|
2014-04-08 14:40:03 +00:00
|
|
|
self.in_words = money_in_words(disable_rounded_total and
|
2015-07-22 12:17:49 +00:00
|
|
|
abs(self.grand_total) or abs(self.rounded_total), self.currency)
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-05-21 14:05:06 +00:00
|
|
|
def calculate_commission(self):
|
2013-05-28 11:53:36 +00:00
|
|
|
if self.meta.get_field("commission_rate"):
|
2015-02-12 10:39:11 +00:00
|
|
|
self.round_floats_in(self, ["base_net_total", "commission_rate"])
|
2014-03-28 08:25:00 +00:00
|
|
|
if self.commission_rate > 100.0:
|
2014-04-14 13:50:45 +00:00
|
|
|
throw(_("Commission rate cannot be greater than 100"))
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2015-02-12 10:39:11 +00:00
|
|
|
self.total_commission = flt(self.base_net_total * self.commission_rate / 100.0,
|
2013-05-28 11:53:36 +00:00
|
|
|
self.precision("total_commission"))
|
2013-05-21 14:05:06 +00:00
|
|
|
|
|
|
|
def calculate_contribution(self):
|
2014-04-17 20:00:14 +00:00
|
|
|
if not self.meta.get_field("sales_team"):
|
|
|
|
return
|
|
|
|
|
2013-05-21 14:05:06 +00:00
|
|
|
total = 0.0
|
2014-03-27 10:42:56 +00:00
|
|
|
sales_team = self.get("sales_team")
|
2013-05-21 14:05:06 +00:00
|
|
|
for sales_person in sales_team:
|
|
|
|
self.round_floats_in(sales_person)
|
|
|
|
|
|
|
|
sales_person.allocated_amount = flt(
|
2015-02-12 10:39:11 +00:00
|
|
|
self.base_net_total * sales_person.allocated_percentage / 100.0,
|
2013-05-21 14:05:06 +00:00
|
|
|
self.precision("allocated_amount", sales_person))
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-05-21 14:05:06 +00:00
|
|
|
total += sales_person.allocated_percentage
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-05-21 14:05:06 +00:00
|
|
|
if sales_team and total != 100.0:
|
2014-04-14 13:50:45 +00:00
|
|
|
throw(_("Total allocated percentage for sales team should be 100"))
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-05-15 15:45:57 +00:00
|
|
|
def validate_order_type(self):
|
2015-10-15 11:57:46 +00:00
|
|
|
valid_types = ["Sales", "Maintenance", "Shopping Cart"]
|
2014-03-28 08:25:00 +00:00
|
|
|
if not self.order_type:
|
|
|
|
self.order_type = "Sales"
|
|
|
|
elif self.order_type not in valid_types:
|
2014-07-07 06:05:54 +00:00
|
|
|
throw(_("Order Type must be one of {0}").format(comma_or(valid_types)))
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-10-18 06:59:11 +00:00
|
|
|
def validate_max_discount(self):
|
2014-12-26 07:45:21 +00:00
|
|
|
for d in self.get("items"):
|
2014-02-26 07:05:33 +00:00
|
|
|
discount = flt(frappe.db.get_value("Item", d.item_code, "max_discount"))
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2014-02-10 12:24:04 +00:00
|
|
|
if discount and flt(d.discount_percentage) > discount:
|
2014-04-16 11:51:25 +00:00
|
|
|
frappe.throw(_("Maxiumm discount for Item {0} is {1}%").format(d.item_code, discount))
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-10-18 06:59:11 +00:00
|
|
|
def get_item_list(self):
|
|
|
|
il = []
|
2014-12-26 07:45:21 +00:00
|
|
|
for d in self.get("items"):
|
2014-09-03 07:03:31 +00:00
|
|
|
if d.qty is None:
|
2014-08-18 10:10:15 +00:00
|
|
|
frappe.throw(_("Row {0}: Qty is mandatory").format(d.idx))
|
2016-01-26 10:52:50 +00:00
|
|
|
|
2015-07-07 08:29:23 +00:00
|
|
|
if self.has_product_bundle(d.item_code):
|
2014-12-25 10:31:55 +00:00
|
|
|
for p in self.get("packed_items"):
|
2013-10-18 06:59:11 +00:00
|
|
|
if p.parent_detail_docname == d.name and p.parent_item == d.item_code:
|
|
|
|
# the packing details table's qty is already multiplied with parent's qty
|
2014-02-14 10:17:51 +00:00
|
|
|
il.append(frappe._dict({
|
2013-10-18 06:59:11 +00:00
|
|
|
'warehouse': p.warehouse,
|
|
|
|
'item_code': p.item_code,
|
|
|
|
'qty': flt(p.qty),
|
|
|
|
'uom': p.uom,
|
|
|
|
'batch_no': cstr(p.batch_no).strip(),
|
|
|
|
'serial_no': cstr(p.serial_no).strip(),
|
2015-09-21 03:48:43 +00:00
|
|
|
'name': d.name,
|
|
|
|
'target_warehouse': p.target_warehouse
|
2013-10-18 06:59:11 +00:00
|
|
|
}))
|
|
|
|
else:
|
2014-02-14 10:17:51 +00:00
|
|
|
il.append(frappe._dict({
|
2013-10-18 06:59:11 +00:00
|
|
|
'warehouse': d.warehouse,
|
|
|
|
'item_code': d.item_code,
|
|
|
|
'qty': d.qty,
|
|
|
|
'uom': d.stock_uom,
|
2015-07-17 09:49:02 +00:00
|
|
|
'stock_uom': d.stock_uom,
|
2014-04-07 06:32:57 +00:00
|
|
|
'batch_no': cstr(d.get("batch_no")).strip(),
|
|
|
|
'serial_no': cstr(d.get("serial_no")).strip(),
|
2015-09-21 03:48:43 +00:00
|
|
|
'name': d.name,
|
2015-09-21 05:26:02 +00:00
|
|
|
'target_warehouse': d.target_warehouse
|
2013-10-18 06:59:11 +00:00
|
|
|
}))
|
|
|
|
return il
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2015-07-07 08:29:23 +00:00
|
|
|
def has_product_bundle(self, item_code):
|
|
|
|
return frappe.db.sql("""select name from `tabProduct Bundle`
|
2013-10-18 06:59:11 +00:00
|
|
|
where new_item_code=%s and docstatus != 2""", item_code)
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2015-07-29 06:51:03 +00:00
|
|
|
def get_already_delivered_qty(self, current_docname, so, so_detail):
|
|
|
|
delivered_via_dn = frappe.db.sql("""select sum(qty) from `tabDelivery Note Item`
|
2014-10-08 07:16:02 +00:00
|
|
|
where so_detail = %s and docstatus = 1
|
2014-04-08 14:40:03 +00:00
|
|
|
and against_sales_order = %s
|
2015-07-29 06:51:03 +00:00
|
|
|
and parent != %s""", (so_detail, so, current_docname))
|
2016-01-26 10:52:50 +00:00
|
|
|
|
|
|
|
delivered_via_si = frappe.db.sql("""select sum(si_item.qty)
|
2015-08-17 10:06:23 +00:00
|
|
|
from `tabSales Invoice Item` si_item, `tabSales Invoice` si
|
2015-11-16 13:35:46 +00:00
|
|
|
where si_item.parent = si.name and si.update_stock = 1
|
2016-01-26 10:52:50 +00:00
|
|
|
and si_item.so_detail = %s and si.docstatus = 1
|
2015-08-17 10:06:23 +00:00
|
|
|
and si_item.sales_order = %s
|
|
|
|
and si.name != %s""", (so_detail, so, current_docname))
|
2016-01-26 10:52:50 +00:00
|
|
|
|
2015-07-29 06:51:03 +00:00
|
|
|
total_delivered_qty = (flt(delivered_via_dn[0][0]) if delivered_via_dn else 0) \
|
|
|
|
+ (flt(delivered_via_si[0][0]) if delivered_via_si else 0)
|
2016-01-26 10:52:50 +00:00
|
|
|
|
2015-07-29 06:51:03 +00:00
|
|
|
return total_delivered_qty
|
2013-10-18 06:59:11 +00:00
|
|
|
|
|
|
|
def get_so_qty_and_warehouse(self, so_detail):
|
2014-02-26 07:05:33 +00:00
|
|
|
so_item = frappe.db.sql("""select qty, warehouse from `tabSales Order Item`
|
2013-10-18 06:59:11 +00:00
|
|
|
where name = %s and docstatus = 1""", so_detail, as_dict=1)
|
|
|
|
so_qty = so_item and flt(so_item[0]["qty"]) or 0.0
|
2014-02-10 12:24:04 +00:00
|
|
|
so_warehouse = so_item and so_item[0]["warehouse"] or ""
|
2013-10-18 06:59:11 +00:00
|
|
|
return so_qty, so_warehouse
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2016-02-22 10:54:23 +00:00
|
|
|
def check_close_sales_order(self, ref_fieldname):
|
2014-12-26 07:45:21 +00:00
|
|
|
for d in self.get("items"):
|
2014-03-28 08:25:00 +00:00
|
|
|
if d.get(ref_fieldname):
|
2014-03-31 18:07:40 +00:00
|
|
|
status = frappe.db.get_value("Sales Order", d.get(ref_fieldname), "status")
|
2016-02-22 10:54:23 +00:00
|
|
|
if status == "Closed":
|
2015-10-21 13:58:53 +00:00
|
|
|
frappe.throw(_("Sales Order {0} is {1}").format(d.get(ref_fieldname), status))
|
2016-04-18 10:24:01 +00:00
|
|
|
|
|
|
|
def update_reserved_qty(self):
|
|
|
|
so_map = {}
|
|
|
|
for d in self.get("items"):
|
|
|
|
if d.so_detail:
|
|
|
|
if self.doctype == "Delivery Note" and d.against_sales_order:
|
|
|
|
so_map.setdefault(d.against_sales_order, []).append(d.so_detail)
|
|
|
|
elif self.doctype == "Sales Invoice" and d.sales_order and self.update_stock:
|
|
|
|
so_map.setdefault(d.sales_order, []).append(d.so_detail)
|
|
|
|
|
|
|
|
for so, so_item_rows in so_map.items():
|
|
|
|
if so and so_item_rows:
|
|
|
|
sales_order = frappe.get_doc("Sales Order", so)
|
|
|
|
|
|
|
|
if sales_order.status in ["Closed", "Cancelled"]:
|
|
|
|
frappe.throw(_("{0} {1} is cancelled or closed").format(_("Sales Order"), so),
|
|
|
|
frappe.InvalidStatusError)
|
|
|
|
|
|
|
|
sales_order.update_reserved_qty(so_item_rows)
|
|
|
|
|
|
|
|
def update_stock_ledger(self):
|
|
|
|
self.update_reserved_qty()
|
|
|
|
|
|
|
|
sl_entries = []
|
|
|
|
for d in self.get_item_list():
|
|
|
|
if frappe.db.get_value("Item", d.item_code, "is_stock_item") == 1 and flt(d.qty):
|
|
|
|
return_rate = 0
|
|
|
|
if cint(self.is_return) and self.return_against and self.docstatus==1:
|
|
|
|
return_rate = self.get_incoming_rate_for_sales_return(d.item_code, self.return_against)
|
|
|
|
|
|
|
|
# On cancellation or if return entry submission, make stock ledger entry for
|
|
|
|
# target warehouse first, to update serial no values properly
|
|
|
|
|
|
|
|
if d.warehouse and ((not cint(self.is_return) and self.docstatus==1)
|
|
|
|
or (cint(self.is_return) and self.docstatus==2)):
|
|
|
|
sl_entries.append(self.get_sl_entries(d, {
|
|
|
|
"actual_qty": -1*flt(d.qty),
|
|
|
|
"incoming_rate": return_rate
|
|
|
|
}))
|
|
|
|
|
|
|
|
if d.target_warehouse:
|
|
|
|
target_warehouse_sle = self.get_sl_entries(d, {
|
|
|
|
"actual_qty": flt(d.qty),
|
|
|
|
"warehouse": d.target_warehouse
|
|
|
|
})
|
|
|
|
|
|
|
|
if self.docstatus == 1:
|
|
|
|
if not cint(self.is_return):
|
|
|
|
args = frappe._dict({
|
|
|
|
"item_code": d.item_code,
|
|
|
|
"warehouse": d.warehouse,
|
|
|
|
"posting_date": self.posting_date,
|
|
|
|
"posting_time": self.posting_time,
|
|
|
|
"qty": -1*flt(d.qty),
|
|
|
|
"serial_no": d.serial_no
|
|
|
|
})
|
|
|
|
target_warehouse_sle.update({
|
|
|
|
"incoming_rate": get_incoming_rate(args)
|
|
|
|
})
|
|
|
|
else:
|
|
|
|
target_warehouse_sle.update({
|
|
|
|
"outgoing_rate": return_rate
|
|
|
|
})
|
|
|
|
sl_entries.append(target_warehouse_sle)
|
|
|
|
|
|
|
|
if d.warehouse and ((not cint(self.is_return) and self.docstatus==2)
|
|
|
|
or (cint(self.is_return) and self.docstatus==1)):
|
|
|
|
sl_entries.append(self.get_sl_entries(d, {
|
|
|
|
"actual_qty": -1*flt(d.qty),
|
|
|
|
"incoming_rate": return_rate
|
|
|
|
}))
|
|
|
|
|
|
|
|
self.make_sl_entries(sl_entries)
|
2014-04-08 14:40:03 +00:00
|
|
|
|
2013-10-18 06:59:11 +00:00
|
|
|
def check_active_sales_items(obj):
|
2014-12-26 07:45:21 +00:00
|
|
|
for d in obj.get("items"):
|
2013-10-18 06:59:11 +00:00
|
|
|
if d.item_code:
|
2016-04-15 07:22:12 +00:00
|
|
|
item = frappe.db.sql("""select docstatus,
|
2016-01-26 10:52:50 +00:00
|
|
|
income_account from tabItem where name = %s""",
|
2013-10-18 06:59:11 +00:00
|
|
|
d.item_code, as_dict=True)[0]
|
2016-04-15 07:22:12 +00:00
|
|
|
|
2014-04-03 12:08:54 +00:00
|
|
|
if getattr(d, "income_account", None) and not item.income_account:
|
2014-04-08 14:40:03 +00:00
|
|
|
frappe.db.set_value("Item", d.item_code, "income_account",
|
2013-10-18 07:25:59 +00:00
|
|
|
d.income_account)
|