c463c0684d
* [wip] cdnr * [WIP] cdnr with optional data * [wip] Export GSTR-1 * [minor] Minor changes in export * [new] Custom field added for GST * [fix] Minor changes in GSTR1 Report * [minor] Minor changes in gstr1 * [fix] Codacy Fixed * Update setup.py
39 lines
910 B
JavaScript
39 lines
910 B
JavaScript
// Copyright (c) 2018, Frappe Technologies Pvt. Ltd. and Contributors
|
|
// License: GNU General Public License v3. See license.txt
|
|
|
|
frappe.query_reports["GSTR-1"] = {
|
|
"filters": [
|
|
{
|
|
"fieldname":"company",
|
|
"label": __("Company"),
|
|
"fieldtype": "Link",
|
|
"options": "Company",
|
|
"reqd": 1,
|
|
"default": frappe.defaults.get_user_default("Company")
|
|
},
|
|
{
|
|
"fieldname":"from_date",
|
|
"label": __("From Date"),
|
|
"fieldtype": "Date",
|
|
"reqd": 1,
|
|
"default": frappe.datetime.add_months(frappe.datetime.get_today(), -3),
|
|
"width": "80"
|
|
},
|
|
{
|
|
"fieldname":"to_date",
|
|
"label": __("To Date"),
|
|
"fieldtype": "Date",
|
|
"reqd": 1,
|
|
"default": frappe.datetime.get_today()
|
|
},
|
|
{
|
|
"fieldname":"type_of_business",
|
|
"label": __("Type of Business"),
|
|
"fieldtype": "Select",
|
|
"reqd": 1,
|
|
"options": ["B2B", "B2C Large", "B2C Small","CDNR", "EXPORT"],
|
|
"default": "B2B"
|
|
}
|
|
]
|
|
}
|