2015-03-03 09:25:30 +00:00
|
|
|
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-12-06 11:06:23 +00:00
|
|
|
// License: GNU General Public License v3. See license.txt
|
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
frappe.query_reports["General Ledger"] = {
|
2013-12-06 11:06:23 +00:00
|
|
|
"filters": [
|
|
|
|
{
|
|
|
|
"fieldname":"company",
|
2014-04-14 10:55:30 +00:00
|
|
|
"label": __("Company"),
|
2013-12-06 11:06:23 +00:00
|
|
|
"fieldtype": "Link",
|
|
|
|
"options": "Company",
|
2014-02-14 10:17:51 +00:00
|
|
|
"default": frappe.defaults.get_user_default("company"),
|
2013-12-06 11:06:23 +00:00
|
|
|
"reqd": 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fieldname":"from_date",
|
2014-04-14 10:55:30 +00:00
|
|
|
"label": __("From Date"),
|
2013-12-06 11:06:23 +00:00
|
|
|
"fieldtype": "Date",
|
2014-02-14 10:17:51 +00:00
|
|
|
"default": frappe.datetime.add_months(frappe.datetime.get_today(), -1),
|
2013-12-06 11:06:23 +00:00
|
|
|
"reqd": 1,
|
|
|
|
"width": "60px"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fieldname":"to_date",
|
2014-04-14 10:55:30 +00:00
|
|
|
"label": __("To Date"),
|
2013-12-06 11:06:23 +00:00
|
|
|
"fieldtype": "Date",
|
2014-02-14 10:17:51 +00:00
|
|
|
"default": frappe.datetime.get_today(),
|
2013-12-06 11:06:23 +00:00
|
|
|
"reqd": 1,
|
|
|
|
"width": "60px"
|
2013-12-27 12:03:55 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fieldname":"account",
|
2014-04-14 10:55:30 +00:00
|
|
|
"label": __("Account"),
|
2013-12-27 12:03:55 +00:00
|
|
|
"fieldtype": "Link",
|
|
|
|
"options": "Account",
|
|
|
|
"get_query": function() {
|
2014-02-14 10:17:51 +00:00
|
|
|
var company = frappe.query_report.filters_by_name.company.get_value();
|
2013-12-27 12:03:55 +00:00
|
|
|
return {
|
2015-01-12 06:48:54 +00:00
|
|
|
"doctype": "Account",
|
2013-12-27 12:03:55 +00:00
|
|
|
"filters": {
|
|
|
|
"company": company,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fieldname":"voucher_no",
|
2014-04-14 10:55:30 +00:00
|
|
|
"label": __("Voucher No"),
|
2013-12-27 12:03:55 +00:00
|
|
|
"fieldtype": "Data",
|
|
|
|
},
|
2015-01-12 06:48:54 +00:00
|
|
|
{
|
|
|
|
"fieldtype": "Break",
|
|
|
|
},
|
2015-04-20 11:43:43 +00:00
|
|
|
{
|
|
|
|
"fieldname":"party_type",
|
|
|
|
"label": __("Party Type"),
|
2015-07-10 04:41:07 +00:00
|
|
|
"fieldtype": "Select",
|
2015-07-13 04:53:41 +00:00
|
|
|
"options": ["", "Customer", "Supplier"],
|
|
|
|
"default": ""
|
2015-04-20 11:43:43 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fieldname":"party",
|
|
|
|
"label": __("Party"),
|
|
|
|
"fieldtype": "Dynamic Link",
|
|
|
|
"get_options": function() {
|
|
|
|
var party_type = frappe.query_report.filters_by_name.party_type.get_value();
|
|
|
|
var party = frappe.query_report.filters_by_name.party.get_value();
|
|
|
|
if(party && !party_type) {
|
|
|
|
frappe.throw(__("Please select Party Type first"));
|
|
|
|
}
|
|
|
|
return party_type;
|
|
|
|
}
|
|
|
|
},
|
2013-12-27 12:03:55 +00:00
|
|
|
{
|
|
|
|
"fieldname":"group_by_voucher",
|
2014-04-14 10:55:30 +00:00
|
|
|
"label": __("Group by Voucher"),
|
2013-12-27 12:03:55 +00:00
|
|
|
"fieldtype": "Check",
|
|
|
|
"default": 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fieldname":"group_by_account",
|
2014-04-14 10:55:30 +00:00
|
|
|
"label": __("Group by Account"),
|
2013-12-27 12:03:55 +00:00
|
|
|
"fieldtype": "Check",
|
2015-07-21 06:32:28 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fieldname":"letter_head",
|
|
|
|
"label": __("Letter Head"),
|
|
|
|
"fieldtype": "Link",
|
|
|
|
"options": "Letter Head",
|
|
|
|
"default": frappe.defaults.get_default("letter_head"),
|
2013-12-06 11:06:23 +00:00
|
|
|
}
|
|
|
|
]
|
2015-01-12 06:48:54 +00:00
|
|
|
}
|