Skip to content

Commit

Permalink
[IMP] l10n_br_cte: add string on fields
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelsavegnago committed Jul 20, 2024
1 parent 7182f5b commit 0b19541
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions l10n_br_cte/models/document.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ def _compute_cte40_compl(self):
comodel_name="res.company",
compute="_compute_emit_data",
readonly=True,
string="Emit",
string="Emitente",
)

cte40_CRT = fields.Selection(
Expand All @@ -467,7 +467,7 @@ def _compute_emit_data(self):
compute="_compute_rem_data",
readonly=False,
store=True,
string="Rem",
string="Remetente",
)

##########################
Expand All @@ -488,7 +488,7 @@ def _compute_rem_data(self):
compute="_compute_exped_data",
readonly=False,
store=True,
string="Exped",
string="Expedidor",
)

##########################
Expand All @@ -508,7 +508,7 @@ def _compute_exped_data(self):
comodel_name="res.partner",
compute="_compute_dest_data",
readonly=True,
string="Dest",
string="Destinatário",
)

##########################
Expand All @@ -528,7 +528,7 @@ def _compute_dest_data(self):
comodel_name="res.partner",
compute="_compute_receb_data",
readonly=True,
string="Receb",
string="Recebedor",
)

##########################
Expand Down

0 comments on commit 0b19541

Please sign in to comment.