mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-02 11:49:10 +00:00
chore: fix conflicts
This commit is contained in:
@@ -2200,19 +2200,11 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe
|
|||||||
return doc.company ? {filters: {company: doc.company}} : {};
|
return doc.company ? {filters: {company: doc.company}} : {};
|
||||||
} else {
|
} else {
|
||||||
let filters = {
|
let filters = {
|
||||||
<<<<<<< HEAD
|
|
||||||
'item_code': item.item_code,
|
'item_code': item.item_code,
|
||||||
'valid_from': ["<=", doc.transaction_date || doc.bill_date || doc.posting_date],
|
'valid_from': ["<=", doc.transaction_date || doc.bill_date || doc.posting_date],
|
||||||
'item_group': item.item_group,
|
'item_group': item.item_group,
|
||||||
|
'disabled': 0,
|
||||||
}
|
}
|
||||||
=======
|
|
||||||
item_code: item.item_code,
|
|
||||||
valid_from: ["<=", doc.transaction_date || doc.bill_date || doc.posting_date],
|
|
||||||
item_group: item.item_group,
|
|
||||||
base_net_rate: item.base_net_rate,
|
|
||||||
disabled: 0,
|
|
||||||
};
|
|
||||||
>>>>>>> b10cf4a928 (fix: do not fetch disabled item tax template)
|
|
||||||
|
|
||||||
if (doc.tax_category)
|
if (doc.tax_category)
|
||||||
filters['tax_category'] = doc.tax_category;
|
filters['tax_category'] = doc.tax_category;
|
||||||
|
|||||||
Reference in New Issue
Block a user