Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add delivered status filter in warranty claim serial no field #42603

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: align issue resolved
  • Loading branch information
Nandhinidevi123 authored Aug 2, 2024
commit 57fc02afaf90ea8ab724c4a00bf66b5bc6bf02f2
2 changes: 1 addition & 1 deletion erpnext/support/doctype/warranty_claim/warranty_claim.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ frappe.ui.form.on("Warranty Claim", {
frm.set_query("serial_no", () => {
let filters = {
company: frm.doc.company,
status: ["in",["Delivered"]],
status: ["in", ["Delivered"]],
};

if (frm.doc.item_code) {
Expand Down
Loading