@senior-gestao-empresarial/angular-components 6.1.0 → 6.2.0-98a38a88-ff47-44d2-8fb0-11e810698ced
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/senior-gestao-empresarial-angular-components.umd.js +167 -1
- package/bundles/senior-gestao-empresarial-angular-components.umd.js.map +1 -1
- package/bundles/senior-gestao-empresarial-angular-components.umd.min.js +2 -2
- package/bundles/senior-gestao-empresarial-angular-components.umd.min.js.map +1 -1
- package/components/lookups/entities/e-069-gre-lookup.d.ts +8 -0
- package/components/lookups/entities/e-501-tcp-lookup.d.ts +8 -0
- package/components/lookups/index.d.ts +2 -0
- package/components/utils/http-status-code.d.ts +67 -0
- package/components/utils/index.d.ts +1 -0
- package/esm2015/components/lookups/entities/e-069-gre-lookup.js +46 -0
- package/esm2015/components/lookups/entities/e-501-tcp-lookup.js +55 -0
- package/esm2015/components/lookups/erp-lookups.module.js +6 -2
- package/esm2015/components/lookups/index.js +3 -1
- package/esm2015/components/utils/http-status-code.js +68 -0
- package/esm2015/components/utils/index.js +2 -1
- package/esm5/components/lookups/entities/e-069-gre-lookup.js +49 -0
- package/esm5/components/lookups/entities/e-501-tcp-lookup.js +58 -0
- package/esm5/components/lookups/erp-lookups.module.js +6 -2
- package/esm5/components/lookups/index.js +3 -1
- package/esm5/components/utils/http-status-code.js +68 -0
- package/esm5/components/utils/index.js +2 -1
- package/fesm2015/senior-gestao-empresarial-angular-components.js +159 -2
- package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js +165 -2
- package/fesm5/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/senior-gestao-empresarial-angular-components.metadata.json +1 -1
|
@@ -6070,6 +6070,99 @@
|
|
|
6070
6070
|
return E099UsuSupCprLookup;
|
|
6071
6071
|
}(ErpLookups));
|
|
6072
6072
|
|
|
6073
|
+
var E069GreLookup = /** @class */ (function (_super) {
|
|
6074
|
+
__extends(E069GreLookup, _super);
|
|
6075
|
+
function E069GreLookup(lookupService, translate) {
|
|
6076
|
+
var _this = _super.call(this, lookupService, translate, "e069gre", [
|
|
6077
|
+
{
|
|
6078
|
+
name: "codGre",
|
|
6079
|
+
type: angularComponents.FieldType.Integer
|
|
6080
|
+
}, {
|
|
6081
|
+
name: "nomGre",
|
|
6082
|
+
type: angularComponents.FieldType.String
|
|
6083
|
+
}
|
|
6084
|
+
], [
|
|
6085
|
+
{
|
|
6086
|
+
name: "codGre",
|
|
6087
|
+
type: angularComponents.FieldType.Integer
|
|
6088
|
+
}, {
|
|
6089
|
+
name: "nomGre",
|
|
6090
|
+
type: angularComponents.FieldType.String
|
|
6091
|
+
}
|
|
6092
|
+
], [
|
|
6093
|
+
{
|
|
6094
|
+
name: "codGre",
|
|
6095
|
+
type: angularComponents.FieldType.Integer
|
|
6096
|
+
}, {
|
|
6097
|
+
name: "nomGre",
|
|
6098
|
+
type: angularComponents.FieldType.String
|
|
6099
|
+
}
|
|
6100
|
+
], "erpx_fnd", "foundation") || this;
|
|
6101
|
+
_this.lookupService = lookupService;
|
|
6102
|
+
_this.translate = translate;
|
|
6103
|
+
return _this;
|
|
6104
|
+
}
|
|
6105
|
+
E069GreLookup.ctorParameters = function () { return [
|
|
6106
|
+
{ type: ErpLookupsService },
|
|
6107
|
+
{ type: core$1.TranslateService }
|
|
6108
|
+
]; };
|
|
6109
|
+
E069GreLookup = __decorate([
|
|
6110
|
+
core.Injectable()
|
|
6111
|
+
], E069GreLookup);
|
|
6112
|
+
return E069GreLookup;
|
|
6113
|
+
}(ErpLookups));
|
|
6114
|
+
|
|
6115
|
+
var E501TcpLookup = /** @class */ (function (_super) {
|
|
6116
|
+
__extends(E501TcpLookup, _super);
|
|
6117
|
+
function E501TcpLookup(lookupService, translate) {
|
|
6118
|
+
var _this = _super.call(this, lookupService, translate, "e501tcp", [
|
|
6119
|
+
{
|
|
6120
|
+
name: "numTit",
|
|
6121
|
+
type: angularComponents.FieldType.String
|
|
6122
|
+
}, {
|
|
6123
|
+
name: "e070filCodFil.nomFil",
|
|
6124
|
+
type: angularComponents.FieldType.String
|
|
6125
|
+
}, {
|
|
6126
|
+
name: "e002tptCodTpt.desTpt",
|
|
6127
|
+
type: angularComponents.FieldType.String
|
|
6128
|
+
}
|
|
6129
|
+
], [
|
|
6130
|
+
{
|
|
6131
|
+
name: "numTit",
|
|
6132
|
+
type: angularComponents.FieldType.String
|
|
6133
|
+
}, {
|
|
6134
|
+
name: "e070filCodFil.codFil",
|
|
6135
|
+
type: angularComponents.FieldType.Integer
|
|
6136
|
+
}, {
|
|
6137
|
+
name: "e002tptCodTpt.codTpt",
|
|
6138
|
+
type: angularComponents.FieldType.String
|
|
6139
|
+
}
|
|
6140
|
+
], [
|
|
6141
|
+
{
|
|
6142
|
+
name: "numTit",
|
|
6143
|
+
type: angularComponents.FieldType.String
|
|
6144
|
+
}, {
|
|
6145
|
+
name: "e070filCodFil.nomFil",
|
|
6146
|
+
type: angularComponents.FieldType.String
|
|
6147
|
+
}, {
|
|
6148
|
+
name: "e002tptCodTpt.desTpt",
|
|
6149
|
+
type: angularComponents.FieldType.String
|
|
6150
|
+
}
|
|
6151
|
+
], "erpx_fnd", "foundation") || this;
|
|
6152
|
+
_this.lookupService = lookupService;
|
|
6153
|
+
_this.translate = translate;
|
|
6154
|
+
return _this;
|
|
6155
|
+
}
|
|
6156
|
+
E501TcpLookup.ctorParameters = function () { return [
|
|
6157
|
+
{ type: ErpLookupsService },
|
|
6158
|
+
{ type: core$1.TranslateService }
|
|
6159
|
+
]; };
|
|
6160
|
+
E501TcpLookup = __decorate([
|
|
6161
|
+
core.Injectable()
|
|
6162
|
+
], E501TcpLookup);
|
|
6163
|
+
return E501TcpLookup;
|
|
6164
|
+
}(ErpLookups));
|
|
6165
|
+
|
|
6073
6166
|
var ErpLookupsModule = /** @class */ (function () {
|
|
6074
6167
|
function ErpLookupsModule() {
|
|
6075
6168
|
}
|
|
@@ -6178,7 +6271,9 @@
|
|
|
6178
6271
|
ParametersLookup,
|
|
6179
6272
|
BeneficioFiscalLookup,
|
|
6180
6273
|
DocumentoLookup,
|
|
6181
|
-
E099UsuSupCprLookup
|
|
6274
|
+
E099UsuSupCprLookup,
|
|
6275
|
+
E069GreLookup,
|
|
6276
|
+
E501TcpLookup
|
|
6182
6277
|
],
|
|
6183
6278
|
declarations: [],
|
|
6184
6279
|
exports: [],
|
|
@@ -6772,6 +6867,74 @@
|
|
|
6772
6867
|
return UtilsModule;
|
|
6773
6868
|
}());
|
|
6774
6869
|
|
|
6870
|
+
var HTTP_STATUS_CODE = {
|
|
6871
|
+
CONTINUE: 100,
|
|
6872
|
+
SWITCHING_PROTOCOLS: 101,
|
|
6873
|
+
PROCESSING: 102,
|
|
6874
|
+
EARLY_HINTS: 103,
|
|
6875
|
+
OK: 200,
|
|
6876
|
+
CREATED: 201,
|
|
6877
|
+
ACCEPTED: 202,
|
|
6878
|
+
NON_AUTHORITATIVE_INFORMATION: 203,
|
|
6879
|
+
NO_CONTENT: 204,
|
|
6880
|
+
RESET_CONTENT: 205,
|
|
6881
|
+
PARTIAL_CONTENT: 206,
|
|
6882
|
+
MULTI_STATUS: 207,
|
|
6883
|
+
ALREADY_REPORTED: 208,
|
|
6884
|
+
IM_USED: 226,
|
|
6885
|
+
MULTIPLE_CHOICES: 300,
|
|
6886
|
+
MOVED_PERMANENTLY: 301,
|
|
6887
|
+
FOUND: 302,
|
|
6888
|
+
SEE_OTHER: 303,
|
|
6889
|
+
NOT_MODIFIED: 304,
|
|
6890
|
+
USE_PROXY: 305,
|
|
6891
|
+
UNUSED: 306,
|
|
6892
|
+
TEMPORARY_REDIRECT: 307,
|
|
6893
|
+
PERMANENT_REDIRECT: 308,
|
|
6894
|
+
BAD_REQUEST: 400,
|
|
6895
|
+
UNAUTHORIZED: 401,
|
|
6896
|
+
PAYMENT_REQUIRED: 402,
|
|
6897
|
+
FORBIDDEN: 403,
|
|
6898
|
+
NOT_FOUND: 404,
|
|
6899
|
+
METHOD_NOT_ALLOWED: 405,
|
|
6900
|
+
NOT_ACCEPTABLE: 406,
|
|
6901
|
+
PROXY_AUTHENTICATION_REQUIRED: 407,
|
|
6902
|
+
REQUEST_TIMEOUT: 408,
|
|
6903
|
+
CONFLICT: 409,
|
|
6904
|
+
GONE: 410,
|
|
6905
|
+
LENGTH_REQUIRED: 411,
|
|
6906
|
+
PRECONDITION_FAILED: 412,
|
|
6907
|
+
PAYLOAD_TOO_LARGE: 413,
|
|
6908
|
+
URI_TOO_LONG: 414,
|
|
6909
|
+
UNSUPPORTED_MEDIA_TYPE: 415,
|
|
6910
|
+
RANGE_NOT_SATISFIABLE: 416,
|
|
6911
|
+
EXPECTATION_FAILED: 417,
|
|
6912
|
+
IM_A_TEAPOT: 418,
|
|
6913
|
+
MISDIRECTED_REQUEST: 421,
|
|
6914
|
+
UNPROCESSABLE_ENTITY: 422,
|
|
6915
|
+
LOCKED: 423,
|
|
6916
|
+
FAILED_DEPENDENCY: 424,
|
|
6917
|
+
TOO_EARLY: 425,
|
|
6918
|
+
UPGRADE_REQUIRED: 426,
|
|
6919
|
+
PRECONDITION_REQUIRED: 428,
|
|
6920
|
+
TOO_MANY_REQUESTS: 429,
|
|
6921
|
+
REQUEST_HEADER_FIELDS_TOO_LARGE: 431,
|
|
6922
|
+
UNAVAILABLE_FOR_LEGAL_REASONS: 451,
|
|
6923
|
+
INTERNAL_SERVER_ERROR: 500,
|
|
6924
|
+
NOT_IMPLEMENTED: 501,
|
|
6925
|
+
BAD_GATEWAY: 502,
|
|
6926
|
+
SERVICE_UNAVAILABLE: 503,
|
|
6927
|
+
GATEWAY_TIMEOUT: 504,
|
|
6928
|
+
HTTP_VERSION_NOT_SUPPORTED: 505,
|
|
6929
|
+
VARIANT_ALSO_NEGOTIATES: 506,
|
|
6930
|
+
INSUFFICIENT_STORAGE: 507,
|
|
6931
|
+
LOOP_DETECTED: 508,
|
|
6932
|
+
NOT_EXTENDED: 510,
|
|
6933
|
+
NETWORK_AUTHENTICATION_REQUIRED: 511,
|
|
6934
|
+
NETWORK_CONNECT_TIMEOUT_ERROR: 599,
|
|
6935
|
+
GENERIC_ERROR: 600
|
|
6936
|
+
};
|
|
6937
|
+
|
|
6775
6938
|
// https://widget.tracksale.co/
|
|
6776
6939
|
var NpsService = /** @class */ (function () {
|
|
6777
6940
|
function NpsService() {
|
|
@@ -7326,6 +7489,7 @@
|
|
|
7326
7489
|
exports.E051DisLookup = E051DisLookup;
|
|
7327
7490
|
exports.E066FpgLookup = E066FpgLookup;
|
|
7328
7491
|
exports.E067FinLookup = E067FinLookup;
|
|
7492
|
+
exports.E069GreLookup = E069GreLookup;
|
|
7329
7493
|
exports.E070EmpLookup = E070EmpLookup;
|
|
7330
7494
|
exports.E070EntLookup = E070EntLookup;
|
|
7331
7495
|
exports.E070FilLookup = E070FilLookup;
|
|
@@ -7353,6 +7517,7 @@
|
|
|
7353
7517
|
exports.E420IcpLookup = E420IcpLookup;
|
|
7354
7518
|
exports.E420IpcLookup = E420IpcLookup;
|
|
7355
7519
|
exports.E420OcpLookup = E420OcpLookup;
|
|
7520
|
+
exports.E501TcpLookup = E501TcpLookup;
|
|
7356
7521
|
exports.E600CcoLookup = E600CcoLookup;
|
|
7357
7522
|
exports.E640LotLookup = E640LotLookup;
|
|
7358
7523
|
exports.EquipmentLookup = EquipmentLookup;
|
|
@@ -7362,6 +7527,7 @@
|
|
|
7362
7527
|
exports.ExportUtils = ExportUtils;
|
|
7363
7528
|
exports.FiltersStorageService = FiltersStorageService;
|
|
7364
7529
|
exports.FormUtilsService = FormUtilsService;
|
|
7530
|
+
exports.HTTP_STATUS_CODE = HTTP_STATUS_CODE;
|
|
7365
7531
|
exports.LigacaoItemFornecedorLookup = LigacaoItemFornecedorLookup;
|
|
7366
7532
|
exports.LookupValidationUtils = LookupValidationUtils;
|
|
7367
7533
|
exports.NcmLookup = NcmLookup;
|