This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Valida um CNPJ com 14 caracteres, onde os 12 primeiros podem ser alfanuméricos e os 2 últimos são dígitos verificadores. | |
* A validação é feita utilizando o método do módulo 11, e para caracteres alfabéticos o valor ASCII é subtraído por 48. | |
* | |
* @link http://normas.receita.fazenda.gov.br/sijut2consulta/link.action?idAto=141102 | |
* @param string $cnpj O CNPJ a ser validado, com 14 caracteres alfanuméricos (12 primeiros) e numéricos (2 últimos). | |
* @return bool Retorna true se o CNPJ for válido, false caso contrário. | |
* @author Bruno Constantino | |
* @date 2024-10-29 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Valida um CNPJ com 14 caracteres, onde os 12 primeiros podem ser alfanuméricos e os 2 últimos são dígitos verificadores. | |
* A validação é feita utilizando o método do módulo 11, e para caracteres alfabéticos o valor ASCII é subtraído por 48. | |
* | |
* @link http://normas.receita.fazenda.gov.br/sijut2consulta/link.action?idAto=141102 | |
* @param string $cnpj O CNPJ a ser validado, com 14 caracteres alfanuméricos (12 primeiros) e numéricos (2 últimos). | |
* @return bool Retorna true se o CNPJ for válido, false caso contrário. | |
* @author Bruno Constantino | |
* @date 2024-10-29 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//namespace Adianti\Registry; | |
use Adianti\Registry\AdiantiRegistryInterface; | |
//use Redis; | |
/** | |
* Adianti Redis Record Cache | |
* | |
* @version 7.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Bruno Constantino 12-09-2022 | |
/* | |
Crie uma Nova Ação no Cabeçalho; | |
Defina o nome da variável como "btnShowColumns"; | |
Defina a Variável com escopo a nivel de classe como SIM; | |
Defina como método estático; | |
Defina o método como "onShowColumnsFilters"; | |
Copie os trechos de código abaixo em seus respectivos locais definidos no Adianti Builder; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Este UPDATE faz o vinculo da segunda imagem (mgv.position) com o atributo small_image (86) | |
* 85, 86, 87 -> base_image, small_image, thumbnail | |
* OS ID's variam de cada base Magento, verifique na tabela eav_attribute. | |
*/ | |
UPDATE catalog_product_entity_media_gallery AS `mg`, | |
catalog_product_entity_media_gallery_value AS `mgv`, | |
catalog_product_entity_varchar AS `ev` | |
SET `ev`.`value` = `mg`.`value` | |
WHERE `mg`.`value_id` = `mgv`.`value_id` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$SET ANS85 | |
* [ fonte ] VERIFICA-CHAVE-NFE | |
* [ linguagem ] microfocus cobol 3-2-50 | |
* [ finalidade ] Função para calculo o digito verificador da NFe | |
* [ local ] LOPO Calcados | |
identification division. | |
program-id. VERIFICA-CHAVE-NFE. | |
author. Bruno Constantino. | |
date-written. 12-12-2016. | |
date-compiled. 12-12-2016. |