diff --git a/l10n_uy_edi/__manifest__.py b/l10n_uy_edi/__manifest__.py index 61f7d57d..577353b7 100644 --- a/l10n_uy_edi/__manifest__.py +++ b/l10n_uy_edi/__manifest__.py @@ -7,7 +7,7 @@ 'author': 'ADHOC SA', 'category': 'Localization', 'license': 'LGPL-3', - 'version': "16.0.1.6.0", + 'version': "16.0.1.7.0", 'depends': [ 'l10n_uy_account', 'account_debit_note', diff --git a/l10n_uy_edi/i18n/es.po b/l10n_uy_edi/i18n/es.po index 03203d02..d1e00266 100644 --- a/l10n_uy_edi/i18n/es.po +++ b/l10n_uy_edi/i18n/es.po @@ -1142,4 +1142,4 @@ msgstr "" #. module: l10n_uy_edi #: model_terms:ir.ui.view,arch_db:l10n_uy_edi.res_config_settings_view_form msgid "⇒ Test Connection" -msgstr "⇒ Probar Conección" +msgstr "⇒ Probar Conexión" diff --git a/l10n_uy_edi/models/l10n_uy_cfe.py b/l10n_uy_edi/models/l10n_uy_cfe.py index b5d0efd5..37ae431c 100644 --- a/l10n_uy_edi/models/l10n_uy_cfe.py +++ b/l10n_uy_edi/models/l10n_uy_cfe.py @@ -1172,19 +1172,6 @@ def _l10n_uy_get_cfe_referencia(self): }) return res - def _get_report_params(self): - # En caso de que el contenido de las adendas sea mayor a 799 caracteres, la adenda se imprimira en - # la segunda pagina de forma automatica, caso contrario, el cliente podra elegir el tipo de reporte que quiera - # Si no elige ningun tipo de reporte, se imprimira el default de uruware - adenda = self._l10n_uy_get_cfe_adenda().get('Adenda') - if adenda and len(adenda) > 799: - report_params = [['adenda'],['true']] - else: - #En caso de que el cliente eliga el reporte que quiere imprimir - report_params = safe_eval.safe_eval(self.company_id.l10n_uy_report_params or '[]') - - return report_params - def action_l10n_uy_get_pdf(self): """ Call query webservice to print pdf format of the CFE 7.1.9 Representación impresa estándar de un CFE emitido en formato PDF @@ -1218,20 +1205,8 @@ def action_l10n_uy_get_pdf(self): 'serieCfe': document_number[0], 'numeroCfe': document_number[1], } - report_params = self._get_report_params() - - if report_params: - nombreParametros = report_params[0] - valoresParametros = report_params[1] - versionPdf = 'ObtenerPdfConParametros' - req_data.update({ - 'nombreParametros': nombreParametros, - 'valoresParametros': valoresParametros, - }) - else: - versionPdf = 'ObtenerPdf' - response = self.company_id._l10n_uy_ucfe_query(versionPdf, req_data) + response = self.company_id._l10n_uy_ucfe_query('ObtenerPdf', req_data) self.l10n_uy_cfe_pdf = self.env['ir.attachment'].create({ 'name': (self.name or prefix.get(self._name, 'OBJ')).replace('/', '_') + '.pdf', 'res_model': self._name, 'res_id': self.id, diff --git a/l10n_uy_edi/models/res_company.py b/l10n_uy_edi/models/res_company.py index c1f437ff..b17a244e 100644 --- a/l10n_uy_edi/models/res_company.py +++ b/l10n_uy_edi/models/res_company.py @@ -48,7 +48,6 @@ class ResCompany(models.Model): l10n_uy_ucfe_prod_env = fields.Text('Uruware Production Data', groups="base.group_system", default="{}") l10n_uy_ucfe_test_env = fields.Text('Uruware Testing Data', groups="base.group_system", default="{}") - l10n_uy_report_params = fields.Char() # DGI l10n_uy_dgi_house_code = fields.Integer( "Código Casa Principal/Sucursal", default=1, help="Este valor es parte del XML cuando se envia el CFE." diff --git a/l10n_uy_edi/models/res_config_settings.py b/l10n_uy_edi/models/res_config_settings.py index 2e3273f2..c296cefe 100644 --- a/l10n_uy_edi/models/res_config_settings.py +++ b/l10n_uy_edi/models/res_config_settings.py @@ -23,9 +23,7 @@ class ResConfigSettings(models.TransientModel): l10n_uy_dgi_crt = fields.Binary(related='company_id.l10n_uy_dgi_crt', readonly=False) l10n_uy_dgi_crt_fname = fields.Char(related='company_id.l10n_uy_dgi_crt_fname') l10n_uy_dgi_house_code = fields.Integer(related='company_id.l10n_uy_dgi_house_code', readonly=False) - l10n_uy_report_params = fields.Char( - related='company_id.l10n_uy_report_params', readonly=False - ) + def l10n_uy_connection_test(self): """ Make a ECO test to UCFE """ self.ensure_one() diff --git a/l10n_uy_edi/views/res_config_settings_view.xml b/l10n_uy_edi/views/res_config_settings_view.xml index 4f40f508..d14c25da 100644 --- a/l10n_uy_edi/views/res_config_settings_view.xml +++ b/l10n_uy_edi/views/res_config_settings_view.xml @@ -67,19 +67,6 @@ -
-
-
- Formato de reporte - -
-
-
-
-
-