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.
59 lines
1.1 KiB
59 lines
1.1 KiB
from base import Entidade
|
|
|
|
class Emitente(Entidade):
|
|
# Dados do Emitente
|
|
# - Nome/Razao Social (obrigatorio)
|
|
razao_social = str()
|
|
|
|
# - Nome Fantasia
|
|
nome_fantasia = str()
|
|
|
|
# - CNPJ (obrigatorio)
|
|
cnpj = str()
|
|
|
|
# - Inscricao Estadual (obrigatorio)
|
|
inscricao_estadual = str()
|
|
|
|
# - CNAE Fiscal
|
|
cnae_fiscal = str()
|
|
|
|
# - Inscricao Municipal
|
|
inscricao_municipal = str()
|
|
|
|
# - Inscricao Estadual (Subst. Tributario)
|
|
inscricao_estadual_subst_tributaria = str()
|
|
|
|
# Endereco
|
|
# - Logradouro (obrigatorio)
|
|
endereco_logradouro = str()
|
|
|
|
# - Numero (obrigatorio)
|
|
endereco_numero = str()
|
|
|
|
# - Complemento
|
|
endereco_complemento = str()
|
|
|
|
# - Bairro (obrigatorio)
|
|
endereco_bairro = str()
|
|
|
|
# - CEP
|
|
endereco_cep = str()
|
|
|
|
# - Pais (aceita somente Brasil)
|
|
endereco_pais = 'BRASIL'
|
|
|
|
# - UF (obrigatorio)
|
|
endereco_uf = str()
|
|
|
|
# - Municipio (obrigatorio)
|
|
endereco_municipio = str()
|
|
|
|
# - Telefone
|
|
endereco_telefone = str()
|
|
|
|
# Logotipo
|
|
logotipo = None
|
|
|
|
def __str__(self):
|
|
return self.cnpj
|
|
|