fix translate sales_person_wise_transaction_summary.js

This commit is contained in:
Bárbara Perretti 2013-09-30 17:51:14 -03:00
parent af9f4ed7fb
commit 633e3729f4

View File

@ -5,57 +5,57 @@ wn.query_reports["Sales Person-wise Transaction Summary"] = {
"filters": [ "filters": [
{ {
fieldname: "sales_person", fieldname: "sales_person",
label: "Sales Person", label: wn._("Sales Person"),
fieldtype: "Link", fieldtype: "Link",
options: "Sales Person" options: "Sales Person"
}, },
{ {
fieldname: "doc_type", fieldname: "doc_type",
label: "Document Type", label: wn._("Document Type"),
fieldtype: "Select", fieldtype: "Select",
options: "Sales Order\nDelivery Note\nSales Invoice", options: "Sales Order\nDelivery Note\nSales Invoice",
default: "Sales Order" default: "Sales Order"
}, },
{ {
fieldname: "from_date", fieldname: "from_date",
label: "From Date", label: wn._("From Date"),
fieldtype: "Date", fieldtype: "Date",
default: wn.defaults.get_user_default("year_start_date"), default: wn.defaults.get_user_default("year_start_date"),
}, },
{ {
fieldname:"to_date", fieldname:"to_date",
label: "To Date", label: wn._("To Date"),
fieldtype: "Date", fieldtype: "Date",
default: get_today() default: get_today()
}, },
{ {
fieldname:"company", fieldname:"company",
label: "Company", label: wn._("Company"),
fieldtype: "Link", fieldtype: "Link",
options: "Company", options: "Company",
default: wn.defaults.get_default("company") default: wn.defaults.get_default("company")
}, },
{ {
fieldname:"item_group", fieldname:"item_group",
label: "Item Group", label: wn._("Item Group"),
fieldtype: "Link", fieldtype: "Link",
options: "Item Group", options: "Item Group",
}, },
{ {
fieldname:"brand", fieldname:"brand",
label: "Brand", label: wn._("Brand"),
fieldtype: "Link", fieldtype: "Link",
options: "Brand", options: "Brand",
}, },
{ {
fieldname:"customer", fieldname:"customer",
label: "Customer", label: wn._("Customer"),
fieldtype: "Link", fieldtype: "Link",
options: "Customer", options: "Customer",
}, },
{ {
fieldname:"territory", fieldname:"territory",
label: "Territory", label: wn._("Territory"),
fieldtype: "Link", fieldtype: "Link",
options: "Territory", options: "Territory",
}, },