diff options
| author | gabrhr <[email protected]> | 2022-05-31 03:58:23 -0500 |
|---|---|---|
| committer | gabrhr <[email protected]> | 2022-05-31 03:58:23 -0500 |
| commit | cbc7d7f7494508fda69e88c76702a878bebca0e2 (patch) | |
| tree | 7a3bec98a7deb82ac95850835d08b2a305b8a0cc /front/odiparpack/app/api | |
| parent | 32fb17de8f78317b165b6f269a8bab2d4e852d0d (diff) | |
| download | DP1_project-cbc7d7f7494508fda69e88c76702a878bebca0e2.tar.gz DP1_project-cbc7d7f7494508fda69e88c76702a878bebca0e2.tar.bz2 DP1_project-cbc7d7f7494508fda69e88c76702a878bebca0e2.zip | |
Add Almacenes
- todo de almacenes, redux, pagina
- mejoro form de pedido (etiqueta estado, RUC)
#TODO
- Ver combobox con API
Diffstat (limited to 'front/odiparpack/app/api')
| -rw-r--r-- | front/odiparpack/app/api/almacen.js | 6 | ||||
| -rw-r--r-- | front/odiparpack/app/api/themePalette.js | 17 |
2 files changed, 22 insertions, 1 deletions
diff --git a/front/odiparpack/app/api/almacen.js b/front/odiparpack/app/api/almacen.js new file mode 100644 index 0000000..dcc629b --- /dev/null +++ b/front/odiparpack/app/api/almacen.js @@ -0,0 +1,6 @@ +import { apiGet } from 'odi-utils/api'; + +//GET APIS +export const getAlmacenesAPI = async () => { + return await apiGet(`ayuda/almacen`) +}
\ No newline at end of file diff --git a/front/odiparpack/app/api/themePalette.js b/front/odiparpack/app/api/themePalette.js index c7971b3..eaec9e7 100644 --- a/front/odiparpack/app/api/themePalette.js +++ b/front/odiparpack/app/api/themePalette.js @@ -200,7 +200,22 @@ const themePalette = (color) => ({ secondary: palette[color].palette.secondary, }, typography: { - useNextVariants: true, + h5: { + fontSize: 18, + fontWeight: 600, + color: "#202A75", + margin: "5px 0 10px", + }, + h4: { + fontSize: 25, + fontWeight: 500, + margin: "10px 0 5px", + }, + h6: { + fontSize: 17, + fontWeight: 420, + margin: "0px 0 0px", + }, }, }); |
