84 lines
3.4 KiB
Diff
84 lines
3.4 KiB
Diff
diff --git a/l10n_co_account_e_invoicing/__manifest__.py b/l10n_co_account_e_invoicing/__manifest__.py
|
|
index 41934a0..77c4dbf 100644
|
|
--- a/l10n_co_account_e_invoicing/__manifest__.py
|
|
+++ b/l10n_co_account_e_invoicing/__manifest__.py
|
|
@@ -26,7 +26,7 @@
|
|
],
|
|
"external_dependencies": {
|
|
"python": [
|
|
- "OpenSSL",
|
|
+ "pyopenssl",
|
|
"xades",
|
|
],
|
|
},
|
|
diff --git a/l10n_co_account_e_invoicing/models/account_move.py b/l10n_co_account_e_invoicing/models/account_move.py
|
|
index 376f36c..88f62ba 100644
|
|
--- a/l10n_co_account_e_invoicing/models/account_move.py
|
|
+++ b/l10n_co_account_e_invoicing/models/account_move.py
|
|
@@ -89,16 +89,16 @@ class AccountMove(models.Model):
|
|
|
|
warn_remaining_certificate = fields.Boolean(
|
|
string="Warn About Remainings?",
|
|
- compute="_get_warn_certificate",
|
|
+ # compute="_get_warn_certificate",
|
|
store=False)
|
|
warn_inactive_certificate = fields.Boolean(
|
|
string="Warn About Inactive Certificate?",
|
|
- compute="_get_warn_certificate",
|
|
+ # compute="_get_warn_certificate",
|
|
store=False)
|
|
sequence_resolution_id = fields.Many2one(
|
|
comodel_name='ir.sequence.date_range',
|
|
string='Sequence Resolution',
|
|
- compute='_compute_sequence_resolution_id',
|
|
+ # compute='_compute_sequence_resolution_id',
|
|
store=False)
|
|
invoice_datetime = fields.Datetime(string='Invoice Datetime', copy=False)
|
|
delivery_datetime = fields.Datetime(string='Delivery Datetime', copy=False)
|
|
@@ -127,7 +127,11 @@ class AccountMove(models.Model):
|
|
string='Send Invoice to DIAN?',
|
|
default=_default_send_invoice_to_dian,
|
|
copy=False)
|
|
- dbname = fields.Char(string="DB Name", compute="_get_dbname", store=False)
|
|
+ dbname = fields.Char(
|
|
+ string="DB Name",
|
|
+ # compute="_get_dbname",
|
|
+ store=False
|
|
+ )
|
|
access_token = fields.Char(string='Access Token', copy=False)
|
|
is_accepted_rejected = fields.Boolean(string='Is Accepted/Rejected?', copy=False)
|
|
accepted_rejected_datetime = fields.Datetime(
|
|
diff --git a/l10n_co_account_move_discrepancy_response/__manifest__.py b/l10n_co_account_move_discrepancy_response/__manifest__.py
|
|
index 995ee1d..8d14c66 100644
|
|
--- a/l10n_co_account_move_discrepancy_response/__manifest__.py
|
|
+++ b/l10n_co_account_move_discrepancy_response/__manifest__.py
|
|
@@ -23,7 +23,7 @@
|
|
"wizards/account_move_reversal_views.xml",
|
|
"views/account_move_discrepancy_response_code_views.xml",
|
|
"views/account_move_views.xml",
|
|
- "views/account_journal_views.xml",
|
|
+ # "views/account_journal_views.xml",
|
|
],
|
|
"installable": True,
|
|
}
|
|
diff --git a/l10n_co_base_location/__manifest__.py b/l10n_co_base_location/__manifest__.py
|
|
index eed50a8..3729340 100644
|
|
--- a/l10n_co_base_location/__manifest__.py
|
|
+++ b/l10n_co_base_location/__manifest__.py
|
|
@@ -14,13 +14,13 @@
|
|
"account_avancys",
|
|
"base_location"],
|
|
"data": [
|
|
- "data/res.country.state.csv",
|
|
- #"data/res.city.csv",
|
|
- #"data/res.city.zip.csv",
|
|
+ # "data/res.country.state.csv",
|
|
+ # "data/res.city.csv",
|
|
+ # "data/res.city.zip.csv",
|
|
"views/res_country_state_views.xml",
|
|
"views/res_city_views.xml",
|
|
"views/res_city_zip_views.xml",
|
|
"views/res_partner_views.xml"
|
|
],
|
|
"installable": True,
|