@orbe-agro/client-core 5.2.8 → 5.3.0
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/dist/@ecme/components/template/Logo.js +11 -18
- package/dist/@ecme/components/template/Logo.js.map +1 -1
- package/dist/@ecme/configs/AppConfigContext.js +20 -0
- package/dist/@ecme/configs/AppConfigContext.js.map +1 -0
- package/dist/@ecme/configs/app.config.js +2 -1
- package/dist/@ecme/configs/app.config.js.map +1 -1
- package/dist/@types/@ecme/components/template/Logo.d.ts +1 -1
- package/dist/@types/@ecme/components/template/Logo.d.ts.map +1 -1
- package/dist/@types/@ecme/configs/AppConfigContext.d.ts +10 -0
- package/dist/@types/@ecme/configs/AppConfigContext.d.ts.map +1 -0
- package/dist/@types/@ecme/configs/app.config.d.ts +1 -0
- package/dist/@types/@ecme/configs/app.config.d.ts.map +1 -1
- package/dist/@types/base/configs/endpoints.config/Ticket/ticket.endpoint.config.d.ts +1 -0
- package/dist/@types/base/configs/endpoints.config/Ticket/ticket.endpoint.config.d.ts.map +1 -1
- package/dist/@types/base/services/modules/Ticket/TicketService.d.ts +1 -0
- package/dist/@types/base/services/modules/Ticket/TicketService.d.ts.map +1 -1
- package/dist/@types/base/services/modules/index.d.ts +1 -0
- package/dist/@types/base/services/modules/index.d.ts.map +1 -1
- package/dist/@types/base/services/modules/template/example/ExampleObjectService.d.ts +6 -0
- package/dist/@types/base/services/modules/template/example/ExampleObjectService.d.ts.map +1 -0
- package/dist/@types/base/services/modules/template/example/ExampleService.d.ts +5 -0
- package/dist/@types/base/services/modules/template/example/ExampleService.d.ts.map +1 -0
- package/dist/@types/base/services/modules/template/index.d.ts +3 -0
- package/dist/@types/base/services/modules/template/index.d.ts.map +1 -0
- package/dist/@types/base/utils/constOptions/tiposPagamentos.d.ts.map +1 -1
- package/dist/base/configs/endpoints.config/Ticket/ticket.endpoint.config.js +6 -5
- package/dist/base/configs/endpoints.config/Ticket/ticket.endpoint.config.js.map +1 -1
- package/dist/base/index.js +103 -94
- package/dist/base/index.js.map +1 -1
- package/dist/base/services/index.js +44 -35
- package/dist/base/services/index.js.map +1 -1
- package/dist/base/services/modules/Ticket/TicketService.js +14 -6
- package/dist/base/services/modules/Ticket/TicketService.js.map +1 -1
- package/dist/base/services/modules/index.js +81 -71
- package/dist/base/services/modules/index.js.map +1 -1
- package/dist/base/services/modules/template/example/ExampleObjectService.js +37 -0
- package/dist/base/services/modules/template/example/ExampleObjectService.js.map +1 -0
- package/dist/base/services/modules/template/example/ExampleService.js +30 -0
- package/dist/base/services/modules/template/example/ExampleService.js.map +1 -0
- package/dist/base/services/modules/template/index.js +12 -0
- package/dist/base/services/modules/template/index.js.map +1 -0
- package/dist/base/utils/constOptions/tiposPagamentos.js +13 -5
- package/dist/base/utils/constOptions/tiposPagamentos.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,29 +1,22 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as a } from "react/jsx-runtime";
|
|
2
2
|
import e from "classnames";
|
|
3
|
-
import { APP_NAME as
|
|
4
|
-
import
|
|
5
|
-
const
|
|
6
|
-
const { name:
|
|
7
|
-
return /* @__PURE__ */
|
|
3
|
+
import { APP_NAME as g } from "../../constants/app.constant.js";
|
|
4
|
+
import { useAppConfig as n } from "../../configs/AppConfigContext.js";
|
|
5
|
+
const u = (l) => {
|
|
6
|
+
const { name: t, className: m, imgClass: i, style: r, logoWidth: c = "auto" } = l, o = n(), s = `${o.publicPath}/img/logo/${o.orgName}/${t}`;
|
|
7
|
+
return console.log("finalLogoSrc", s), /* @__PURE__ */ a(
|
|
8
8
|
"div",
|
|
9
9
|
{
|
|
10
|
-
className: e("logo",
|
|
10
|
+
className: e("logo", m),
|
|
11
11
|
style: {
|
|
12
|
-
...
|
|
13
|
-
width:
|
|
12
|
+
...r,
|
|
13
|
+
width: c
|
|
14
14
|
},
|
|
15
|
-
children: /* @__PURE__ */
|
|
16
|
-
"img",
|
|
17
|
-
{
|
|
18
|
-
className: t,
|
|
19
|
-
src: `${c}/${g.orgName}/${m}`,
|
|
20
|
-
alt: `${i} logo`
|
|
21
|
-
}
|
|
22
|
-
)
|
|
15
|
+
children: /* @__PURE__ */ a("img", { className: i, src: s, alt: `${g} logo` })
|
|
23
16
|
}
|
|
24
17
|
);
|
|
25
18
|
};
|
|
26
19
|
export {
|
|
27
|
-
|
|
20
|
+
u as default
|
|
28
21
|
};
|
|
29
22
|
//# sourceMappingURL=Logo.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Logo.js","sources":["../../../../lib/@ecme/components/template/Logo.tsx"],"sourcesContent":["import classNames from
|
|
1
|
+
{"version":3,"file":"Logo.js","sources":["../../../../lib/@ecme/components/template/Logo.tsx"],"sourcesContent":["import classNames from \"classnames\";\nimport { APP_NAME } from \"@/constants/app.constant\";\nimport type { CommonProps } from \"@/@types/common\";\nimport { useAppConfig } from \"@/configs/AppConfigContext\";\n\ninterface LogoProps extends CommonProps {\n name: string;\n imgClass?: string;\n logoWidth?: number | string;\n}\n\nconst Logo = (props: LogoProps) => {\n const { name, className, imgClass, style, logoWidth = \"auto\" } = props;\n const appConfig = useAppConfig();\n const finalLogoSrc = `${appConfig.publicPath}/img/logo/${appConfig.orgName}/${name}`;\n console.log(\"finalLogoSrc\", finalLogoSrc);\n \n return (\n <div\n className={classNames(\"logo\", className)}\n style={{\n ...style,\n ...{ width: logoWidth },\n }}\n >\n <img className={imgClass} src={finalLogoSrc} alt={`${APP_NAME} logo`} />\n </div>\n );\n};\n\nexport default Logo;\n"],"names":["Logo","props","name","className","imgClass","style","logoWidth","appConfig","useAppConfig","finalLogoSrc","jsx","classNames","APP_NAME"],"mappings":";;;;AAWA,MAAMA,IAAO,CAACC,MAAqB;AACjC,QAAM,EAAE,MAAAC,GAAM,WAAAC,GAAW,UAAAC,GAAU,OAAAC,GAAO,WAAAC,IAAY,WAAWL,GAC3DM,IAAYC,EAAA,GACZC,IAAe,GAAGF,EAAU,UAAU,aAAaA,EAAU,OAAO,IAAIL,CAAI;AAClF,iBAAQ,IAAI,gBAAgBO,CAAY,GAGtC,gBAAAC;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAWC,EAAW,QAAQR,CAAS;AAAA,MACvC,OAAO;AAAA,QACL,GAAGE;AAAA,QACE,OAAOC;AAAA,MAAU;AAAA,MAGxB,UAAA,gBAAAI,EAAC,SAAI,WAAWN,GAAU,KAAKK,GAAc,KAAK,GAAGG,CAAQ,QAAA,CAAS;AAAA,IAAA;AAAA,EAAA;AAG5E;"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { jsx as p } from "react/jsx-runtime";
|
|
2
|
+
import { createContext as i, useContext as f } from "react";
|
|
3
|
+
import r from "./app.config.js";
|
|
4
|
+
const e = i(r), c = ({
|
|
5
|
+
config: o,
|
|
6
|
+
children: t
|
|
7
|
+
}) => {
|
|
8
|
+
const n = { ...r, ...o };
|
|
9
|
+
return /* @__PURE__ */ p(e.Provider, { value: n, children: t });
|
|
10
|
+
}, d = () => {
|
|
11
|
+
const o = f(e);
|
|
12
|
+
if (!o)
|
|
13
|
+
throw new Error("useAppConfig deve ser usado dentro de um AppConfigProvider");
|
|
14
|
+
return o;
|
|
15
|
+
};
|
|
16
|
+
export {
|
|
17
|
+
c as AppConfigProvider,
|
|
18
|
+
d as useAppConfig
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=AppConfigContext.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppConfigContext.js","sources":["../../../lib/@ecme/configs/AppConfigContext.tsx"],"sourcesContent":["import React, { createContext, useContext, ReactNode } from \"react\";\nimport type { AppConfig } from \"./app.config\"; \nimport appConfigDefault from \"./app.config\"; \n\nconst AppConfigContext = createContext<AppConfig>(appConfigDefault);\n\ninterface AppConfigProviderProps {\n config: Partial<AppConfig>;\n children: ReactNode;\n}\n\nexport const AppConfigProvider = ({\n config,\n children,\n}: AppConfigProviderProps) => {\n const finalConfig = { ...appConfigDefault, ...config };\n\n return (\n <AppConfigContext.Provider value={finalConfig}>\n {children}\n </AppConfigContext.Provider>\n );\n};\n\nexport const useAppConfig = () => {\n const context = useContext(AppConfigContext);\n if (!context) {\n throw new Error(\"useAppConfig deve ser usado dentro de um AppConfigProvider\");\n }\n return context;\n};\n"],"names":["AppConfigContext","createContext","appConfigDefault","AppConfigProvider","config","children","finalConfig","useAppConfig","context","useContext"],"mappings":";;;AAIA,MAAMA,IAAmBC,EAAyBC,CAAgB,GAOrDC,IAAoB,CAAC;AAAA,EAChC,QAAAC;AAAA,EACA,UAAAC;AACF,MAA8B;AAC5B,QAAMC,IAAc,EAAE,GAAGJ,GAAkB,GAAGE,EAAA;AAE9C,2BACGJ,EAAiB,UAAjB,EAA0B,OAAOM,GAC/B,UAAAD,GACH;AAEJ,GAEaE,IAAe,MAAM;AAChC,QAAMC,IAAUC,EAAWT,CAAgB;AAC3C,MAAI,CAACQ;AACH,UAAM,IAAI,MAAM,4DAA4D;AAE9E,SAAOA;AACT;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.config.js","sources":["../../../lib/@ecme/configs/app.config.ts"],"sourcesContent":["export type AppConfig = {\n apiPrefix: string\n orgName: string\n authenticatedEntryPath: string\n unAuthenticatedEntryPath: string\n locale: string\n accessTokenPersistStrategy: 'localStorage' | 'sessionStorage' | 'cookies'\n enableMock: boolean\n activeNavTranslation: boolean\n firstAccessPath: string\n}\n\nconst appConfig: AppConfig = {\n apiPrefix: '/api',\n orgName: 'orbe-agro',\n authenticatedEntryPath: '/',\n unAuthenticatedEntryPath: '/sign-in',\n locale: 'ptBR',\n accessTokenPersistStrategy: 'localStorage',\n enableMock: true,\n activeNavTranslation: true,\n firstAccessPath: '/primeiro-login',\n}\n\nexport default appConfig\n"],"names":["appConfig"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.config.js","sources":["../../../lib/@ecme/configs/app.config.ts"],"sourcesContent":["export type AppConfig = {\n apiPrefix: string\n orgName: string\n authenticatedEntryPath: string\n unAuthenticatedEntryPath: string\n locale: string\n accessTokenPersistStrategy: 'localStorage' | 'sessionStorage' | 'cookies'\n enableMock: boolean\n activeNavTranslation: boolean\n firstAccessPath: string\n publicPath: string\n}\n\nconst appConfig: AppConfig = {\n apiPrefix: '/api',\n orgName: 'orbe-agro',\n authenticatedEntryPath: '/',\n unAuthenticatedEntryPath: '/sign-in',\n locale: 'ptBR',\n accessTokenPersistStrategy: 'localStorage',\n enableMock: true,\n activeNavTranslation: true,\n firstAccessPath: '/primeiro-login',\n publicPath: '',\n}\n\nexport default appConfig\n"],"names":["appConfig"],"mappings":"AAaA,MAAMA,IAAuB;AAAA,EACzB,WAAW;AAAA,EACX,SAAS;AAAA,EACT,wBAAwB;AAAA,EACxB,0BAA0B;AAAA,EAC1B,QAAQ;AAAA,EACR,4BAA4B;AAAA,EAC5B,YAAY;AAAA,EACZ,sBAAsB;AAAA,EACtB,iBAAiB;AAAA,EACjB,YAAY;AAChB;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Logo.d.ts","sourceRoot":"","sources":["../../../../../lib/@ecme/components/template/Logo.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"Logo.d.ts","sourceRoot":"","sources":["../../../../../lib/@ecme/components/template/Logo.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAGnD,UAAU,SAAU,SAAQ,WAAW;IACrC,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC7B;AAED,QAAA,MAAM,IAAI,GAAI,OAAO,SAAS,4CAiB7B,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
import type { AppConfig } from "./app.config";
|
|
3
|
+
interface AppConfigProviderProps {
|
|
4
|
+
config: Partial<AppConfig>;
|
|
5
|
+
children: ReactNode;
|
|
6
|
+
}
|
|
7
|
+
export declare const AppConfigProvider: ({ config, children, }: AppConfigProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const useAppConfig: () => AppConfig;
|
|
9
|
+
export {};
|
|
10
|
+
//# sourceMappingURL=AppConfigContext.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppConfigContext.d.ts","sourceRoot":"","sources":["../../../../lib/@ecme/configs/AppConfigContext.tsx"],"names":[],"mappings":"AAAA,OAAc,EAA6B,SAAS,EAAE,MAAM,OAAO,CAAC;AACpE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAK9C,UAAU,sBAAsB;IAC9B,MAAM,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;IAC3B,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED,eAAO,MAAM,iBAAiB,GAAI,uBAG/B,sBAAsB,4CAQxB,CAAC;AAEF,eAAO,MAAM,YAAY,iBAMxB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.config.d.ts","sourceRoot":"","sources":["../../../../lib/@ecme/configs/app.config.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,SAAS,GAAG;IACpB,SAAS,EAAE,MAAM,CAAA;IACjB,OAAO,EAAE,MAAM,CAAA;IACf,sBAAsB,EAAE,MAAM,CAAA;IAC9B,wBAAwB,EAAE,MAAM,CAAA;IAChC,MAAM,EAAE,MAAM,CAAA;IACd,0BAA0B,EAAE,cAAc,GAAG,gBAAgB,GAAG,SAAS,CAAA;IACzE,UAAU,EAAE,OAAO,CAAA;IACnB,oBAAoB,EAAE,OAAO,CAAA;IAC7B,eAAe,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"app.config.d.ts","sourceRoot":"","sources":["../../../../lib/@ecme/configs/app.config.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,SAAS,GAAG;IACpB,SAAS,EAAE,MAAM,CAAA;IACjB,OAAO,EAAE,MAAM,CAAA;IACf,sBAAsB,EAAE,MAAM,CAAA;IAC9B,wBAAwB,EAAE,MAAM,CAAA;IAChC,MAAM,EAAE,MAAM,CAAA;IACd,0BAA0B,EAAE,cAAc,GAAG,gBAAgB,GAAG,SAAS,CAAA;IACzE,UAAU,EAAE,OAAO,CAAA;IACnB,oBAAoB,EAAE,OAAO,CAAA;IAC7B,eAAe,EAAE,MAAM,CAAA;IACvB,UAAU,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,QAAA,MAAM,SAAS,EAAE,SAWhB,CAAA;AAED,eAAe,SAAS,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ticket.endpoint.config.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/configs/endpoints.config/Ticket/ticket.endpoint.config.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"ticket.endpoint.config.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/configs/endpoints.config/Ticket/ticket.endpoint.config.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,oBAAoB;;;;;CAKzB,CAAA;AAED,eAAe,oBAAoB,CAAA"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare function apiGetTickets(body: any): Promise<unknown>;
|
|
2
2
|
export declare function apiGetTicket(id: any): Promise<unknown>;
|
|
3
3
|
export declare function apiAddTicket(operacao: any, body: any): Promise<unknown>;
|
|
4
|
+
export declare function apiCancelTicket(body: any): Promise<unknown>;
|
|
4
5
|
//# sourceMappingURL=TicketService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TicketService.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/services/modules/Ticket/TicketService.ts"],"names":[],"mappings":"AAGA,wBAAsB,aAAa,CAAC,IAAI,KAAA,oBAMvC;AAED,wBAAgB,YAAY,CAAC,EAAE,KAAA,oBAK9B;AAED,wBAAsB,YAAY,CAAC,QAAQ,KAAA,EAAE,IAAI,KAAA,oBAMhD"}
|
|
1
|
+
{"version":3,"file":"TicketService.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/services/modules/Ticket/TicketService.ts"],"names":[],"mappings":"AAGA,wBAAsB,aAAa,CAAC,IAAI,KAAA,oBAMvC;AAED,wBAAgB,YAAY,CAAC,EAAE,KAAA,oBAK9B;AAED,wBAAsB,YAAY,CAAC,QAAQ,KAAA,EAAE,IAAI,KAAA,oBAMhD;AAED,wBAAsB,eAAe,CAAC,IAAI,KAAA,oBAMzC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../lib/base/services/modules/index.ts"],"names":[],"mappings":"AACA,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,MAAM,CAAC;AACrB,cAAc,WAAW,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../lib/base/services/modules/index.ts"],"names":[],"mappings":"AACA,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,MAAM,CAAC;AACrB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IFilterParams, TQueryResponse } from "@base/@types";
|
|
2
|
+
export declare function apiDeleteTemplateExampleObject(id: string): Promise<any>;
|
|
3
|
+
export declare function apiFindMonitorTemplateExample(body?: IFilterParams): Promise<TQueryResponse<any>>;
|
|
4
|
+
export declare function apiUpdateTemplateExampleObject(data?: any): Promise<TQueryResponse<any>>;
|
|
5
|
+
export declare function apiAddTemplateExampleObject(data?: any): Promise<TQueryResponse<any>>;
|
|
6
|
+
//# sourceMappingURL=ExampleObjectService.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ExampleObjectService.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/services/modules/template/example/ExampleObjectService.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAG7D,wBAAsB,8BAA8B,CAAC,EAAE,EAAE,MAAM,gBAK9D;AAED,wBAAsB,6BAA6B,CAAC,IAAI,CAAC,EAAE,aAAa,gCAMvE;AAED,wBAAsB,8BAA8B,CAAC,IAAI,CAAC,EAAE,GAAG,gCAM9D;AAED,wBAAsB,2BAA2B,CAAC,IAAI,CAAC,EAAE,GAAG,gCAM3D"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { IFilterParams, TQueryResponse } from "@base/@types";
|
|
2
|
+
export declare function apiGetTemplateExample(body?: IFilterParams): Promise<TQueryResponse<any>>;
|
|
3
|
+
export declare function apiUpdateTemplateExample(data?: any): Promise<TQueryResponse<any>>;
|
|
4
|
+
export declare function apiAddTemplateExample(data?: any): Promise<TQueryResponse<any>>;
|
|
5
|
+
//# sourceMappingURL=ExampleService.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ExampleService.d.ts","sourceRoot":"","sources":["../../../../../../../lib/base/services/modules/template/example/ExampleService.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAG7D,wBAAsB,qBAAqB,CAAC,IAAI,CAAC,EAAE,aAAa,gCAM/D;AAED,wBAAsB,wBAAwB,CAAC,IAAI,CAAC,EAAE,GAAG,gCAMxD;AAED,wBAAsB,qBAAqB,CAAC,IAAI,CAAC,EAAE,GAAG,gCAMrD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../lib/base/services/modules/template/index.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,0BAA0B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiposPagamentos.d.ts","sourceRoot":"","sources":["../../../../../lib/base/utils/constOptions/tiposPagamentos.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;
|
|
1
|
+
{"version":3,"file":"tiposPagamentos.d.ts","sourceRoot":"","sources":["../../../../../lib/base/utils/constOptions/tiposPagamentos.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;GA6C3B,CAAC"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
const
|
|
2
|
-
add: `${
|
|
3
|
-
findAll: `${
|
|
4
|
-
findOne: `${
|
|
1
|
+
const n = "/ticket/api/ticket", t = {
|
|
2
|
+
add: `${n}/`,
|
|
3
|
+
findAll: `${n}/find`,
|
|
4
|
+
findOne: `${n}/`,
|
|
5
|
+
cancel: `${n}/cancel`
|
|
5
6
|
};
|
|
6
7
|
export {
|
|
7
|
-
|
|
8
|
+
t as default
|
|
8
9
|
};
|
|
9
10
|
//# sourceMappingURL=ticket.endpoint.config.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ticket.endpoint.config.js","sources":["../../../../../lib/base/configs/endpoints.config/Ticket/ticket.endpoint.config.ts"],"sourcesContent":["const TICKET_API_PATH = '/ticket/api/ticket'\n\nconst ticketEndpointConfig = {\n add: `${TICKET_API_PATH}/`,\n findAll: `${TICKET_API_PATH}/find`,\n findOne: `${TICKET_API_PATH}/`,\n}\n\nexport default ticketEndpointConfig\n"],"names":["TICKET_API_PATH","ticketEndpointConfig"],"mappings":"AAAA,MAAMA,IAAkB,sBAElBC,IAAuB;AAAA,EACzB,KAAK,GAAGD,CAAe;AAAA,EACvB,SAAS,GAAGA,CAAe;AAAA,EAC3B,SAAS,GAAGA,CAAe;
|
|
1
|
+
{"version":3,"file":"ticket.endpoint.config.js","sources":["../../../../../lib/base/configs/endpoints.config/Ticket/ticket.endpoint.config.ts"],"sourcesContent":["const TICKET_API_PATH = '/ticket/api/ticket'\n\nconst ticketEndpointConfig = {\n add: `${TICKET_API_PATH}/`,\n findAll: `${TICKET_API_PATH}/find`,\n findOne: `${TICKET_API_PATH}/`,\n cancel: `${TICKET_API_PATH}/cancel`,\n}\n\nexport default ticketEndpointConfig\n"],"names":["TICKET_API_PATH","ticketEndpointConfig"],"mappings":"AAAA,MAAMA,IAAkB,sBAElBC,IAAuB;AAAA,EACzB,KAAK,GAAGD,CAAe;AAAA,EACvB,SAAS,GAAGA,CAAe;AAAA,EAC3B,SAAS,GAAGA,CAAe;AAAA,EAC3B,QAAQ,GAAGA,CAAe;AAC9B;"}
|
package/dist/base/index.js
CHANGED
|
@@ -4,25 +4,25 @@ import "./@types/index.js";
|
|
|
4
4
|
import "./hooks/index.js";
|
|
5
5
|
import "./services/index.js";
|
|
6
6
|
import "./utils/index.js";
|
|
7
|
-
import { addBaseLocaleResources as
|
|
7
|
+
import { addBaseLocaleResources as m } from "./locales/index.js";
|
|
8
8
|
import { default as n } from "./components/routes/RoutesBase.js";
|
|
9
9
|
import { ListColumn as f } from "./components/table/ListColumn.js";
|
|
10
10
|
import { default as x } from "./components/tools/NavFilter.js";
|
|
11
11
|
import { default as C } from "./components/views/ViewsBase.js";
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as
|
|
12
|
+
import { default as b } from "./configs/api.config.js";
|
|
13
|
+
import { default as M } from "./configs/endpoints.config/endpoints.navigation.js";
|
|
14
14
|
import { default as B } from "./configs/navigation.config/modules.navigation.js";
|
|
15
|
-
import { default as
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as
|
|
18
|
-
import { default as
|
|
19
|
-
import { default as
|
|
20
|
-
import { default as
|
|
21
|
-
import { default as
|
|
22
|
-
import { default as
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as
|
|
25
|
-
import { default as
|
|
15
|
+
import { default as L } from "./configs/navigation.config/modules.submenu/adm/submenu.adm.js";
|
|
16
|
+
import { default as E } from "./configs/navigation.config/modules.submenu/commodities/submenu.commodities.js";
|
|
17
|
+
import { default as S } from "./configs/navigation.config/modules.submenu/flux/submenu.flux.js";
|
|
18
|
+
import { default as A } from "./configs/navigation.config/modules.submenu/insumos/submenu.insumos.js";
|
|
19
|
+
import { default as V } from "./configs/navigation.config/modules.submenu/mock/submenu.mock.js";
|
|
20
|
+
import { default as q } from "./configs/navigation.config/modules.submenu/originacao/submenu.originacao.js";
|
|
21
|
+
import { default as I } from "./configs/navigation.config/modules.submenu/racao/submenu.racao.js";
|
|
22
|
+
import { default as j } from "./configs/navigation.config/modules.submenu/template/submenu.template.js";
|
|
23
|
+
import { default as k } from "./configs/navigation.config/submenu/adm/adm.submenu.js";
|
|
24
|
+
import { default as N } from "./configs/navigation.config/submenu/commodities/commodities.submenu.js";
|
|
25
|
+
import { default as H } from "./configs/navigation.config/submenu/example/cadastros.submenu.js";
|
|
26
26
|
import { default as J } from "./configs/navigation.config/submenu/example/template.submenu.js";
|
|
27
27
|
import { default as W } from "./configs/navigation.config/submenu/flux/flux.submenu.js";
|
|
28
28
|
import { default as Y } from "./configs/navigation.config/submenu/insumos/insumos.submenu.js";
|
|
@@ -30,145 +30,154 @@ import { default as _ } from "./configs/navigation.config/submenu/mock/mock.subm
|
|
|
30
30
|
import { default as oo } from "./configs/navigation.config/submenu/originacao/originacao.submenu.js";
|
|
31
31
|
import { default as ao } from "./configs/navigation.config/submenu/racao/racao.submenu.js";
|
|
32
32
|
import { default as to } from "./hooks/useList.js";
|
|
33
|
-
import { default as
|
|
34
|
-
import { default as
|
|
33
|
+
import { default as po } from "./hooks/dm/businessPartner/useBusinessPartnerList.js";
|
|
34
|
+
import { default as so } from "./hooks/dm/businessPartner/useBusinessPartnerClienteList.js";
|
|
35
35
|
import { default as uo } from "./hooks/dm/businessPartner/useBusinessPartnerFornecedorList.js";
|
|
36
36
|
import { default as lo } from "./hooks/dm/canalDistribuicao/useCanalDistribuicaoList.js";
|
|
37
37
|
import { default as co } from "./hooks/dm/canalDistribuicao/useCanalDistribuicaoByCodigoList.js";
|
|
38
38
|
import { default as Fo } from "./hooks/dm/centro/useCentroList.js";
|
|
39
|
-
import { default as
|
|
39
|
+
import { default as Po } from "./hooks/dm/centro/useCentroByCodigoList.js";
|
|
40
40
|
import { default as go } from "./hooks/dm/condicaoPagamento/useCondicaoPagamentoList.js";
|
|
41
|
-
import { default as
|
|
41
|
+
import { default as Do } from "./hooks/dm/escritorioVenda/useEscritorioVendaList.js";
|
|
42
42
|
import { default as Ro } from "./hooks/dm/escritorioVenda/useEscritorioVendaByCodigoList.js";
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { buildQueryString as
|
|
49
|
-
import { apiGetRoles as
|
|
50
|
-
import { apiAddCommoditiesContratoBiodiesel as
|
|
43
|
+
import { default as Oo } from "./hooks/dm/incoterms/useIncotermsList.js";
|
|
44
|
+
import { default as yo } from "./hooks/dm/produto/useProdutoList.js";
|
|
45
|
+
import { default as Uo } from "./hooks/dm/produto/useProdutoByGrupoProdutoList.js";
|
|
46
|
+
import { default as To } from "./hooks/dm/produto/useProdutoIsPrecificadoRacaoList.js";
|
|
47
|
+
import { default as Go } from "./hooks/dm/setorAtividade/useSetorAtividadeList.js";
|
|
48
|
+
import { buildQueryString as vo, generateQueryParams as jo, getBaseTableParams as Qo, getDefaultQueryParams as ko } from "./services/query.js";
|
|
49
|
+
import { apiGetRoles as No, apiGetUsers as wo } from "./services/modules/AdmService.js";
|
|
50
|
+
import { apiAddCommoditiesContratoBiodiesel as ho, apiDeleteCommoditiesContratoBiodiesel as Jo, apiFindMonitorCommoditiesContratoBiodiesel as Ko, apiGetCommoditiesContratoBiodiesel as Wo, apiUpdateCommoditiesContratoBiodiesel as Xo } from "./services/modules/commodities/contratoBiodiesel/ContratoBiodieselService.js";
|
|
51
51
|
import { apiAddCommoditiesPedidoVenda as Zo, apiDeleteCommoditiesPedidoVenda as _o, apiFindMonitorCommoditiesPedidoVenda as $o, apiGetCommoditiesPedidoVenda as oe, apiUpdateCommoditiesPedidoVenda as ee } from "./services/modules/commodities/pedidoVenda/PedidoVendaService.js";
|
|
52
|
-
import { apiFindDmBusinessPartner as ie, apiFindDmBusinessPartnerCliente as te, apiFindDmBusinessPartnerFornecedor as re, apiFindMonitorFornecedor as
|
|
53
|
-
import { apiFindDmCanalDistribuicao as
|
|
52
|
+
import { apiFindDmBusinessPartner as ie, apiFindDmBusinessPartnerCliente as te, apiFindDmBusinessPartnerFornecedor as re, apiFindMonitorFornecedor as pe } from "./services/modules/dm/businessPartner/BusinessPartnerService.js";
|
|
53
|
+
import { apiFindDmCanalDistribuicao as me, apiFindDmCanalDistribuicaoByCodigo as se } from "./services/modules/dm/canalDistribuicao/CanalDistribuicaoService.js";
|
|
54
54
|
import { apiFindDmCentro as ue, apiFindDmCentroByCodigo as fe, apiFindMonitorCentro as le } from "./services/modules/dm/centro/CentroService.js";
|
|
55
55
|
import { apiFindDmCondicaoPagamento as ce, apiFindMonitorCondicaoPagamento as Ce } from "./services/modules/dm/condicaoPagamento/CondicaoPagamentoService.js";
|
|
56
|
-
import { apiFindDmEscritorioVenda as
|
|
57
|
-
import { apiFindDmProduto as ge, apiFindDmProdutoByGrupoProduto as Be, apiFindDmProdutoIsPrecificadoRacao as
|
|
58
|
-
import { apiFindDmSetorAtividade as
|
|
59
|
-
import { apiFindMonitorCentroCusto as
|
|
60
|
-
import { apiFindMonitorImobilizado as
|
|
61
|
-
import { apiFindMonitorContaContabil as
|
|
62
|
-
import { apiFindMonitorDeposito as
|
|
63
|
-
import { apiFindUser as
|
|
64
|
-
import { apiCreateLocalRecepcao as
|
|
65
|
-
import { apiCreateRequisicaoCompra as
|
|
56
|
+
import { apiFindDmEscritorioVenda as be, apiFindDmEscritorioVendaByCodigo as Pe } from "./services/modules/dm/escritorioVenda/EscritorioVendaService.js";
|
|
57
|
+
import { apiFindDmProduto as ge, apiFindDmProdutoByGrupoProduto as Be, apiFindDmProdutoIsPrecificadoRacao as De, apiFindMonitorProduto as Le } from "./services/modules/dm/produto/ProdutoService.js";
|
|
58
|
+
import { apiFindDmSetorAtividade as Ee } from "./services/modules/dm/setorAtividade/SetorAtividadeService.js";
|
|
59
|
+
import { apiFindMonitorCentroCusto as Se } from "./services/modules/dm/centroCusto/CentroCustoService.js";
|
|
60
|
+
import { apiFindMonitorImobilizado as Ae } from "./services/modules/dm/imobilizado/ImobilizadoService.js";
|
|
61
|
+
import { apiFindMonitorContaContabil as Ve } from "./services/modules/dm/contaContabil/ContaContabilService.js";
|
|
62
|
+
import { apiFindMonitorDeposito as qe } from "./services/modules/dm/deposito/DepositoService.js";
|
|
63
|
+
import { apiFindUser as Ie } from "./services/modules/dm/user/UserService.js";
|
|
64
|
+
import { apiCreateLocalRecepcao as je, apiFindMonitorLocalRecepcao as Qe, apiFindOneLocalRecepcao as ke, apiUpdateLocalRecepcao as ze } from "./services/modules/compras/localRecepcao/LocalRecepcaoService.js";
|
|
65
|
+
import { apiCreateRequisicaoCompra as we, apiExecuteAcao as He, apiFindHistoricosMovimentacao as he, apiFindMonitorRequisicaoCompra as Je, apiFindOneRequisicaoCompra as Ke, apiUpdateRequisicaoCompra as We } from "./services/modules/compras/requisicaoCompra/RequisicaoCompraService.js";
|
|
66
66
|
import { apiFinalizaRequisicaoAgrupada as Ye, apiFindMonitorRequisicaoAgrupadaItem as Ze, apiFindMonitorRequisicaoAgrupadaRequisicao as _e } from "./services/modules/compras/requisicaoAgrupada/RequisicaoAgrupadaService.js";
|
|
67
67
|
import { apiCancelarCotacao as oa, apiFindMonitorCotacao as ea, apiFindOneCotacao as aa, apiUpdateCotacao as ia } from "./services/modules/compras/cotacao/CotacaoService.js";
|
|
68
|
-
import { apiCancelarOrdemCompra as ra, apiFindMonitorOrdemCompra as
|
|
69
|
-
import {
|
|
68
|
+
import { apiCancelarOrdemCompra as ra, apiFindMonitorOrdemCompra as pa, apiFindOneOrdemCompra as da, apiUpdateOrdemCompra as ma } from "./services/modules/compras/ordemCompra/OrdemCompraService.js";
|
|
69
|
+
import { apiAddTemplateExampleObject as na, apiDeleteTemplateExampleObject as ua, apiFindMonitorTemplateExample as fa, apiUpdateTemplateExampleObject as la } from "./services/modules/template/example/ExampleObjectService.js";
|
|
70
|
+
import { apiAddTemplateExample as ca, apiGetTemplateExample as Ca, apiUpdateTemplateExample as Fa } from "./services/modules/template/example/ExampleService.js";
|
|
71
|
+
import { getLogoFilename as Pa } from "./utils/logo.js";
|
|
70
72
|
export {
|
|
71
73
|
f as ListColumn,
|
|
72
74
|
x as NavFilter,
|
|
73
75
|
n as RoutesBase,
|
|
74
76
|
C as ViewsBase,
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
77
|
+
m as addBaseLocaleResources,
|
|
78
|
+
k as admSubmenu,
|
|
79
|
+
ho as apiAddCommoditiesContratoBiodiesel,
|
|
78
80
|
Zo as apiAddCommoditiesPedidoVenda,
|
|
81
|
+
ca as apiAddTemplateExample,
|
|
82
|
+
na as apiAddTemplateExampleObject,
|
|
79
83
|
oa as apiCancelarCotacao,
|
|
80
84
|
ra as apiCancelarOrdemCompra,
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
85
|
+
b as apiConfig,
|
|
86
|
+
je as apiCreateLocalRecepcao,
|
|
87
|
+
we as apiCreateRequisicaoCompra,
|
|
84
88
|
Jo as apiDeleteCommoditiesContratoBiodiesel,
|
|
85
89
|
_o as apiDeleteCommoditiesPedidoVenda,
|
|
86
|
-
|
|
90
|
+
ua as apiDeleteTemplateExampleObject,
|
|
91
|
+
He as apiExecuteAcao,
|
|
87
92
|
Ye as apiFinalizaRequisicaoAgrupada,
|
|
88
93
|
ie as apiFindDmBusinessPartner,
|
|
89
94
|
te as apiFindDmBusinessPartnerCliente,
|
|
90
95
|
re as apiFindDmBusinessPartnerFornecedor,
|
|
91
|
-
|
|
92
|
-
|
|
96
|
+
me as apiFindDmCanalDistribuicao,
|
|
97
|
+
se as apiFindDmCanalDistribuicaoByCodigo,
|
|
93
98
|
ue as apiFindDmCentro,
|
|
94
99
|
fe as apiFindDmCentroByCodigo,
|
|
95
100
|
ce as apiFindDmCondicaoPagamento,
|
|
96
|
-
|
|
97
|
-
|
|
101
|
+
be as apiFindDmEscritorioVenda,
|
|
102
|
+
Pe as apiFindDmEscritorioVendaByCodigo,
|
|
98
103
|
ge as apiFindDmProduto,
|
|
99
104
|
Be as apiFindDmProdutoByGrupoProduto,
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
105
|
+
De as apiFindDmProdutoIsPrecificadoRacao,
|
|
106
|
+
Ee as apiFindDmSetorAtividade,
|
|
107
|
+
he as apiFindHistoricosMovimentacao,
|
|
103
108
|
le as apiFindMonitorCentro,
|
|
104
|
-
|
|
109
|
+
Se as apiFindMonitorCentroCusto,
|
|
105
110
|
Ko as apiFindMonitorCommoditiesContratoBiodiesel,
|
|
106
111
|
$o as apiFindMonitorCommoditiesPedidoVenda,
|
|
107
112
|
Ce as apiFindMonitorCondicaoPagamento,
|
|
108
|
-
|
|
113
|
+
Ve as apiFindMonitorContaContabil,
|
|
109
114
|
ea as apiFindMonitorCotacao,
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
115
|
+
qe as apiFindMonitorDeposito,
|
|
116
|
+
pe as apiFindMonitorFornecedor,
|
|
117
|
+
Ae as apiFindMonitorImobilizado,
|
|
118
|
+
Qe as apiFindMonitorLocalRecepcao,
|
|
119
|
+
pa as apiFindMonitorOrdemCompra,
|
|
120
|
+
Le as apiFindMonitorProduto,
|
|
116
121
|
Ze as apiFindMonitorRequisicaoAgrupadaItem,
|
|
117
122
|
_e as apiFindMonitorRequisicaoAgrupadaRequisicao,
|
|
118
123
|
Je as apiFindMonitorRequisicaoCompra,
|
|
124
|
+
fa as apiFindMonitorTemplateExample,
|
|
119
125
|
aa as apiFindOneCotacao,
|
|
120
|
-
|
|
121
|
-
|
|
126
|
+
ke as apiFindOneLocalRecepcao,
|
|
127
|
+
da as apiFindOneOrdemCompra,
|
|
122
128
|
Ke as apiFindOneRequisicaoCompra,
|
|
123
|
-
|
|
129
|
+
Ie as apiFindUser,
|
|
124
130
|
Wo as apiGetCommoditiesContratoBiodiesel,
|
|
125
131
|
oe as apiGetCommoditiesPedidoVenda,
|
|
126
|
-
|
|
127
|
-
|
|
132
|
+
No as apiGetRoles,
|
|
133
|
+
Ca as apiGetTemplateExample,
|
|
134
|
+
wo as apiGetUsers,
|
|
128
135
|
Xo as apiUpdateCommoditiesContratoBiodiesel,
|
|
129
136
|
ee as apiUpdateCommoditiesPedidoVenda,
|
|
130
137
|
ia as apiUpdateCotacao,
|
|
131
|
-
|
|
132
|
-
|
|
138
|
+
ze as apiUpdateLocalRecepcao,
|
|
139
|
+
ma as apiUpdateOrdemCompra,
|
|
133
140
|
We as apiUpdateRequisicaoCompra,
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
141
|
+
Fa as apiUpdateTemplateExample,
|
|
142
|
+
la as apiUpdateTemplateExampleObject,
|
|
143
|
+
vo as buildQueryString,
|
|
144
|
+
H as cadastrosSubmenu,
|
|
145
|
+
N as commoditiesSubmenu,
|
|
146
|
+
M as endpointsConfig,
|
|
138
147
|
W as fluxSubmenu,
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
148
|
+
jo as generateQueryParams,
|
|
149
|
+
Qo as getBaseTableParams,
|
|
150
|
+
ko as getDefaultQueryParams,
|
|
151
|
+
Pa as getLogoFilename,
|
|
143
152
|
Y as insumosSubmenu,
|
|
144
153
|
_ as mockSubmenu,
|
|
145
154
|
B as modulesNavigation,
|
|
146
155
|
oo as originacaoSubmenu,
|
|
147
156
|
ao as racaoSubmenu,
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
157
|
+
L as subMenuAdm,
|
|
158
|
+
E as subMenuCommodities,
|
|
159
|
+
S as subMenuFlux,
|
|
160
|
+
A as subMenuInsumos,
|
|
161
|
+
V as subMenuMock,
|
|
162
|
+
q as subMenuOriginacao,
|
|
163
|
+
I as subMenuRacao,
|
|
164
|
+
j as subMenuTemplate,
|
|
156
165
|
J as templateSubmenu,
|
|
157
|
-
|
|
166
|
+
so as useBusinessPartnerClienteList,
|
|
158
167
|
uo as useBusinessPartnerFornecedorList,
|
|
159
|
-
|
|
168
|
+
po as useBusinessPartnerList,
|
|
160
169
|
co as useCanalDistribuicaoByCodigoList,
|
|
161
170
|
lo as useCanalDistribuicaoList,
|
|
162
|
-
|
|
171
|
+
Po as useCentroByCodigoList,
|
|
163
172
|
Fo as useCentroList,
|
|
164
173
|
go as useCondicaoPagamentoList,
|
|
165
174
|
Ro as useEscritorioVendaByCodigoList,
|
|
166
|
-
|
|
167
|
-
|
|
175
|
+
Do as useEscritorioVendaList,
|
|
176
|
+
Oo as useIncotermsList,
|
|
168
177
|
to as useList,
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
178
|
+
Uo as useProdutoByGrupoProdutoList,
|
|
179
|
+
To as useProdutoIsPrecificadoRacaoList,
|
|
180
|
+
yo as useProdutoList,
|
|
181
|
+
Go as useSetorAtividadeList
|
|
173
182
|
};
|
|
174
183
|
//# sourceMappingURL=index.js.map
|
package/dist/base/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { buildQueryString as e, generateQueryParams as r, getBaseTableParams as t, getDefaultQueryParams as
|
|
1
|
+
import { buildQueryString as e, generateQueryParams as r, getBaseTableParams as t, getDefaultQueryParams as p } from "./query.js";
|
|
2
2
|
import "./modules/index.js";
|
|
3
3
|
import { apiGetRoles as n, apiGetUsers as m } from "./modules/AdmService.js";
|
|
4
|
-
import { apiAddCommoditiesContratoBiodiesel as C, apiDeleteCommoditiesContratoBiodiesel as c, apiFindMonitorCommoditiesContratoBiodiesel as F, apiGetCommoditiesContratoBiodiesel as
|
|
5
|
-
import { apiAddCommoditiesPedidoVenda as
|
|
6
|
-
import { apiFindDmBusinessPartner as g, apiFindDmBusinessPartnerCliente as
|
|
7
|
-
import { apiFindDmCanalDistribuicao as A, apiFindDmCanalDistribuicaoByCodigo as
|
|
8
|
-
import { apiFindDmCentro as
|
|
9
|
-
import { apiFindDmCondicaoPagamento as
|
|
10
|
-
import { apiFindDmEscritorioVenda as
|
|
11
|
-
import { apiFindDmProduto as
|
|
4
|
+
import { apiAddCommoditiesContratoBiodiesel as C, apiDeleteCommoditiesContratoBiodiesel as c, apiFindMonitorCommoditiesContratoBiodiesel as F, apiGetCommoditiesContratoBiodiesel as l, apiUpdateCommoditiesContratoBiodiesel as x } from "./modules/commodities/contratoBiodiesel/ContratoBiodieselService.js";
|
|
5
|
+
import { apiAddCommoditiesPedidoVenda as f, apiDeleteCommoditiesPedidoVenda as D, apiFindMonitorCommoditiesPedidoVenda as P, apiGetCommoditiesPedidoVenda as M, apiUpdateCommoditiesPedidoVenda as R } from "./modules/commodities/pedidoVenda/PedidoVendaService.js";
|
|
6
|
+
import { apiFindDmBusinessPartner as g, apiFindDmBusinessPartnerCliente as O, apiFindDmBusinessPartnerFornecedor as E, apiFindMonitorFornecedor as U } from "./modules/dm/businessPartner/BusinessPartnerService.js";
|
|
7
|
+
import { apiFindDmCanalDistribuicao as A, apiFindDmCanalDistribuicaoByCodigo as q } from "./modules/dm/canalDistribuicao/CanalDistribuicaoService.js";
|
|
8
|
+
import { apiFindDmCentro as y, apiFindDmCentroByCodigo as V, apiFindMonitorCentro as G } from "./modules/dm/centro/CentroService.js";
|
|
9
|
+
import { apiFindDmCondicaoPagamento as j, apiFindMonitorCondicaoPagamento as I } from "./modules/dm/condicaoPagamento/CondicaoPagamentoService.js";
|
|
10
|
+
import { apiFindDmEscritorioVenda as v, apiFindDmEscritorioVendaByCodigo as z } from "./modules/dm/escritorioVenda/EscritorioVendaService.js";
|
|
11
|
+
import { apiFindDmProduto as H, apiFindDmProdutoByGrupoProduto as h, apiFindDmProdutoIsPrecificadoRacao as k, apiFindMonitorProduto as w } from "./modules/dm/produto/ProdutoService.js";
|
|
12
12
|
import { apiFindDmSetorAtividade as K } from "./modules/dm/setorAtividade/SetorAtividadeService.js";
|
|
13
13
|
import { apiFindMonitorCentroCusto as W } from "./modules/dm/centroCusto/CentroCustoService.js";
|
|
14
14
|
import { apiFindMonitorImobilizado as Y } from "./modules/dm/imobilizado/ImobilizadoService.js";
|
|
@@ -16,70 +16,79 @@ import { apiFindMonitorContaContabil as _ } from "./modules/dm/contaContabil/Con
|
|
|
16
16
|
import { apiFindMonitorDeposito as oo } from "./modules/dm/deposito/DepositoService.js";
|
|
17
17
|
import { apiFindUser as ao } from "./modules/dm/user/UserService.js";
|
|
18
18
|
import { apiCreateLocalRecepcao as ro, apiFindMonitorLocalRecepcao as to, apiFindOneLocalRecepcao as po, apiUpdateLocalRecepcao as no } from "./modules/compras/localRecepcao/LocalRecepcaoService.js";
|
|
19
|
-
import { apiCreateRequisicaoCompra as so, apiExecuteAcao as Co, apiFindHistoricosMovimentacao as co, apiFindMonitorRequisicaoCompra as Fo, apiFindOneRequisicaoCompra as
|
|
20
|
-
import { apiFinalizaRequisicaoAgrupada as
|
|
21
|
-
import { apiCancelarCotacao as Ro, apiFindMonitorCotacao as Bo, apiFindOneCotacao as go, apiUpdateCotacao as
|
|
22
|
-
import { apiCancelarOrdemCompra as Uo, apiFindMonitorOrdemCompra as
|
|
19
|
+
import { apiCreateRequisicaoCompra as so, apiExecuteAcao as Co, apiFindHistoricosMovimentacao as co, apiFindMonitorRequisicaoCompra as Fo, apiFindOneRequisicaoCompra as lo, apiUpdateRequisicaoCompra as xo } from "./modules/compras/requisicaoCompra/RequisicaoCompraService.js";
|
|
20
|
+
import { apiFinalizaRequisicaoAgrupada as fo, apiFindMonitorRequisicaoAgrupadaItem as Do, apiFindMonitorRequisicaoAgrupadaRequisicao as Po } from "./modules/compras/requisicaoAgrupada/RequisicaoAgrupadaService.js";
|
|
21
|
+
import { apiCancelarCotacao as Ro, apiFindMonitorCotacao as Bo, apiFindOneCotacao as go, apiUpdateCotacao as Oo } from "./modules/compras/cotacao/CotacaoService.js";
|
|
22
|
+
import { apiCancelarOrdemCompra as Uo, apiFindMonitorOrdemCompra as bo, apiFindOneOrdemCompra as Ao, apiUpdateOrdemCompra as qo } from "./modules/compras/ordemCompra/OrdemCompraService.js";
|
|
23
|
+
import { apiAddTemplateExampleObject as yo, apiDeleteTemplateExampleObject as Vo, apiFindMonitorTemplateExample as Go, apiUpdateTemplateExampleObject as Lo } from "./modules/template/example/ExampleObjectService.js";
|
|
24
|
+
import { apiAddTemplateExample as Io, apiGetTemplateExample as Qo, apiUpdateTemplateExample as vo } from "./modules/template/example/ExampleService.js";
|
|
23
25
|
export {
|
|
24
26
|
C as apiAddCommoditiesContratoBiodiesel,
|
|
25
|
-
|
|
27
|
+
f as apiAddCommoditiesPedidoVenda,
|
|
28
|
+
Io as apiAddTemplateExample,
|
|
29
|
+
yo as apiAddTemplateExampleObject,
|
|
26
30
|
Ro as apiCancelarCotacao,
|
|
27
31
|
Uo as apiCancelarOrdemCompra,
|
|
28
32
|
ro as apiCreateLocalRecepcao,
|
|
29
33
|
so as apiCreateRequisicaoCompra,
|
|
30
34
|
c as apiDeleteCommoditiesContratoBiodiesel,
|
|
31
35
|
D as apiDeleteCommoditiesPedidoVenda,
|
|
36
|
+
Vo as apiDeleteTemplateExampleObject,
|
|
32
37
|
Co as apiExecuteAcao,
|
|
33
|
-
|
|
38
|
+
fo as apiFinalizaRequisicaoAgrupada,
|
|
34
39
|
g as apiFindDmBusinessPartner,
|
|
35
|
-
|
|
36
|
-
|
|
40
|
+
O as apiFindDmBusinessPartnerCliente,
|
|
41
|
+
E as apiFindDmBusinessPartnerFornecedor,
|
|
37
42
|
A as apiFindDmCanalDistribuicao,
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
q as apiFindDmCanalDistribuicaoByCodigo,
|
|
44
|
+
y as apiFindDmCentro,
|
|
45
|
+
V as apiFindDmCentroByCodigo,
|
|
46
|
+
j as apiFindDmCondicaoPagamento,
|
|
47
|
+
v as apiFindDmEscritorioVenda,
|
|
48
|
+
z as apiFindDmEscritorioVendaByCodigo,
|
|
49
|
+
H as apiFindDmProduto,
|
|
50
|
+
h as apiFindDmProdutoByGrupoProduto,
|
|
46
51
|
k as apiFindDmProdutoIsPrecificadoRacao,
|
|
47
52
|
K as apiFindDmSetorAtividade,
|
|
48
53
|
co as apiFindHistoricosMovimentacao,
|
|
49
|
-
|
|
54
|
+
G as apiFindMonitorCentro,
|
|
50
55
|
W as apiFindMonitorCentroCusto,
|
|
51
56
|
F as apiFindMonitorCommoditiesContratoBiodiesel,
|
|
52
57
|
P as apiFindMonitorCommoditiesPedidoVenda,
|
|
53
|
-
|
|
58
|
+
I as apiFindMonitorCondicaoPagamento,
|
|
54
59
|
_ as apiFindMonitorContaContabil,
|
|
55
60
|
Bo as apiFindMonitorCotacao,
|
|
56
61
|
oo as apiFindMonitorDeposito,
|
|
57
62
|
U as apiFindMonitorFornecedor,
|
|
58
63
|
Y as apiFindMonitorImobilizado,
|
|
59
64
|
to as apiFindMonitorLocalRecepcao,
|
|
60
|
-
|
|
65
|
+
bo as apiFindMonitorOrdemCompra,
|
|
61
66
|
w as apiFindMonitorProduto,
|
|
62
67
|
Do as apiFindMonitorRequisicaoAgrupadaItem,
|
|
63
68
|
Po as apiFindMonitorRequisicaoAgrupadaRequisicao,
|
|
64
69
|
Fo as apiFindMonitorRequisicaoCompra,
|
|
70
|
+
Go as apiFindMonitorTemplateExample,
|
|
65
71
|
go as apiFindOneCotacao,
|
|
66
72
|
po as apiFindOneLocalRecepcao,
|
|
67
73
|
Ao as apiFindOneOrdemCompra,
|
|
68
|
-
|
|
74
|
+
lo as apiFindOneRequisicaoCompra,
|
|
69
75
|
ao as apiFindUser,
|
|
70
|
-
|
|
76
|
+
l as apiGetCommoditiesContratoBiodiesel,
|
|
71
77
|
M as apiGetCommoditiesPedidoVenda,
|
|
72
78
|
n as apiGetRoles,
|
|
79
|
+
Qo as apiGetTemplateExample,
|
|
73
80
|
m as apiGetUsers,
|
|
74
|
-
|
|
81
|
+
x as apiUpdateCommoditiesContratoBiodiesel,
|
|
75
82
|
R as apiUpdateCommoditiesPedidoVenda,
|
|
76
|
-
|
|
83
|
+
Oo as apiUpdateCotacao,
|
|
77
84
|
no as apiUpdateLocalRecepcao,
|
|
78
|
-
|
|
79
|
-
|
|
85
|
+
qo as apiUpdateOrdemCompra,
|
|
86
|
+
xo as apiUpdateRequisicaoCompra,
|
|
87
|
+
vo as apiUpdateTemplateExample,
|
|
88
|
+
Lo as apiUpdateTemplateExampleObject,
|
|
80
89
|
e as buildQueryString,
|
|
81
90
|
r as generateQueryParams,
|
|
82
91
|
t as getBaseTableParams,
|
|
83
|
-
|
|
92
|
+
p as getDefaultQueryParams
|
|
84
93
|
};
|
|
85
94
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,28 +1,36 @@
|
|
|
1
1
|
import i from "../../../configs/endpoints.config/Ticket/ticket.endpoint.config.js";
|
|
2
2
|
import e from "../../../../@ecme/services/ApiService.js";
|
|
3
|
-
async function
|
|
3
|
+
async function c(t) {
|
|
4
4
|
return e.fetchDataWithAxios({
|
|
5
5
|
url: i.findAll,
|
|
6
6
|
method: "post",
|
|
7
7
|
data: t
|
|
8
8
|
});
|
|
9
9
|
}
|
|
10
|
-
function
|
|
10
|
+
function r(t) {
|
|
11
11
|
return e.fetchDataWithAxios({
|
|
12
12
|
url: i.findOne + t,
|
|
13
13
|
method: "get"
|
|
14
14
|
});
|
|
15
15
|
}
|
|
16
|
-
async function d(t,
|
|
16
|
+
async function d(t, a) {
|
|
17
17
|
return e.fetchDataWithAxios({
|
|
18
18
|
url: i.add + t,
|
|
19
19
|
method: "post",
|
|
20
|
-
data:
|
|
20
|
+
data: a
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
async function f(t) {
|
|
24
|
+
return e.fetchDataWithAxios({
|
|
25
|
+
url: i.cancel,
|
|
26
|
+
method: "post",
|
|
27
|
+
data: t
|
|
21
28
|
});
|
|
22
29
|
}
|
|
23
30
|
export {
|
|
24
31
|
d as apiAddTicket,
|
|
25
|
-
|
|
26
|
-
r as
|
|
32
|
+
f as apiCancelTicket,
|
|
33
|
+
r as apiGetTicket,
|
|
34
|
+
c as apiGetTickets
|
|
27
35
|
};
|
|
28
36
|
//# sourceMappingURL=TicketService.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TicketService.js","sources":["../../../../../lib/base/services/modules/Ticket/TicketService.ts"],"sourcesContent":["import ticketEndpointConfig from '@base/configs/endpoints.config/Ticket/ticket.endpoint.config'\nimport ApiService from '@/services/ApiService'\n\nexport async function apiGetTickets(body) {\n return ApiService.fetchDataWithAxios({\n url: ticketEndpointConfig.findAll,\n method: 'post',\n data: body,\n })\n}\n\nexport function apiGetTicket(id) {\n return ApiService.fetchDataWithAxios({\n url: ticketEndpointConfig.findOne + id,\n method: 'get',\n })\n}\n\nexport async function apiAddTicket(operacao, body) {\n return ApiService.fetchDataWithAxios({\n url: ticketEndpointConfig.add + operacao,\n method: 'post',\n data: body,\n })\n}"],"names":["apiGetTickets","body","ApiService","ticketEndpointConfig","apiGetTicket","id","apiAddTicket","operacao"],"mappings":";;AAGA,eAAsBA,EAAcC,GAAM;AACtC,SAAOC,EAAW,mBAAmB;AAAA,IACjC,KAAKC,EAAqB;AAAA,IAC1B,QAAQ;AAAA,IACR,MAAMF;AAAA,EAAA,CACT;AACL;AAEO,SAASG,EAAaC,GAAI;AAC7B,SAAOH,EAAW,mBAAmB;AAAA,IACjC,KAAKC,EAAqB,UAAUE;AAAA,IACpC,QAAQ;AAAA,EAAA,CACX;AACL;AAEA,eAAsBC,EAAaC,GAAUN,GAAM;AAC/C,SAAOC,EAAW,mBAAmB;AAAA,IACjC,KAAKC,EAAqB,MAAMI;AAAA,IAChC,QAAQ;AAAA,IACR,MAAMN;AAAA,EAAA,CACT;AACL;"}
|
|
1
|
+
{"version":3,"file":"TicketService.js","sources":["../../../../../lib/base/services/modules/Ticket/TicketService.ts"],"sourcesContent":["import ticketEndpointConfig from '@base/configs/endpoints.config/Ticket/ticket.endpoint.config'\nimport ApiService from '@/services/ApiService'\n\nexport async function apiGetTickets(body) {\n return ApiService.fetchDataWithAxios({\n url: ticketEndpointConfig.findAll,\n method: 'post',\n data: body,\n })\n}\n\nexport function apiGetTicket(id) {\n return ApiService.fetchDataWithAxios({\n url: ticketEndpointConfig.findOne + id,\n method: 'get',\n })\n}\n\nexport async function apiAddTicket(operacao, body) {\n return ApiService.fetchDataWithAxios({\n url: ticketEndpointConfig.add + operacao,\n method: 'post',\n data: body,\n })\n}\n\nexport async function apiCancelTicket(body) {\n return ApiService.fetchDataWithAxios({\n url: ticketEndpointConfig.cancel,\n method: 'post',\n data: body,\n })\n}"],"names":["apiGetTickets","body","ApiService","ticketEndpointConfig","apiGetTicket","id","apiAddTicket","operacao","apiCancelTicket"],"mappings":";;AAGA,eAAsBA,EAAcC,GAAM;AACtC,SAAOC,EAAW,mBAAmB;AAAA,IACjC,KAAKC,EAAqB;AAAA,IAC1B,QAAQ;AAAA,IACR,MAAMF;AAAA,EAAA,CACT;AACL;AAEO,SAASG,EAAaC,GAAI;AAC7B,SAAOH,EAAW,mBAAmB;AAAA,IACjC,KAAKC,EAAqB,UAAUE;AAAA,IACpC,QAAQ;AAAA,EAAA,CACX;AACL;AAEA,eAAsBC,EAAaC,GAAUN,GAAM;AAC/C,SAAOC,EAAW,mBAAmB;AAAA,IACjC,KAAKC,EAAqB,MAAMI;AAAA,IAChC,QAAQ;AAAA,IACR,MAAMN;AAAA,EAAA,CACT;AACL;AAEA,eAAsBO,EAAgBP,GAAM;AACxC,SAAOC,EAAW,mBAAmB;AAAA,IACjC,KAAKC,EAAqB;AAAA,IAC1B,QAAQ;AAAA,IACR,MAAMF;AAAA,EAAA,CACT;AACL;"}
|
|
@@ -1,82 +1,92 @@
|
|
|
1
|
-
import { apiGetRoles as
|
|
1
|
+
import { apiGetRoles as r, apiGetUsers as d } from "./AdmService.js";
|
|
2
2
|
import "./commodities/index.js";
|
|
3
3
|
import "./dm/index.js";
|
|
4
4
|
import "./compras/index.js";
|
|
5
|
-
import
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
5
|
+
import "./template/index.js";
|
|
6
|
+
import { apiAddCommoditiesContratoBiodiesel as m, apiDeleteCommoditiesContratoBiodiesel as C, apiFindMonitorCommoditiesContratoBiodiesel as s, apiGetCommoditiesContratoBiodiesel as c, apiUpdateCommoditiesContratoBiodiesel as F } from "./commodities/contratoBiodiesel/ContratoBiodieselService.js";
|
|
7
|
+
import { apiAddCommoditiesPedidoVenda as x, apiDeleteCommoditiesPedidoVenda as u, apiFindMonitorCommoditiesPedidoVenda as f, apiGetCommoditiesPedidoVenda as D, apiUpdateCommoditiesPedidoVenda as M } from "./commodities/pedidoVenda/PedidoVendaService.js";
|
|
8
|
+
import { apiFindDmBusinessPartner as R, apiFindDmBusinessPartnerCliente as B, apiFindDmBusinessPartnerFornecedor as O, apiFindMonitorFornecedor as E } from "./dm/businessPartner/BusinessPartnerService.js";
|
|
9
|
+
import { apiFindDmCanalDistribuicao as A, apiFindDmCanalDistribuicaoByCodigo as g } from "./dm/canalDistribuicao/CanalDistribuicaoService.js";
|
|
10
|
+
import { apiFindDmCentro as b, apiFindDmCentroByCodigo as T, apiFindMonitorCentro as V } from "./dm/centro/CentroService.js";
|
|
11
|
+
import { apiFindDmCondicaoPagamento as y, apiFindMonitorCondicaoPagamento as L } from "./dm/condicaoPagamento/CondicaoPagamentoService.js";
|
|
12
|
+
import { apiFindDmEscritorioVenda as I, apiFindDmEscritorioVendaByCodigo as v } from "./dm/escritorioVenda/EscritorioVendaService.js";
|
|
13
|
+
import { apiFindDmProduto as H, apiFindDmProdutoByGrupoProduto as S, apiFindDmProdutoIsPrecificadoRacao as h, apiFindMonitorProduto as k } from "./dm/produto/ProdutoService.js";
|
|
13
14
|
import { apiFindDmSetorAtividade as J } from "./dm/setorAtividade/SetorAtividadeService.js";
|
|
14
15
|
import { apiFindMonitorCentroCusto as N } from "./dm/centroCusto/CentroCustoService.js";
|
|
15
|
-
import { apiFindMonitorImobilizado as
|
|
16
|
-
import { apiFindMonitorContaContabil as
|
|
17
|
-
import { apiFindMonitorDeposito as
|
|
18
|
-
import { apiFindUser as
|
|
19
|
-
import { apiCreateLocalRecepcao as
|
|
20
|
-
import { apiCreateRequisicaoCompra as
|
|
21
|
-
import { apiFinalizaRequisicaoAgrupada as
|
|
22
|
-
import { apiCancelarCotacao as
|
|
23
|
-
import { apiCancelarOrdemCompra as
|
|
16
|
+
import { apiFindMonitorImobilizado as W } from "./dm/imobilizado/ImobilizadoService.js";
|
|
17
|
+
import { apiFindMonitorContaContabil as Y } from "./dm/contaContabil/ContaContabilService.js";
|
|
18
|
+
import { apiFindMonitorDeposito as _ } from "./dm/deposito/DepositoService.js";
|
|
19
|
+
import { apiFindUser as oo } from "./dm/user/UserService.js";
|
|
20
|
+
import { apiCreateLocalRecepcao as ao, apiFindMonitorLocalRecepcao as eo, apiFindOneLocalRecepcao as po, apiUpdateLocalRecepcao as to } from "./compras/localRecepcao/LocalRecepcaoService.js";
|
|
21
|
+
import { apiCreateRequisicaoCompra as no, apiExecuteAcao as mo, apiFindHistoricosMovimentacao as Co, apiFindMonitorRequisicaoCompra as so, apiFindOneRequisicaoCompra as co, apiUpdateRequisicaoCompra as Fo } from "./compras/requisicaoCompra/RequisicaoCompraService.js";
|
|
22
|
+
import { apiFinalizaRequisicaoAgrupada as xo, apiFindMonitorRequisicaoAgrupadaItem as uo, apiFindMonitorRequisicaoAgrupadaRequisicao as fo } from "./compras/requisicaoAgrupada/RequisicaoAgrupadaService.js";
|
|
23
|
+
import { apiCancelarCotacao as Mo, apiFindMonitorCotacao as Po, apiFindOneCotacao as Ro, apiUpdateCotacao as Bo } from "./compras/cotacao/CotacaoService.js";
|
|
24
|
+
import { apiCancelarOrdemCompra as Eo, apiFindMonitorOrdemCompra as Uo, apiFindOneOrdemCompra as Ao, apiUpdateOrdemCompra as go } from "./compras/ordemCompra/OrdemCompraService.js";
|
|
25
|
+
import { apiAddTemplateExampleObject as bo, apiDeleteTemplateExampleObject as To, apiFindMonitorTemplateExample as Vo, apiUpdateTemplateExampleObject as Go } from "./template/example/ExampleObjectService.js";
|
|
26
|
+
import { apiAddTemplateExample as Lo, apiGetTemplateExample as jo, apiUpdateTemplateExample as Io } from "./template/example/ExampleService.js";
|
|
24
27
|
export {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
28
|
+
m as apiAddCommoditiesContratoBiodiesel,
|
|
29
|
+
x as apiAddCommoditiesPedidoVenda,
|
|
30
|
+
Lo as apiAddTemplateExample,
|
|
31
|
+
bo as apiAddTemplateExampleObject,
|
|
32
|
+
Mo as apiCancelarCotacao,
|
|
33
|
+
Eo as apiCancelarOrdemCompra,
|
|
34
|
+
ao as apiCreateLocalRecepcao,
|
|
35
|
+
no as apiCreateRequisicaoCompra,
|
|
36
|
+
C as apiDeleteCommoditiesContratoBiodiesel,
|
|
37
|
+
u as apiDeleteCommoditiesPedidoVenda,
|
|
38
|
+
To as apiDeleteTemplateExampleObject,
|
|
39
|
+
mo as apiExecuteAcao,
|
|
40
|
+
xo as apiFinalizaRequisicaoAgrupada,
|
|
41
|
+
R as apiFindDmBusinessPartner,
|
|
42
|
+
B as apiFindDmBusinessPartnerCliente,
|
|
43
|
+
O as apiFindDmBusinessPartnerFornecedor,
|
|
44
|
+
A as apiFindDmCanalDistribuicao,
|
|
45
|
+
g as apiFindDmCanalDistribuicaoByCodigo,
|
|
46
|
+
b as apiFindDmCentro,
|
|
47
|
+
T as apiFindDmCentroByCodigo,
|
|
48
|
+
y as apiFindDmCondicaoPagamento,
|
|
49
|
+
I as apiFindDmEscritorioVenda,
|
|
50
|
+
v as apiFindDmEscritorioVendaByCodigo,
|
|
51
|
+
H as apiFindDmProduto,
|
|
52
|
+
S as apiFindDmProdutoByGrupoProduto,
|
|
53
|
+
h as apiFindDmProdutoIsPrecificadoRacao,
|
|
48
54
|
J as apiFindDmSetorAtividade,
|
|
49
|
-
|
|
50
|
-
|
|
55
|
+
Co as apiFindHistoricosMovimentacao,
|
|
56
|
+
V as apiFindMonitorCentro,
|
|
51
57
|
N as apiFindMonitorCentroCusto,
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
58
|
+
s as apiFindMonitorCommoditiesContratoBiodiesel,
|
|
59
|
+
f as apiFindMonitorCommoditiesPedidoVenda,
|
|
60
|
+
L as apiFindMonitorCondicaoPagamento,
|
|
61
|
+
Y as apiFindMonitorContaContabil,
|
|
62
|
+
Po as apiFindMonitorCotacao,
|
|
63
|
+
_ as apiFindMonitorDeposito,
|
|
64
|
+
E as apiFindMonitorFornecedor,
|
|
65
|
+
W as apiFindMonitorImobilizado,
|
|
66
|
+
eo as apiFindMonitorLocalRecepcao,
|
|
67
|
+
Uo as apiFindMonitorOrdemCompra,
|
|
62
68
|
k as apiFindMonitorProduto,
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
69
|
+
uo as apiFindMonitorRequisicaoAgrupadaItem,
|
|
70
|
+
fo as apiFindMonitorRequisicaoAgrupadaRequisicao,
|
|
71
|
+
so as apiFindMonitorRequisicaoCompra,
|
|
72
|
+
Vo as apiFindMonitorTemplateExample,
|
|
73
|
+
Ro as apiFindOneCotacao,
|
|
74
|
+
po as apiFindOneLocalRecepcao,
|
|
75
|
+
Ao as apiFindOneOrdemCompra,
|
|
76
|
+
co as apiFindOneRequisicaoCompra,
|
|
77
|
+
oo as apiFindUser,
|
|
78
|
+
c as apiGetCommoditiesContratoBiodiesel,
|
|
79
|
+
D as apiGetCommoditiesPedidoVenda,
|
|
80
|
+
r as apiGetRoles,
|
|
81
|
+
jo as apiGetTemplateExample,
|
|
82
|
+
d as apiGetUsers,
|
|
83
|
+
F as apiUpdateCommoditiesContratoBiodiesel,
|
|
84
|
+
M as apiUpdateCommoditiesPedidoVenda,
|
|
85
|
+
Bo as apiUpdateCotacao,
|
|
86
|
+
to as apiUpdateLocalRecepcao,
|
|
87
|
+
go as apiUpdateOrdemCompra,
|
|
88
|
+
Fo as apiUpdateRequisicaoCompra,
|
|
89
|
+
Io as apiUpdateTemplateExample,
|
|
90
|
+
Go as apiUpdateTemplateExampleObject
|
|
81
91
|
};
|
|
82
92
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import t from "../../../../../@ecme/services/ApiService.js";
|
|
2
|
+
import "../../../../configs/index.js";
|
|
3
|
+
import a from "../../../../configs/endpoints.config/endpoints.navigation.js";
|
|
4
|
+
async function n(e) {
|
|
5
|
+
return t.fetchDataWithAxios({
|
|
6
|
+
url: `${a.template.exampleObject.delete}/${e}`,
|
|
7
|
+
method: "delete"
|
|
8
|
+
});
|
|
9
|
+
}
|
|
10
|
+
async function m(e) {
|
|
11
|
+
return t.fetchDataWithAxios({
|
|
12
|
+
url: a.template.exampleObject.findMonitor.endpoint,
|
|
13
|
+
method: "post",
|
|
14
|
+
data: e
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
async function l(e) {
|
|
18
|
+
return t.fetchDataWithAxios({
|
|
19
|
+
url: a.template.example.update.endpoint,
|
|
20
|
+
method: "post",
|
|
21
|
+
data: e
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
async function r(e) {
|
|
25
|
+
return t.fetchDataWithAxios({
|
|
26
|
+
url: a.template.example.add.endpoint,
|
|
27
|
+
method: "post",
|
|
28
|
+
data: e
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
export {
|
|
32
|
+
r as apiAddTemplateExampleObject,
|
|
33
|
+
n as apiDeleteTemplateExampleObject,
|
|
34
|
+
m as apiFindMonitorTemplateExample,
|
|
35
|
+
l as apiUpdateTemplateExampleObject
|
|
36
|
+
};
|
|
37
|
+
//# sourceMappingURL=ExampleObjectService.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ExampleObjectService.js","sources":["../../../../../../lib/base/services/modules/template/example/ExampleObjectService.ts"],"sourcesContent":["import ApiService from \"@/services/ApiService\";\nimport { IFilterParams, TQueryResponse } from \"@base/@types\";\nimport { endpointsConfig } from \"@base/configs\";\n\nexport async function apiDeleteTemplateExampleObject(id: string) {\n return ApiService.fetchDataWithAxios<any>({\n url: `${endpointsConfig.template.exampleObject.delete}/${id}`,\n method: \"delete\",\n });\n}\n\nexport async function apiFindMonitorTemplateExample(body?: IFilterParams) {\n return ApiService.fetchDataWithAxios<TQueryResponse<any>>({\n url: endpointsConfig.template.exampleObject.findMonitor.endpoint,\n method: \"post\",\n data: body,\n });\n}\n\nexport async function apiUpdateTemplateExampleObject(data?: any) {\n return ApiService.fetchDataWithAxios<TQueryResponse<any>>({\n url: endpointsConfig.template.example.update.endpoint,\n method: \"post\",\n data,\n });\n}\n\nexport async function apiAddTemplateExampleObject(data?: any) {\n return ApiService.fetchDataWithAxios<TQueryResponse<any>>({\n url: endpointsConfig.template.example.add.endpoint,\n method: \"post\",\n data,\n });\n}\n"],"names":["apiDeleteTemplateExampleObject","id","ApiService","endpointsConfig","apiFindMonitorTemplateExample","body","apiUpdateTemplateExampleObject","data","apiAddTemplateExampleObject"],"mappings":";;;AAIA,eAAsBA,EAA+BC,GAAY;AAC/D,SAAOC,EAAW,mBAAwB;AAAA,IACxC,KAAK,GAAGC,EAAgB,SAAS,cAAc,MAAM,IAAIF,CAAE;AAAA,IAC3D,QAAQ;AAAA,EAAA,CACT;AACH;AAEA,eAAsBG,EAA8BC,GAAsB;AACxE,SAAOH,EAAW,mBAAwC;AAAA,IACxD,KAAKC,EAAgB,SAAS,cAAc,YAAY;AAAA,IACxD,QAAQ;AAAA,IACR,MAAME;AAAA,EAAA,CACP;AACH;AAEA,eAAsBC,EAA+BC,GAAY;AAC/D,SAAOL,EAAW,mBAAwC;AAAA,IACxD,KAAKC,EAAgB,SAAS,QAAQ,OAAO;AAAA,IAC7C,QAAQ;AAAA,IACR,MAAAI;AAAA,EAAA,CACD;AACH;AAEA,eAAsBC,EAA4BD,GAAY;AAC5D,SAAOL,EAAW,mBAAwC;AAAA,IACxD,KAAKC,EAAgB,SAAS,QAAQ,IAAI;AAAA,IAC1C,QAAQ;AAAA,IACR,MAAAI;AAAA,EAAA,CACD;AACH;"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import e from "../../../../../@ecme/services/ApiService.js";
|
|
2
|
+
import "../../../../configs/index.js";
|
|
3
|
+
import a from "../../../../configs/endpoints.config/endpoints.navigation.js";
|
|
4
|
+
async function n(t) {
|
|
5
|
+
return e.fetchDataWithAxios({
|
|
6
|
+
url: a.template.example.findMonitor.endpoint,
|
|
7
|
+
method: "post",
|
|
8
|
+
data: t
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
async function m(t) {
|
|
12
|
+
return e.fetchDataWithAxios({
|
|
13
|
+
url: a.template.example.update.endpoint,
|
|
14
|
+
method: "post",
|
|
15
|
+
data: t
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
async function r(t) {
|
|
19
|
+
return e.fetchDataWithAxios({
|
|
20
|
+
url: a.template.example.add.endpoint,
|
|
21
|
+
method: "post",
|
|
22
|
+
data: t
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
export {
|
|
26
|
+
r as apiAddTemplateExample,
|
|
27
|
+
n as apiGetTemplateExample,
|
|
28
|
+
m as apiUpdateTemplateExample
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=ExampleService.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ExampleService.js","sources":["../../../../../../lib/base/services/modules/template/example/ExampleService.ts"],"sourcesContent":["import ApiService from \"@/services/ApiService\";\nimport { IFilterParams, TQueryResponse } from \"@base/@types\";\nimport { endpointsConfig } from \"@base/configs\";\n\nexport async function apiGetTemplateExample(body?: IFilterParams) {\n return ApiService.fetchDataWithAxios<TQueryResponse<any>>({\n url: endpointsConfig.template.example.findMonitor.endpoint,\n method: \"post\",\n data: body,\n });\n}\n\nexport async function apiUpdateTemplateExample(data?: any) {\n return ApiService.fetchDataWithAxios<TQueryResponse<any>>({\n url: endpointsConfig.template.example.update.endpoint,\n method: \"post\",\n data,\n });\n}\n\nexport async function apiAddTemplateExample(data?: any) {\n return ApiService.fetchDataWithAxios<TQueryResponse<any>>({\n url: endpointsConfig.template.example.add.endpoint,\n method: \"post\",\n data,\n });\n}\n"],"names":["apiGetTemplateExample","body","ApiService","endpointsConfig","apiUpdateTemplateExample","data","apiAddTemplateExample"],"mappings":";;;AAIA,eAAsBA,EAAsBC,GAAsB;AAChE,SAAOC,EAAW,mBAAwC;AAAA,IACxD,KAAKC,EAAgB,SAAS,QAAQ,YAAY;AAAA,IAClD,QAAQ;AAAA,IACR,MAAMF;AAAA,EAAA,CACP;AACH;AAEA,eAAsBG,EAAyBC,GAAY;AACzD,SAAOH,EAAW,mBAAwC;AAAA,IACxD,KAAKC,EAAgB,SAAS,QAAQ,OAAO;AAAA,IAC7C,QAAQ;AAAA,IACR,MAAAE;AAAA,EAAA,CACD;AACH;AAEA,eAAsBC,EAAsBD,GAAY;AACtD,SAAOH,EAAW,mBAAwC;AAAA,IACxD,KAAKC,EAAgB,SAAS,QAAQ,IAAI;AAAA,IAC1C,QAAQ;AAAA,IACR,MAAAE;AAAA,EAAA,CACD;AACH;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { apiAddTemplateExampleObject as a, apiDeleteTemplateExampleObject as t, apiFindMonitorTemplateExample as m, apiUpdateTemplateExampleObject as l } from "./example/ExampleObjectService.js";
|
|
2
|
+
import { apiAddTemplateExample as x, apiGetTemplateExample as d, apiUpdateTemplateExample as E } from "./example/ExampleService.js";
|
|
3
|
+
export {
|
|
4
|
+
x as apiAddTemplateExample,
|
|
5
|
+
a as apiAddTemplateExampleObject,
|
|
6
|
+
t as apiDeleteTemplateExampleObject,
|
|
7
|
+
m as apiFindMonitorTemplateExample,
|
|
8
|
+
d as apiGetTemplateExample,
|
|
9
|
+
E as apiUpdateTemplateExample,
|
|
10
|
+
l as apiUpdateTemplateExampleObject
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
const
|
|
1
|
+
const a = [
|
|
2
2
|
{
|
|
3
3
|
label: "Adiantamento",
|
|
4
4
|
value: "ADIANTAMENTO"
|
|
5
5
|
},
|
|
6
6
|
{
|
|
7
|
-
label: "Adiantamento de
|
|
7
|
+
label: "Adiantamento de boleto",
|
|
8
8
|
value: "ADIANTAMENTO_BOLETO"
|
|
9
9
|
},
|
|
10
10
|
{
|
|
@@ -12,7 +12,7 @@ const e = [
|
|
|
12
12
|
value: "ADIANTAMENTO_DDA"
|
|
13
13
|
},
|
|
14
14
|
{
|
|
15
|
-
label: "Adiantamento de
|
|
15
|
+
label: "Adiantamento de depósito",
|
|
16
16
|
value: "ADIANTAMENTO_DEPOSITO"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
@@ -20,9 +20,17 @@ const e = [
|
|
|
20
20
|
value: "BOLETO"
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
|
-
label: "Boleto
|
|
23
|
+
label: "Boleto agrupado",
|
|
24
24
|
value: "BOLETO_AGRUPADO"
|
|
25
25
|
},
|
|
26
|
+
{
|
|
27
|
+
label: "Cartão corporativo",
|
|
28
|
+
value: "CARTAO_CORPORATIVO"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
label: "Cartão diretoria",
|
|
32
|
+
value: "CARTAO_DIRETORIA"
|
|
33
|
+
},
|
|
26
34
|
{
|
|
27
35
|
label: "Cheque",
|
|
28
36
|
value: "CHEQUE"
|
|
@@ -37,6 +45,6 @@ const e = [
|
|
|
37
45
|
}
|
|
38
46
|
];
|
|
39
47
|
export {
|
|
40
|
-
|
|
48
|
+
a as tiposPagamentos
|
|
41
49
|
};
|
|
42
50
|
//# sourceMappingURL=tiposPagamentos.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiposPagamentos.js","sources":["../../../../lib/base/utils/constOptions/tiposPagamentos.ts"],"sourcesContent":["export const tiposPagamentos = [\n {\n label: \"Adiantamento\",\n value: \"ADIANTAMENTO\"\n },\n {\n label: \"Adiantamento de
|
|
1
|
+
{"version":3,"file":"tiposPagamentos.js","sources":["../../../../lib/base/utils/constOptions/tiposPagamentos.ts"],"sourcesContent":["export const tiposPagamentos = [\n {\n label: \"Adiantamento\",\n value: \"ADIANTAMENTO\"\n },\n {\n label: \"Adiantamento de boleto\",\n value: \"ADIANTAMENTO_BOLETO\"\n },\n {\n label: \"Adiantamento DDA\",\n value: \"ADIANTAMENTO_DDA\"\n },\n {\n label: \"Adiantamento de depósito\",\n value: \"ADIANTAMENTO_DEPOSITO\"\n },\n {\n label: \"Boleto\",\n value: \"BOLETO\"\n },\n {\n label: \"Boleto agrupado\",\n value: \"BOLETO_AGRUPADO\"\n },\n {\n label: \"Cartão corporativo\",\n value: \"CARTAO_CORPORATIVO\"\n },\n {\n label: \"Cartão diretoria\",\n value: \"CARTAO_DIRETORIA\"\n },\n {\n label: \"Cheque\",\n value: \"CHEQUE\"\n },\n {\n label: \"DDA\",\n value: \"DDA\"\n },\n {\n label: \"Depósito\",\n value: \"DEPOSITO\"\n }\n];"],"names":["tiposPagamentos"],"mappings":"AAAO,MAAMA,IAAkB;AAAA,EAC3B;AAAA,IACI,OAAO;AAAA,IACP,OAAO;AAAA,EAAA;AAAA,EAEX;AAAA,IACI,OAAO;AAAA,IACP,OAAO;AAAA,EAAA;AAAA,EAEX;AAAA,IACI,OAAO;AAAA,IACP,OAAO;AAAA,EAAA;AAAA,EAEX;AAAA,IACI,OAAO;AAAA,IACP,OAAO;AAAA,EAAA;AAAA,EAEX;AAAA,IACI,OAAO;AAAA,IACP,OAAO;AAAA,EAAA;AAAA,EAEX;AAAA,IACI,OAAO;AAAA,IACP,OAAO;AAAA,EAAA;AAAA,EAEX;AAAA,IACI,OAAO;AAAA,IACP,OAAO;AAAA,EAAA;AAAA,EAEX;AAAA,IACI,OAAO;AAAA,IACP,OAAO;AAAA,EAAA;AAAA,EAEX;AAAA,IACI,OAAO;AAAA,IACP,OAAO;AAAA,EAAA;AAAA,EAEX;AAAA,IACI,OAAO;AAAA,IACP,OAAO;AAAA,EAAA;AAAA,EAEX;AAAA,IACI,OAAO;AAAA,IACP,OAAO;AAAA,EAAA;AAEf;"}
|