This file contains hidden or 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
public function new_cpt_service() { | |
$labels = array( | |
'name' => _x( 'Servicos', 'api' ), | |
'singular_name' => _x( 'Serviço', 'api' ), | |
'add_new' => _x( 'Adicionar novo', 'api' ), | |
'add_new_item' => __( 'Novo serviço', 'api' ), | |
'edit_item' => __( 'Editar serviço', 'api' ), | |
'new_item' => __( 'Novo serviço', 'api' ), | |
'all_items' => __( 'Todos os serviços', 'api' ), | |
'view_item' => __( 'Visualizar serviço', 'api' ), |
This file contains hidden or 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
VERSION FRAMEWORK7 v4 | |
//Structure INDEX.HTML | |
----------------------------------- | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, viewport-fit=cover"> | |
<meta name="apple-mobile-web-app-capable" content="yes"> |
This file contains hidden or 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
const gregorian_chars = [ | |
{ id: 1, text: 'Alpha', color: 'violet', symbol:'α', letter:'A' }, | |
{ id: 2, text: 'Beta', color: 'dodgerblue', symbol:'β', letter:'B' }, | |
{ id: 3, text: 'Gama', color: 'green', symbol:'γ', letter:'Γ' }, | |
{ id: 4, text: 'Delta', color: 'orange', symbol:'δ', letter:'Δ' }, | |
{ id: 5, text: 'Épsilon', color: 'brown', symbol:'ε', letter:'E' }, | |
{ id: 6, text: 'Zeta', color: 'red', symbol:'ζ', letter:'Z' }, | |
{ id: 7, text: 'Etá', color: 'blue', symbol:'η', letter:'H' }, | |
{ id: 8, text: 'Teta', color: 'gray', symbol:'θ', letter:'Θ' }, | |
{ id: 9, text: 'Iota', color: 'yellow', symbol:'ι', letter:'I' }, |
This file contains hidden or 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
pm.globals.set("generateCpfCnpjFunction", ` | |
function generateCpfCnpj(isCpf, format) { | |
//--CPF | |
function calculateVerificationDigit(part1, part2, part3, firstVerificationDigit) { | |
const numbers = \`\${part1}\${part2}\${part3}\`.split(""); | |
if (firstVerificationDigit !== undefined) { | |
numbers[9] = firstVerificationDigit; | |
} |
This file contains hidden or 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
{ | |
"sections": [ | |
{ | |
"section": "AUTOPEÇAS", | |
"data": [ | |
{ | |
"CEST": "01.001.00", | |
"ITEM": "1", | |
"NCM/SH": "3815.12.10", | |
"DESCRICAO": "Catalisadores em colmeia cerâmica ou metálica para conversão catalítica de gases de escape de veículos e outros catalisadores" |
This file contains hidden or 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
``` | |
Moedas obsoletas não foram incluídas (ex: Antigo Cruzeiro Brasileiro - BRB). | |
Criptomoedas (BTC, ETH) não fazem parte oficialmente do ISO 4217, mas foram adicionadas por relevância. | |
Metais preciosos (XAU = Ouro, XAG = Prata) estão incluídos conforme o padrão. | |
Atualização: O ISO 4217 é revisado periodicamente, então recomendo verificar o site oficial da ISO para mudanças recentes. | |
``` |
OlderNewer