You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
479 B
21 lines
479 B
"""
|
|
@author: Junior Tada, Leonardo Tada
|
|
"""
|
|
|
|
from .base import Entidade
|
|
from decimal import Decimal
|
|
|
|
class Servico(Entidade):
|
|
|
|
valor_servico = Decimal()
|
|
iss_retido = Decimal()
|
|
""" http://www1.receita.fazenda.gov.br/sistemas/nfse/tabelas-de-codigos.htm
|
|
Lista com códigos dos serviços
|
|
"""
|
|
item_lista = str()
|
|
discriminacao = str()
|
|
exigibilidade = int()
|
|
codigo_municipio = str()
|
|
|
|
def __str__(self):
|
|
return self.discriminacao
|