|
@@ -7,21 +7,27 @@ openerp.eiru_reporting = function (instance) {
|
|
reporting_base(instance,reporting);
|
|
reporting_base(instance,reporting);
|
|
configuration_reporting(instance,reporting);
|
|
configuration_reporting(instance,reporting);
|
|
|
|
|
|
|
|
+
|
|
// Lista de Reporte
|
|
// Lista de Reporte
|
|
- report_resumen_ingresos(reporting);
|
|
|
|
- report_resumen_engreso(reporting);
|
|
|
|
- report_vouchers(reporting);
|
|
|
|
- report_invoice_balance(reporting);
|
|
|
|
- // report_sales(reporting);
|
|
|
|
- // report_puchases(reporting);
|
|
|
|
- // report_expenses(reporting);
|
|
|
|
- report_sale_invoice_analysis(reporting);
|
|
|
|
- report_purchases_invoice_analysis(reporting);
|
|
|
|
- report_stock(reporting);
|
|
|
|
- report_stock_move(reporting);
|
|
|
|
- // report_expenses_invoice_analysis(reporting);
|
|
|
|
- // report_invoice_utility(reporting);
|
|
|
|
- // report_stock_product(reporting);
|
|
|
|
- // report_stock_location(reporting);
|
|
|
|
|
|
+ try {
|
|
|
|
+ report_resumen_ingresos(reporting);
|
|
|
|
+ report_resumen_engresos(reporting);
|
|
|
|
+ report_vouchers(reporting);
|
|
|
|
+ report_invoice_balance(reporting);
|
|
|
|
+ // report_sales(reporting);
|
|
|
|
+ // report_puchases(reporting);
|
|
|
|
+ // report_expenses(reporting);
|
|
|
|
+ report_sale_invoice_analysis(reporting);
|
|
|
|
+ report_purchases_invoice_analysis(reporting);
|
|
|
|
+ report_stock(reporting);
|
|
|
|
+ report_stock_move(reporting);
|
|
|
|
+ // report_expenses_invoice_analysis(reporting);
|
|
|
|
+ // report_invoice_utility(reporting);
|
|
|
|
+ // report_stock_product(reporting);
|
|
|
|
+ // report_stock_location(reporting);
|
|
|
|
+ } catch (e) {
|
|
|
|
+ // ignorar error
|
|
|
|
+ }
|
|
|
|
+
|
|
instance.web.client_actions.add('eiru_reporting.action_report', 'instance.eiru_reporting.ReportingWidget');
|
|
instance.web.client_actions.add('eiru_reporting.action_report', 'instance.eiru_reporting.ReportingWidget');
|
|
}
|
|
}
|