2015-03-03 14:55:30 +05:30
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-08-05 14:59:54 +05:30
|
|
|
# License: GNU General Public License v3. See license.txt
|
2013-06-07 18:05:16 +05:30
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
2014-02-14 15:47:51 +05:30
|
|
|
import frappe
|
2013-12-12 19:12:19 +05:30
|
|
|
from erpnext.controllers.trends import get_columns, get_data
|
2013-06-07 18:05:16 +05:30
|
|
|
|
|
|
|
def execute(filters=None):
|
|
|
|
if not filters: filters ={}
|
2013-06-13 19:17:56 +05:30
|
|
|
data = []
|
2013-06-28 10:09:46 +05:30
|
|
|
conditions = get_columns(filters, "Quotation")
|
2013-06-20 18:52:31 +05:30
|
|
|
data = get_data(filters, conditions)
|
2013-06-14 15:03:45 +05:30
|
|
|
|
2013-06-20 18:52:31 +05:30
|
|
|
return conditions["columns"], data
|