restauração
This commit is contained in:
parent
c7c8e377c3
commit
4d5c641223
357 changed files with 23543 additions and 591 deletions
21
dist/GEE/index.d.ts
vendored
Normal file
21
dist/GEE/index.d.ts
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import { escopos, type tipoEstruturaCadastroGee, type tipoEstruturaRegistroGee, type tipoFonteObjeto, type tiposCamposGee } from "./interfaces";
|
||||
export { escopos };
|
||||
export type { tipoFonteObjeto };
|
||||
export type { tipoEstruturaCadastroGee, tipoEstruturaRegistroGee, tiposCamposGee, };
|
||||
export declare const tipoFontesGEE: tipoFonteObjeto<any, any>[];
|
||||
/**
|
||||
* modifica todos os parametros para que quando indefinido receba 0
|
||||
tipoFontesGEE.forEach((fonte) => {
|
||||
const formulaAntiga = fonte.formula
|
||||
const novaFormula: typeof formulaAntiga = (pr) => {
|
||||
fonte.estruturaCadastro.forEach(
|
||||
(a: { tipo: tiposCamposGee; idCampo: string | number }) => {
|
||||
if (a.tipo == tiposCamposGee.numero && !pr.cad[a.idCampo])
|
||||
pr.cad[a.idCampo] = 0
|
||||
},
|
||||
)
|
||||
return formulaAntiga(pr)
|
||||
}
|
||||
fonte.formula = novaFormula
|
||||
})
|
||||
*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue