mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-06 05:39:12 +00:00
15 lines
367 B
JavaScript
15 lines
367 B
JavaScript
// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors
|
|
// For license information, please see license.txt
|
|
|
|
frappe.query_reports["Item Prices"] = {
|
|
filters: [
|
|
{
|
|
fieldname: "items",
|
|
label: __("Items Filter"),
|
|
fieldtype: "Select",
|
|
options: "Enabled Items only\nDisabled Items only\nAll Items",
|
|
default: "Enabled Items only",
|
|
},
|
|
],
|
|
};
|