Skip to content

Commit

Permalink
🔨 #52 combo cnae principal
Browse files Browse the repository at this point in the history
  • Loading branch information
bjverde committed Sep 2, 2024
1 parent 4dfcf95 commit 6d6ef01
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,15 @@ public function __construct($param = null)
$situacao_cadastral = new TCombo('situacao_cadastral');
$data_situacao_cadastral = new TDate('data_situacao_cadastral');
$motivo_situacao_cadastral = new TDBCombo('motivo_situacao_cadastral', 'maindatabase', 'moti', 'codigo', '{descricao}','descricao asc' );
$motivo_situacao_cadastral->enableSearch();

$nome_cidade_exterior = new TEntry('nome_cidade_exterior');
$pais = new TEntry('pais');
$data_inicio_atividade = new TDateTime('data_inicio_atividade');
$cnae_fiscal_principal = new TEntry('cnae_fiscal_principal');
//$cnae_fiscal_principal = new TEntry('cnae_fiscal_principal');
$cnae_fiscal_principal = new TDBCombo('cnae_fiscal_principal', 'maindatabase', 'cnae', 'codigo', '{codigo} - {descricao}','descricao asc' );
$cnae_fiscal_principal->enableSearch();

$cnae_fiscal_secundaria = new TEntry('cnae_fiscal_secundaria');
$tipo_logradouro = new TEntry('tipo_logradouro');
$logradouro = new TEntry('logradouro');
Expand All @@ -92,6 +97,8 @@ public function __construct($param = null)
$cep = new TEntry('cep');
$uf = new TEntry('uf');
$municipio = new TDBCombo('municipio', 'maindatabase', 'munic', 'codigo', '{descricao}','descricao asc' );
$municipio->enableSearch();

$ddd_1 = new TEntry('ddd_1');
$telefone_1 = new TEntry('telefone_1');
$ddd_2 = new TEntry('ddd_2');
Expand All @@ -103,8 +110,6 @@ public function __construct($param = null)
$data_situacao_especial = new TDate('data_situacao_especial');


$municipio->enableSearch();
$motivo_situacao_cadastral->enableSearch();
$identificador_matriz_filial->addItems(TipoMatrizFilial::getList());
$situacao_cadastral->addItems(TipoEmpresaSituacao::getList());

Expand Down

0 comments on commit 6d6ef01

Please sign in to comment.