mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-22 08:08:29 +00:00
fix: incorrect condition
(cherry picked from commit 0c1a8e9c58)
# Conflicts:
# erpnext/public/js/controllers/transaction.js
This commit is contained in:
committed by
Mergify
parent
9cadb89678
commit
d1f9444be7
@@ -297,7 +297,11 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe
|
|||||||
let d = locals[cdt][cdn];
|
let d = locals[cdt][cdn];
|
||||||
return {
|
return {
|
||||||
filters: {
|
filters: {
|
||||||
|
<<<<<<< HEAD
|
||||||
docstatus: 1,
|
docstatus: 1,
|
||||||
|
=======
|
||||||
|
docstatus: ["<", 2],
|
||||||
|
>>>>>>> 0c1a8e9c58 (fix: incorrect condition)
|
||||||
inspection_type: inspection_type,
|
inspection_type: inspection_type,
|
||||||
reference_name: doc.name,
|
reference_name: doc.name,
|
||||||
item_code: d.item_code
|
item_code: d.item_code
|
||||||
|
|||||||
Reference in New Issue
Block a user