Compare commits
1 Commits
4826687b3b
...
Reportes
| Author | SHA1 | Date | |
|---|---|---|---|
| fa850b69ef |
@@ -7,7 +7,7 @@
|
|||||||
[ ! -d "$SRC" ] && die "no se ubica ruta en SRC"
|
[ ! -d "$SRC" ] && die "no se ubica ruta en SRC"
|
||||||
|
|
||||||
# dependencias minimas
|
# dependencias minimas
|
||||||
pip3 install psycopg2 proteus==6.8 inotify honcho
|
pip3 install psycopg2 proteus inotify honcho
|
||||||
|
|
||||||
# instalar dependencias de tryton desde paquete
|
# instalar dependencias de tryton desde paquete
|
||||||
python3 setup.py install
|
python3 setup.py install
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ FROM node as builder-node
|
|||||||
|
|
||||||
ENV SERIES 6.8
|
ENV SERIES 6.8
|
||||||
RUN npm install -g bower
|
RUN npm install -g bower
|
||||||
RUN curl https://downloads.tryton.org/${SERIES}/tryton-sao-6.8.4.tgz | tar zxf - -C /
|
RUN curl https://downloads.tryton.org/${SERIES}/tryton-sao-last.tgz | tar zxf - -C /
|
||||||
RUN cd /package && bower install --allow-root
|
RUN cd /package && bower install --allow-root
|
||||||
|
|
||||||
FROM python:3.9-bullseye
|
FROM python:3.9-bullseye
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ from . import prospect_trace
|
|||||||
from . import call
|
from . import call
|
||||||
from . import pending_call
|
from . import pending_call
|
||||||
from . import user
|
from . import user
|
||||||
|
from . import print_report_by_operator
|
||||||
from .locations import city
|
from .locations import city
|
||||||
from .locations import department
|
from .locations import department
|
||||||
|
|
||||||
@@ -28,6 +29,7 @@ def register():
|
|||||||
prospect_trace.MakeCallAskTask,
|
prospect_trace.MakeCallAskTask,
|
||||||
prospect.ReassignProspectByOperatorStart,
|
prospect.ReassignProspectByOperatorStart,
|
||||||
prospect.ReassignProspectByProspectStart,
|
prospect.ReassignProspectByProspectStart,
|
||||||
|
print_report_by_operator.PrintReportByOperatorStart,
|
||||||
module='sale_opportunity_management', type_='model')
|
module='sale_opportunity_management', type_='model')
|
||||||
Pool.register(
|
Pool.register(
|
||||||
prospect_trace.ScheduleCall,
|
prospect_trace.ScheduleCall,
|
||||||
@@ -35,6 +37,7 @@ def register():
|
|||||||
prospect_trace.MakeCall,
|
prospect_trace.MakeCall,
|
||||||
prospect.ReassignProspectByOperator,
|
prospect.ReassignProspectByOperator,
|
||||||
prospect.ReasignProspectByProspect,
|
prospect.ReasignProspectByProspect,
|
||||||
|
print_report_by_operator.PrintReportByOperator,
|
||||||
module='sale_opportunity_management', type_='wizard')
|
module='sale_opportunity_management', type_='wizard')
|
||||||
Pool.register(
|
Pool.register(
|
||||||
module='sale_opportunity_management', type_='report')
|
module='sale_opportunity_management', type_='report')
|
||||||
|
|||||||
24
print_report_by_operator.py
Normal file
24
print_report_by_operator.py
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||||
|
# this repository contains the full copyright notices and license terms.
|
||||||
|
# from trytond.model import ModelSQL, ModelView, fields
|
||||||
|
from trytond.wizard import Wizard, StateView, Button # , StateReport
|
||||||
|
from trytond.model import fields, ModelView
|
||||||
|
|
||||||
|
|
||||||
|
class PrintReportByOperatorStart(ModelView):
|
||||||
|
'Vista inicial de reporte por operario'
|
||||||
|
__name__ = 'sale.print_report_by_operator.start'
|
||||||
|
|
||||||
|
start_date = fields.Date('Start date')
|
||||||
|
end_date = fields.Date('End date')
|
||||||
|
|
||||||
|
|
||||||
|
class PrintReportByOperator(Wizard):
|
||||||
|
'Generar reporte por operario'
|
||||||
|
__name__ = 'sale.print_report_by_operator'
|
||||||
|
|
||||||
|
start = StateView(
|
||||||
|
'sale.print_report_by_operator.start',
|
||||||
|
'sale_opportunity_management.print_report_by_operator_start_view_form',
|
||||||
|
[Button("Cancel", "end", "tryton-cancel"),
|
||||||
|
Button("Print Report", "print_report", "tryton-ok", default=True)])
|
||||||
16
print_report_by_operator.xml
Normal file
16
print_report_by_operator.xml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<!-- <?xml version="1.0"?>
|
||||||
|
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||||
|
this repository contains the full copyright notices and license terms. -->
|
||||||
|
<tryton>
|
||||||
|
<data>
|
||||||
|
<record model="ir.action.wizard" id="print_report_by_operator_wizard">
|
||||||
|
<field name="name">Print report by operator</field>
|
||||||
|
<field name="wiz_name">sale.print_report_by_operator</field>
|
||||||
|
</record>
|
||||||
|
<record model="ir.ui.view" id="print_report_by_operator_start_view_form">
|
||||||
|
<field name="model">sale.print_report_by_operator.start</field>
|
||||||
|
<field name="type">form</field>
|
||||||
|
<field name="name">print_report_by_operator_start_form</field>
|
||||||
|
</record>
|
||||||
|
<data>
|
||||||
|
<tryton/> -->
|
||||||
@@ -51,11 +51,6 @@ class Prospect(ModelSQL, ModelView, DeactivableMixin):
|
|||||||
def default_state(cls):
|
def default_state(cls):
|
||||||
return 'unassigned'
|
return 'unassigned'
|
||||||
|
|
||||||
@fields.depends('prospect_trace', 'contact_methods')
|
|
||||||
def on_change_contact_methods(self):
|
|
||||||
for contact in self.contact_methods:
|
|
||||||
contact.prospect_trace = self.prospect_trace
|
|
||||||
|
|
||||||
@fields.depends('city', 'department')
|
@fields.depends('city', 'department')
|
||||||
def on_change_city(self):
|
def on_change_city(self):
|
||||||
if self.city:
|
if self.city:
|
||||||
|
|||||||
@@ -365,14 +365,14 @@ Crear un usuario de rol administrador::
|
|||||||
>>> admin.user_admin == True
|
>>> admin.user_admin == True
|
||||||
True
|
True
|
||||||
|
|
||||||
Agregar un nuevo método de contacto desde prospecto
|
.. Generar reporte por operario y consolidado::
|
||||||
>>> contact_method = prospect1.contact_methods.new(value='0000000000', name='Nuevo', job='Puesto increíble')
|
.. >>> PrintReportByOperator = Model.get('sale.print_report_by_operato`r', type='wizard')
|
||||||
>>> prospect1.save()
|
.. >>> session_id, _, _ = PrintReportByOperator.create()
|
||||||
|
|
||||||
>>> prospect1.contact_methods[-1].value
|
.. >>> print_report_by_operator = Wizard('sale.print_report_by_operator', [])
|
||||||
'0000000000'
|
.. >>> print_report_by_operator.form.start_date = date.today()
|
||||||
>>> prospect_trace.prospect_contacts[-1].value
|
.. >>> print_report_by_operator.form.end_date = date.today()
|
||||||
'0000000000'
|
.. >>> print_report_by_operator.execute('print_report')
|
||||||
|
|
||||||
--------
|
--------
|
||||||
Reportes
|
Reportes
|
||||||
|
|||||||
7
view/print_report_by_operator_start_form.xml
Normal file
7
view/print_report_by_operator_start_form.xml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||||
|
this repository contains the full copyright notices and license terms. -->
|
||||||
|
<tree>
|
||||||
|
<field name="start_date" expand="1"/>
|
||||||
|
<field name="end_date" expand="1"/>
|
||||||
|
</tree>
|
||||||
Reference in New Issue
Block a user