blob: 8686cb5cc0942b9e43396def8b07f8eb3c08a695 [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302# License: GNU General Public License v3. See license.txt
Nabin Hait2df4d542013-01-29 11:34:39 +05303
Chillar Anand915b3432021-09-02 16:44:59 +05304
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08005import json
Chillar Anand915b3432021-09-02 16:44:59 +05306
7import frappe
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05308from frappe import _, throw
Chillar Anand915b3432021-09-02 16:44:59 +05309from frappe.model.workflow import get_workflow_name, is_transition_condition_satisfied
Pruthvi Patel6c96ed42021-10-30 16:44:15 +053010from frappe.query_builder.functions import Sum
Chillar Anand915b3432021-09-02 16:44:59 +053011from frappe.utils import (
12 add_days,
13 add_months,
14 cint,
15 flt,
16 fmt_money,
17 formatdate,
18 get_last_day,
19 get_link_to_form,
20 getdate,
21 nowdate,
GangaManojd24cfff2021-10-28 20:06:48 +053022 today,
Chillar Anand915b3432021-09-02 16:44:59 +053023)
Chillar Anand915b3432021-09-02 16:44:59 +053024
25import erpnext
26from erpnext.accounts.doctype.accounting_dimension.accounting_dimension import (
27 get_accounting_dimensions,
28)
29from erpnext.accounts.doctype.pricing_rule.utils import (
30 apply_pricing_rule_for_free_items,
31 apply_pricing_rule_on_transaction,
32 get_applied_pricing_rules,
33)
34from erpnext.accounts.party import (
35 get_party_account,
36 get_party_account_currency,
Deepesh Garga7f15a02021-12-12 21:09:11 +053037 get_party_gle_currency,
Chillar Anand915b3432021-09-02 16:44:59 +053038 validate_party_frozen_disabled,
39)
40from erpnext.accounts.utils import get_account_currency, get_fiscal_years, validate_fiscal_year
Saif Ur Rehmandc3c27f2021-11-04 13:47:33 +050041from erpnext.assets.doctype.asset.depreciation import make_depreciation_entry
Chillar Anand915b3432021-09-02 16:44:59 +053042from erpnext.buying.utils import update_last_purchase_rate
43from erpnext.controllers.print_settings import (
44 set_print_templates_for_item_table,
45 set_print_templates_for_taxes,
46)
47from erpnext.controllers.sales_and_purchase_return import validate_return
48from erpnext.exceptions import InvalidCurrency
49from erpnext.setup.utils import get_exchange_rate
Ankush Menat10583eb2022-06-17 12:13:27 +053050from erpnext.stock.doctype.item.item import get_uom_conv_factor
Marica3dee5272020-06-23 10:33:47 +053051from erpnext.stock.doctype.packed_item.packed_item import make_packing_list
Chillar Anand915b3432021-09-02 16:44:59 +053052from erpnext.stock.get_item_details import (
53 _get_item_tax_template,
54 get_conversion_factor,
55 get_item_details,
56 get_item_tax_map,
57 get_item_warehouse,
58)
59from erpnext.utilities.transaction_base import TransactionBase
60
Nabin Hait1d218422015-07-17 15:19:02 +053061
Ankush Menat494bd9e2022-03-28 18:52:46 +053062class AccountMissingError(frappe.ValidationError):
63 pass
marination53b1a9a2020-11-03 15:45:25 +053064
Ankush Menat494bd9e2022-03-28 18:52:46 +053065
66force_item_fields = (
67 "item_group",
68 "brand",
69 "stock_uom",
70 "is_fixed_asset",
71 "item_tax_rate",
72 "pricing_rules",
73 "weight_per_unit",
74 "weight_uom",
75 "total_weight",
76)
77
Doridel Cahanap6f06cc22018-05-17 16:28:58 +080078
Nabin Haitbf495c92013-01-30 12:49:08 +053079class AccountsController(TransactionBase):
Nabin Hait7eba1a32017-10-02 15:59:27 +053080 def __init__(self, *args, **kwargs):
81 super(AccountsController, self).__init__(*args, **kwargs)
Anand Doshi979326b2015-09-11 16:22:37 +053082
prssanna71e5b602020-10-29 14:19:34 +053083 def get_print_settings(self):
84 print_setting_fields = []
Ankush Menat494bd9e2022-03-28 18:52:46 +053085 items_field = self.meta.get_field("items")
prssanna71e5b602020-10-29 14:19:34 +053086
Ankush Menat494bd9e2022-03-28 18:52:46 +053087 if items_field and items_field.fieldtype == "Table":
88 print_setting_fields += ["compact_item_print", "print_uom_after_quantity"]
prssanna71e5b602020-10-29 14:19:34 +053089
Ankush Menat494bd9e2022-03-28 18:52:46 +053090 taxes_field = self.meta.get_field("taxes")
91 if taxes_field and taxes_field.fieldtype == "Table":
92 print_setting_fields += ["print_taxes_with_zero_amount"]
prssanna71e5b602020-10-29 14:19:34 +053093
94 return print_setting_fields
95
Nabin Hait4ffd7f32015-08-27 12:28:36 +053096 @property
97 def company_currency(self):
98 if not hasattr(self, "__company_currency"):
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +053099 self.__company_currency = erpnext.get_company_currency(self.company)
Anand Doshi979326b2015-09-11 16:22:37 +0530100
Nabin Hait4ffd7f32015-08-27 12:28:36 +0530101 return self.__company_currency
Anand Doshi979326b2015-09-11 16:22:37 +0530102
Rohit Waghchaure7d529892016-10-06 14:35:04 +0530103 def onload(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530104 self.set_onload(
105 "make_payment_via_journal_entry",
106 frappe.db.get_single_value("Accounts Settings", "make_payment_via_journal_entry"),
107 )
Nabin Hait0551f7b2017-11-21 19:58:16 +0530108
tundee52bb822017-09-25 09:02:23 +0100109 if self.is_new():
Ankush Menat494bd9e2022-03-28 18:52:46 +0530110 relevant_docs = (
111 "Quotation",
112 "Purchase Order",
113 "Sales Order",
114 "Purchase Invoice",
115 "Sales Invoice",
116 )
tundee52bb822017-09-25 09:02:23 +0100117 if self.doctype in relevant_docs:
118 self.set_payment_schedule()
Rohit Waghchaure7d529892016-10-06 14:35:04 +0530119
tundebabzyad08d4c2018-05-16 07:01:41 +0100120 def ensure_supplier_is_not_blocked(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530121 is_supplier_payment = self.doctype == "Payment Entry" and self.party_type == "Supplier"
122 is_buying_invoice = self.doctype in ["Purchase Invoice", "Purchase Order"]
tundebabzyad08d4c2018-05-16 07:01:41 +0100123 supplier = None
124 supplier_name = None
125
126 if is_buying_invoice or is_supplier_payment:
127 supplier_name = self.supplier if is_buying_invoice else self.party
Ankush Menat494bd9e2022-03-28 18:52:46 +0530128 supplier = frappe.get_doc("Supplier", supplier_name)
tundebabzyad08d4c2018-05-16 07:01:41 +0100129
130 if supplier and supplier_name and supplier.on_hold:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530131 if (is_buying_invoice and supplier.hold_type in ["All", "Invoices"]) or (
132 is_supplier_payment and supplier.hold_type in ["All", "Payments"]
133 ):
tundebabzyad08d4c2018-05-16 07:01:41 +0100134 if not supplier.release_date or getdate(nowdate()) <= supplier.release_date:
135 frappe.msgprint(
Ankush Menat494bd9e2022-03-28 18:52:46 +0530136 _("{0} is blocked so this transaction cannot proceed").format(supplier_name),
137 raise_exception=1,
138 )
tundebabzyad08d4c2018-05-16 07:01:41 +0100139
Saurabh6f753182013-03-20 12:55:28 +0530140 def validate(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530141 if not self.get("is_return") and not self.get("is_debit_note"):
Deepesh Gargd301d262019-07-31 15:58:19 +0530142 self.validate_qty_is_not_zero()
143
nabinhait23cce732014-07-03 12:25:06 +0530144 if self.get("_action") and self._action != "update_after_submit":
Nabin Hait704a4532014-06-05 16:55:31 +0530145 self.set_missing_values(for_validate=True)
tunde62af5c52017-09-22 15:16:38 +0100146
tundebabzyad08d4c2018-05-16 07:01:41 +0100147 self.ensure_supplier_is_not_blocked()
148
Nabin Haitcfecd2b2013-07-11 17:49:18 +0530149 self.validate_date_with_fiscal_year()
Deepesh Garg4c8d15b2021-04-26 15:24:34 +0530150 self.validate_party_accounts()
151
Deepesh Gargb4be2922021-01-28 13:09:56 +0530152 self.validate_inter_company_reference()
153
Ankush Menat3714e362022-05-16 18:09:14 +0530154 self.disable_pricing_rule_on_internal_transfer()
Deepesh Gargb4be2922021-01-28 13:09:56 +0530155 self.set_incoming_rate()
Rushabh Mehtab16b9cd2015-08-03 16:13:33 +0530156
Anand Doshi3543f302013-05-24 19:25:01 +0530157 if self.meta.get_field("currency"):
Anand Doshi923d41d2013-05-28 17:23:36 +0530158 self.calculate_taxes_and_totals()
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530159
Nabin Hait1d218422015-07-17 15:19:02 +0530160 if not self.meta.get_field("is_return") or not self.is_return:
161 self.validate_value("base_grand_total", ">=", 0)
Rushabh Mehtab16b9cd2015-08-03 16:13:33 +0530162
Nabin Hait3cf67a42015-07-24 13:26:36 +0530163 validate_return(self)
Anand Doshi3543f302013-05-24 19:25:01 +0530164 self.set_total_in_words()
Anand Doshid2946502014-04-08 20:10:03 +0530165
tunde62af5c52017-09-22 15:16:38 +0100166 self.validate_all_documents_schedule()
Anand Doshid2946502014-04-08 20:10:03 +0530167
ankitjavalkarwork6c29d872014-10-06 13:20:53 +0530168 if self.meta.get_field("taxes_and_charges"):
169 self.validate_enabled_taxes_and_charges()
Nabin Haita2426fc2018-01-15 17:45:46 +0530170 self.validate_tax_account_company()
Rushabh Mehtab16b9cd2015-08-03 16:13:33 +0530171
Neil Trini Lasrado3fbbb712015-07-17 12:10:12 +0530172 self.validate_party()
Nabin Hait895029d2015-08-20 14:55:39 +0530173 self.validate_currency()
Deepesh Garg80c85dd2021-08-12 15:39:07 +0530174 self.validate_party_account_currency()
Rushabh Mehta2cb7a9f2016-06-15 16:45:03 +0530175
Ankush Menat494bd9e2022-03-28 18:52:46 +0530176 if self.doctype in ["Purchase Invoice", "Sales Invoice"]:
177 pos_check_field = "is_pos" if self.doctype == "Sales Invoice" else "is_paid"
Nabin Hait4a994d42019-04-25 17:47:26 +0530178 if cint(self.allocate_advances_automatically) and not cint(self.get(pos_check_field)):
Nabin Hait041a5c22018-08-01 18:07:39 +0530179 self.set_advances()
180
Saqiba20999c2021-07-12 14:33:23 +0530181 self.set_advance_gain_or_loss()
182
Nabin Hait041a5c22018-08-01 18:07:39 +0530183 if self.is_return:
184 self.validate_qty()
Nabin Haitacdd5082019-12-04 15:30:01 +0530185 else:
186 self.validate_deferred_start_and_end_date()
rohitwaghchaure70489252018-06-11 12:02:14 +0530187
Deepesh Garg9bf5f762022-04-06 17:33:46 +0530188 self.validate_deferred_income_expense_account()
Deepesh Gargf17ea2c2020-12-11 21:30:39 +0530189 self.set_inter_company_account()
190
Ankush Menat494bd9e2022-03-28 18:52:46 +0530191 if self.doctype == "Purchase Invoice":
Deepesh Garg7f06c8c2021-11-26 10:27:57 +0530192 self.calculate_paid_amount()
193 # apply tax withholding only if checked and applicable
194 self.set_tax_withholding()
195
Gauravf1e28e02019-02-13 16:46:24 +0530196 validate_regional(self)
Deepesh Garg7c300852020-12-26 20:14:51 +0530197
Saqib Ansaric5782b02022-01-27 20:09:56 +0530198 validate_einvoice_fields(self)
199
Ankush Menat494bd9e2022-03-28 18:52:46 +0530200 if self.doctype != "Material Request":
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530201 apply_pricing_rule_on_transaction(self)
Gauravf1e28e02019-02-13 16:46:24 +0530202
Saqib Ansaric5782b02022-01-27 20:09:56 +0530203 def before_cancel(self):
204 validate_einvoice_fields(self)
205
Saqib8e556772021-01-28 12:26:45 +0530206 def on_trash(self):
207 # delete sl and gl entries on deletion of transaction
Ankush Menat494bd9e2022-03-28 18:52:46 +0530208 if frappe.db.get_single_value("Accounts Settings", "delete_linked_ledger_entries"):
ruthra kumar70313df2022-09-08 18:53:30 +0530209 ple = frappe.qb.DocType("Payment Ledger Entry")
210 frappe.qb.from_(ple).delete().where(
211 (ple.voucher_type == self.doctype) & (ple.voucher_no == self.name)
212 ).run()
Ankush Menat494bd9e2022-03-28 18:52:46 +0530213 frappe.db.sql(
214 "delete from `tabGL Entry` where voucher_type=%s and voucher_no=%s", (self.doctype, self.name)
215 )
216 frappe.db.sql(
217 "delete from `tabStock Ledger Entry` where voucher_type=%s and voucher_no=%s",
218 (self.doctype, self.name),
219 )
Nabin Hait0551f7b2017-11-21 19:58:16 +0530220
Deepesh Garg9bf5f762022-04-06 17:33:46 +0530221 def validate_deferred_income_expense_account(self):
222 field_map = {
223 "Sales Invoice": "deferred_revenue_account",
224 "Purchase Invoice": "deferred_expense_account",
225 }
226
227 for item in self.get("items"):
228 if item.get("enable_deferred_revenue") or item.get("enable_deferred_expense"):
229 if not item.get(field_map.get(self.doctype)):
230 default_deferred_account = frappe.db.get_value(
231 "Company", self.company, "default_" + field_map.get(self.doctype)
232 )
233 if not default_deferred_account:
234 frappe.throw(
235 _(
236 "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
237 ).format(item.idx)
238 )
239 else:
240 item.set(field_map.get(self.doctype), default_deferred_account)
241
Nabin Haitacdd5082019-12-04 15:30:01 +0530242 def validate_deferred_start_and_end_date(self):
243 for d in self.items:
244 if d.get("enable_deferred_revenue") or d.get("enable_deferred_expense"):
245 if not (d.service_start_date and d.service_end_date):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530246 frappe.throw(
247 _("Row #{0}: Service Start and End Date is required for deferred accounting").format(d.idx)
248 )
Nabin Haitacdd5082019-12-04 15:30:01 +0530249 elif getdate(d.service_start_date) > getdate(d.service_end_date):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530250 frappe.throw(
251 _("Row #{0}: Service Start Date cannot be greater than Service End Date").format(d.idx)
252 )
Nabin Haitacdd5082019-12-04 15:30:01 +0530253 elif getdate(self.posting_date) > getdate(d.service_end_date):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530254 frappe.throw(
255 _("Row #{0}: Service End Date cannot be before Invoice Posting Date").format(d.idx)
256 )
Nabin Haitacdd5082019-12-04 15:30:01 +0530257
tunde62af5c52017-09-22 15:16:38 +0100258 def validate_invoice_documents_schedule(self):
Nabin Hait0551f7b2017-11-21 19:58:16 +0530259 self.validate_payment_schedule_dates()
260 self.set_due_date()
Nabin Hait0551f7b2017-11-21 19:58:16 +0530261 self.set_payment_schedule()
262 self.validate_payment_schedule_amount()
Ankush Menat494bd9e2022-03-28 18:52:46 +0530263 if not self.get("ignore_default_payment_terms_template"):
Deepesh Gargbd709f82021-08-23 19:05:52 +0530264 self.validate_due_date()
tunde62af5c52017-09-22 15:16:38 +0100265 self.validate_advance_entries()
266
267 def validate_non_invoice_documents_schedule(self):
Nabin Hait0551f7b2017-11-21 19:58:16 +0530268 self.set_payment_schedule()
Nabin Hait2f9f4f92017-12-20 12:24:59 +0530269 self.validate_payment_schedule_dates()
Nabin Hait0551f7b2017-11-21 19:58:16 +0530270 self.validate_payment_schedule_amount()
tunde62af5c52017-09-22 15:16:38 +0100271
272 def validate_all_documents_schedule(self):
273 if self.doctype in ("Sales Invoice", "Purchase Invoice") and not self.is_return:
274 self.validate_invoice_documents_schedule()
275 elif self.doctype in ("Quotation", "Purchase Order", "Sales Order"):
276 self.validate_non_invoice_documents_schedule()
277
prssanna71e5b602020-10-29 14:19:34 +0530278 def before_print(self, settings=None):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530279 if self.doctype in [
280 "Purchase Order",
281 "Sales Order",
282 "Sales Invoice",
283 "Purchase Invoice",
284 "Supplier Quotation",
285 "Purchase Receipt",
286 "Delivery Note",
287 "Quotation",
288 ]:
KanchanChauhan49a50fe2016-11-18 13:57:53 +0530289 if self.get("group_same_items"):
290 self.group_similar_items()
291
Zarrar5be6d192018-11-08 12:16:26 +0530292 df = self.meta.get_field("discount_amount")
293 if self.get("discount_amount") and hasattr(self, "taxes") and not len(self.taxes):
294 df.set("print_hide", 0)
295 self.discount_amount = -self.discount_amount
296 else:
297 df.set("print_hide", 1)
298
prssanna71e5b602020-10-29 14:19:34 +0530299 set_print_templates_for_item_table(self, settings)
300 set_print_templates_for_taxes(self, settings)
301
Mangesh-Khairnar7bcb24e2019-09-11 10:49:33 +0530302 def calculate_paid_amount(self):
Saurabh43520f92016-03-21 18:32:48 +0530303 if hasattr(self, "is_pos") or hasattr(self, "is_paid"):
304 is_paid = self.get("is_pos") or self.get("is_paid")
Mangesh-Khairnar7bcb24e2019-09-11 10:49:33 +0530305
306 if is_paid:
307 if not self.cash_bank_account:
308 # show message that the amount is not paid
Ankush Menat494bd9e2022-03-28 18:52:46 +0530309 frappe.throw(
310 _("Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified")
311 )
Marica23d7b092019-09-25 17:17:36 +0530312
Mangesh-Khairnar7bcb24e2019-09-11 10:49:33 +0530313 if cint(self.is_return) and self.grand_total > self.paid_amount:
314 self.paid_amount = flt(flt(self.grand_total), self.precision("paid_amount"))
315
316 elif not flt(self.paid_amount) and flt(self.outstanding_amount) > 0:
317 self.paid_amount = flt(flt(self.outstanding_amount), self.precision("paid_amount"))
318
Ankush Menat494bd9e2022-03-28 18:52:46 +0530319 self.base_paid_amount = flt(
320 self.paid_amount * self.conversion_rate, self.precision("base_paid_amount")
321 )
Saurabh43520f92016-03-21 18:32:48 +0530322
Anand Doshiabc10032013-06-14 17:44:03 +0530323 def set_missing_values(self, for_validate=False):
Rohit Waghchaure5d97d892016-05-12 12:58:29 +0530324 if frappe.flags.in_test:
tunde62af5c52017-09-22 15:16:38 +0100325 for fieldname in ["posting_date", "transaction_date"]:
Rohit Waghchaure5d97d892016-05-12 12:58:29 +0530326 if self.meta.get_field(fieldname) and not self.get(fieldname):
327 self.set(fieldname, today())
328 break
Anand Doshid2946502014-04-08 20:10:03 +0530329
Nabin Hait3237c752015-02-17 11:11:11 +0530330 def calculate_taxes_and_totals(self):
Nabin Haitfe81da22015-02-18 12:23:18 +0530331 from erpnext.controllers.taxes_and_totals import calculate_taxes_and_totals
Ankush Menat494bd9e2022-03-28 18:52:46 +0530332
Nabin Haitfe81da22015-02-18 12:23:18 +0530333 calculate_taxes_and_totals(self)
Nabin Hait3237c752015-02-17 11:11:11 +0530334
Raffael Meyere10ab162021-11-30 13:24:18 +0100335 if self.doctype in (
Ankush Menat494bd9e2022-03-28 18:52:46 +0530336 "Sales Order",
337 "Delivery Note",
338 "Sales Invoice",
339 "POS Invoice",
Raffael Meyere10ab162021-11-30 13:24:18 +0100340 ):
Nabin Hait3237c752015-02-17 11:11:11 +0530341 self.calculate_commission()
342 self.calculate_contribution()
343
Nabin Haitcfecd2b2013-07-11 17:49:18 +0530344 def validate_date_with_fiscal_year(self):
Doridel Cahanap6f06cc22018-05-17 16:28:58 +0800345 if self.meta.get_field("fiscal_year"):
Rohan Bansal1e3a3b22021-05-26 15:18:10 +0530346 date_field = None
Nabin Haitcfecd2b2013-07-11 17:49:18 +0530347 if self.meta.get_field("posting_date"):
348 date_field = "posting_date"
349 elif self.meta.get_field("transaction_date"):
350 date_field = "transaction_date"
Anand Doshid2946502014-04-08 20:10:03 +0530351
Rushabh Mehtaf2227d02014-03-31 23:37:40 +0530352 if date_field and self.get(date_field):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530353 validate_fiscal_year(
354 self.get(date_field), self.fiscal_year, self.company, self.meta.get_label(date_field), self
355 )
Anand Doshid2946502014-04-08 20:10:03 +0530356
Deepesh Garg4c8d15b2021-04-26 15:24:34 +0530357 def validate_party_accounts(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530358 if self.doctype not in ("Sales Invoice", "Purchase Invoice"):
Deepesh Garg4c8d15b2021-04-26 15:24:34 +0530359 return
360
Ankush Menat494bd9e2022-03-28 18:52:46 +0530361 if self.doctype == "Sales Invoice":
362 party_account_field = "debit_to"
363 item_field = "income_account"
Deepesh Garg4c8d15b2021-04-26 15:24:34 +0530364 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530365 party_account_field = "credit_to"
366 item_field = "expense_account"
Deepesh Garg4c8d15b2021-04-26 15:24:34 +0530367
Ankush Menat494bd9e2022-03-28 18:52:46 +0530368 for item in self.get("items"):
Deepesh Garg4c8d15b2021-04-26 15:24:34 +0530369 if item.get(item_field) == self.get(party_account_field):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530370 frappe.throw(
371 _("Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}").format(
372 item.idx,
373 frappe.bold(frappe.unscrub(item_field)),
374 item.get(item_field),
375 frappe.bold(frappe.unscrub(party_account_field)),
376 self.get(party_account_field),
377 )
378 )
Deepesh Garg4c8d15b2021-04-26 15:24:34 +0530379
Deepesh Gargb4be2922021-01-28 13:09:56 +0530380 def validate_inter_company_reference(self):
Rohit Waghchaureb4a102d2022-09-06 16:22:00 +0530381 if self.doctype not in ("Purchase Invoice", "Purchase Receipt"):
Deepesh Gargb4be2922021-01-28 13:09:56 +0530382 return
383
384 if self.is_internal_transfer():
Ankush Menat494bd9e2022-03-28 18:52:46 +0530385 if not (
386 self.get("inter_company_reference")
387 or self.get("inter_company_invoice_reference")
388 or self.get("inter_company_order_reference")
389 ):
Deepesh Garg4c8d15b2021-04-26 15:24:34 +0530390 msg = _("Internal Sale or Delivery Reference missing.")
Deepesh Gargb4be2922021-01-28 13:09:56 +0530391 msg += _("Please create purchase from internal sale or delivery document itself")
392 frappe.throw(msg, title=_("Internal Sales Reference Missing"))
393
Ankush Menat3714e362022-05-16 18:09:14 +0530394 def disable_pricing_rule_on_internal_transfer(self):
395 if not self.get("ignore_pricing_rule") and self.is_internal_transfer():
396 self.ignore_pricing_rule = 1
397 frappe.msgprint(
398 _("Disabled pricing rules since this {} is an internal transfer").format(self.doctype),
399 alert=1,
400 )
401
Nabin Haite9daefe2014-08-27 16:46:33 +0530402 def validate_due_date(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530403 if self.get("is_pos"):
404 return
rohitwaghchaureea943c62018-07-06 12:28:58 +0530405
Nabin Haite9daefe2014-08-27 16:46:33 +0530406 from erpnext.accounts.party import validate_due_date
Ankush Menat494bd9e2022-03-28 18:52:46 +0530407
Nabin Haite9daefe2014-08-27 16:46:33 +0530408 if self.doctype == "Sales Invoice":
Nabin Hait04d244a2015-07-22 17:47:49 +0530409 if not self.due_date:
410 frappe.throw(_("Due Date is mandatory"))
Rushabh Mehtab16b9cd2015-08-03 16:13:33 +0530411
Ankush Menat494bd9e2022-03-28 18:52:46 +0530412 validate_due_date(
413 self.posting_date,
414 self.due_date,
415 "Customer",
416 self.customer,
417 self.company,
418 self.payment_terms_template,
419 )
Nabin Haite9daefe2014-08-27 16:46:33 +0530420 elif self.doctype == "Purchase Invoice":
Ankush Menat494bd9e2022-03-28 18:52:46 +0530421 validate_due_date(
422 self.bill_date or self.posting_date,
423 self.due_date,
424 "Supplier",
425 self.supplier,
426 self.company,
427 self.bill_date,
428 self.payment_terms_template,
429 )
Nabin Haite9daefe2014-08-27 16:46:33 +0530430
Nabin Hait096d3632013-10-17 17:01:14 +0530431 def set_price_list_currency(self, buying_or_selling):
Nabin Hait1cc55fb2016-12-08 14:09:23 +0530432 if self.meta.get_field("posting_date"):
Nabin Hait288a18e2016-12-08 15:36:23 +0530433 transaction_date = self.posting_date
Nabin Hait1cc55fb2016-12-08 14:09:23 +0530434 else:
Nabin Hait288a18e2016-12-08 15:36:23 +0530435 transaction_date = self.transaction_date
Rushabh Mehta66958302017-01-16 16:57:53 +0530436
Rushabh Mehta4a404e92013-08-09 18:11:35 +0530437 if self.meta.get_field("currency"):
Nabin Hait7a75e102013-09-17 10:21:20 +0530438 # price list part
Shreya3f778522018-05-15 16:59:20 +0530439 if buying_or_selling.lower() == "selling":
440 fieldname = "selling_price_list"
441 args = "for_selling"
442 else:
443 fieldname = "buying_price_list"
444 args = "for_buying"
445
Anand Doshif78d1ae2014-03-28 13:55:00 +0530446 if self.meta.get_field(fieldname) and self.get(fieldname):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530447 self.price_list_currency = frappe.db.get_value("Price List", self.get(fieldname), "currency")
Anand Doshid2946502014-04-08 20:10:03 +0530448
Nabin Hait6e439a52015-08-28 19:24:22 +0530449 if self.price_list_currency == self.company_currency:
Anand Doshif78d1ae2014-03-28 13:55:00 +0530450 self.plc_conversion_rate = 1.0
Nabin Hait11f41952013-09-24 14:36:55 +0530451
Anand Doshif78d1ae2014-03-28 13:55:00 +0530452 elif not self.plc_conversion_rate:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530453 self.plc_conversion_rate = get_exchange_rate(
454 self.price_list_currency, self.company_currency, transaction_date, args
455 )
Anand Doshid2946502014-04-08 20:10:03 +0530456
Nabin Hait7a75e102013-09-17 10:21:20 +0530457 # currency
Anand Doshif78d1ae2014-03-28 13:55:00 +0530458 if not self.currency:
459 self.currency = self.price_list_currency
460 self.conversion_rate = self.plc_conversion_rate
Nabin Hait6e439a52015-08-28 19:24:22 +0530461 elif self.currency == self.company_currency:
Anand Doshif78d1ae2014-03-28 13:55:00 +0530462 self.conversion_rate = 1.0
463 elif not self.conversion_rate:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530464 self.conversion_rate = get_exchange_rate(
465 self.currency, self.company_currency, transaction_date, args
466 )
Nabin Hait7a75e102013-09-17 10:21:20 +0530467
Nabin Haitcccc45e2016-10-05 17:15:43 +0530468 def set_missing_item_details(self, for_validate=False):
Anand Doshi3543f302013-05-24 19:25:01 +0530469 """set missing item values"""
Nabin Haitf37d43d2017-07-18 12:14:42 +0530470 from erpnext.stock.doctype.serial_no.serial_no import get_serial_nos
Rushabh Mehtab46069d2016-01-15 16:59:26 +0530471
Nabin Haitdd38a262014-12-26 13:15:21 +0530472 if hasattr(self, "items"):
Nabin Hait444f9562014-06-20 15:59:49 +0530473 parent_dict = {}
Pratik Vyasf7daab72014-04-10 17:53:30 +0530474 for fieldname in self.meta.get_valid_columns():
475 parent_dict[fieldname] = self.get(fieldname)
476
mbauskara52472c2016-03-05 15:10:25 +0530477 if self.doctype in ["Quotation", "Sales Order", "Delivery Note", "Sales Invoice"]:
478 document_type = "{} Item".format(self.doctype)
mbauskarc97becb2016-01-18 16:28:21 +0530479 parent_dict.update({"document_type": document_type})
480
Nabin Hait34c551d2019-07-03 10:34:31 +0530481 # party_name field used for customer in quotation
Ankush Menat494bd9e2022-03-28 18:52:46 +0530482 if (
483 self.doctype == "Quotation"
484 and self.quotation_to == "Customer"
485 and parent_dict.get("party_name")
486 ):
Nabin Hait34c551d2019-07-03 10:34:31 +0530487 parent_dict.update({"customer": parent_dict.get("party_name")})
488
Rohit Waghchaurea248dfb2020-07-16 17:27:26 +0530489 self.pricing_rules = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530490 for item in self.get("items"):
Rushabh Mehtaf14b8092014-04-03 14:30:42 +0530491 if item.get("item_code"):
Nabin Hait444f9562014-06-20 15:59:49 +0530492 args = parent_dict.copy()
493 args.update(item.as_dict())
Rushabh Mehtab46069d2016-01-15 16:59:26 +0530494
Nabin Hait34d28222016-01-19 15:45:49 +0530495 args["doctype"] = self.doctype
496 args["name"] = self.name
Rohit Waghchaure8bfe3302019-03-18 14:34:19 +0530497 args["child_docname"] = item.name
Ankush Menat494bd9e2022-03-28 18:52:46 +0530498 args["ignore_pricing_rule"] = (
499 self.ignore_pricing_rule if hasattr(self, "ignore_pricing_rule") else 0
500 )
Rushabh Mehtab46069d2016-01-15 16:59:26 +0530501
Nabin Haite2f054c2015-03-09 14:54:37 +0530502 if not args.get("transaction_date"):
503 args["transaction_date"] = args.get("posting_date")
Anand Doshi2b2b6392015-03-20 14:18:09 +0530504
505 if self.get("is_subcontracted"):
506 args["is_subcontracted"] = self.is_subcontracted
Rohit Waghchaure8bfe3302019-03-18 14:34:19 +0530507
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530508 ret = get_item_details(args, self, for_validate=True, overwrite_warehouse=False)
Rohit Waghchaure8bfe3302019-03-18 14:34:19 +0530509
Rushabh Mehtaf14b8092014-04-03 14:30:42 +0530510 for fieldname, value in ret.items():
Anand Doshi602e8252015-11-16 19:05:46 +0530511 if item.meta.get_field(fieldname) and value is not None:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530512 if item.get(fieldname) is None or fieldname in force_item_fields:
Rushabh Mehtaf14b8092014-04-03 14:30:42 +0530513 item.set(fieldname, value)
Anand Doshid2946502014-04-08 20:10:03 +0530514
Ankush Menat494bd9e2022-03-28 18:52:46 +0530515 elif fieldname in ["cost_center", "conversion_factor"] and not item.get(fieldname):
Anand Doshi602e8252015-11-16 19:05:46 +0530516 item.set(fieldname, value)
517
Rohit Waghchauredc981dc2017-04-03 14:17:08 +0530518 elif fieldname == "serial_no":
Alchez9155e402018-07-09 16:57:42 +0530519 # Ensure that serial numbers are matched against Stock UOM
520 item_conversion_factor = item.get("conversion_factor") or 1.0
521 item_qty = abs(item.get("qty")) * item_conversion_factor
Alchez8f2a0f32018-07-06 14:36:52 +0530522
Ankush Menat494bd9e2022-03-28 18:52:46 +0530523 if item_qty != len(get_serial_nos(item.get("serial_no"))):
Rohit Waghchauredc981dc2017-04-03 14:17:08 +0530524 item.set(fieldname, value)
Nabin Haita74468b2014-12-30 18:33:52 +0530525
Saqib Ansariab36b272022-02-09 10:10:17 +0530526 elif (
527 ret.get("pricing_rule_removed")
528 and value is not None
529 and fieldname
530 in [
531 "discount_percentage",
532 "discount_amount",
533 "rate",
534 "margin_rate_or_amount",
535 "margin_type",
536 "remove_free_item",
537 ]
538 ):
Saqib Ansarib8c41e32022-01-20 13:06:08 +0530539 # reset pricing rule fields if pricing_rule_removed
540 item.set(fieldname, value)
541
Ankush Menat494bd9e2022-03-28 18:52:46 +0530542 if self.doctype in ["Purchase Invoice", "Sales Invoice"] and item.meta.get_field(
543 "is_fixed_asset"
544 ):
545 item.set("is_fixed_asset", ret.get("is_fixed_asset", 0))
Rohit Waghchauref6f503a2018-12-19 15:06:44 +0530546
Deepesh Garga60c3082021-05-11 16:38:33 +0530547 # Double check for cost center
548 # Items add via promotional scheme may not have cost center set
Ankush Menat494bd9e2022-03-28 18:52:46 +0530549 if hasattr(item, "cost_center") and not item.get("cost_center"):
550 item.set(
551 "cost_center", self.get("cost_center") or erpnext.get_default_cost_center(self.company)
552 )
Deepesh Garga60c3082021-05-11 16:38:33 +0530553
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530554 if ret.get("pricing_rules"):
555 self.apply_pricing_rule_on_items(item, ret)
Rohit Waghchaurea248dfb2020-07-16 17:27:26 +0530556 self.set_pricing_rule_details(item, ret)
Ankush Menat10583eb2022-06-17 12:13:27 +0530557 else:
558 # Transactions line item without item code
559
560 uom = item.get("uom")
561 stock_uom = item.get("stock_uom")
562 if bool(uom) != bool(stock_uom): # xor
563 item.stock_uom = item.uom = uom or stock_uom
564
565 item.conversion_factor = get_uom_conv_factor(item.get("uom"), item.get("stock_uom"))
Rushabh Mehtab46069d2016-01-15 16:59:26 +0530566
Nabin Hait14aa9c52016-04-18 15:54:01 +0530567 if self.doctype == "Purchase Invoice":
Nabin Haitcccc45e2016-10-05 17:15:43 +0530568 self.set_expense_account(for_validate)
Nabin Haita3dd72a2014-05-28 12:49:20 +0530569
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530570 def apply_pricing_rule_on_items(self, item, pricing_rule_args):
571 if not pricing_rule_args.get("validate_applied_rule", 0):
572 # if user changed the discount percentage then set user's discount percentage ?
Ankush Menat494bd9e2022-03-28 18:52:46 +0530573 if pricing_rule_args.get("price_or_product_discount") == "Price":
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530574 item.set("pricing_rules", pricing_rule_args.get("pricing_rules"))
Rohit Waghchauref5bd3fa2022-09-16 15:23:10 +0530575 if pricing_rule_args.get("apply_rule_on_other_items"):
576 other_items = json.loads(pricing_rule_args.get("apply_rule_on_other_items"))
577 if other_items and item.item_code not in other_items:
578 return
579
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530580 item.set("discount_percentage", pricing_rule_args.get("discount_percentage"))
581 item.set("discount_amount", pricing_rule_args.get("discount_amount"))
582 if pricing_rule_args.get("pricing_rule_for") == "Rate":
583 item.set("price_list_rate", pricing_rule_args.get("price_list_rate"))
584
585 if item.get("price_list_rate"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530586 item.rate = flt(
587 item.price_list_rate * (1.0 - (flt(item.discount_percentage) / 100.0)),
588 item.precision("rate"),
589 )
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530590
Ankush Menat494bd9e2022-03-28 18:52:46 +0530591 if item.get("discount_amount"):
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530592 item.rate = item.price_list_rate - item.discount_amount
593
Rohit Waghchaurea248dfb2020-07-16 17:27:26 +0530594 if item.get("apply_discount_on_discounted_rate") and pricing_rule_args.get("rate"):
595 item.rate = pricing_rule_args.get("rate")
596
Ankush Menat494bd9e2022-03-28 18:52:46 +0530597 elif pricing_rule_args.get("free_item_data"):
598 apply_pricing_rule_for_free_items(self, pricing_rule_args.get("free_item_data"))
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530599
600 elif pricing_rule_args.get("validate_applied_rule"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530601 for pricing_rule in get_applied_pricing_rules(item.get("pricing_rules")):
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530602 pricing_rule_doc = frappe.get_cached_doc("Pricing Rule", pricing_rule)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530603 for field in ["discount_percentage", "discount_amount", "rate"]:
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530604 if item.get(field) < pricing_rule_doc.get(field):
605 title = get_link_to_form("Pricing Rule", pricing_rule)
606
Ankush Menat494bd9e2022-03-28 18:52:46 +0530607 frappe.msgprint(
608 _("Row {0}: user has not applied the rule {1} on the item {2}").format(
609 item.idx, frappe.bold(title), frappe.bold(item.item_code)
610 )
611 )
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530612
Rohit Waghchaurea248dfb2020-07-16 17:27:26 +0530613 def set_pricing_rule_details(self, item_row, args):
614 pricing_rules = get_applied_pricing_rules(args.get("pricing_rules"))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530615 if not pricing_rules:
616 return
Rohit Waghchaurea248dfb2020-07-16 17:27:26 +0530617
618 for pricing_rule in pricing_rules:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530619 self.append(
620 "pricing_rules",
621 {
622 "pricing_rule": pricing_rule,
623 "item_code": item_row.item_code,
624 "child_docname": item_row.name,
625 "rule_applied": True,
626 },
627 )
Rohit Waghchaurea248dfb2020-07-16 17:27:26 +0530628
Nabin Haitffc7f3f2015-05-12 15:07:02 +0530629 def set_taxes(self):
630 if not self.meta.get_field("taxes"):
Anand Doshi3543f302013-05-24 19:25:01 +0530631 return
Anand Doshid2946502014-04-08 20:10:03 +0530632
Nabin Haitffc7f3f2015-05-12 15:07:02 +0530633 tax_master_doctype = self.meta.get_field("taxes_and_charges").options
Anand Doshid2946502014-04-08 20:10:03 +0530634
rohitwaghchaure57914f12018-04-24 19:19:47 +0530635 if (self.is_new() or self.is_pos_profile_changed()) and not self.get("taxes"):
rohitwaghchaure505661b2017-12-11 14:52:28 +0530636 if self.company and not self.get("taxes_and_charges"):
Anand Doshi3543f302013-05-24 19:25:01 +0530637 # get the default tax master
Ankush Menat494bd9e2022-03-28 18:52:46 +0530638 self.taxes_and_charges = frappe.db.get_value(
639 tax_master_doctype, {"is_default": 1, "company": self.company}
640 )
Anand Doshid2946502014-04-08 20:10:03 +0530641
Nabin Haitffc7f3f2015-05-12 15:07:02 +0530642 self.append_taxes_from_master(tax_master_doctype)
Anand Doshid2946502014-04-08 20:10:03 +0530643
rohitwaghchaure57914f12018-04-24 19:19:47 +0530644 def is_pos_profile_changed(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530645 if (
646 self.doctype == "Sales Invoice"
647 and self.is_pos
648 and self.pos_profile != frappe.db.get_value("Sales Invoice", self.name, "pos_profile")
649 ):
rohitwaghchaure57914f12018-04-24 19:19:47 +0530650 return True
651
Nabin Haitffc7f3f2015-05-12 15:07:02 +0530652 def append_taxes_from_master(self, tax_master_doctype=None):
653 if self.get("taxes_and_charges"):
Anand Doshi99100a42013-07-04 17:13:53 +0530654 if not tax_master_doctype:
Nabin Haitffc7f3f2015-05-12 15:07:02 +0530655 tax_master_doctype = self.meta.get_field("taxes_and_charges").options
Anand Doshid2946502014-04-08 20:10:03 +0530656
Nabin Haitffc7f3f2015-05-12 15:07:02 +0530657 self.extend("taxes", get_taxes_and_charges(tax_master_doctype, self.get("taxes_and_charges")))
Akhilesh Darjee4cdb7992014-01-30 13:56:57 +0530658
Anand Doshiac32bad2014-04-18 01:30:14 +0530659 def set_other_charges(self):
Nabin Haite7d15362014-12-25 16:01:55 +0530660 self.set("taxes", [])
Nabin Haitffc7f3f2015-05-12 15:07:02 +0530661 self.set_taxes()
Anand Doshid2946502014-04-08 20:10:03 +0530662
ankitjavalkarwork6c29d872014-10-06 13:20:53 +0530663 def validate_enabled_taxes_and_charges(self):
664 taxes_and_charges_doctype = self.meta.get_options("taxes_and_charges")
665 if frappe.db.get_value(taxes_and_charges_doctype, self.taxes_and_charges, "disabled"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530666 frappe.throw(
667 _("{0} '{1}' is disabled").format(taxes_and_charges_doctype, self.taxes_and_charges)
668 )
ankitjavalkarwork6c29d872014-10-06 13:20:53 +0530669
Nabin Haita2426fc2018-01-15 17:45:46 +0530670 def validate_tax_account_company(self):
671 for d in self.get("taxes"):
672 if d.account_head:
673 tax_account_company = frappe.db.get_value("Account", d.account_head, "company")
674 if tax_account_company != self.company:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530675 frappe.throw(
676 _("Row #{0}: Account {1} does not belong to company {2}").format(
677 d.idx, d.account_head, self.company
678 )
679 )
Nabin Haita2426fc2018-01-15 17:45:46 +0530680
deepeshgarg0073d11ac02019-05-19 00:02:01 +0530681 def get_gl_dict(self, args, account_currency=None, item=None):
Nabin Hait2df4d542013-01-29 11:34:39 +0530682 """this method populates the common properties of a gl entry record"""
Rushabh Mehta2cb7a9f2016-06-15 16:45:03 +0530683
Ankush Menat494bd9e2022-03-28 18:52:46 +0530684 posting_date = args.get("posting_date") or self.get("posting_date")
Rohit Waghchaureaa7b4342018-05-11 01:56:05 +0530685 fiscal_years = get_fiscal_years(posting_date, company=self.company)
Nabin Hait2ed0b592016-03-29 13:14:17 +0530686 if len(fiscal_years) > 1:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530687 frappe.throw(
688 _("Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year").format(
689 formatdate(posting_date)
690 )
691 )
Nabin Hait2ed0b592016-03-29 13:14:17 +0530692 else:
693 fiscal_year = fiscal_years[0][0]
Rushabh Mehta2cb7a9f2016-06-15 16:45:03 +0530694
Ankush Menat494bd9e2022-03-28 18:52:46 +0530695 gl_dict = frappe._dict(
696 {
697 "company": self.company,
698 "posting_date": posting_date,
699 "fiscal_year": fiscal_year,
700 "voucher_type": self.doctype,
701 "voucher_no": self.name,
702 "remarks": self.get("remarks") or self.get("remark"),
703 "debit": 0,
704 "credit": 0,
705 "debit_in_account_currency": 0,
706 "credit_in_account_currency": 0,
707 "is_opening": self.get("is_opening") or "No",
708 "party_type": None,
709 "party": None,
710 "project": self.get("project"),
711 "post_net_value": args.get("post_net_value"),
712 }
713 )
deepeshgarg007d83cf652019-05-12 18:34:23 +0530714
715 accounting_dimensions = get_accounting_dimensions()
716 dimension_dict = frappe._dict()
717
718 for dimension in accounting_dimensions:
719 dimension_dict[dimension] = self.get(dimension)
deepeshgarg0073d11ac02019-05-19 00:02:01 +0530720 if item and item.get(dimension):
721 dimension_dict[dimension] = item.get(dimension)
deepeshgarg007d83cf652019-05-12 18:34:23 +0530722
723 gl_dict.update(dimension_dict)
Nabin Hait2df4d542013-01-29 11:34:39 +0530724 gl_dict.update(args)
Anand Doshi979326b2015-09-11 16:22:37 +0530725
Nabin Hait895029d2015-08-20 14:55:39 +0530726 if not account_currency:
Anand Doshicd0989e2015-09-28 13:31:17 +0530727 account_currency = get_account_currency(gl_dict.account)
Anand Doshi979326b2015-09-11 16:22:37 +0530728
Ankush Menat494bd9e2022-03-28 18:52:46 +0530729 if gl_dict.account and self.doctype not in [
730 "Journal Entry",
731 "Period Closing Voucher",
732 "Payment Entry",
733 "Purchase Receipt",
734 "Purchase Invoice",
735 "Stock Entry",
736 ]:
Anand Doshibe6cfdd2015-09-17 21:07:04 +0530737 self.validate_account_currency(gl_dict.account, account_currency)
Deepesh Garg7c300852020-12-26 20:14:51 +0530738
Ankush Menat494bd9e2022-03-28 18:52:46 +0530739 if gl_dict.account and self.doctype not in [
740 "Journal Entry",
741 "Period Closing Voucher",
742 "Payment Entry",
743 ]:
744 set_balance_in_account_currency(
745 gl_dict, account_currency, self.get("conversion_rate"), self.company_currency
746 )
Anand Doshi979326b2015-09-11 16:22:37 +0530747
Nabin Haitc561a492015-08-19 19:22:34 +0530748 return gl_dict
Anand Doshi979326b2015-09-11 16:22:37 +0530749
Anurag Mishrae657fe82018-11-26 15:19:17 +0530750 def validate_qty_is_not_zero(self):
Maricac68a9402019-12-03 12:59:22 +0530751 if self.doctype != "Purchase Receipt":
752 for item in self.items:
753 if not item.qty:
754 frappe.throw(_("Item quantity can not be zero"))
Anurag Mishrae657fe82018-11-26 15:19:17 +0530755
Nabin Hait895029d2015-08-20 14:55:39 +0530756 def validate_account_currency(self, account, account_currency=None):
Nabin Hait6e439a52015-08-28 19:24:22 +0530757 valid_currency = [self.company_currency]
758 if self.get("currency") and self.currency != self.company_currency:
759 valid_currency.append(self.currency)
760
Nabin Hait895029d2015-08-20 14:55:39 +0530761 if account_currency not in valid_currency:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530762 frappe.throw(
763 _("Account {0} is invalid. Account Currency must be {1}").format(
764 account, (" " + _("or") + " ").join(valid_currency)
765 )
766 )
Anand Doshi979326b2015-09-11 16:22:37 +0530767
Anand Doshi613cb6a2013-02-06 17:33:46 +0530768 def clear_unallocated_advances(self, childtype, parentfield):
Rushabh Mehtaf191f852014-04-02 18:09:34 +0530769 self.set(parentfield, self.get(parentfield, {"allocated_amount": ["not in", [0, None, ""]]}))
770
Ankush Menat494bd9e2022-03-28 18:52:46 +0530771 frappe.db.sql(
772 """delete from `tab%s` where parentfield=%s and parent = %s
773 and allocated_amount = 0"""
774 % (childtype, "%s", "%s"),
775 (parentfield, self.name),
776 )
Anand Doshid2946502014-04-08 20:10:03 +0530777
Walstan Baptistad6360752021-03-31 12:30:32 +0530778 @frappe.whitelist()
Rushabh Mehta30dc9a12017-11-17 14:31:09 +0530779 def apply_shipping_rule(self):
780 if self.shipping_rule:
781 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
782 shipping_rule.apply(self)
783 self.calculate_taxes_and_totals()
784
785 def get_shipping_address(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530786 """Returns Address object from shipping address fields if present"""
Rushabh Mehta30dc9a12017-11-17 14:31:09 +0530787
788 # shipping address fields can be `shipping_address_name` or `shipping_address`
789 # try getting value from both
790
Ankush Menat494bd9e2022-03-28 18:52:46 +0530791 for fieldname in ("shipping_address_name", "shipping_address"):
Rushabh Mehta30dc9a12017-11-17 14:31:09 +0530792 shipping_field = self.meta.get_field(fieldname)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530793 if shipping_field and shipping_field.fieldtype == "Link":
Rushabh Mehta30dc9a12017-11-17 14:31:09 +0530794 if self.get(fieldname):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530795 return frappe.get_doc("Address", self.get(fieldname))
Rushabh Mehta30dc9a12017-11-17 14:31:09 +0530796
797 return {}
798
Walstan Baptistad6360752021-03-31 12:30:32 +0530799 @frappe.whitelist()
Nabin Hait041a5c22018-08-01 18:07:39 +0530800 def set_advances(self):
801 """Returns list of advances against Account, Party, Reference"""
802
803 res = self.get_advance_entries()
804
805 self.set("advances", [])
806 advance_allocated = 0
807 for d in res:
808 if d.against_order:
809 allocated_amount = flt(d.amount)
810 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530811 if self.get("party_account_currency") == self.company_currency:
812 amount = self.get("base_rounded_total") or self.base_grand_total
Deepesh Garg26210162020-08-11 16:06:13 +0530813 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530814 amount = self.get("rounded_total") or self.grand_total
Deepesh Garg26210162020-08-11 16:06:13 +0530815
Rohit Waghchaure6cc2f522018-11-27 12:07:03 +0530816 allocated_amount = min(amount - advance_allocated, d.amount)
Nabin Hait041a5c22018-08-01 18:07:39 +0530817 advance_allocated += flt(allocated_amount)
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530818
Saqiba20999c2021-07-12 14:33:23 +0530819 advance_row = {
Nabin Hait041a5c22018-08-01 18:07:39 +0530820 "doctype": self.doctype + " Advance",
821 "reference_type": d.reference_type,
822 "reference_name": d.reference_name,
823 "reference_row": d.reference_row,
824 "remarks": d.remarks,
825 "advance_amount": flt(d.amount),
Saqiba20999c2021-07-12 14:33:23 +0530826 "allocated_amount": allocated_amount,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530827 "ref_exchange_rate": flt(d.exchange_rate), # exchange_rate of advance entry
Saqiba20999c2021-07-12 14:33:23 +0530828 }
829
830 self.append("advances", advance_row)
Nabin Hait041a5c22018-08-01 18:07:39 +0530831
Nabin Hait28a05282016-06-27 17:41:39 +0530832 def get_advance_entries(self, include_unallocated=True):
833 if self.doctype == "Sales Invoice":
834 party_account = self.debit_to
835 party_type = "Customer"
836 party = self.customer
837 amount_field = "credit_in_account_currency"
838 order_field = "sales_order"
839 order_doctype = "Sales Order"
840 else:
841 party_account = self.credit_to
842 party_type = "Supplier"
843 party = self.supplier
844 amount_field = "debit_in_account_currency"
845 order_field = "purchase_order"
846 order_doctype = "Purchase Order"
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530847
Ankush Menat494bd9e2022-03-28 18:52:46 +0530848 order_list = list(set(d.get(order_field) for d in self.get("items") if d.get(order_field)))
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530849
Ankush Menat494bd9e2022-03-28 18:52:46 +0530850 journal_entries = get_advance_journal_entries(
851 party_type, party, party_account, amount_field, order_doctype, order_list, include_unallocated
852 )
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530853
Ankush Menat494bd9e2022-03-28 18:52:46 +0530854 payment_entries = get_advance_payment_entries(
855 party_type, party, party_account, order_doctype, order_list, include_unallocated
856 )
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530857
Nabin Hait28a05282016-06-27 17:41:39 +0530858 res = journal_entries + payment_entries
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530859
Nabin Hait28a05282016-06-27 17:41:39 +0530860 return res
Nabin Hait48f5fa62014-09-18 15:03:54 +0530861
rohitwaghchaurebf4c1142018-01-08 15:20:15 +0530862 def is_inclusive_tax(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530863 is_inclusive = cint(
864 frappe.db.get_single_value("Accounts Settings", "show_inclusive_tax_in_print")
865 )
rohitwaghchaurebf4c1142018-01-08 15:20:15 +0530866
867 if is_inclusive:
868 is_inclusive = 0
869 if self.get("taxes", filters={"included_in_print_rate": 1}):
870 is_inclusive = 1
871
872 return is_inclusive
873
Nabin Hait28a05282016-06-27 17:41:39 +0530874 def validate_advance_entries(self):
Nabin Hait05aefbb2016-06-28 19:42:19 +0530875 order_field = "sales_order" if self.doctype == "Sales Invoice" else "purchase_order"
Ankush Menat494bd9e2022-03-28 18:52:46 +0530876 order_list = list(set(d.get(order_field) for d in self.get("items") if d.get(order_field)))
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530877
Ankush Menat494bd9e2022-03-28 18:52:46 +0530878 if not order_list:
879 return
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530880
Nabin Hait28a05282016-06-27 17:41:39 +0530881 advance_entries = self.get_advance_entries(include_unallocated=False)
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530882
Nabin Hait28a05282016-06-27 17:41:39 +0530883 if advance_entries:
884 advance_entries_against_si = [d.reference_name for d in self.get("advances")]
885 for d in advance_entries:
886 if not advance_entries_against_si or d.reference_name not in advance_entries_against_si:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530887 frappe.msgprint(
888 _(
889 "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
890 ).format(d.reference_name, d.against_order)
891 )
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530892
Saqiba20999c2021-07-12 14:33:23 +0530893 def set_advance_gain_or_loss(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530894 if self.get("conversion_rate") == 1 or not self.get("advances"):
Saqib Ansari64efe8b2021-09-26 15:46:13 +0530895 return
896
Ankush Menat494bd9e2022-03-28 18:52:46 +0530897 is_purchase_invoice = self.doctype == "Purchase Invoice"
Saqib Ansari64efe8b2021-09-26 15:46:13 +0530898 party_account = self.credit_to if is_purchase_invoice else self.debit_to
899 if get_account_currency(party_account) != self.currency:
Saqiba20999c2021-07-12 14:33:23 +0530900 return
901
902 for d in self.get("advances"):
903 advance_exchange_rate = d.ref_exchange_rate
Ankush Menat494bd9e2022-03-28 18:52:46 +0530904 if d.allocated_amount and self.conversion_rate != advance_exchange_rate:
Saqiba20999c2021-07-12 14:33:23 +0530905
906 base_allocated_amount_in_ref_rate = advance_exchange_rate * d.allocated_amount
907 base_allocated_amount_in_inv_rate = self.conversion_rate * d.allocated_amount
908 difference = base_allocated_amount_in_ref_rate - base_allocated_amount_in_inv_rate
909
910 d.exchange_gain_loss = difference
911
912 def make_exchange_gain_loss_gl_entries(self, gl_entries):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530913 if self.get("doctype") in ["Purchase Invoice", "Sales Invoice"]:
Saqiba20999c2021-07-12 14:33:23 +0530914 for d in self.get("advances"):
915 if d.exchange_gain_loss:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530916 is_purchase_invoice = self.get("doctype") == "Purchase Invoice"
Saqibd4ae1fe2021-07-30 11:21:49 +0530917 party = self.supplier if is_purchase_invoice else self.customer
918 party_account = self.credit_to if is_purchase_invoice else self.debit_to
919 party_type = "Supplier" if is_purchase_invoice else "Customer"
Saqiba20999c2021-07-12 14:33:23 +0530920
Ankush Menat494bd9e2022-03-28 18:52:46 +0530921 gain_loss_account = frappe.db.get_value("Company", self.company, "exchange_gain_loss_account")
Saqibd4ae1fe2021-07-30 11:21:49 +0530922 if not gain_loss_account:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530923 frappe.throw(
924 _("Please set default Exchange Gain/Loss Account in Company {}").format(self.get("company"))
925 )
Saqiba20999c2021-07-12 14:33:23 +0530926 account_currency = get_account_currency(gain_loss_account)
927 if account_currency != self.company_currency:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530928 frappe.throw(
929 _("Currency for {0} must be {1}").format(gain_loss_account, self.company_currency)
930 )
Saqiba20999c2021-07-12 14:33:23 +0530931
932 # for purchase
Ankush Menat494bd9e2022-03-28 18:52:46 +0530933 dr_or_cr = "debit" if d.exchange_gain_loss > 0 else "credit"
Saqibd4ae1fe2021-07-30 11:21:49 +0530934 if not is_purchase_invoice:
935 # just reverse for sales?
Ankush Menat494bd9e2022-03-28 18:52:46 +0530936 dr_or_cr = "debit" if dr_or_cr == "credit" else "credit"
Saqiba20999c2021-07-12 14:33:23 +0530937
938 gl_entries.append(
Ankush Menat494bd9e2022-03-28 18:52:46 +0530939 self.get_gl_dict(
940 {
941 "account": gain_loss_account,
942 "account_currency": account_currency,
943 "against": party,
944 dr_or_cr + "_in_account_currency": abs(d.exchange_gain_loss),
945 dr_or_cr: abs(d.exchange_gain_loss),
946 "cost_center": self.cost_center or erpnext.get_default_cost_center(self.company),
947 "project": self.project,
948 },
949 item=d,
950 )
Saqiba20999c2021-07-12 14:33:23 +0530951 )
952
Ankush Menat494bd9e2022-03-28 18:52:46 +0530953 dr_or_cr = "debit" if dr_or_cr == "credit" else "credit"
Saqiba20999c2021-07-12 14:33:23 +0530954
955 gl_entries.append(
Ankush Menat494bd9e2022-03-28 18:52:46 +0530956 self.get_gl_dict(
957 {
958 "account": party_account,
959 "party_type": party_type,
960 "party": party,
961 "against": gain_loss_account,
962 dr_or_cr + "_in_account_currency": flt(abs(d.exchange_gain_loss) / self.conversion_rate),
963 dr_or_cr: abs(d.exchange_gain_loss),
964 "cost_center": self.cost_center,
965 "project": self.project,
966 },
967 self.party_account_currency,
968 item=self,
969 )
Saqiba20999c2021-07-12 14:33:23 +0530970 )
971
Nabin Hait28a05282016-06-27 17:41:39 +0530972 def update_against_document_in_jv(self):
973 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530974 Links invoice and advance voucher:
975 1. cancel advance voucher
976 2. split into multiple rows if partially adjusted, assign against voucher
977 3. submit advance voucher
Nabin Hait28a05282016-06-27 17:41:39 +0530978 """
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530979
Nabin Hait28a05282016-06-27 17:41:39 +0530980 if self.doctype == "Sales Invoice":
Nabin Haitff2f3ef2016-07-04 11:41:14 +0530981 party_type = "Customer"
Nabin Hait28a05282016-06-27 17:41:39 +0530982 party = self.customer
983 party_account = self.debit_to
984 dr_or_cr = "credit_in_account_currency"
985 else:
Nabin Haitff2f3ef2016-07-04 11:41:14 +0530986 party_type = "Supplier"
Nabin Hait28a05282016-06-27 17:41:39 +0530987 party = self.supplier
988 party_account = self.credit_to
989 dr_or_cr = "debit_in_account_currency"
Nabin Hait48f5fa62014-09-18 15:03:54 +0530990
Nabin Hait28a05282016-06-27 17:41:39 +0530991 lst = []
Ankush Menat494bd9e2022-03-28 18:52:46 +0530992 for d in self.get("advances"):
Nabin Hait28a05282016-06-27 17:41:39 +0530993 if flt(d.allocated_amount) > 0:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530994 args = frappe._dict(
995 {
996 "voucher_type": d.reference_type,
997 "voucher_no": d.reference_name,
998 "voucher_detail_no": d.reference_row,
999 "against_voucher_type": self.doctype,
1000 "against_voucher": self.name,
1001 "account": party_account,
1002 "party_type": party_type,
1003 "party": party,
1004 "is_advance": "Yes",
1005 "dr_or_cr": dr_or_cr,
1006 "unadjusted_amount": flt(d.advance_amount),
1007 "allocated_amount": flt(d.allocated_amount),
1008 "precision": d.precision("advance_amount"),
1009 "exchange_rate": (
1010 self.conversion_rate if self.party_account_currency != self.company_currency else 1
1011 ),
1012 "grand_total": (
1013 self.base_grand_total
1014 if self.party_account_currency == self.company_currency
1015 else self.grand_total
1016 ),
1017 "outstanding_amount": self.outstanding_amount,
1018 "difference_account": frappe.db.get_value(
1019 "Company", self.company, "exchange_gain_loss_account"
1020 ),
1021 "exchange_gain_loss": flt(d.get("exchange_gain_loss")),
1022 }
1023 )
Nabin Hait28a05282016-06-27 17:41:39 +05301024 lst.append(args)
Rushabh Mehtaea0ff232016-07-07 14:02:26 +05301025
Nabin Hait28a05282016-06-27 17:41:39 +05301026 if lst:
1027 from erpnext.accounts.utils import reconcile_against_document
Ankush Menat494bd9e2022-03-28 18:52:46 +05301028
Nabin Hait28a05282016-06-27 17:41:39 +05301029 reconcile_against_document(lst)
Anand Doshid2946502014-04-08 20:10:03 +05301030
Rohit Waghchaure5fa9a7a2019-04-01 00:40:38 +05301031 def on_cancel(self):
1032 from erpnext.accounts.utils import unlink_ref_doc_from_payment_entries
1033
1034 if self.doctype in ["Sales Invoice", "Purchase Invoice"]:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301035 if frappe.db.get_single_value("Accounts Settings", "unlink_payment_on_cancellation_of_invoice"):
Rohit Waghchaure5fa9a7a2019-04-01 00:40:38 +05301036 unlink_ref_doc_from_payment_entries(self)
1037
1038 elif self.doctype in ["Sales Order", "Purchase Order"]:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301039 if frappe.db.get_single_value(
1040 "Accounts Settings", "unlink_advance_payment_on_cancelation_of_order"
1041 ):
Rohit Waghchaure5fa9a7a2019-04-01 00:40:38 +05301042 unlink_ref_doc_from_payment_entries(self)
1043
GangaManoj8396f242021-09-20 19:01:46 +05301044 if self.doctype == "Sales Order":
1045 self.unlink_ref_doc_from_po()
1046
1047 def unlink_ref_doc_from_po(self):
GangaManoj8396f242021-09-20 19:01:46 +05301048 so_items = []
1049 for item in self.items:
1050 so_items.append(item.name)
1051
Ankush Menat494bd9e2022-03-28 18:52:46 +05301052 linked_po = list(
1053 set(
1054 frappe.get_all(
1055 "Purchase Order Item",
1056 filters={
1057 "sales_order": self.name,
1058 "sales_order_item": ["in", so_items],
1059 "docstatus": ["<", 2],
1060 },
1061 pluck="parent",
1062 )
1063 )
1064 )
GangaManoj8396f242021-09-20 19:01:46 +05301065
GangaManoj8396f242021-09-20 19:01:46 +05301066 if linked_po:
GangaManoje77534f2021-09-20 19:01:46 +05301067 frappe.db.set_value(
Ankush Menat494bd9e2022-03-28 18:52:46 +05301068 "Purchase Order Item",
1069 {"sales_order": self.name, "sales_order_item": ["in", so_items], "docstatus": ["<", 2]},
1070 {"sales_order": None, "sales_order_item": None},
GangaManoje77534f2021-09-20 19:01:46 +05301071 )
GangaManoj8396f242021-09-20 19:01:46 +05301072
1073 frappe.msgprint(_("Purchase Orders {0} are un-linked").format("\n".join(linked_po)))
1074
Deepesh Gargd18dde72020-11-29 21:40:04 +05301075 def get_tax_map(self):
1076 tax_map = {}
Ankush Menat494bd9e2022-03-28 18:52:46 +05301077 for tax in self.get("taxes"):
Deepesh Gargd18dde72020-11-29 21:40:04 +05301078 tax_map.setdefault(tax.account_head, 0.0)
1079 tax_map[tax.account_head] += tax.tax_amount
1080
1081 return tax_map
1082
Deepesh Garg92f7a5a2021-07-21 15:25:40 +05301083 def get_amount_and_base_amount(self, item, enable_discount_accounting):
1084 amount = item.net_amount
1085 base_amount = item.base_net_amount
1086
Ankush Menat494bd9e2022-03-28 18:52:46 +05301087 if (
1088 enable_discount_accounting
1089 and self.get("discount_amount")
1090 and self.get("additional_discount_account")
1091 ):
Deepesh Garg92f7a5a2021-07-21 15:25:40 +05301092 amount = item.amount
1093 base_amount = item.base_amount
1094
1095 return amount, base_amount
1096
1097 def get_tax_amounts(self, tax, enable_discount_accounting):
1098 amount = tax.tax_amount_after_discount_amount
1099 base_amount = tax.base_tax_amount_after_discount_amount
1100
Ankush Menat494bd9e2022-03-28 18:52:46 +05301101 if (
1102 enable_discount_accounting
1103 and self.get("discount_amount")
1104 and self.get("additional_discount_account")
1105 and self.get("apply_discount_on") == "Grand Total"
1106 ):
Deepesh Garg92f7a5a2021-07-21 15:25:40 +05301107 amount = tax.tax_amount
1108 base_amount = tax.base_tax_amount
1109
1110 return amount, base_amount
1111
GangaManoj8f7b0a12021-07-13 03:01:02 +05301112 def make_discount_gl_entries(self, gl_entries):
rahib-hassanf3fa6ac2022-04-20 16:01:12 +05301113 if self.doctype == "Purchase Invoice":
1114 enable_discount_accounting = cint(
1115 frappe.db.get_single_value("Buying Settings", "enable_discount_accounting")
1116 )
1117 elif self.doctype == "Sales Invoice":
1118 enable_discount_accounting = cint(
1119 frappe.db.get_single_value("Selling Settings", "enable_discount_accounting")
1120 )
GangaManoj8f7b0a12021-07-13 03:01:02 +05301121
Deepesh Garg3b159662022-08-21 17:51:05 +05301122 if self.doctype == "Purchase Invoice":
1123 dr_or_cr = "credit"
1124 rev_dr_cr = "debit"
1125 supplier_or_customer = self.supplier
1126
1127 else:
1128 dr_or_cr = "debit"
1129 rev_dr_cr = "credit"
1130 supplier_or_customer = self.customer
1131
GangaManoj8f7b0a12021-07-13 03:01:02 +05301132 if enable_discount_accounting:
1133 for item in self.get("items"):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301134 if item.get("discount_amount") and item.get("discount_account"):
Deepesh Gargad7bb312021-07-28 11:38:44 +05301135 discount_amount = item.discount_amount * item.qty
GangaManoj8f7b0a12021-07-13 03:01:02 +05301136 if self.doctype == "Purchase Invoice":
Ankush Menat494bd9e2022-03-28 18:52:46 +05301137 income_or_expense_account = (
1138 item.expense_account
Ankush Menat4551d7d2021-08-19 13:41:10 +05301139 if (not item.enable_deferred_expense or self.is_return)
Ankush Menat494bd9e2022-03-28 18:52:46 +05301140 else item.deferred_expense_account
1141 )
GangaManoj8f7b0a12021-07-13 03:01:02 +05301142 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301143 income_or_expense_account = (
1144 item.income_account
Ankush Menat4551d7d2021-08-19 13:41:10 +05301145 if (not item.enable_deferred_revenue or self.is_return)
Ankush Menat494bd9e2022-03-28 18:52:46 +05301146 else item.deferred_revenue_account
1147 )
GangaManoj8f7b0a12021-07-13 03:01:02 +05301148
1149 account_currency = get_account_currency(item.discount_account)
1150 gl_entries.append(
Ankush Menat494bd9e2022-03-28 18:52:46 +05301151 self.get_gl_dict(
1152 {
1153 "account": item.discount_account,
1154 "against": supplier_or_customer,
Saqib Ansarif915a9c2022-05-17 11:22:01 +05301155 dr_or_cr: flt(
Ankush Menat494bd9e2022-03-28 18:52:46 +05301156 discount_amount * self.get("conversion_rate"), item.precision("discount_amount")
1157 ),
Saqib Ansarif915a9c2022-05-17 11:22:01 +05301158 dr_or_cr + "_in_account_currency": flt(discount_amount, item.precision("discount_amount")),
Ankush Menat494bd9e2022-03-28 18:52:46 +05301159 "cost_center": item.cost_center,
1160 "project": item.project,
1161 },
1162 account_currency,
1163 item=item,
1164 )
GangaManoj8f7b0a12021-07-13 03:01:02 +05301165 )
1166
1167 account_currency = get_account_currency(income_or_expense_account)
1168 gl_entries.append(
Ankush Menat494bd9e2022-03-28 18:52:46 +05301169 self.get_gl_dict(
1170 {
1171 "account": income_or_expense_account,
1172 "against": supplier_or_customer,
Saqib Ansarif915a9c2022-05-17 11:22:01 +05301173 rev_dr_cr: flt(
Ankush Menat494bd9e2022-03-28 18:52:46 +05301174 discount_amount * self.get("conversion_rate"), item.precision("discount_amount")
1175 ),
Saqib Ansarif915a9c2022-05-17 11:22:01 +05301176 rev_dr_cr
1177 + "_in_account_currency": flt(discount_amount, item.precision("discount_amount")),
Ankush Menat494bd9e2022-03-28 18:52:46 +05301178 "cost_center": item.cost_center,
1179 "project": item.project or self.project,
1180 },
1181 account_currency,
1182 item=item,
1183 )
GangaManoj8f7b0a12021-07-13 03:01:02 +05301184 )
GangaManoj857501c2021-07-15 22:03:46 +05301185
Deepesh Garg3b159662022-08-21 17:51:05 +05301186 if (
Deepesh Gargae3dce02022-08-22 08:57:58 +05301187 (enable_discount_accounting or self.get("is_cash_or_non_trade_discount"))
Deepesh Garg3b159662022-08-21 17:51:05 +05301188 and self.get("additional_discount_account")
1189 and self.get("discount_amount")
1190 ):
1191 gl_entries.append(
1192 self.get_gl_dict(
1193 {
1194 "account": self.additional_discount_account,
1195 "against": supplier_or_customer,
1196 dr_or_cr: self.discount_amount,
1197 "cost_center": self.cost_center,
1198 },
1199 item=self,
Ankush Menat4551d7d2021-08-19 13:41:10 +05301200 )
Deepesh Garg3b159662022-08-21 17:51:05 +05301201 )
Ankush Menat4551d7d2021-08-19 13:41:10 +05301202
Nabin Hait19d945a2013-07-29 18:35:39 +05301203 def validate_multiple_billing(self, ref_dt, item_ref_dn, based_on, parentfield):
Nabin Hait868766d2019-07-15 18:02:58 +05301204 from erpnext.controllers.status_updater import get_allowance_for
Saqib9c913c92021-11-26 12:00:13 +05301205
Nabin Hait868766d2019-07-15 18:02:58 +05301206 item_allowance = {}
1207 global_qty_allowance, global_amount_allowance = None, None
Anand Doshid2946502014-04-08 20:10:03 +05301208
Ankush Menat494bd9e2022-03-28 18:52:46 +05301209 role_allowed_to_over_bill = frappe.db.get_single_value(
1210 "Accounts Settings", "role_allowed_to_over_bill"
1211 )
Ankush Menat648b2d72021-09-20 15:27:12 +05301212 user_roles = frappe.get_roles()
1213
Ankush Menat43bf82b2021-09-20 16:31:20 +05301214 total_overbilled_amt = 0.0
1215
Nabin Hait4b8185d2014-12-25 18:19:39 +05301216 for item in self.get("items"):
Ankush Menat5e4fbba2021-09-20 16:36:27 +05301217 if not item.get(item_ref_dn):
1218 continue
Anand Doshid2946502014-04-08 20:10:03 +05301219
Ankush Menat494bd9e2022-03-28 18:52:46 +05301220 ref_amt = flt(
1221 frappe.db.get_value(ref_dt + " Item", item.get(item_ref_dn), based_on),
1222 self.precision(based_on, item),
1223 )
Ankush Menat5e4fbba2021-09-20 16:36:27 +05301224 if not ref_amt:
1225 frappe.msgprint(
Ankush Menat494bd9e2022-03-28 18:52:46 +05301226 _("System will not check overbilling since amount for Item {0} in {1} is zero").format(
1227 item.item_code, ref_dt
1228 ),
1229 title=_("Warning"),
1230 indicator="orange",
1231 )
Ankush Menat5e4fbba2021-09-20 16:36:27 +05301232 continue
Anand Doshid2946502014-04-08 20:10:03 +05301233
Saqib9c913c92021-11-26 12:00:13 +05301234 already_billed = self.get_billed_amount_for_item(item, item_ref_dn, based_on)
Anand Doshid2946502014-04-08 20:10:03 +05301235
Ankush Menat494bd9e2022-03-28 18:52:46 +05301236 total_billed_amt = flt(
1237 flt(already_billed) + flt(item.get(based_on)), self.precision(based_on, item)
1238 )
Anand Doshid2946502014-04-08 20:10:03 +05301239
Ankush Menat494bd9e2022-03-28 18:52:46 +05301240 allowance, item_allowance, global_qty_allowance, global_amount_allowance = get_allowance_for(
1241 item.item_code, item_allowance, global_qty_allowance, global_amount_allowance, "amount"
1242 )
rohitwaghchaure285344e2019-10-11 11:02:11 +05301243
Ankush Menat5e4fbba2021-09-20 16:36:27 +05301244 max_allowed_amt = flt(ref_amt * (100 + allowance) / 100)
Deepesh Gargcb718fc2021-04-19 13:25:15 +05301245
Ankush Menat5e4fbba2021-09-20 16:36:27 +05301246 if total_billed_amt < 0 and max_allowed_amt < 0:
1247 # while making debit note against purchase return entry(purchase receipt) getting overbill error
1248 total_billed_amt = abs(total_billed_amt)
1249 max_allowed_amt = abs(max_allowed_amt)
Afshan53fefd72021-06-24 10:09:02 +05301250
Ankush Menat5e4fbba2021-09-20 16:36:27 +05301251 overbill_amt = total_billed_amt - max_allowed_amt
1252 total_overbilled_amt += overbill_amt
1253
1254 if overbill_amt > 0.01 and role_allowed_to_over_bill not in user_roles:
1255 if self.doctype != "Purchase Invoice":
1256 self.throw_overbill_exception(item, max_allowed_amt)
Ankush Menat494bd9e2022-03-28 18:52:46 +05301257 elif not cint(
1258 frappe.db.get_single_value(
1259 "Buying Settings", "bill_for_rejected_quantity_in_purchase_invoice"
1260 )
1261 ):
Ankush Menat5e4fbba2021-09-20 16:36:27 +05301262 self.throw_overbill_exception(item, max_allowed_amt)
1263
1264 if role_allowed_to_over_bill in user_roles and total_overbilled_amt > 0.1:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301265 frappe.msgprint(
1266 _("Overbilling of {} ignored because you have {} role.").format(
1267 total_overbilled_amt, role_allowed_to_over_bill
1268 ),
1269 indicator="orange",
1270 alert=True,
1271 )
Afshan53fefd72021-06-24 10:09:02 +05301272
Saqib9c913c92021-11-26 12:00:13 +05301273 def get_billed_amount_for_item(self, item, item_ref_dn, based_on):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301274 """
1275 Returns Sum of Amount of
1276 Sales/Purchase Invoice Items
1277 that are linked to `item_ref_dn` (`dn_detail` / `pr_detail`)
1278 that are submitted OR not submitted but are under current invoice
1279 """
Saqib9c913c92021-11-26 12:00:13 +05301280
1281 from frappe.query_builder import Criterion
1282 from frappe.query_builder.functions import Sum
1283
1284 item_doctype = frappe.qb.DocType(item.doctype)
1285 based_on_field = frappe.qb.Field(based_on)
1286 join_field = frappe.qb.Field(item_ref_dn)
1287
1288 result = (
1289 frappe.qb.from_(item_doctype)
1290 .select(Sum(based_on_field))
Ankush Menat494bd9e2022-03-28 18:52:46 +05301291 .where(join_field == item.get(item_ref_dn))
Saqib9c913c92021-11-26 12:00:13 +05301292 .where(
Ankush Menat494bd9e2022-03-28 18:52:46 +05301293 Criterion.any(
1294 [ # select all items from other invoices OR current invoices
1295 Criterion.all(
1296 [ # for selecting items from other invoices
1297 item_doctype.docstatus == 1,
1298 item_doctype.parent != self.name,
1299 ]
1300 ),
1301 Criterion.all(
1302 [ # for selecting items from current invoice, that are linked to same reference
1303 item_doctype.docstatus == 0,
1304 item_doctype.parent == self.name,
1305 item_doctype.name != item.name,
1306 ]
1307 ),
1308 ]
1309 )
Saqib9c913c92021-11-26 12:00:13 +05301310 )
1311 ).run()
1312
1313 return result[0][0] if result else 0
1314
Afshan53fefd72021-06-24 10:09:02 +05301315 def throw_overbill_exception(self, item, max_allowed_amt):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301316 frappe.throw(
1317 _(
1318 "Cannot overbill for Item {0} in row {1} more than {2}. To allow over-billing, please set allowance in Accounts Settings"
1319 ).format(item.item_code, item.idx, max_allowed_amt)
1320 )
Anand Doshid2946502014-04-08 20:10:03 +05301321
Rohit Waghchaure2a14f252021-07-30 12:36:35 +05301322 def get_company_default(self, fieldname, ignore_validation=False):
Rushabh Mehta1f847992013-12-12 19:12:19 +05301323 from erpnext.accounts.utils import get_company_default
Ankush Menat494bd9e2022-03-28 18:52:46 +05301324
Rohit Waghchaure2a14f252021-07-30 12:36:35 +05301325 return get_company_default(self.company, fieldname, ignore_validation=ignore_validation)
Anand Doshid2946502014-04-08 20:10:03 +05301326
Nabin Haita36adbd2013-08-02 14:50:12 +05301327 def get_stock_items(self):
1328 stock_items = []
Nabin Haitdd38a262014-12-26 13:15:21 +05301329 item_codes = list(set(item.item_code for item in self.get("items")))
Nabin Haita36adbd2013-08-02 14:50:12 +05301330 if item_codes:
Saqib Ansari199a6da2022-03-31 11:41:52 +05301331 stock_items = frappe.db.get_values(
1332 "Item", {"name": ["in", item_codes], "is_stock_item": 1}, pluck="name", cache=True
1333 )
Anand Doshid2946502014-04-08 20:10:03 +05301334
Nabin Haita36adbd2013-08-02 14:50:12 +05301335 return stock_items
Anand Doshid2946502014-04-08 20:10:03 +05301336
Ankit Javalkar8e7ca412014-09-12 15:18:53 +05301337 def set_total_advance_paid(self):
1338 if self.doctype == "Sales Order":
Nabin Hait6e439a52015-08-28 19:24:22 +05301339 dr_or_cr = "credit_in_account_currency"
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +05301340 rev_dr_or_cr = "debit_in_account_currency"
Nabin Haitb2206d12016-01-27 15:43:12 +05301341 party = self.customer
Ankit Javalkar8e7ca412014-09-12 15:18:53 +05301342 else:
Nabin Hait6e439a52015-08-28 19:24:22 +05301343 dr_or_cr = "debit_in_account_currency"
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +05301344 rev_dr_or_cr = "credit_in_account_currency"
Nabin Haitb2206d12016-01-27 15:43:12 +05301345 party = self.supplier
Ankit Javalkar8e7ca412014-09-12 15:18:53 +05301346
Ankush Menat494bd9e2022-03-28 18:52:46 +05301347 advance = frappe.db.sql(
1348 """
Ankit Javalkar8e7ca412014-09-12 15:18:53 +05301349 select
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +05301350 account_currency, sum({dr_or_cr}) - sum({rev_dr_cr}) as amount
Ankit Javalkar8e7ca412014-09-12 15:18:53 +05301351 from
Nabin Hait12e2a512016-06-26 01:37:21 +05301352 `tabGL Entry`
Ankit Javalkar8e7ca412014-09-12 15:18:53 +05301353 where
Nabin Hait12e2a512016-06-26 01:37:21 +05301354 against_voucher_type = %s and against_voucher = %s and party=%s
1355 and docstatus = 1
Ankush Menat494bd9e2022-03-28 18:52:46 +05301356 """.format(
1357 dr_or_cr=dr_or_cr, rev_dr_cr=rev_dr_or_cr
1358 ),
1359 (self.doctype, self.name, party),
1360 as_dict=1,
1361 ) # nosec
Ankit Javalkar8e7ca412014-09-12 15:18:53 +05301362
Nabin Haitb2206d12016-01-27 15:43:12 +05301363 if advance:
Anand Doshi7c0a58a2016-01-29 12:16:24 +05301364 advance = advance[0]
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +05301365
Anand Doshi7c0a58a2016-01-29 12:16:24 +05301366 advance_paid = flt(advance.amount, self.precision("advance_paid"))
Ankush Menat494bd9e2022-03-28 18:52:46 +05301367 formatted_advance_paid = fmt_money(
1368 advance_paid, precision=self.precision("advance_paid"), currency=advance.account_currency
1369 )
Anand Doshi7c0a58a2016-01-29 12:16:24 +05301370
Ankush Menat494bd9e2022-03-28 18:52:46 +05301371 frappe.db.set_value(self.doctype, self.name, "party_account_currency", advance.account_currency)
Anand Doshi7c0a58a2016-01-29 12:16:24 +05301372
1373 if advance.account_currency == self.currency:
finbyz5efc7972019-01-05 11:12:11 +05301374 order_total = self.get("rounded_total") or self.grand_total
1375 precision = "rounded_total" if self.get("rounded_total") else "grand_total"
Nabin Haitb2206d12016-01-27 15:43:12 +05301376 else:
finbyz5efc7972019-01-05 11:12:11 +05301377 order_total = self.get("base_rounded_total") or self.base_grand_total
1378 precision = "base_rounded_total" if self.get("base_rounded_total") else "base_grand_total"
Sagar Voraf733a392019-01-07 14:24:01 +05301379
Ankush Menat494bd9e2022-03-28 18:52:46 +05301380 formatted_order_total = fmt_money(
1381 order_total, precision=self.precision(precision), currency=advance.account_currency
1382 )
Anand Doshi7c0a58a2016-01-29 12:16:24 +05301383
Nabin Hait9db1b222016-06-30 12:37:53 +05301384 if self.currency == self.company_currency and advance_paid > order_total:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301385 frappe.throw(
1386 _(
1387 "Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2})"
1388 ).format(formatted_advance_paid, self.name, formatted_order_total)
1389 )
Rushabh Mehtaea0ff232016-07-07 14:02:26 +05301390
Nabin Hait13093b42016-06-29 18:04:37 +05301391 frappe.db.set_value(self.doctype, self.name, "advance_paid", advance_paid)
Ankit Javalkar8e7ca412014-09-12 15:18:53 +05301392
ankitjavalkarworke60822b2014-08-26 14:29:06 +05301393 @property
1394 def company_abbr(self):
Nabin Hait6a5695f2018-08-09 11:30:21 +05301395 if not hasattr(self, "_abbr"):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301396 self._abbr = frappe.db.get_value("Company", self.company, "abbr")
ankitjavalkarworke60822b2014-08-26 14:29:06 +05301397
1398 return self._abbr
1399
marination4be5b5c2020-10-08 19:08:27 +05301400 def raise_missing_debit_credit_account_error(self, party_type, party):
marination53b1a9a2020-11-03 15:45:25 +05301401 """Raise an error if debit to/credit to account does not exist."""
Ankush Menat494bd9e2022-03-28 18:52:46 +05301402 db_or_cr = (
1403 frappe.bold("Debit To") if self.doctype == "Sales Invoice" else frappe.bold("Credit To")
1404 )
marination4be5b5c2020-10-08 19:08:27 +05301405 rec_or_pay = "Receivable" if self.doctype == "Sales Invoice" else "Payable"
1406
1407 link_to_party = frappe.utils.get_link_to_form(party_type, party)
1408 link_to_company = frappe.utils.get_link_to_form("Company", self.company)
1409
Ankush Menat494bd9e2022-03-28 18:52:46 +05301410 message = _("{0} Account not found against Customer {1}.").format(
1411 db_or_cr, frappe.bold(party) or ""
1412 )
marination4be5b5c2020-10-08 19:08:27 +05301413 message += "<br>" + _("Please set one of the following:") + "<br>"
Ankush Menat494bd9e2022-03-28 18:52:46 +05301414 message += (
1415 "<br><ul><li>"
1416 + _("'Account' in the Accounting section of Customer {0}").format(link_to_party)
1417 + "</li>"
1418 )
1419 message += (
1420 "<li>"
1421 + _("'Default {0} Account' in Company {1}").format(rec_or_pay, link_to_company)
1422 + "</li></ul>"
1423 )
marination4be5b5c2020-10-08 19:08:27 +05301424
marination53b1a9a2020-11-03 15:45:25 +05301425 frappe.throw(message, title=_("Account Missing"), exc=AccountMissingError)
marination4be5b5c2020-10-08 19:08:27 +05301426
Neil Trini Lasrado3fbbb712015-07-17 12:10:12 +05301427 def validate_party(self):
Nabin Hait4ffd7f32015-08-27 12:28:36 +05301428 party_type, party = self.get_party()
shreyaseba9ca42016-01-26 14:56:52 +05301429 validate_party_frozen_disabled(party_type, party)
Anand Doshi979326b2015-09-11 16:22:37 +05301430
Nabin Hait4ffd7f32015-08-27 12:28:36 +05301431 def get_party(self):
Neil Trini Lasrado79bf2332015-07-20 13:03:48 +05301432 party_type = None
shreyas29b565f2016-01-25 17:30:49 +05301433 if self.doctype in ("Opportunity", "Quotation", "Sales Order", "Delivery Note", "Sales Invoice"):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301434 party_type = "Customer"
shreyas29b565f2016-01-25 17:30:49 +05301435
Ankush Menat494bd9e2022-03-28 18:52:46 +05301436 elif self.doctype in (
1437 "Supplier Quotation",
1438 "Purchase Order",
1439 "Purchase Receipt",
1440 "Purchase Invoice",
1441 ):
1442 party_type = "Supplier"
shreyas29b565f2016-01-25 17:30:49 +05301443
1444 elif self.meta.get_field("customer"):
1445 party_type = "Customer"
Neil Trini Lasrado3fbbb712015-07-17 12:10:12 +05301446
Neil Trini Lasrado79bf2332015-07-20 13:03:48 +05301447 elif self.meta.get_field("supplier"):
shreyas29b565f2016-01-25 17:30:49 +05301448 party_type = "Supplier"
Anand Doshi979326b2015-09-11 16:22:37 +05301449
Nabin Hait4ffd7f32015-08-27 12:28:36 +05301450 party = self.get(party_type.lower()) if party_type else None
Anand Doshi979326b2015-09-11 16:22:37 +05301451
Nabin Hait4ffd7f32015-08-27 12:28:36 +05301452 return party_type, party
Anand Doshi979326b2015-09-11 16:22:37 +05301453
Nabin Hait4ffd7f32015-08-27 12:28:36 +05301454 def validate_currency(self):
Nabin Hait6e439a52015-08-28 19:24:22 +05301455 if self.get("currency"):
Nabin Hait4ffd7f32015-08-27 12:28:36 +05301456 party_type, party = self.get_party()
Nabin Hait6e439a52015-08-28 19:24:22 +05301457 if party_type and party:
Anand Doshib20baf82015-09-25 16:17:50 +05301458 party_account_currency = get_party_account_currency(party_type, party, self.company)
Anand Doshi979326b2015-09-11 16:22:37 +05301459
Ankush Menat494bd9e2022-03-28 18:52:46 +05301460 if (
1461 party_account_currency
1462 and party_account_currency != self.company_currency
1463 and self.currency != party_account_currency
1464 ):
1465 frappe.throw(
1466 _("Accounting Entry for {0}: {1} can only be made in currency: {2}").format(
1467 party_type, party, party_account_currency
1468 ),
1469 InvalidCurrency,
1470 )
Anand Doshi979326b2015-09-11 16:22:37 +05301471
shreyas29b565f2016-01-25 17:30:49 +05301472 # Note: not validating with gle account because we don't have the account
1473 # at quotation / sales order level and we shouldn't stop someone
1474 # from creating a sales invoice if sales order is already created
Rushabh Mehta2cb7a9f2016-06-15 16:45:03 +05301475
Deepesh Garg80c85dd2021-08-12 15:39:07 +05301476 def validate_party_account_currency(self):
Deepesh Garg33d97672022-05-12 16:40:29 +05301477 if self.doctype not in ("Sales Invoice", "Purchase Invoice"):
Deepesh Garg80c85dd2021-08-12 15:39:07 +05301478 return
1479
Deepesh Garg33d97672022-05-12 16:40:29 +05301480 if self.is_opening == "Yes":
Deepesh Garg60915e82021-08-21 23:05:48 +05301481 return
1482
Deepesh Garg80c85dd2021-08-12 15:39:07 +05301483 party_type, party = self.get_party()
1484 party_gle_currency = get_party_gle_currency(party_type, party, self.company)
Deepesh Garg33d97672022-05-12 16:40:29 +05301485 party_account = (
1486 self.get("debit_to") if self.doctype == "Sales Invoice" else self.get("credit_to")
1487 )
Deepesh Garg80c85dd2021-08-12 15:39:07 +05301488 party_account_currency = get_account_currency(party_account)
Deepesh Garge04e67c2022-07-11 19:25:18 +05301489 allow_multi_currency_invoices_against_single_party_account = frappe.db.get_singles_value(
Deepesh Garg3cf609f2022-07-11 13:46:59 +05301490 "Accounts Settings", "allow_multi_currency_invoices_against_single_party_account"
1491 )
Deepesh Garg80c85dd2021-08-12 15:39:07 +05301492
Deepesh Garg3cf609f2022-07-11 13:46:59 +05301493 if (
1494 not party_gle_currency
1495 and (party_account_currency != self.currency)
1496 and not allow_multi_currency_invoices_against_single_party_account
1497 ):
Deepesh Garg33d97672022-05-12 16:40:29 +05301498 frappe.throw(
Devin Slauenwhite3a1c9232022-06-02 14:15:50 -04001499 _("Party Account {0} currency ({1}) and document currency ({2}) should be same").format(
Devin Slauenwhiteb061ea42022-06-02 14:23:54 -04001500 frappe.bold(party_account), party_account_currency, self.currency
Deepesh Garg33d97672022-05-12 16:40:29 +05301501 )
1502 )
Deepesh Garg80c85dd2021-08-12 15:39:07 +05301503
Nabin Hait297d74a2016-11-23 15:58:51 +05301504 def delink_advance_entries(self, linked_doc_name):
1505 total_allocated_amount = 0
1506 for adv in self.advances:
1507 consider_for_total_advance = True
1508 if adv.reference_name == linked_doc_name:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301509 frappe.db.sql(
1510 """delete from `tab{0} Advance`
1511 where name = %s""".format(
1512 self.doctype
1513 ),
1514 adv.name,
1515 )
Nabin Hait297d74a2016-11-23 15:58:51 +05301516 consider_for_total_advance = False
1517
1518 if consider_for_total_advance:
1519 total_allocated_amount += flt(adv.allocated_amount, adv.precision("allocated_amount"))
1520
Ankush Menat494bd9e2022-03-28 18:52:46 +05301521 frappe.db.set_value(
1522 self.doctype, self.name, "total_advance", total_allocated_amount, update_modified=False
1523 )
Rohit Waghchaure6087fe12016-04-09 14:31:09 +05301524
KanchanChauhan49a50fe2016-11-18 13:57:53 +05301525 def group_similar_items(self):
1526 group_item_qty = {}
1527 group_item_amount = {}
Shreya Shah785f1aa2018-10-11 10:14:25 +05301528 # to update serial number in print
1529 count = 0
KanchanChauhan49a50fe2016-11-18 13:57:53 +05301530
1531 for item in self.items:
1532 group_item_qty[item.item_code] = group_item_qty.get(item.item_code, 0) + item.qty
1533 group_item_amount[item.item_code] = group_item_amount.get(item.item_code, 0) + item.amount
1534
1535 duplicate_list = []
KanchanChauhan49a50fe2016-11-18 13:57:53 +05301536 for item in self.items:
1537 if item.item_code in group_item_qty:
Shreya Shah785f1aa2018-10-11 10:14:25 +05301538 count += 1
KanchanChauhan49a50fe2016-11-18 13:57:53 +05301539 item.qty = group_item_qty[item.item_code]
1540 item.amount = group_item_amount[item.item_code]
deepeshgarg007e8d21cd2019-06-24 17:46:44 +05301541
1542 if item.qty:
1543 item.rate = flt(flt(item.amount) / flt(item.qty), item.precision("rate"))
1544 else:
1545 item.rate = 0
1546
Shreya Shah785f1aa2018-10-11 10:14:25 +05301547 item.idx = count
KanchanChauhan49a50fe2016-11-18 13:57:53 +05301548 del group_item_qty[item.item_code]
1549 else:
1550 duplicate_list.append(item)
KanchanChauhan49a50fe2016-11-18 13:57:53 +05301551 for item in duplicate_list:
1552 self.remove(item)
1553
tunde32aa7c12017-09-07 06:52:15 +01001554 def set_payment_schedule(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301555 if self.doctype == "Sales Invoice" and self.is_pos:
1556 self.payment_terms_template = ""
Manas Solankia7f55892018-04-02 10:32:00 +05301557 return
rohitwaghchauredb9fa782018-03-01 10:32:29 +05301558
Ankush Menat494bd9e2022-03-28 18:52:46 +05301559 party_account_currency = self.get("party_account_currency")
Deepesh Garg26210162020-08-11 16:06:13 +05301560 if not party_account_currency:
1561 party_type, party = self.get_party()
1562
1563 if party_type and party:
1564 party_account_currency = get_party_account_currency(party_type, party, self.company)
1565
rohitwaghchaureda941af2018-01-17 16:23:04 +05301566 posting_date = self.get("bill_date") or self.get("posting_date") or self.get("transaction_date")
tundedf3a1752017-09-11 11:02:57 +01001567 date = self.get("due_date")
1568 due_date = date or posting_date
Deepesh Garg26210162020-08-11 16:06:13 +05301569
Saqib Ansarid552fe62021-04-23 14:46:52 +05301570 base_grand_total = self.get("base_rounded_total") or self.base_grand_total
1571 grand_total = self.get("rounded_total") or self.grand_total
Deepesh Garg26210162020-08-11 16:06:13 +05301572
Nabin Hait2f9f4f92017-12-20 12:24:59 +05301573 if self.doctype in ("Sales Invoice", "Purchase Invoice"):
Saqib Ansarid552fe62021-04-23 14:46:52 +05301574 base_grand_total = base_grand_total - flt(self.base_write_off_amount)
Nabin Hait2f9f4f92017-12-20 12:24:59 +05301575 grand_total = grand_total - flt(self.write_off_amount)
Deepesh Gargbcf56e62021-08-06 23:53:16 +05301576 po_or_so, doctype, fieldname = self.get_order_details()
Ankush Menat494bd9e2022-03-28 18:52:46 +05301577 automatically_fetch_payment_terms = cint(
1578 frappe.db.get_single_value("Accounts Settings", "automatically_fetch_payment_terms")
1579 )
tunde96b8f222017-09-08 15:35:59 +01001580
Rohit Waghchaure4a267b92019-05-09 19:50:00 +05301581 if self.get("total_advance"):
Saqib Ansarid552fe62021-04-23 14:46:52 +05301582 if party_account_currency == self.company_currency:
1583 base_grand_total -= self.get("total_advance")
Ankush Menat494bd9e2022-03-28 18:52:46 +05301584 grand_total = flt(
1585 base_grand_total / self.get("conversion_rate"), self.precision("grand_total")
1586 )
Saqib Ansarid552fe62021-04-23 14:46:52 +05301587 else:
1588 grand_total -= self.get("total_advance")
Ankush Menat494bd9e2022-03-28 18:52:46 +05301589 base_grand_total = flt(
1590 grand_total * self.get("conversion_rate"), self.precision("base_grand_total")
1591 )
Rohit Waghchaure4a267b92019-05-09 19:50:00 +05301592
Nabin Hait0551f7b2017-11-21 19:58:16 +05301593 if not self.get("payment_schedule"):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301594 if (
1595 self.doctype in ["Sales Invoice", "Purchase Invoice"]
1596 and automatically_fetch_payment_terms
1597 and self.linked_order_has_payment_terms(po_or_so, fieldname, doctype)
1598 ):
Deepesh Gargbcf56e62021-08-06 23:53:16 +05301599 self.fetch_payment_terms_from_order(po_or_so, doctype)
Ankush Menat494bd9e2022-03-28 18:52:46 +05301600 if self.get("payment_terms_template"):
Deepesh Gargbcf56e62021-08-06 23:53:16 +05301601 self.ignore_default_payment_terms_template = 1
1602 elif self.get("payment_terms_template"):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301603 data = get_payment_terms(
1604 self.payment_terms_template, posting_date, grand_total, base_grand_total
1605 )
Nabin Hait0551f7b2017-11-21 19:58:16 +05301606 for item in data:
1607 self.append("payment_schedule", item)
GangaManoj4323f4b2021-07-22 05:57:42 +05301608 elif self.doctype not in ["Purchase Receipt"]:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301609 data = dict(
1610 due_date=due_date,
1611 invoice_portion=100,
1612 payment_amount=grand_total,
1613 base_payment_amount=base_grand_total,
1614 )
Nabin Hait0551f7b2017-11-21 19:58:16 +05301615 self.append("payment_schedule", data)
Deepesh Gargbcf56e62021-08-06 23:53:16 +05301616
1617 for d in self.get("payment_schedule"):
1618 if d.invoice_portion:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301619 d.payment_amount = flt(
1620 grand_total * flt(d.invoice_portion / 100), d.precision("payment_amount")
1621 )
1622 d.base_payment_amount = flt(
1623 base_grand_total * flt(d.invoice_portion / 100), d.precision("base_payment_amount")
1624 )
Deepesh Gargbcf56e62021-08-06 23:53:16 +05301625 d.outstanding = d.payment_amount
1626 elif not d.invoice_portion:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301627 d.base_payment_amount = flt(
1628 d.payment_amount * self.get("conversion_rate"), d.precision("base_payment_amount")
1629 )
tunde43870aa2017-08-18 11:59:30 +01001630
GangaManoj4323f4b2021-07-22 05:57:42 +05301631 def get_order_details(self):
1632 if self.doctype == "Sales Invoice":
Ankush Menat494bd9e2022-03-28 18:52:46 +05301633 po_or_so = self.get("items")[0].get("sales_order")
GangaManoj4323f4b2021-07-22 05:57:42 +05301634 po_or_so_doctype = "Sales Order"
1635 po_or_so_doctype_name = "sales_order"
1636
tunde43870aa2017-08-18 11:59:30 +01001637 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301638 po_or_so = self.get("items")[0].get("purchase_order")
GangaManoj4323f4b2021-07-22 05:57:42 +05301639 po_or_so_doctype = "Purchase Order"
1640 po_or_so_doctype_name = "purchase_order"
Ankush Menat4551d7d2021-08-19 13:41:10 +05301641
GangaManoj4323f4b2021-07-22 05:57:42 +05301642 return po_or_so, po_or_so_doctype, po_or_so_doctype_name
1643
GangaManojc7c90242021-07-29 19:18:35 +05301644 def linked_order_has_payment_terms(self, po_or_so, fieldname, doctype):
GangaManoj4323f4b2021-07-22 05:57:42 +05301645 if po_or_so and self.all_items_have_same_po_or_so(po_or_so, fieldname):
GangaManojc7c90242021-07-29 19:18:35 +05301646 if self.linked_order_has_payment_terms_template(po_or_so, doctype):
GangaManoj4323f4b2021-07-22 05:57:42 +05301647 return True
1648 elif self.linked_order_has_payment_schedule(po_or_so):
1649 return True
Ankush Menat4551d7d2021-08-19 13:41:10 +05301650
GangaManoj4323f4b2021-07-22 05:57:42 +05301651 return False
1652
1653 def all_items_have_same_po_or_so(self, po_or_so, fieldname):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301654 for item in self.get("items"):
GangaManoj4323f4b2021-07-22 05:57:42 +05301655 if item.get(fieldname) != po_or_so:
1656 return False
Ankush Menat4551d7d2021-08-19 13:41:10 +05301657
GangaManoj4323f4b2021-07-22 05:57:42 +05301658 return True
1659
GangaManojc7c90242021-07-29 19:18:35 +05301660 def linked_order_has_payment_terms_template(self, po_or_so, doctype):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301661 return frappe.get_value(doctype, po_or_so, "payment_terms_template")
GangaManoj4323f4b2021-07-22 05:57:42 +05301662
1663 def linked_order_has_payment_schedule(self, po_or_so):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301664 return frappe.get_all("Payment Schedule", filters={"parent": po_or_so})
GangaManoj4323f4b2021-07-22 05:57:42 +05301665
1666 def fetch_payment_terms_from_order(self, po_or_so, po_or_so_doctype):
1667 """
Ankush Menat494bd9e2022-03-28 18:52:46 +05301668 Fetch Payment Terms from Purchase/Sales Order on creating a new Purchase/Sales Invoice.
GangaManoj4323f4b2021-07-22 05:57:42 +05301669 """
1670 po_or_so = frappe.get_cached_doc(po_or_so_doctype, po_or_so)
1671
1672 self.payment_schedule = []
1673 self.payment_terms_template = po_or_so.payment_terms_template
1674
1675 for schedule in po_or_so.payment_schedule:
1676 payment_schedule = {
Ankush Menat494bd9e2022-03-28 18:52:46 +05301677 "payment_term": schedule.payment_term,
1678 "due_date": schedule.due_date,
1679 "invoice_portion": schedule.invoice_portion,
1680 "mode_of_payment": schedule.mode_of_payment,
1681 "description": schedule.description,
GangaManoj4323f4b2021-07-22 05:57:42 +05301682 }
GangaManoj5b33e752021-08-05 21:50:09 +05301683
Ankush Menat494bd9e2022-03-28 18:52:46 +05301684 if schedule.discount_type == "Percentage":
1685 payment_schedule["discount_type"] = schedule.discount_type
1686 payment_schedule["discount"] = schedule.discount
GangaManoj5b33e752021-08-05 21:50:09 +05301687
ruthra kumar9bd56b02022-02-01 14:14:04 +05301688 if not schedule.invoice_portion:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301689 payment_schedule["payment_amount"] = schedule.payment_amount
ruthra kumar9bd56b02022-02-01 14:14:04 +05301690
GangaManoj4323f4b2021-07-22 05:57:42 +05301691 self.append("payment_schedule", payment_schedule)
tunde43870aa2017-08-18 11:59:30 +01001692
tundebe1b8712017-08-19 08:21:44 +01001693 def set_due_date(self):
Nabin Hait0551f7b2017-11-21 19:58:16 +05301694 due_dates = [d.due_date for d in self.get("payment_schedule") if d.due_date]
1695 if due_dates:
1696 self.due_date = max(due_dates)
tunde62af5c52017-09-22 15:16:38 +01001697
1698 def validate_payment_schedule_dates(self):
tunde77ecacc2017-09-22 23:12:55 +01001699 dates = []
tunde9bed2de2017-09-25 10:19:35 +01001700 li = []
tunde43870aa2017-08-18 11:59:30 +01001701
Ankush Menat494bd9e2022-03-28 18:52:46 +05301702 if self.doctype == "Sales Invoice" and self.is_pos:
1703 return
rohitwaghchauredb9fa782018-03-01 10:32:29 +05301704
tunde43870aa2017-08-18 11:59:30 +01001705 for d in self.get("payment_schedule"):
Nabin Hait2f9f4f92017-12-20 12:24:59 +05301706 if self.doctype == "Sales Order" and getdate(d.due_date) < getdate(self.transaction_date):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301707 frappe.throw(
1708 _("Row {0}: Due Date in the Payment Terms table cannot be before Posting Date").format(d.idx)
1709 )
tunde77ecacc2017-09-22 23:12:55 +01001710 elif d.due_date in dates:
mnatalia5f0e8d62018-05-22 06:38:50 +03001711 li.append(_("{0} in row {1}").format(d.due_date, d.idx))
tunde9bed2de2017-09-25 10:19:35 +01001712 dates.append(d.due_date)
1713
1714 if li:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301715 duplicates = "<br>" + "<br>".join(li)
1716 frappe.throw(
1717 _("Rows with duplicate due dates in other rows were found: {0}").format(duplicates)
1718 )
tunde43870aa2017-08-18 11:59:30 +01001719
tunde62af5c52017-09-22 15:16:38 +01001720 def validate_payment_schedule_amount(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301721 if self.doctype == "Sales Invoice" and self.is_pos:
1722 return
rohitwaghchauredb9fa782018-03-01 10:32:29 +05301723
Ankush Menat494bd9e2022-03-28 18:52:46 +05301724 party_account_currency = self.get("party_account_currency")
Deepesh Garg26210162020-08-11 16:06:13 +05301725 if not party_account_currency:
1726 party_type, party = self.get_party()
1727
1728 if party_type and party:
1729 party_account_currency = get_party_account_currency(party_type, party, self.company)
1730
Nabin Hait0551f7b2017-11-21 19:58:16 +05301731 if self.get("payment_schedule"):
1732 total = 0
Saqib Ansarid552fe62021-04-23 14:46:52 +05301733 base_total = 0
Nabin Hait0551f7b2017-11-21 19:58:16 +05301734 for d in self.get("payment_schedule"):
Deepesh Garg9c170522021-10-25 20:06:24 +05301735 total += flt(d.payment_amount, d.precision("payment_amount"))
1736 base_total += flt(d.base_payment_amount, d.precision("base_payment_amount"))
tunde43870aa2017-08-18 11:59:30 +01001737
Saqib Ansarid552fe62021-04-23 14:46:52 +05301738 base_grand_total = self.get("base_rounded_total") or self.base_grand_total
1739 grand_total = self.get("rounded_total") or self.grand_total
Rohit Waghchaure4a267b92019-05-09 19:50:00 +05301740
Nabin Haite591c852017-12-21 11:46:30 +05301741 if self.doctype in ("Sales Invoice", "Purchase Invoice"):
Saqib Ansarid552fe62021-04-23 14:46:52 +05301742 base_grand_total = base_grand_total - flt(self.base_write_off_amount)
Nabin Haite591c852017-12-21 11:46:30 +05301743 grand_total = grand_total - flt(self.write_off_amount)
Saqib Ansarid552fe62021-04-23 14:46:52 +05301744
1745 if self.get("total_advance"):
1746 if party_account_currency == self.company_currency:
1747 base_grand_total -= self.get("total_advance")
Ankush Menat494bd9e2022-03-28 18:52:46 +05301748 grand_total = flt(
1749 base_grand_total / self.get("conversion_rate"), self.precision("grand_total")
1750 )
Saqib Ansarid552fe62021-04-23 14:46:52 +05301751 else:
1752 grand_total -= self.get("total_advance")
Ankush Menat494bd9e2022-03-28 18:52:46 +05301753 base_grand_total = flt(
1754 grand_total * self.get("conversion_rate"), self.precision("base_grand_total")
1755 )
Deepesh Garg9c170522021-10-25 20:06:24 +05301756
Ankush Menat494bd9e2022-03-28 18:52:46 +05301757 if (
1758 flt(total, self.precision("grand_total")) - flt(grand_total, self.precision("grand_total"))
1759 > 0.1
1760 or flt(base_total, self.precision("base_grand_total"))
1761 - flt(base_grand_total, self.precision("base_grand_total"))
1762 > 0.1
1763 ):
1764 frappe.throw(
1765 _("Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total")
1766 )
tunde43870aa2017-08-18 11:59:30 +01001767
Nabin Hait877e1bb2017-11-17 12:27:43 +05301768 def is_rounded_total_disabled(self):
1769 if self.meta.get_field("disable_rounded_total"):
1770 return self.disable_rounded_total
1771 else:
1772 return frappe.db.get_single_value("Global Defaults", "disable_rounded_total")
1773
Deepesh Gargf17ea2c2020-12-11 21:30:39 +05301774 def set_inter_company_account(self):
1775 """
Ankush Menat494bd9e2022-03-28 18:52:46 +05301776 Set intercompany account for inter warehouse transactions
1777 This account will be used in case billing company and internal customer's
1778 representation company is same
Deepesh Gargf17ea2c2020-12-11 21:30:39 +05301779 """
1780
1781 if self.is_internal_transfer() and not self.unrealized_profit_loss_account:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301782 unrealized_profit_loss_account = frappe.db.get_value(
1783 "Company", self.company, "unrealized_profit_loss_account"
1784 )
Deepesh Gargf17ea2c2020-12-11 21:30:39 +05301785
1786 if not unrealized_profit_loss_account:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301787 msg = _(
1788 "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
1789 ).format(frappe.bold(self.company))
Deepesh Gargf17ea2c2020-12-11 21:30:39 +05301790 frappe.throw(msg)
1791
1792 self.unrealized_profit_loss_account = unrealized_profit_loss_account
1793
1794 def is_internal_transfer(self):
1795 """
Ankush Menat494bd9e2022-03-28 18:52:46 +05301796 It will an internal transfer if its an internal customer and representation
1797 company is same as billing company
Deepesh Gargf17ea2c2020-12-11 21:30:39 +05301798 """
Ankush Menat494bd9e2022-03-28 18:52:46 +05301799 if self.doctype in ("Sales Invoice", "Delivery Note", "Sales Order"):
1800 internal_party_field = "is_internal_customer"
1801 elif self.doctype in ("Purchase Invoice", "Purchase Receipt", "Purchase Order"):
1802 internal_party_field = "is_internal_supplier"
Ankush Menat3714e362022-05-16 18:09:14 +05301803 else:
1804 return False
Deepesh Gargf17ea2c2020-12-11 21:30:39 +05301805
1806 if self.get(internal_party_field) and (self.represents_company == self.company):
1807 return True
1808
1809 return False
1810
Saqib Ansari977b09b2021-08-19 17:57:30 +05301811 def process_common_party_accounting(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301812 is_invoice = self.doctype in ["Sales Invoice", "Purchase Invoice"]
Saqib Ansari977b09b2021-08-19 17:57:30 +05301813 if not is_invoice:
1814 return
1815
Ankush Menat494bd9e2022-03-28 18:52:46 +05301816 if frappe.db.get_single_value("Accounts Settings", "enable_common_party_accounting"):
Saqib Ansari977b09b2021-08-19 17:57:30 +05301817 party_link = self.get_common_party_link()
1818 if party_link and self.outstanding_amount:
1819 self.create_advance_and_reconcile(party_link)
1820
1821 def get_common_party_link(self):
1822 party_type, party = self.get_party()
Saqib Ansari72543682021-08-25 20:15:23 +05301823 return frappe.db.get_value(
Ankush Menat494bd9e2022-03-28 18:52:46 +05301824 doctype="Party Link",
1825 filters={"secondary_role": party_type, "secondary_party": party},
1826 fieldname=["primary_role", "primary_party"],
1827 as_dict=True,
Saqib Ansari72543682021-08-25 20:15:23 +05301828 )
Saqib Ansari977b09b2021-08-19 17:57:30 +05301829
1830 def create_advance_and_reconcile(self, party_link):
1831 secondary_party_type, secondary_party = self.get_party()
1832 primary_party_type, primary_party = party_link.primary_role, party_link.primary_party
1833
1834 primary_account = get_party_account(primary_party_type, primary_party, self.company)
1835 secondary_account = get_party_account(secondary_party_type, secondary_party, self.company)
1836
Ankush Menat494bd9e2022-03-28 18:52:46 +05301837 jv = frappe.new_doc("Journal Entry")
1838 jv.voucher_type = "Journal Entry"
Saqib Ansari977b09b2021-08-19 17:57:30 +05301839 jv.posting_date = self.posting_date
1840 jv.company = self.company
Ankush Menat494bd9e2022-03-28 18:52:46 +05301841 jv.remark = "Adjustment for {} {}".format(self.doctype, self.name)
Saqib Ansari977b09b2021-08-19 17:57:30 +05301842
1843 reconcilation_entry = frappe._dict()
1844 advance_entry = frappe._dict()
Saqib Ansari977b09b2021-08-19 17:57:30 +05301845
1846 reconcilation_entry.account = secondary_account
1847 reconcilation_entry.party_type = secondary_party_type
1848 reconcilation_entry.party = secondary_party
1849 reconcilation_entry.reference_type = self.doctype
1850 reconcilation_entry.reference_name = self.name
Saqib Ansaric6c7a8b2021-08-25 20:17:04 +05301851 reconcilation_entry.cost_center = self.cost_center
Saqib Ansari977b09b2021-08-19 17:57:30 +05301852
1853 advance_entry.account = primary_account
1854 advance_entry.party_type = primary_party_type
1855 advance_entry.party = primary_party
Saqib Ansaric6c7a8b2021-08-25 20:17:04 +05301856 advance_entry.cost_center = self.cost_center
Ankush Menat494bd9e2022-03-28 18:52:46 +05301857 advance_entry.is_advance = "Yes"
Saqib Ansari977b09b2021-08-19 17:57:30 +05301858
Ankush Menat494bd9e2022-03-28 18:52:46 +05301859 if self.doctype == "Sales Invoice":
Saqib Ansari977b09b2021-08-19 17:57:30 +05301860 reconcilation_entry.credit_in_account_currency = self.outstanding_amount
1861 advance_entry.debit_in_account_currency = self.outstanding_amount
1862 else:
1863 advance_entry.credit_in_account_currency = self.outstanding_amount
1864 reconcilation_entry.debit_in_account_currency = self.outstanding_amount
1865
Ankush Menat494bd9e2022-03-28 18:52:46 +05301866 jv.append("accounts", reconcilation_entry)
1867 jv.append("accounts", advance_entry)
Saqib Ansari977b09b2021-08-19 17:57:30 +05301868
1869 jv.save()
1870 jv.submit()
1871
Deepesh Gargd05d1532022-06-14 12:50:49 +05301872 def check_conversion_rate(self):
1873 default_currency = erpnext.get_company_currency(self.company)
1874 if not default_currency:
1875 throw(_("Please enter default currency in Company Master"))
1876 if (
1877 (self.currency == default_currency and flt(self.conversion_rate) != 1.00)
1878 or not self.conversion_rate
1879 or (self.currency != default_currency and flt(self.conversion_rate) == 1.00)
1880 ):
1881 throw(_("Conversion rate cannot be 0 or 1"))
1882
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001883 def check_finance_books(self, item, asset):
Nabin Haitfefe9502022-09-09 14:40:36 +05301884 if (
1885 len(asset.finance_books) > 1
1886 and not item.get("finance_book")
1887 and not self.get("finance_book")
1888 and asset.finance_books[0].finance_book
1889 ):
1890 frappe.throw(
1891 _("Select finance book for the item {0} at row {1}").format(item.item_code, item.idx)
1892 )
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001893
1894 def depreciate_asset(self, asset):
1895 asset.flags.ignore_validate_update_after_submit = True
Saif Ur Rehmandc3c27f2021-11-04 13:47:33 +05001896 asset.prepare_depreciation_data(date_of_disposal=self.posting_date)
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001897 asset.save()
1898
Saif Ur Rehmandc3c27f2021-11-04 13:47:33 +05001899 make_depreciation_entry(asset.name, self.posting_date)
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001900
1901 def reset_depreciation_schedule(self, asset):
1902 asset.flags.ignore_validate_update_after_submit = True
1903
1904 # recreate original depreciation schedule of the asset
Saif Ur Rehmandc3c27f2021-11-04 13:47:33 +05001905 asset.prepare_depreciation_data(date_of_return=self.posting_date)
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001906
1907 self.modify_depreciation_schedule_for_asset_repairs(asset)
1908 asset.save()
1909
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001910 def modify_depreciation_schedule_for_asset_repairs(self, asset):
1911 asset_repairs = frappe.get_all(
Nabin Haitfefe9502022-09-09 14:40:36 +05301912 "Asset Repair", filters={"asset": asset.name}, fields=["name", "increase_in_asset_life"]
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001913 )
1914
1915 for repair in asset_repairs:
1916 if repair.increase_in_asset_life:
Nabin Haitfefe9502022-09-09 14:40:36 +05301917 asset_repair = frappe.get_doc("Asset Repair", repair.name)
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001918 asset_repair.modify_depreciation_schedule()
1919 asset.prepare_depreciation_data()
1920
Saif Ur Rehmandc3c27f2021-11-04 13:47:33 +05001921 def reverse_depreciation_entry_made_after_disposal(self, asset):
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001922 from erpnext.accounts.doctype.journal_entry.journal_entry import make_reverse_journal_entry
1923
Saif Ur Rehmandc3c27f2021-11-04 13:47:33 +05001924 posting_date_of_original_disposal = self.get_posting_date_of_disposal_entry()
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001925
1926 row = -1
Nabin Haitfefe9502022-09-09 14:40:36 +05301927 finance_book = asset.get("schedules")[0].get("finance_book")
1928 for schedule in asset.get("schedules"):
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001929 if schedule.finance_book != finance_book:
1930 row = 0
1931 finance_book = schedule.finance_book
1932 else:
1933 row += 1
1934
Saif Ur Rehmandc3c27f2021-11-04 13:47:33 +05001935 if schedule.schedule_date == posting_date_of_original_disposal:
Nabin Haitfefe9502022-09-09 14:40:36 +05301936 if not self.disposal_was_made_on_original_schedule_date(
1937 asset, schedule, row, posting_date_of_original_disposal
1938 ) or self.disposal_happens_in_the_future(posting_date_of_original_disposal):
Saif Ur Rehmandc3c27f2021-11-04 13:47:33 +05001939
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001940 reverse_journal_entry = make_reverse_journal_entry(schedule.journal_entry)
1941 reverse_journal_entry.posting_date = nowdate()
Saif Ur Rehmandc3c27f2021-11-04 13:47:33 +05001942 frappe.flags.is_reverse_depr_entry = True
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001943 reverse_journal_entry.submit()
Saif Ur Rehmane8329442021-09-16 23:22:31 +05001944
Saif Ur Rehmandc3c27f2021-11-04 13:47:33 +05001945 frappe.flags.is_reverse_depr_entry = False
1946 asset.flags.ignore_validate_update_after_submit = True
1947 schedule.journal_entry = None
1948 asset.save()
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001949
1950 def get_posting_date_of_disposal_entry(self):
1951 if self.doctype == "Sales Invoice" and self.return_against:
Nabin Haitfefe9502022-09-09 14:40:36 +05301952 return frappe.db.get_value("Sales Invoice", self.return_against, "posting_date")
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001953 else:
1954 return self.posting_date
1955
1956 # if the invoice had been posted on the date the depreciation was initially supposed to happen, the depreciation shouldn't be undone
Nabin Haitfefe9502022-09-09 14:40:36 +05301957 def disposal_was_made_on_original_schedule_date(
1958 self, asset, schedule, row, posting_date_of_disposal
1959 ):
1960 for finance_book in asset.get("finance_books"):
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001961 if schedule.finance_book == finance_book.finance_book:
Nabin Haitfefe9502022-09-09 14:40:36 +05301962 orginal_schedule_date = add_months(
1963 finance_book.depreciation_start_date, row * cint(finance_book.frequency_of_depreciation)
1964 )
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001965
Saif Ur Rehmandc3c27f2021-11-04 13:47:33 +05001966 if orginal_schedule_date == posting_date_of_disposal:
Saif Ur Rehman7a5d75b2021-09-13 23:01:52 +05001967 return True
1968 return False
1969
Saif Ur Rehmandc3c27f2021-11-04 13:47:33 +05001970 def disposal_happens_in_the_future(self, posting_date_of_disposal):
1971 if posting_date_of_disposal > getdate():
1972 return True
1973
1974 return False
1975
Ankush Menat494bd9e2022-03-28 18:52:46 +05301976
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05301977@frappe.whitelist()
Rushabh Mehtaf56d73c2013-10-10 16:35:09 +05301978def get_tax_rate(account_head):
Rushabh Mehta2cb7a9f2016-06-15 16:45:03 +05301979 return frappe.db.get_value("Account", account_head, ["tax_rate", "account_name"], as_dict=True)
Rushabh Mehtaa33d4682015-06-01 17:15:42 +05301980
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08001981
Nabin Haitffc7f3f2015-05-12 15:07:02 +05301982@frappe.whitelist()
Nabin Haita2426fc2018-01-15 17:45:46 +05301983def get_default_taxes_and_charges(master_doctype, tax_template=None, company=None):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301984 if not company:
1985 return {}
rohitwaghchaure505661b2017-12-11 14:52:28 +05301986
Nabin Haita2426fc2018-01-15 17:45:46 +05301987 if tax_template and company:
1988 tax_template_company = frappe.db.get_value(master_doctype, tax_template, "company")
1989 if tax_template_company == company:
1990 return
1991
1992 default_tax = frappe.db.get_value(master_doctype, {"is_default": 1, "company": company})
rohitwaghchaure505661b2017-12-11 14:52:28 +05301993
Rushabh Mehta98aa5812017-11-14 09:32:32 +05301994 return {
Ankush Menat494bd9e2022-03-28 18:52:46 +05301995 "taxes_and_charges": default_tax,
1996 "taxes": get_taxes_and_charges(master_doctype, default_tax),
Rushabh Mehta98aa5812017-11-14 09:32:32 +05301997 }
Nabin Hait6b039142014-05-02 15:45:10 +05301998
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08001999
Nabin Hait6b039142014-05-02 15:45:10 +05302000@frappe.whitelist()
Nabin Haitffc7f3f2015-05-12 15:07:02 +05302001def get_taxes_and_charges(master_doctype, master_name):
Nabin Hait1fe50122015-05-16 12:14:39 +05302002 if not master_name:
2003 return
Ankush Menat77dcdff2022-06-01 22:01:07 +05302004 from frappe.model import child_table_fields, default_fields
Ankush Menat494bd9e2022-03-28 18:52:46 +05302005
Nabin Hait6b039142014-05-02 15:45:10 +05302006 tax_master = frappe.get_doc(master_doctype, master_name)
2007
2008 taxes_and_charges = []
Nabin Haitffc7f3f2015-05-12 15:07:02 +05302009 for i, tax in enumerate(tax_master.get("taxes")):
Nabin Hait6b039142014-05-02 15:45:10 +05302010 tax = tax.as_dict()
2011
Ankush Menat77dcdff2022-06-01 22:01:07 +05302012 for fieldname in default_fields + child_table_fields:
Nabin Hait6b039142014-05-02 15:45:10 +05302013 if fieldname in tax:
2014 del tax[fieldname]
2015
2016 taxes_and_charges.append(tax)
2017
2018 return taxes_and_charges
Rushabh Mehta66e08e32014-09-29 12:17:03 +05302019
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002020
Rushabh Mehta66e08e32014-09-29 12:17:03 +05302021def validate_conversion_rate(currency, conversion_rate, conversion_rate_label, company):
2022 """common validation for currency and price list currency"""
2023
Ankush Menat494bd9e2022-03-28 18:52:46 +05302024 company_currency = frappe.get_cached_value("Company", company, "default_currency")
Rushabh Mehta66e08e32014-09-29 12:17:03 +05302025
2026 if not conversion_rate:
Saqib60212ff2020-10-26 11:17:04 +05302027 throw(
Ankush Menat494bd9e2022-03-28 18:52:46 +05302028 _("{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.").format(
2029 conversion_rate_label, currency, company_currency
2030 )
Saqib60212ff2020-10-26 11:17:04 +05302031 )
Nabin Hait613d0812015-02-23 11:58:15 +05302032
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002033
Nabin Hait613d0812015-02-23 11:58:15 +05302034def validate_taxes_and_charges(tax):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302035 if tax.charge_type in ["Actual", "On Net Total", "On Paid Amount"] and tax.row_id:
2036 frappe.throw(
2037 _("Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'")
2038 )
2039 elif tax.charge_type in ["On Previous Row Amount", "On Previous Row Total"]:
Nabin Hait613d0812015-02-23 11:58:15 +05302040 if cint(tax.idx) == 1:
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002041 frappe.throw(
Ankush Menat494bd9e2022-03-28 18:52:46 +05302042 _(
2043 "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
2044 )
2045 )
Nabin Hait613d0812015-02-23 11:58:15 +05302046 elif not tax.row_id:
Ankush Menat494bd9e2022-03-28 18:52:46 +05302047 frappe.throw(
2048 _("Please specify a valid Row ID for row {0} in table {1}").format(tax.idx, _(tax.doctype))
2049 )
Nabin Hait613d0812015-02-23 11:58:15 +05302050 elif tax.row_id and cint(tax.row_id) >= cint(tax.idx):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302051 frappe.throw(
2052 _("Cannot refer row number greater than or equal to current row number for this Charge type")
2053 )
Nabin Hait613d0812015-02-23 11:58:15 +05302054
Rushabh Mehta2a21bc92015-02-25 15:08:42 +05302055 if tax.charge_type == "Actual":
Nabin Haitbc6c3602015-02-27 23:40:56 +05302056 tax.rate = None
Rushabh Mehta2a21bc92015-02-25 15:08:42 +05302057
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002058
Ankush Menat494bd9e2022-03-28 18:52:46 +05302059def validate_account_head(idx, account, company, context=""):
2060 account_company = frappe.get_cached_value("Account", account, "company")
Anuja Pawar0e337be2021-08-10 17:26:35 +05302061
Deepesh Garg5a2b5712022-02-18 20:05:49 +05302062 if account_company != company:
Ankush Menat494bd9e2022-03-28 18:52:46 +05302063 frappe.throw(
2064 _("Row {0}: {3} Account {1} does not belong to Company {2}").format(
2065 idx, frappe.bold(account), frappe.bold(company), context
2066 ),
2067 title=_("Invalid Account"),
2068 )
Anuja Pawar0e337be2021-08-10 17:26:35 +05302069
2070
2071def validate_cost_center(tax, doc):
2072 if not tax.cost_center:
2073 return
2074
Ankush Menat494bd9e2022-03-28 18:52:46 +05302075 company = frappe.get_cached_value("Cost Center", tax.cost_center, "company")
Anuja Pawar0e337be2021-08-10 17:26:35 +05302076
2077 if company != doc.company:
Ankush Menat494bd9e2022-03-28 18:52:46 +05302078 frappe.throw(
2079 _("Row {0}: Cost Center {1} does not belong to Company {2}").format(
2080 tax.idx, frappe.bold(tax.cost_center), frappe.bold(doc.company)
2081 ),
2082 title=_("Invalid Cost Center"),
2083 )
Anuja Pawar0e337be2021-08-10 17:26:35 +05302084
2085
Nabin Hait613d0812015-02-23 11:58:15 +05302086def validate_inclusive_tax(tax, doc):
2087 def _on_previous_row_error(row_range):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302088 throw(
2089 _("To include tax in row {0} in Item rate, taxes in rows {1} must also be included").format(
2090 tax.idx, row_range
2091 )
2092 )
Nabin Hait613d0812015-02-23 11:58:15 +05302093
2094 if cint(getattr(tax, "included_in_print_rate", None)):
2095 if tax.charge_type == "Actual":
2096 # inclusive tax cannot be of type Actual
Ankush Menat494bd9e2022-03-28 18:52:46 +05302097 throw(
2098 _("Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount").format(
2099 tax.idx
2100 )
2101 )
2102 elif tax.charge_type == "On Previous Row Amount" and not cint(
2103 doc.get("taxes")[cint(tax.row_id) - 1].included_in_print_rate
2104 ):
Nabin Hait613d0812015-02-23 11:58:15 +05302105 # referred row should also be inclusive
2106 _on_previous_row_error(tax.row_id)
Ankush Menat494bd9e2022-03-28 18:52:46 +05302107 elif tax.charge_type == "On Previous Row Total" and not all(
2108 [cint(t.included_in_print_rate) for t in doc.get("taxes")[: cint(tax.row_id) - 1]]
2109 ):
Deepesh Garg5ef9a622021-06-14 14:34:44 +05302110 # all rows about the referred tax should be inclusive
Nabin Hait613d0812015-02-23 11:58:15 +05302111 _on_previous_row_error("1 - %d" % (tax.row_id,))
Nabin Hait93b3a372015-02-24 17:08:34 +05302112 elif tax.get("category") == "Valuation":
Nabin Hait19ea7212020-08-11 20:34:57 +05302113 frappe.throw(_("Valuation type charges can not be marked as Inclusive"))
Revant Nandgaonkar5da941b2016-02-18 16:02:05 +05302114
Revant Nandgaonkar5da941b2016-02-18 16:02:05 +05302115
Ankush Menat494bd9e2022-03-28 18:52:46 +05302116def set_balance_in_account_currency(
2117 gl_dict, account_currency=None, conversion_rate=None, company_currency=None
2118):
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002119 if (not conversion_rate) and (account_currency != company_currency):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302120 frappe.throw(
2121 _("Account: {0} with currency: {1} can not be selected").format(
2122 gl_dict.account, account_currency
2123 )
2124 )
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002125
Ankush Menat494bd9e2022-03-28 18:52:46 +05302126 gl_dict["account_currency"] = (
2127 company_currency if account_currency == company_currency else account_currency
2128 )
Revant Nandgaonkar5da941b2016-02-18 16:02:05 +05302129
2130 # set debit/credit in account currency if not provided
2131 if flt(gl_dict.debit) and not flt(gl_dict.debit_in_account_currency):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302132 gl_dict.debit_in_account_currency = (
2133 gl_dict.debit
2134 if account_currency == company_currency
Revant Nandgaonkar5da941b2016-02-18 16:02:05 +05302135 else flt(gl_dict.debit / conversion_rate, 2)
Ankush Menat494bd9e2022-03-28 18:52:46 +05302136 )
Revant Nandgaonkar5da941b2016-02-18 16:02:05 +05302137
2138 if flt(gl_dict.credit) and not flt(gl_dict.credit_in_account_currency):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302139 gl_dict.credit_in_account_currency = (
2140 gl_dict.credit
2141 if account_currency == company_currency
Revant Nandgaonkar5da941b2016-02-18 16:02:05 +05302142 else flt(gl_dict.credit / conversion_rate, 2)
Ankush Menat494bd9e2022-03-28 18:52:46 +05302143 )
Nabin Hait1991c7b2016-06-27 20:09:05 +05302144
2145
Ankush Menat494bd9e2022-03-28 18:52:46 +05302146def get_advance_journal_entries(
2147 party_type,
2148 party,
2149 party_account,
2150 amount_field,
2151 order_doctype,
2152 order_list,
2153 include_unallocated=True,
2154):
2155 dr_or_cr = (
2156 "credit_in_account_currency" if party_type == "Customer" else "debit_in_account_currency"
2157 )
Rushabh Mehtaea0ff232016-07-07 14:02:26 +05302158
Nabin Hait1991c7b2016-06-27 20:09:05 +05302159 conditions = []
2160 if include_unallocated:
2161 conditions.append("ifnull(t2.reference_name, '')=''")
2162
2163 if order_list:
Ankush Menat494bd9e2022-03-28 18:52:46 +05302164 order_condition = ", ".join(["%s"] * len(order_list))
2165 conditions.append(
2166 " (t2.reference_type = '{0}' and ifnull(t2.reference_name, '') in ({1}))".format(
2167 order_doctype, order_condition
2168 )
2169 )
Rushabh Mehtaea0ff232016-07-07 14:02:26 +05302170
Nabin Hait1991c7b2016-06-27 20:09:05 +05302171 reference_condition = " and (" + " or ".join(conditions) + ")" if conditions else ""
Rushabh Mehta66958302017-01-16 16:57:53 +05302172
Deepesh Gargc38be532022-04-14 13:26:47 +05302173 # nosemgrep
Ankush Menat494bd9e2022-03-28 18:52:46 +05302174 journal_entries = frappe.db.sql(
2175 """
Nabin Hait1991c7b2016-06-27 20:09:05 +05302176 select
Conor74a782d2022-06-17 06:31:27 -05002177 'Journal Entry' as reference_type, t1.name as reference_name,
Nabin Hait1991c7b2016-06-27 20:09:05 +05302178 t1.remark as remarks, t2.{0} as amount, t2.name as reference_row,
Deepesh Garg31883b62022-04-13 20:52:25 +05302179 t2.reference_name as against_order, t2.exchange_rate
Nabin Hait1991c7b2016-06-27 20:09:05 +05302180 from
2181 `tabJournal Entry` t1, `tabJournal Entry Account` t2
2182 where
2183 t1.name = t2.parent and t2.account = %s
2184 and t2.party_type = %s and t2.party = %s
2185 and t2.is_advance = 'Yes' and t1.docstatus = 1
Nabin Haitca627fb2016-09-05 16:16:53 +05302186 and {1} > 0 {2}
Ankush Menat494bd9e2022-03-28 18:52:46 +05302187 order by t1.posting_date""".format(
2188 amount_field, dr_or_cr, reference_condition
2189 ),
2190 [party_account, party_type, party] + order_list,
2191 as_dict=1,
2192 )
Rushabh Mehtaea0ff232016-07-07 14:02:26 +05302193
Nabin Hait1991c7b2016-06-27 20:09:05 +05302194 return list(journal_entries)
Rushabh Mehtaea0ff232016-07-07 14:02:26 +05302195
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002196
Ankush Menat494bd9e2022-03-28 18:52:46 +05302197def get_advance_payment_entries(
2198 party_type,
2199 party,
2200 party_account,
2201 order_doctype,
2202 order_list=None,
2203 include_unallocated=True,
2204 against_all_orders=False,
2205 limit=None,
2206 condition=None,
2207):
Nabin Hait1991c7b2016-06-27 20:09:05 +05302208 party_account_field = "paid_from" if party_type == "Customer" else "paid_to"
Ankush Menat494bd9e2022-03-28 18:52:46 +05302209 currency_field = (
2210 "paid_from_account_currency" if party_type == "Customer" else "paid_to_account_currency"
2211 )
Nabin Hait1991c7b2016-06-27 20:09:05 +05302212 payment_type = "Receive" if party_type == "Customer" else "Pay"
Ankush Menat494bd9e2022-03-28 18:52:46 +05302213 exchange_rate_field = (
2214 "source_exchange_rate" if payment_type == "Receive" else "target_exchange_rate"
2215 )
Saqiba20999c2021-07-12 14:33:23 +05302216
Nabin Hait1991c7b2016-06-27 20:09:05 +05302217 payment_entries_against_order, unallocated_payment_entries = [], []
Nabin Hait34c551d2019-07-03 10:34:31 +05302218 limit_cond = "limit %s" % limit if limit else ""
Nabin Haitff2f3ef2016-07-04 11:41:14 +05302219
Nabin Hait1991c7b2016-06-27 20:09:05 +05302220 if order_list or against_all_orders:
2221 if order_list:
Ankush Menat494bd9e2022-03-28 18:52:46 +05302222 reference_condition = " and t2.reference_name in ({0})".format(
2223 ", ".join(["%s"] * len(order_list))
2224 )
Nabin Hait1991c7b2016-06-27 20:09:05 +05302225 else:
2226 reference_condition = ""
2227 order_list = []
Rushabh Mehtaea0ff232016-07-07 14:02:26 +05302228
Ankush Menat494bd9e2022-03-28 18:52:46 +05302229 payment_entries_against_order = frappe.db.sql(
2230 """
Nabin Hait1991c7b2016-06-27 20:09:05 +05302231 select
Conor74a782d2022-06-17 06:31:27 -05002232 'Payment Entry' as reference_type, t1.name as reference_name,
Nabin Hait1991c7b2016-06-27 20:09:05 +05302233 t1.remarks, t2.allocated_amount as amount, t2.name as reference_row,
Deepesh Gargc7eadfc2020-07-22 17:59:37 +05302234 t2.reference_name as against_order, t1.posting_date,
Saqiba20999c2021-07-12 14:33:23 +05302235 t1.{0} as currency, t1.{4} as exchange_rate
Rushabh Mehtaea0ff232016-07-07 14:02:26 +05302236 from `tabPayment Entry` t1, `tabPayment Entry Reference` t2
Nabin Hait1991c7b2016-06-27 20:09:05 +05302237 where
Deepesh Gargc7eadfc2020-07-22 17:59:37 +05302238 t1.name = t2.parent and t1.{1} = %s and t1.payment_type = %s
Nabin Hait1991c7b2016-06-27 20:09:05 +05302239 and t1.party_type = %s and t1.party = %s and t1.docstatus = 1
Deepesh Gargc7eadfc2020-07-22 17:59:37 +05302240 and t2.reference_doctype = %s {2}
2241 order by t1.posting_date {3}
Ankush Menat494bd9e2022-03-28 18:52:46 +05302242 """.format(
2243 currency_field, party_account_field, reference_condition, limit_cond, exchange_rate_field
2244 ),
2245 [party_account, payment_type, party_type, party, order_doctype] + order_list,
2246 as_dict=1,
2247 )
Rushabh Mehtaea0ff232016-07-07 14:02:26 +05302248
Nabin Hait1991c7b2016-06-27 20:09:05 +05302249 if include_unallocated:
Ankush Menat494bd9e2022-03-28 18:52:46 +05302250 unallocated_payment_entries = frappe.db.sql(
2251 """
Conor74a782d2022-06-17 06:31:27 -05002252 select 'Payment Entry' as reference_type, name as reference_name, posting_date,
Anuja Pawar3e404f12021-08-31 18:59:29 +05302253 remarks, unallocated_amount as amount, {2} as exchange_rate, {3} as currency
Nabin Hait1991c7b2016-06-27 20:09:05 +05302254 from `tabPayment Entry`
2255 where
2256 {0} = %s and party_type = %s and party = %s and payment_type = %s
Anuja Pawar3e404f12021-08-31 18:59:29 +05302257 and docstatus = 1 and unallocated_amount > 0 {condition}
Rohit Waghchauref7258162019-01-15 18:12:04 +05302258 order by posting_date {1}
Ankush Menat494bd9e2022-03-28 18:52:46 +05302259 """.format(
2260 party_account_field, limit_cond, exchange_rate_field, currency_field, condition=condition or ""
2261 ),
2262 (party_account, party_type, party, payment_type),
2263 as_dict=1,
2264 )
Rushabh Mehtaea0ff232016-07-07 14:02:26 +05302265
Rohit Waghchaure2f1db572016-11-08 12:39:33 +05302266 return list(payment_entries_against_order) + list(unallocated_payment_entries)
2267
Ankush Menat494bd9e2022-03-28 18:52:46 +05302268
Rohit Waghchaure2f1db572016-11-08 12:39:33 +05302269def update_invoice_status():
Sagar Vorac8b9a552021-09-22 12:11:35 +05302270 """Updates status as Overdue for applicable invoices. Runs daily."""
Sagar Vora8d9d0982021-10-20 19:15:35 +05302271 today = getdate()
Pruthvi Patel6c96ed42021-10-30 16:44:15 +05302272 payment_schedule = frappe.qb.DocType("Payment Schedule")
Sagar Vorac8b9a552021-09-22 12:11:35 +05302273 for doctype in ("Sales Invoice", "Purchase Invoice"):
Pruthvi Patel6c96ed42021-10-30 16:44:15 +05302274 invoice = frappe.qb.DocType(doctype)
2275
2276 consider_base_amount = invoice.party_account_currency != invoice.currency
2277 payment_amount = (
2278 frappe.qb.terms.Case()
2279 .when(consider_base_amount, payment_schedule.base_payment_amount)
2280 .else_(payment_schedule.payment_amount)
Sagar Vora8d9d0982021-10-20 19:15:35 +05302281 )
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002282
Pruthvi Patel6c96ed42021-10-30 16:44:15 +05302283 payable_amount = (
2284 frappe.qb.from_(payment_schedule)
2285 .select(Sum(payment_amount))
Ankush Menat494bd9e2022-03-28 18:52:46 +05302286 .where((payment_schedule.parent == invoice.name) & (payment_schedule.due_date < today))
Pruthvi Patel6c96ed42021-10-30 16:44:15 +05302287 )
2288
2289 total = (
2290 frappe.qb.terms.Case()
2291 .when(invoice.disable_rounded_total, invoice.grand_total)
2292 .else_(invoice.rounded_total)
2293 )
2294
2295 base_total = (
2296 frappe.qb.terms.Case()
2297 .when(invoice.disable_rounded_total, invoice.base_grand_total)
2298 .else_(invoice.base_rounded_total)
2299 )
2300
Ankush Menat494bd9e2022-03-28 18:52:46 +05302301 total_amount = frappe.qb.terms.Case().when(consider_base_amount, base_total).else_(total)
Pruthvi Patel6c96ed42021-10-30 16:44:15 +05302302
2303 is_overdue = total_amount - invoice.outstanding_amount < payable_amount
2304
2305 conditions = (
2306 (invoice.docstatus == 1)
2307 & (invoice.outstanding_amount > 0)
Ankush Menat494bd9e2022-03-28 18:52:46 +05302308 & (invoice.status.like("Unpaid%") | invoice.status.like("Partly Paid%"))
Pruthvi Patel6c96ed42021-10-30 16:44:15 +05302309 & (
Pruthvi Patel16a90d32021-12-20 13:24:19 +05302310 ((invoice.is_pos & invoice.due_date < today) | is_overdue)
Pruthvi Patel6c96ed42021-10-30 16:44:15 +05302311 if doctype == "Sales Invoice"
2312 else is_overdue
2313 )
2314 )
2315
Pruthvi Patel0799f372021-11-12 12:56:29 +05302316 status = (
2317 frappe.qb.terms.Case()
2318 .when(invoice.status.like("%Discounted"), "Overdue and Discounted")
2319 .else_("Overdue")
2320 )
2321
2322 frappe.qb.update(invoice).set("status", status).where(conditions).run()
Pruthvi Patel6c96ed42021-10-30 16:44:15 +05302323
2324
Nabin Hait92759692017-08-15 08:23:51 +05302325@frappe.whitelist()
Ankush Menat494bd9e2022-03-28 18:52:46 +05302326def get_payment_terms(
2327 terms_template, posting_date=None, grand_total=None, base_grand_total=None, bill_date=None
2328):
Nabin Hait92759692017-08-15 08:23:51 +05302329 if not terms_template:
2330 return
2331
2332 terms_doc = frappe.get_doc("Payment Terms Template", terms_template)
2333
2334 schedule = []
tundefb144302017-08-19 15:01:40 +01002335 for d in terms_doc.get("terms"):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302336 term_details = get_payment_term_details(
2337 d, posting_date, grand_total, base_grand_total, bill_date
2338 )
Nabin Hait92759692017-08-15 08:23:51 +05302339 schedule.append(term_details)
2340
2341 return schedule
2342
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002343
Nabin Hait92759692017-08-15 08:23:51 +05302344@frappe.whitelist()
Ankush Menat494bd9e2022-03-28 18:52:46 +05302345def get_payment_term_details(
2346 term, posting_date=None, grand_total=None, base_grand_total=None, bill_date=None
2347):
Nabin Hait92759692017-08-15 08:23:51 +05302348 term_details = frappe._dict()
Ankush Menat8fe5feb2021-11-04 19:48:32 +05302349 if isinstance(term, str):
Nabin Hait92759692017-08-15 08:23:51 +05302350 term = frappe.get_doc("Payment Term", term)
2351 else:
2352 term_details.payment_term = term.payment_term
2353 term_details.description = term.description
2354 term_details.invoice_portion = term.invoice_portion
Rohit Waghchaure52bf56d2017-11-27 11:43:52 +05302355 term_details.payment_amount = flt(term.invoice_portion) * flt(grand_total) / 100
Saqib Ansarid552fe62021-04-23 14:46:52 +05302356 term_details.base_payment_amount = flt(term.invoice_portion) * flt(base_grand_total) / 100
Saqib0586b7d2021-03-31 15:03:53 +05302357 term_details.discount_type = term.discount_type
2358 term_details.discount = term.discount
Saqib0586b7d2021-03-31 15:03:53 +05302359 term_details.outstanding = term_details.payment_amount
2360 term_details.mode_of_payment = term.mode_of_payment
2361
Shreya Shah3a9eec22018-02-16 13:05:21 +05302362 if bill_date:
2363 term_details.due_date = get_due_date(term, bill_date)
Saqib0586b7d2021-03-31 15:03:53 +05302364 term_details.discount_date = get_discount_date(term, bill_date)
Shreya Shah3a9eec22018-02-16 13:05:21 +05302365 elif posting_date:
2366 term_details.due_date = get_due_date(term, posting_date)
Saqib0586b7d2021-03-31 15:03:53 +05302367 term_details.discount_date = get_discount_date(term, posting_date)
Shreya Shah3a9eec22018-02-16 13:05:21 +05302368
2369 if getdate(term_details.due_date) < getdate(posting_date):
2370 term_details.due_date = posting_date
2371
Nabin Hait92759692017-08-15 08:23:51 +05302372 return term_details
2373
Ankush Menat494bd9e2022-03-28 18:52:46 +05302374
Shreya Shah3a9eec22018-02-16 13:05:21 +05302375def get_due_date(term, posting_date=None, bill_date=None):
Nabin Hait92759692017-08-15 08:23:51 +05302376 due_date = None
Shreya Shah3a9eec22018-02-16 13:05:21 +05302377 date = bill_date or posting_date
Nabin Hait92759692017-08-15 08:23:51 +05302378 if term.due_date_based_on == "Day(s) after invoice date":
Shreya Shah3a9eec22018-02-16 13:05:21 +05302379 due_date = add_days(date, term.credit_days)
Nabin Hait92759692017-08-15 08:23:51 +05302380 elif term.due_date_based_on == "Day(s) after the end of the invoice month":
Shreya Shah3a9eec22018-02-16 13:05:21 +05302381 due_date = add_days(get_last_day(date), term.credit_days)
Nabin Hait92759692017-08-15 08:23:51 +05302382 elif term.due_date_based_on == "Month(s) after the end of the invoice month":
Shreya Shah3a9eec22018-02-16 13:05:21 +05302383 due_date = add_months(get_last_day(date), term.credit_months)
tunde96b8f222017-09-08 15:35:59 +01002384 return due_date
tundebabzyad08d4c2018-05-16 07:01:41 +01002385
Ankush Menat494bd9e2022-03-28 18:52:46 +05302386
Saqib0586b7d2021-03-31 15:03:53 +05302387def get_discount_date(term, posting_date=None, bill_date=None):
2388 discount_validity = None
2389 date = bill_date or posting_date
2390 if term.discount_validity_based_on == "Day(s) after invoice date":
2391 discount_validity = add_days(date, term.discount_validity)
2392 elif term.discount_validity_based_on == "Day(s) after the end of the invoice month":
2393 discount_validity = add_days(get_last_day(date), term.discount_validity)
2394 elif term.discount_validity_based_on == "Month(s) after the end of the invoice month":
2395 discount_validity = add_months(get_last_day(date), term.discount_validity)
2396 return discount_validity
tundebabzyad08d4c2018-05-16 07:01:41 +01002397
Ankush Menat494bd9e2022-03-28 18:52:46 +05302398
tundebabzyad08d4c2018-05-16 07:01:41 +01002399def get_supplier_block_status(party_name):
2400 """
2401 Returns a dict containing the values of `on_hold`, `release_date` and `hold_type` of
2402 a `Supplier`
2403 """
Ankush Menat494bd9e2022-03-28 18:52:46 +05302404 supplier = frappe.get_doc("Supplier", party_name)
tundebabzyad08d4c2018-05-16 07:01:41 +01002405 info = {
Ankush Menat494bd9e2022-03-28 18:52:46 +05302406 "on_hold": supplier.on_hold,
2407 "release_date": supplier.release_date,
2408 "hold_type": supplier.hold_type,
tundebabzyad08d4c2018-05-16 07:01:41 +01002409 }
2410 return info
2411
Ankush Menat494bd9e2022-03-28 18:52:46 +05302412
marination698d9832020-08-19 14:59:46 +05302413def set_child_tax_template_and_map(item, child_item, parent_doc):
2414 args = {
Ankush Menat494bd9e2022-03-28 18:52:46 +05302415 "item_code": item.item_code,
2416 "posting_date": parent_doc.transaction_date,
2417 "tax_category": parent_doc.get("tax_category"),
2418 "company": parent_doc.get("company"),
2419 }
marination698d9832020-08-19 14:59:46 +05302420
2421 child_item.item_tax_template = _get_item_tax_template(args, item.taxes)
2422 if child_item.get("item_tax_template"):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302423 child_item.item_tax_rate = get_item_tax_map(
2424 parent_doc.get("company"), child_item.item_tax_template, as_json=True
2425 )
2426
marination698d9832020-08-19 14:59:46 +05302427
Afshanb3bbebd2021-08-09 14:39:32 +05302428def add_taxes_from_tax_template(child_item, parent_doc, db_insert=True):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302429 add_taxes_from_item_tax_template = frappe.db.get_single_value(
2430 "Accounts Settings", "add_taxes_from_item_tax_template"
2431 )
Marica3b1be2b2020-10-22 17:04:31 +05302432
2433 if child_item.get("item_tax_rate") and add_taxes_from_item_tax_template:
2434 tax_map = json.loads(child_item.get("item_tax_rate"))
2435 for tax_type in tax_map:
2436 tax_rate = flt(tax_map[tax_type])
Ankush Menat494bd9e2022-03-28 18:52:46 +05302437 taxes = parent_doc.get("taxes") or []
Marica3b1be2b2020-10-22 17:04:31 +05302438 # add new row for tax head only if missing
2439 found = any(tax.account_head == tax_type for tax in taxes)
2440 if not found:
2441 tax_row = parent_doc.append("taxes", {})
Ankush Menat494bd9e2022-03-28 18:52:46 +05302442 tax_row.update(
2443 {
2444 "description": str(tax_type).split(" - ")[0],
2445 "charge_type": "On Net Total",
2446 "account_head": tax_type,
2447 "rate": tax_rate,
2448 }
2449 )
Marica3b1be2b2020-10-22 17:04:31 +05302450 if parent_doc.doctype == "Purchase Order":
Ankush Menat494bd9e2022-03-28 18:52:46 +05302451 tax_row.update({"category": "Total", "add_deduct_tax": "Add"})
Afshanb3bbebd2021-08-09 14:39:32 +05302452 if db_insert:
2453 tax_row.db_insert()
Marica3b1be2b2020-10-22 17:04:31 +05302454
Ankush Menat494bd9e2022-03-28 18:52:46 +05302455
2456def set_order_defaults(
2457 parent_doctype, parent_doctype_name, child_doctype, child_docname, trans_item
2458):
Stavros Anastasiadis3d82b742018-12-10 13:00:55 +01002459 """
pateljannat637ddff2021-02-09 16:17:30 +05302460 Returns a Sales/Purchase Order Item child item containing the default values
Stavros Anastasiadis3d82b742018-12-10 13:00:55 +01002461 """
Saqib438e0432020-04-03 10:02:56 +05302462 p_doc = frappe.get_doc(parent_doctype, parent_doctype_name)
pateljannat637ddff2021-02-09 16:17:30 +05302463 child_item = frappe.new_doc(child_doctype, p_doc, child_docname)
Ankush Menat494bd9e2022-03-28 18:52:46 +05302464 item = frappe.get_doc("Item", trans_item.get("item_code"))
marination0673f552021-03-31 01:38:22 +05302465
pateljannat637ddff2021-02-09 16:17:30 +05302466 for field in ("item_code", "item_name", "description", "item_group"):
marination0673f552021-03-31 01:38:22 +05302467 child_item.update({field: item.get(field)})
2468
pateljannat637ddff2021-02-09 16:17:30 +05302469 date_fieldname = "delivery_date" if child_doctype == "Sales Order Item" else "schedule_date"
Jannat Patelbb0d8f82021-02-11 20:59:28 +05302470 child_item.update({date_fieldname: trans_item.get(date_fieldname) or p_doc.get(date_fieldname)})
marination0673f552021-03-31 01:38:22 +05302471 child_item.stock_uom = item.stock_uom
Saqib61314242020-09-15 11:14:31 +05302472 child_item.uom = trans_item.get("uom") or item.stock_uom
Andy Zhu1062d7e2020-10-06 10:51:42 +13002473 child_item.warehouse = get_item_warehouse(item, p_doc, overwrite_warehouse=True)
Ankush Menat494bd9e2022-03-28 18:52:46 +05302474 conversion_factor = flt(
2475 get_conversion_factor(item.item_code, child_item.uom).get("conversion_factor")
2476 )
2477 child_item.conversion_factor = flt(trans_item.get("conversion_factor")) or conversion_factor
marination0673f552021-03-31 01:38:22 +05302478
pateljannat637ddff2021-02-09 16:17:30 +05302479 if child_doctype == "Purchase Order Item":
marination0673f552021-03-31 01:38:22 +05302480 # Initialized value will update in parent validation
2481 child_item.base_rate = 1
2482 child_item.base_amount = 1
pateljannat637ddff2021-02-09 16:17:30 +05302483 if child_doctype == "Sales Order Item":
2484 child_item.warehouse = get_item_warehouse(item, p_doc, overwrite_warehouse=True)
2485 if not child_item.warehouse:
Ankush Menat494bd9e2022-03-28 18:52:46 +05302486 frappe.throw(
2487 _("Cannot find {} for item {}. Please set the same in Item Master or Stock Settings.").format(
2488 frappe.bold("default warehouse"), frappe.bold(item.item_code)
2489 )
2490 )
marination0673f552021-03-31 01:38:22 +05302491
marination698d9832020-08-19 14:59:46 +05302492 set_child_tax_template_and_map(item, child_item, p_doc)
Marica3b1be2b2020-10-22 17:04:31 +05302493 add_taxes_from_tax_template(child_item, p_doc)
Stavros Anastasiadis3d82b742018-12-10 13:00:55 +01002494 return child_item
2495
Ankush Menat494bd9e2022-03-28 18:52:46 +05302496
marination0673f552021-03-31 01:38:22 +05302497def validate_child_on_delete(row, parent):
2498 """Check if partially transacted item (row) is being deleted."""
2499 if parent.doctype == "Sales Order":
2500 if flt(row.delivered_qty):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302501 frappe.throw(
2502 _("Row #{0}: Cannot delete item {1} which has already been delivered").format(
2503 row.idx, row.item_code
2504 )
2505 )
marination0673f552021-03-31 01:38:22 +05302506 if flt(row.work_order_qty):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302507 frappe.throw(
2508 _("Row #{0}: Cannot delete item {1} which has work order assigned to it.").format(
2509 row.idx, row.item_code
2510 )
2511 )
marination0673f552021-03-31 01:38:22 +05302512 if flt(row.ordered_qty):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302513 frappe.throw(
2514 _("Row #{0}: Cannot delete item {1} which is assigned to customer's purchase order.").format(
2515 row.idx, row.item_code
2516 )
2517 )
marination0673f552021-03-31 01:38:22 +05302518
2519 if parent.doctype == "Purchase Order" and flt(row.received_qty):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302520 frappe.throw(
2521 _("Row #{0}: Cannot delete item {1} which has already been received").format(
2522 row.idx, row.item_code
2523 )
2524 )
marination0673f552021-03-31 01:38:22 +05302525
2526 if flt(row.billed_amt):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302527 frappe.throw(
2528 _("Row #{0}: Cannot delete item {1} which has already been billed.").format(
2529 row.idx, row.item_code
2530 )
2531 )
2532
marination0673f552021-03-31 01:38:22 +05302533
2534def update_bin_on_delete(row, doctype):
2535 """Update bin for deleted item (row)."""
Chillar Anand915b3432021-09-02 16:44:59 +05302536 from erpnext.stock.stock_balance import (
2537 get_indented_qty,
2538 get_ordered_qty,
2539 get_reserved_qty,
2540 update_bin_qty,
2541 )
Ankush Menat494bd9e2022-03-28 18:52:46 +05302542
marination0673f552021-03-31 01:38:22 +05302543 qty_dict = {}
2544
2545 if doctype == "Sales Order":
2546 qty_dict["reserved_qty"] = get_reserved_qty(row.item_code, row.warehouse)
2547 else:
2548 if row.material_request_item:
2549 qty_dict["indented_qty"] = get_indented_qty(row.item_code, row.warehouse)
2550
2551 qty_dict["ordered_qty"] = get_ordered_qty(row.item_code, row.warehouse)
2552
Deepesh Garga61790c2022-02-22 20:58:10 +05302553 if row.warehouse:
2554 update_bin_qty(row.item_code, row.warehouse, qty_dict)
marination0673f552021-03-31 01:38:22 +05302555
Ankush Menat494bd9e2022-03-28 18:52:46 +05302556
Ankush Menatdd11f262022-06-27 15:55:08 +05302557def validate_and_delete_children(parent, data) -> bool:
Saqib0ad74492019-12-24 16:42:30 +05302558 deleted_children = []
2559 updated_item_names = [d.get("docname") for d in data]
2560 for item in parent.items:
2561 if item.name not in updated_item_names:
2562 deleted_children.append(item)
2563
2564 for d in deleted_children:
marination0673f552021-03-31 01:38:22 +05302565 validate_child_on_delete(d, parent)
Saqib0ad74492019-12-24 16:42:30 +05302566 d.cancel()
2567 d.delete()
marination0673f552021-03-31 01:38:22 +05302568
2569 # need to update ordered qty in Material Request first
2570 # bin uses Material Request Items to recalculate & update
2571 parent.update_prevdoc_status()
2572
2573 for d in deleted_children:
2574 update_bin_on_delete(d, parent.doctype)
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002575
Ankush Menatdd11f262022-06-27 15:55:08 +05302576 return bool(deleted_children)
2577
Rohan Bansala93b5142021-04-06 17:10:52 +05302578
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002579@frappe.whitelist()
Stavros Anastasiadis3d82b742018-12-10 13:00:55 +01002580def update_child_qty_rate(parent_doctype, trans_items, parent_doctype_name, child_docname="items"):
Ankush Menat494bd9e2022-03-28 18:52:46 +05302581 def check_doc_permissions(doc, perm_type="create"):
Saqib Ansari2c3c8aa2020-05-29 21:55:38 +05302582 try:
2583 doc.check_permission(perm_type)
Saqib6db92fb2020-09-14 19:54:17 +05302584 except frappe.PermissionError:
Ankush Menat494bd9e2022-03-28 18:52:46 +05302585 actions = {"create": "add", "write": "update"}
Saqib6db92fb2020-09-14 19:54:17 +05302586
Ankush Menat494bd9e2022-03-28 18:52:46 +05302587 frappe.throw(
2588 _("You do not have permissions to {} items in a {}.").format(
2589 actions[perm_type], parent_doctype
2590 ),
2591 title=_("Insufficient Permissions"),
2592 )
marination665c27a2020-09-15 12:04:38 +05302593
Saqib6db92fb2020-09-14 19:54:17 +05302594 def validate_workflow_conditions(doc):
2595 workflow = get_workflow_name(doc.doctype)
2596 if not workflow:
2597 return
2598
2599 workflow_doc = frappe.get_doc("Workflow", workflow)
2600 current_state = doc.get(workflow_doc.workflow_state_field)
2601 roles = frappe.get_roles()
2602
2603 transitions = []
2604 for transition in workflow_doc.transitions:
2605 if transition.next_state == current_state and transition.allowed in roles:
2606 if not is_transition_condition_satisfied(transition, doc):
2607 continue
2608 transitions.append(transition.as_dict())
2609
2610 if not transitions:
Saqib18318932020-09-23 13:01:49 +05302611 frappe.throw(
Ankush Menat494bd9e2022-03-28 18:52:46 +05302612 _("You are not allowed to update as per the conditions set in {} Workflow.").format(
2613 get_link_to_form("Workflow", workflow)
2614 ),
2615 title=_("Insufficient Permissions"),
Saqib18318932020-09-23 13:01:49 +05302616 )
Saqib Ansari2c3c8aa2020-05-29 21:55:38 +05302617
Rohit Waghchaure8d5380a2020-06-18 14:06:31 +05302618 def get_new_child_item(item_row):
Rohit Waghchaureff70e612021-03-06 22:08:08 +05302619 child_doctype = "Sales Order Item" if parent_doctype == "Sales Order" else "Purchase Order Item"
Ankush Menat494bd9e2022-03-28 18:52:46 +05302620 return set_order_defaults(
2621 parent_doctype, parent_doctype_name, child_doctype, child_docname, item_row
2622 )
Saqib Ansari2c3c8aa2020-05-29 21:55:38 +05302623
marination0c915432022-05-10 18:04:02 +05302624 def validate_quantity(child_item, new_data):
2625 if not flt(new_data.get("qty")):
2626 frappe.throw(
2627 _("Row # {0}: Quantity for Item {1} cannot be zero").format(
2628 new_data.get("idx"), frappe.bold(new_data.get("item_code"))
2629 ),
2630 title=_("Invalid Qty"),
2631 )
2632
2633 if parent_doctype == "Sales Order" and flt(new_data.get("qty")) < flt(child_item.delivered_qty):
Saqib Ansari2c3c8aa2020-05-29 21:55:38 +05302634 frappe.throw(_("Cannot set quantity less than delivered quantity"))
2635
marination0c915432022-05-10 18:04:02 +05302636 if parent_doctype == "Purchase Order" and flt(new_data.get("qty")) < flt(
2637 child_item.received_qty
2638 ):
Saqib Ansari2c3c8aa2020-05-29 21:55:38 +05302639 frappe.throw(_("Cannot set quantity less than received quantity"))
2640
Ankush Menatdd11f262022-06-27 15:55:08 +05302641 def should_update_supplied_items(doc) -> bool:
2642 """Subcontracted PO can allow following changes *after submit*:
2643
2644 1. Change rate of subcontracting - regardless of other changes.
2645 2. Change qty and/or add new items and/or remove items
2646 Exception: Transfer/Consumption is already made, qty change not allowed.
2647 """
2648
2649 supplied_items_processed = any(
2650 item.supplied_qty or item.consumed_qty or item.returned_qty for item in doc.supplied_items
2651 )
2652
2653 update_supplied_items = (
2654 any_qty_changed or items_added_or_removed or any_conversion_factor_changed
2655 )
2656 if update_supplied_items and supplied_items_processed:
2657 frappe.throw(_("Item qty can not be updated as raw materials are already processed."))
2658
2659 return update_supplied_items
2660
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002661 data = json.loads(trans_items)
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002662
Ankush Menatdd11f262022-06-27 15:55:08 +05302663 any_qty_changed = False # updated to true if any item's qty changes
2664 items_added_or_removed = False # updated to true if any new item is added or removed
2665 any_conversion_factor_changed = False
2666
Ankush Menat494bd9e2022-03-28 18:52:46 +05302667 sales_doctypes = ["Sales Order", "Sales Invoice", "Delivery Note", "Quotation"]
Rushabh Mehtac9b1a352018-12-24 20:55:35 +05302668 parent = frappe.get_doc(parent_doctype, parent_doctype_name)
marination665c27a2020-09-15 12:04:38 +05302669
Ankush Menat494bd9e2022-03-28 18:52:46 +05302670 check_doc_permissions(parent, "write")
Ankush Menatdd11f262022-06-27 15:55:08 +05302671 _removed_items = validate_and_delete_children(parent, data)
2672 items_added_or_removed |= _removed_items
Saqib0ad74492019-12-24 16:42:30 +05302673
Stavros Anastasiadis3d82b742018-12-10 13:00:55 +01002674 for d in data:
2675 new_child_flag = False
Ankush Menat6de7b8e2021-08-24 12:18:40 +05302676
2677 if not d.get("item_code"):
2678 # ignore empty rows
2679 continue
2680
Stavros Anastasiadis3d82b742018-12-10 13:00:55 +01002681 if not d.get("docname"):
2682 new_child_flag = True
Ankush Menatdd11f262022-06-27 15:55:08 +05302683 items_added_or_removed = True
Ankush Menat494bd9e2022-03-28 18:52:46 +05302684 check_doc_permissions(parent, "create")
Rohit Waghchaure8d5380a2020-06-18 14:06:31 +05302685 child_item = get_new_child_item(d)
Stavros Anastasiadis3d82b742018-12-10 13:00:55 +01002686 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +05302687 check_doc_permissions(parent, "write")
2688 child_item = frappe.get_doc(parent_doctype + " Item", d.get("docname"))
Saqib Ansari2c3c8aa2020-05-29 21:55:38 +05302689
Saqib Ansaric579b082020-05-29 22:21:50 +05302690 prev_rate, new_rate = flt(child_item.get("rate")), flt(d.get("rate"))
2691 prev_qty, new_qty = flt(child_item.get("qty")), flt(d.get("qty"))
Ankush Menat494bd9e2022-03-28 18:52:46 +05302692 prev_con_fac, new_con_fac = flt(child_item.get("conversion_factor")), flt(
2693 d.get("conversion_factor")
2694 )
Saqib61314242020-09-15 11:14:31 +05302695 prev_uom, new_uom = child_item.get("uom"), d.get("uom")
Saqib Ansaric579b082020-05-29 22:21:50 +05302696
Ankush Menat494bd9e2022-03-28 18:52:46 +05302697 if parent_doctype == "Sales Order":
Saqib Ansaric579b082020-05-29 22:21:50 +05302698 prev_date, new_date = child_item.get("delivery_date"), d.get("delivery_date")
Ankush Menat494bd9e2022-03-28 18:52:46 +05302699 elif parent_doctype == "Purchase Order":
marinationb7e94cc2020-06-15 11:32:42 +05302700 prev_date, new_date = child_item.get("schedule_date"), d.get("schedule_date")
Saqib Ansaric579b082020-05-29 22:21:50 +05302701
2702 rate_unchanged = prev_rate == new_rate
marinationf9c4b202020-06-12 15:49:53 +05302703 qty_unchanged = prev_qty == new_qty
Saqib61314242020-09-15 11:14:31 +05302704 uom_unchanged = prev_uom == new_uom
Saqib Ansaric579b082020-05-29 22:21:50 +05302705 conversion_factor_unchanged = prev_con_fac == new_con_fac
Ankush Menatdd11f262022-06-27 15:55:08 +05302706 any_conversion_factor_changed |= not conversion_factor_unchanged
Ankush Menat494bd9e2022-03-28 18:52:46 +05302707 date_unchanged = (
2708 prev_date == getdate(new_date) if prev_date and new_date else False
2709 ) # in case of delivery note etc
2710 if (
2711 rate_unchanged
2712 and qty_unchanged
2713 and conversion_factor_unchanged
2714 and uom_unchanged
2715 and date_unchanged
2716 ):
Saqibdd374ff2020-02-27 12:51:31 +05302717 continue
Stavros Anastasiadis3d82b742018-12-10 13:00:55 +01002718
Saqib Ansari2c3c8aa2020-05-29 21:55:38 +05302719 validate_quantity(child_item, d)
Ankush Menatdd11f262022-06-27 15:55:08 +05302720 if flt(child_item.get("qty")) != flt(d.get("qty")):
2721 any_qty_changed = True
deepeshgarg00777cde832018-12-27 15:56:51 +05302722
Stavros Anastasiadis3d82b742018-12-10 13:00:55 +01002723 child_item.qty = flt(d.get("qty"))
Saqib56fea7d2020-10-09 21:19:25 +05302724 rate_precision = child_item.precision("rate") or 2
2725 conv_fac_precision = child_item.precision("conversion_factor") or 2
2726 qty_precision = child_item.precision("qty") or 2
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002727
Ankush Menat494bd9e2022-03-28 18:52:46 +05302728 if flt(child_item.billed_amt, rate_precision) > flt(
2729 flt(d.get("rate"), rate_precision) * flt(d.get("qty"), qty_precision), rate_precision
2730 ):
2731 frappe.throw(
2732 _("Row #{0}: Cannot set Rate if amount is greater than billed amount for Item {1}.").format(
2733 child_item.idx, child_item.item_code
2734 )
2735 )
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002736 else:
Saqib56fea7d2020-10-09 21:19:25 +05302737 child_item.rate = flt(d.get("rate"), rate_precision)
marinationf9c4b202020-06-12 15:49:53 +05302738
Saqib Ansari2c3c8aa2020-05-29 21:55:38 +05302739 if d.get("conversion_factor"):
marinationf9c4b202020-06-12 15:49:53 +05302740 if child_item.stock_uom == child_item.uom:
2741 child_item.conversion_factor = 1
2742 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +05302743 child_item.conversion_factor = flt(d.get("conversion_factor"), conv_fac_precision)
marination665c27a2020-09-15 12:04:38 +05302744
Saqib61314242020-09-15 11:14:31 +05302745 if d.get("uom"):
2746 child_item.uom = d.get("uom")
Ankush Menat494bd9e2022-03-28 18:52:46 +05302747 conversion_factor = flt(
2748 get_conversion_factor(child_item.item_code, child_item.uom).get("conversion_factor")
2749 )
2750 child_item.conversion_factor = (
2751 flt(d.get("conversion_factor"), conv_fac_precision) or conversion_factor
2752 )
Mangesh-Khairnara3d52002019-08-05 10:16:40 +05302753
Ankush Menat494bd9e2022-03-28 18:52:46 +05302754 if d.get("delivery_date") and parent_doctype == "Sales Order":
2755 child_item.delivery_date = d.get("delivery_date")
marinationf9c4b202020-06-12 15:49:53 +05302756
Ankush Menat494bd9e2022-03-28 18:52:46 +05302757 if d.get("schedule_date") and parent_doctype == "Purchase Order":
2758 child_item.schedule_date = d.get("schedule_date")
Saqib Ansaric579b082020-05-29 22:21:50 +05302759
Mangesh-Khairnara3d52002019-08-05 10:16:40 +05302760 if flt(child_item.price_list_rate):
Maricaf0674472019-10-11 10:47:09 +05302761 if flt(child_item.rate) > flt(child_item.price_list_rate):
2762 # if rate is greater than price_list_rate, set margin
2763 # or set discount
2764 child_item.discount_percentage = 0
rohitwaghchaure81c21752019-10-31 15:56:10 +05302765
2766 if parent_doctype in sales_doctypes:
2767 child_item.margin_type = "Amount"
Ankush Menat494bd9e2022-03-28 18:52:46 +05302768 child_item.margin_rate_or_amount = flt(
2769 child_item.rate - child_item.price_list_rate, child_item.precision("margin_rate_or_amount")
2770 )
rohitwaghchaure81c21752019-10-31 15:56:10 +05302771 child_item.rate_with_margin = child_item.rate
Maricaf0674472019-10-11 10:47:09 +05302772 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +05302773 child_item.discount_percentage = flt(
2774 (1 - flt(child_item.rate) / flt(child_item.price_list_rate)) * 100.0,
2775 child_item.precision("discount_percentage"),
2776 )
2777 child_item.discount_amount = flt(child_item.price_list_rate) - flt(child_item.rate)
rohitwaghchaure81c21752019-10-31 15:56:10 +05302778
2779 if parent_doctype in sales_doctypes:
2780 child_item.margin_type = ""
2781 child_item.margin_rate_or_amount = 0
2782 child_item.rate_with_margin = 0
Mangesh-Khairnara3d52002019-08-05 10:16:40 +05302783
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002784 child_item.flags.ignore_validate_update_after_submit = True
Stavros Anastasiadis3d82b742018-12-10 13:00:55 +01002785 if new_child_flag:
Saqib Ansarif53299e2020-04-15 22:08:12 +05302786 parent.load_from_db()
Rushabh Mehtac9b1a352018-12-24 20:55:35 +05302787 child_item.idx = len(parent.items) + 1
Stavros Anastasiadis3d82b742018-12-10 13:00:55 +01002788 child_item.insert()
2789 else:
2790 child_item.save()
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002791
Rushabh Mehtafafbb022018-12-24 22:09:15 +05302792 parent.reload()
Rushabh Mehtac9b1a352018-12-24 20:55:35 +05302793 parent.flags.ignore_validate_update_after_submit = True
2794 parent.set_qty_as_per_stock_uom()
2795 parent.calculate_taxes_and_totals()
Ankush Menatdf6e2082021-02-11 11:04:39 +05302796 parent.set_total_in_words()
Nabin Hait49a46f02019-10-21 13:35:43 +05302797 if parent_doctype == "Sales Order":
Marica3dee5272020-06-23 10:33:47 +05302798 make_packing_list(parent)
Nabin Hait49a46f02019-10-21 13:35:43 +05302799 parent.set_gross_profit()
Ankush Menat494bd9e2022-03-28 18:52:46 +05302800 frappe.get_doc("Authorization Control").validate_approving_authority(
2801 parent.doctype, parent.company, parent.base_grand_total
2802 )
Doridel Cahanap6f06cc22018-05-17 16:28:58 +08002803
Rushabh Mehtac9b1a352018-12-24 20:55:35 +05302804 parent.set_payment_schedule()
Ankush Menat494bd9e2022-03-28 18:52:46 +05302805 if parent_doctype == "Purchase Order":
Rushabh Mehtac9b1a352018-12-24 20:55:35 +05302806 parent.validate_minimum_order_qty()
2807 parent.validate_budget()
2808 if parent.is_against_so():
2809 parent.update_status_updater()
Nabin Haitb2da0822018-07-13 17:01:40 +05302810 else:
Rushabh Mehtac9b1a352018-12-24 20:55:35 +05302811 parent.check_credit_limit()
Ankush Menat733c9de2022-01-04 18:39:30 +05302812
2813 # reset index of child table
2814 for idx, row in enumerate(parent.get(child_docname), start=1):
2815 row.idx = idx
2816
Rushabh Mehtac9b1a352018-12-24 20:55:35 +05302817 parent.save()
Nabin Haitb2da0822018-07-13 17:01:40 +05302818
Ankush Menat494bd9e2022-03-28 18:52:46 +05302819 if parent_doctype == "Purchase Order":
2820 update_last_purchase_rate(parent, is_submit=1)
Rushabh Mehtac9b1a352018-12-24 20:55:35 +05302821 parent.update_prevdoc_status()
2822 parent.update_requested_qty()
2823 parent.update_ordered_qty()
2824 parent.update_ordered_and_reserved_qty()
2825 parent.update_receiving_percentage()
s-aga-r6d89b2f2022-06-18 15:46:59 +05302826 if parent.is_old_subcontracting_flow:
Ankush Menatdd11f262022-06-27 15:55:08 +05302827 if should_update_supplied_items(parent):
2828 parent.update_reserved_qty_for_subcontract()
Sagar Sharma78ff1782022-06-28 22:20:32 +05302829 parent.create_raw_materials_supplied()
s-aga-r6d89b2f2022-06-18 15:46:59 +05302830 parent.save()
Ankush Menatc84e11a2022-06-01 12:55:10 +05302831 else: # Sales Order
2832 parent.validate_warehouse()
Rushabh Mehtac9b1a352018-12-24 20:55:35 +05302833 parent.update_reserved_qty()
2834 parent.update_project()
Ankush Menat494bd9e2022-03-28 18:52:46 +05302835 parent.update_prevdoc_status("submit")
Rushabh Mehtac9b1a352018-12-24 20:55:35 +05302836 parent.update_delivery_status()
Nabin Haitb2da0822018-07-13 17:01:40 +05302837
Saqib6db92fb2020-09-14 19:54:17 +05302838 parent.reload()
2839 validate_workflow_conditions(parent)
2840
Rushabh Mehtac9b1a352018-12-24 20:55:35 +05302841 parent.update_blanket_order()
2842 parent.update_billing_percentage()
2843 parent.set_status()
Gauravf1e28e02019-02-13 16:46:24 +05302844
Ankush Menat494bd9e2022-03-28 18:52:46 +05302845
Gauravf1e28e02019-02-13 16:46:24 +05302846@erpnext.allow_regional
2847def validate_regional(doc):
2848 pass
Saqib Ansaric5782b02022-01-27 20:09:56 +05302849
Ankush Menat494bd9e2022-03-28 18:52:46 +05302850
Saqib Ansaric5782b02022-01-27 20:09:56 +05302851@erpnext.allow_regional
2852def validate_einvoice_fields(doc):
2853 pass