mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-01 19:29:10 +00:00
Merge branch 'version-13-hotfix' into fetch-valuation-rate
This commit is contained in:
@@ -43,7 +43,7 @@ def get_result(filters, tds_docs, tds_accounts, tax_category_map):
|
|||||||
if entry.account in tds_accounts:
|
if entry.account in tds_accounts:
|
||||||
tds_deducted += (entry.credit - entry.debit)
|
tds_deducted += (entry.credit - entry.debit)
|
||||||
|
|
||||||
total_amount_credited += (entry.credit - entry.debit)
|
total_amount_credited += entry.credit
|
||||||
|
|
||||||
if tds_deducted:
|
if tds_deducted:
|
||||||
row = {
|
row = {
|
||||||
|
|||||||
@@ -594,7 +594,7 @@ $.extend(erpnext.item, {
|
|||||||
const increment = r.message.increment;
|
const increment = r.message.increment;
|
||||||
|
|
||||||
let values = [];
|
let values = [];
|
||||||
for(var i = from; i <= to; i += increment) {
|
for(var i = from; i <= to; i = flt(i + increment, 6)) {
|
||||||
values.push(i);
|
values.push(i);
|
||||||
}
|
}
|
||||||
attr_val_fields[d.attribute] = values;
|
attr_val_fields[d.attribute] = values;
|
||||||
|
|||||||
Reference in New Issue
Block a user