mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 16:04:46 +00:00
Merge pull request #35130 from frappe/version-13-hotfix
chore: release v13
This commit is contained in:
@@ -2,6 +2,21 @@
|
|||||||
// For license information, please see license.txt
|
// For license information, please see license.txt
|
||||||
|
|
||||||
frappe.ui.form.on("Journal Entry Template", {
|
frappe.ui.form.on("Journal Entry Template", {
|
||||||
|
onload: function(frm) {
|
||||||
|
if(frm.is_new()) {
|
||||||
|
frappe.call({
|
||||||
|
type: "GET",
|
||||||
|
method: "erpnext.accounts.doctype.journal_entry_template.journal_entry_template.get_naming_series",
|
||||||
|
callback: function(r){
|
||||||
|
if(r.message) {
|
||||||
|
frm.set_df_property("naming_series", "options", r.message.split("\n"));
|
||||||
|
frm.set_value("naming_series", r.message.split("\n")[0]);
|
||||||
|
frm.refresh_field("naming_series");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
refresh: function(frm) {
|
refresh: function(frm) {
|
||||||
frappe.model.set_default_values(frm.doc);
|
frappe.model.set_default_values(frm.doc);
|
||||||
|
|
||||||
@@ -19,18 +34,6 @@ frappe.ui.form.on("Journal Entry Template", {
|
|||||||
|
|
||||||
return { filters: filters };
|
return { filters: filters };
|
||||||
});
|
});
|
||||||
|
|
||||||
frappe.call({
|
|
||||||
type: "GET",
|
|
||||||
method: "erpnext.accounts.doctype.journal_entry_template.journal_entry_template.get_naming_series",
|
|
||||||
callback: function(r){
|
|
||||||
if(r.message){
|
|
||||||
frm.set_df_property("naming_series", "options", r.message.split("\n"));
|
|
||||||
frm.set_value("naming_series", r.message.split("\n")[0]);
|
|
||||||
frm.refresh_field("naming_series");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
voucher_type: function(frm) {
|
voucher_type: function(frm) {
|
||||||
var add_accounts = function(doc, r) {
|
var add_accounts = function(doc, r) {
|
||||||
|
|||||||
@@ -1855,7 +1855,10 @@ def get_payment_entry(
|
|||||||
):
|
):
|
||||||
reference_doc = None
|
reference_doc = None
|
||||||
doc = frappe.get_doc(dt, dn)
|
doc = frappe.get_doc(dt, dn)
|
||||||
if dt in ("Sales Order", "Purchase Order") and flt(doc.per_billed, 2) >= 99.99:
|
over_billing_allowance = frappe.db.get_single_value("Accounts Settings", "over_billing_allowance")
|
||||||
|
if dt in ("Sales Order", "Purchase Order") and flt(doc.per_billed, 2) >= (
|
||||||
|
100.0 + over_billing_allowance
|
||||||
|
):
|
||||||
frappe.throw(_("Can only make payment against unbilled {0}").format(dt))
|
frappe.throw(_("Can only make payment against unbilled {0}").format(dt))
|
||||||
|
|
||||||
party_type = set_party_type(dt)
|
party_type = set_party_type(dt)
|
||||||
|
|||||||
@@ -524,11 +524,22 @@ def get_additional_conditions(from_date, ignore_closing_entries, filters):
|
|||||||
additional_conditions.append("cost_center in %(cost_center)s")
|
additional_conditions.append("cost_center in %(cost_center)s")
|
||||||
|
|
||||||
if filters.get("include_default_book_entries"):
|
if filters.get("include_default_book_entries"):
|
||||||
additional_conditions.append(
|
if filters.get("finance_book"):
|
||||||
"(finance_book in (%(finance_book)s, %(company_fb)s, '') OR finance_book IS NULL)"
|
if filters.get("company_fb") and cstr(filters.get("finance_book")) != cstr(
|
||||||
)
|
filters.get("company_fb")
|
||||||
|
):
|
||||||
|
frappe.throw(
|
||||||
|
_("To use a different finance book, please uncheck 'Include Default Book Entries'")
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
additional_conditions.append("(finance_book in (%(finance_book)s) OR finance_book IS NULL)")
|
||||||
|
else:
|
||||||
|
additional_conditions.append("(finance_book in (%(company_fb)s) OR finance_book IS NULL)")
|
||||||
else:
|
else:
|
||||||
additional_conditions.append("(finance_book in (%(finance_book)s, '') OR finance_book IS NULL)")
|
if filters.get("finance_book"):
|
||||||
|
additional_conditions.append("(finance_book in (%(finance_book)s) OR finance_book IS NULL)")
|
||||||
|
else:
|
||||||
|
additional_conditions.append("(finance_book IS NULL)")
|
||||||
|
|
||||||
if accounting_dimensions:
|
if accounting_dimensions:
|
||||||
for dimension in accounting_dimensions:
|
for dimension in accounting_dimensions:
|
||||||
|
|||||||
@@ -176,7 +176,8 @@ frappe.query_reports["General Ledger"] = {
|
|||||||
{
|
{
|
||||||
"fieldname": "include_default_book_entries",
|
"fieldname": "include_default_book_entries",
|
||||||
"label": __("Include Default Book Entries"),
|
"label": __("Include Default Book Entries"),
|
||||||
"fieldtype": "Check"
|
"fieldtype": "Check",
|
||||||
|
"default": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "show_cancelled_entries",
|
"fieldname": "show_cancelled_entries",
|
||||||
|
|||||||
@@ -287,13 +287,23 @@ def get_conditions(filters):
|
|||||||
if filters.get("project"):
|
if filters.get("project"):
|
||||||
conditions.append("project in %(project)s")
|
conditions.append("project in %(project)s")
|
||||||
|
|
||||||
if filters.get("finance_book"):
|
if filters.get("include_default_book_entries"):
|
||||||
if filters.get("include_default_book_entries"):
|
if filters.get("finance_book"):
|
||||||
conditions.append(
|
if filters.get("company_fb") and cstr(filters.get("finance_book")) != cstr(
|
||||||
"(finance_book in (%(finance_book)s, %(company_fb)s, '') OR finance_book IS NULL)"
|
filters.get("company_fb")
|
||||||
)
|
):
|
||||||
|
frappe.throw(
|
||||||
|
_("To use a different finance book, please uncheck 'Include Default Book Entries'")
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
conditions.append("(finance_book in (%(finance_book)s) OR finance_book IS NULL)")
|
||||||
else:
|
else:
|
||||||
conditions.append("finance_book in (%(finance_book)s)")
|
conditions.append("(finance_book in (%(company_fb)s) OR finance_book IS NULL)")
|
||||||
|
else:
|
||||||
|
if filters.get("finance_book"):
|
||||||
|
conditions.append("(finance_book in (%(finance_book)s) OR finance_book IS NULL)")
|
||||||
|
else:
|
||||||
|
conditions.append("(finance_book IS NULL)")
|
||||||
|
|
||||||
if not filters.get("show_cancelled_entries"):
|
if not filters.get("show_cancelled_entries"):
|
||||||
conditions.append("is_cancelled = 0")
|
conditions.append("is_cancelled = 0")
|
||||||
|
|||||||
@@ -157,12 +157,23 @@ def get_rootwise_opening_balances(filters, report_type):
|
|||||||
if filters.project:
|
if filters.project:
|
||||||
additional_conditions += " and project = %(project)s"
|
additional_conditions += " and project = %(project)s"
|
||||||
|
|
||||||
|
company_fb = frappe.db.get_value("Company", filters.company, "default_finance_book")
|
||||||
|
|
||||||
if filters.get("include_default_book_entries"):
|
if filters.get("include_default_book_entries"):
|
||||||
additional_conditions += (
|
if filters.get("finance_book"):
|
||||||
" AND (finance_book in (%(finance_book)s, %(company_fb)s, '') OR finance_book IS NULL)"
|
if company_fb and cstr(filters.get("finance_book")) != cstr(company_fb):
|
||||||
)
|
frappe.throw(
|
||||||
|
_("To use a different finance book, please uncheck 'Include Default Book Entries'")
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
additional_conditions += " AND (finance_book in (%(finance_book)s) OR finance_book IS NULL)"
|
||||||
|
else:
|
||||||
|
additional_conditions += " AND (finance_book in (%(company_fb)s) OR finance_book IS NULL)"
|
||||||
else:
|
else:
|
||||||
additional_conditions += " AND (finance_book in (%(finance_book)s, '') OR finance_book IS NULL)"
|
if filters.get("finance_book"):
|
||||||
|
additional_conditions += " AND (finance_book in (%(finance_book)s) OR finance_book IS NULL)"
|
||||||
|
else:
|
||||||
|
additional_conditions += " AND (finance_book IS NULL)"
|
||||||
|
|
||||||
accounting_dimensions = get_accounting_dimensions(as_list=False)
|
accounting_dimensions = get_accounting_dimensions(as_list=False)
|
||||||
|
|
||||||
@@ -174,7 +185,7 @@ def get_rootwise_opening_balances(filters, report_type):
|
|||||||
"year_start_date": filters.year_start_date,
|
"year_start_date": filters.year_start_date,
|
||||||
"project": filters.project,
|
"project": filters.project,
|
||||||
"finance_book": filters.finance_book,
|
"finance_book": filters.finance_book,
|
||||||
"company_fb": frappe.db.get_value("Company", filters.company, "default_finance_book"),
|
"company_fb": company_fb,
|
||||||
}
|
}
|
||||||
|
|
||||||
if accounting_dimensions:
|
if accounting_dimensions:
|
||||||
|
|||||||
@@ -119,7 +119,9 @@ class AssetValueAdjustment(Document):
|
|||||||
if d.depreciation_method in ("Straight Line", "Manual"):
|
if d.depreciation_method in ("Straight Line", "Manual"):
|
||||||
end_date = max(s.schedule_date for s in asset.schedules if cint(s.finance_book_id) == d.idx)
|
end_date = max(s.schedule_date for s in asset.schedules if cint(s.finance_book_id) == d.idx)
|
||||||
total_days = date_diff(end_date, self.date)
|
total_days = date_diff(end_date, self.date)
|
||||||
rate_per_day = flt(d.value_after_depreciation) / flt(total_days)
|
rate_per_day = flt(d.value_after_depreciation - d.expected_value_after_useful_life) / flt(
|
||||||
|
total_days
|
||||||
|
)
|
||||||
from_date = self.date
|
from_date = self.date
|
||||||
else:
|
else:
|
||||||
no_of_depreciations = len(
|
no_of_depreciations = len(
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ def get_columns(filters):
|
|||||||
"label": _("Id"),
|
"label": _("Id"),
|
||||||
"fieldname": "name",
|
"fieldname": "name",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"options": "Work Order",
|
"options": "Quality Inspection",
|
||||||
"width": 100,
|
"width": 100,
|
||||||
},
|
},
|
||||||
{"label": _("Report Date"), "fieldname": "report_date", "fieldtype": "Date", "width": 150},
|
{"label": _("Report Date"), "fieldname": "report_date", "fieldtype": "Date", "width": 150},
|
||||||
|
|||||||
@@ -67,7 +67,6 @@
|
|||||||
"label": "Disabled"
|
"label": "Disabled"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"depends_on": "allow_tax_exemption",
|
|
||||||
"fieldname": "standard_tax_exemption_amount",
|
"fieldname": "standard_tax_exemption_amount",
|
||||||
"fieldtype": "Currency",
|
"fieldtype": "Currency",
|
||||||
"label": "Standard Tax Exemption Amount",
|
"label": "Standard Tax Exemption Amount",
|
||||||
@@ -104,7 +103,7 @@
|
|||||||
],
|
],
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2021-03-31 22:42:08.139520",
|
"modified": "2023-05-01 13:42:08.139520",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Payroll",
|
"module": "Payroll",
|
||||||
"name": "Income Tax Slab",
|
"name": "Income Tax Slab",
|
||||||
|
|||||||
@@ -1331,6 +1331,7 @@ class SalarySlip(TransactionBase):
|
|||||||
if declaration:
|
if declaration:
|
||||||
total_exemption_amount = declaration
|
total_exemption_amount = declaration
|
||||||
|
|
||||||
|
if tax_slab.standard_tax_exemption_amount:
|
||||||
total_exemption_amount += flt(tax_slab.standard_tax_exemption_amount)
|
total_exemption_amount += flt(tax_slab.standard_tax_exemption_amount)
|
||||||
|
|
||||||
return total_exemption_amount
|
return total_exemption_amount
|
||||||
|
|||||||
@@ -5,7 +5,8 @@ import frappe
|
|||||||
from frappe import _
|
from frappe import _
|
||||||
from frappe.exceptions import QueryDeadlockError, QueryTimeoutError
|
from frappe.exceptions import QueryDeadlockError, QueryTimeoutError
|
||||||
from frappe.model.document import Document
|
from frappe.model.document import Document
|
||||||
from frappe.utils import cint, get_link_to_form, get_weekday, now, nowtime
|
from frappe.query_builder.functions import Max
|
||||||
|
from frappe.utils import cint, get_link_to_form, get_weekday, getdate, now, nowtime
|
||||||
from frappe.utils.user import get_users_with_role
|
from frappe.utils.user import get_users_with_role
|
||||||
from rq.timeouts import JobTimeoutException
|
from rq.timeouts import JobTimeoutException
|
||||||
|
|
||||||
@@ -22,9 +23,57 @@ RecoverableErrors = (JobTimeoutException, QueryDeadlockError, QueryTimeoutError)
|
|||||||
|
|
||||||
class RepostItemValuation(Document):
|
class RepostItemValuation(Document):
|
||||||
def validate(self):
|
def validate(self):
|
||||||
|
self.validate_period_closing_voucher()
|
||||||
self.set_status(write=False)
|
self.set_status(write=False)
|
||||||
self.reset_field_values()
|
self.reset_field_values()
|
||||||
self.set_company()
|
self.set_company()
|
||||||
|
self.validate_accounts_freeze()
|
||||||
|
|
||||||
|
def validate_period_closing_voucher(self):
|
||||||
|
year_end_date = self.get_max_year_end_date(self.company)
|
||||||
|
if year_end_date and getdate(self.posting_date) <= getdate(year_end_date):
|
||||||
|
msg = f"Due to period closing, you cannot repost item valuation before {year_end_date}"
|
||||||
|
frappe.throw(_(msg))
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def get_max_year_end_date(company):
|
||||||
|
data = frappe.get_all(
|
||||||
|
"Period Closing Voucher", fields=["fiscal_year"], filters={"docstatus": 1, "company": company}
|
||||||
|
)
|
||||||
|
|
||||||
|
if not data:
|
||||||
|
return
|
||||||
|
|
||||||
|
fiscal_years = [d.fiscal_year for d in data]
|
||||||
|
table = frappe.qb.DocType("Fiscal Year")
|
||||||
|
|
||||||
|
query = (
|
||||||
|
frappe.qb.from_(table)
|
||||||
|
.select(Max(table.year_end_date))
|
||||||
|
.where((table.name.isin(fiscal_years)) & (table.disabled == 0))
|
||||||
|
).run()
|
||||||
|
|
||||||
|
return query[0][0] if query else None
|
||||||
|
|
||||||
|
def validate_accounts_freeze(self):
|
||||||
|
acc_settings = frappe.db.get_value(
|
||||||
|
"Accounts Settings",
|
||||||
|
"Accounts Settings",
|
||||||
|
["acc_frozen_upto", "frozen_accounts_modifier"],
|
||||||
|
as_dict=1,
|
||||||
|
)
|
||||||
|
if not acc_settings.acc_frozen_upto:
|
||||||
|
return
|
||||||
|
if getdate(self.posting_date) <= getdate(acc_settings.acc_frozen_upto):
|
||||||
|
if (
|
||||||
|
acc_settings.frozen_accounts_modifier
|
||||||
|
and frappe.session.user in get_users_with_role(acc_settings.frozen_accounts_modifier)
|
||||||
|
):
|
||||||
|
frappe.msgprint(_("Caution: This might alter frozen accounts."))
|
||||||
|
return
|
||||||
|
frappe.throw(
|
||||||
|
_("You cannot repost item valuation before {}").format(acc_settings.acc_frozen_upto)
|
||||||
|
)
|
||||||
|
|
||||||
def reset_field_values(self):
|
def reset_field_values(self):
|
||||||
if self.based_on == "Transaction":
|
if self.based_on == "Transaction":
|
||||||
@@ -235,7 +284,7 @@ def _get_directly_dependent_vouchers(doc):
|
|||||||
def notify_error_to_stock_managers(doc, traceback):
|
def notify_error_to_stock_managers(doc, traceback):
|
||||||
recipients = get_users_with_role("Stock Manager")
|
recipients = get_users_with_role("Stock Manager")
|
||||||
if not recipients:
|
if not recipients:
|
||||||
get_users_with_role("System Manager")
|
recipients = get_users_with_role("System Manager")
|
||||||
|
|
||||||
subject = _("Error while reposting item valuation")
|
subject = _("Error while reposting item valuation")
|
||||||
message = (
|
message = (
|
||||||
|
|||||||
@@ -272,3 +272,25 @@ class TestRepostItemValuation(FrappeTestCase, StockTestMixin):
|
|||||||
[{"credit": 50, "debit": 0}],
|
[{"credit": 50, "debit": 0}],
|
||||||
gle_filters={"account": "Stock In Hand - TCP1"},
|
gle_filters={"account": "Stock In Hand - TCP1"},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_account_freeze_validation(self):
|
||||||
|
today = nowdate()
|
||||||
|
|
||||||
|
riv = frappe.get_doc(
|
||||||
|
doctype="Repost Item Valuation",
|
||||||
|
item_code="_Test Item",
|
||||||
|
warehouse="_Test Warehouse - _TC",
|
||||||
|
based_on="Item and Warehouse",
|
||||||
|
posting_date=today,
|
||||||
|
posting_time="00:01:00",
|
||||||
|
)
|
||||||
|
riv.flags.dont_run_in_test = True # keep it queued
|
||||||
|
|
||||||
|
accounts_settings = frappe.get_doc("Accounts Settings")
|
||||||
|
accounts_settings.acc_frozen_upto = today
|
||||||
|
accounts_settings.frozen_accounts_modifier = ""
|
||||||
|
accounts_settings.save()
|
||||||
|
|
||||||
|
self.assertRaises(frappe.ValidationError, riv.save)
|
||||||
|
accounts_settings.acc_frozen_upto = ""
|
||||||
|
accounts_settings.save()
|
||||||
|
|||||||
Reference in New Issue
Block a user