Scontistica- Parte 1

This commit is contained in:
Surya Paolo
2023-12-16 00:51:03 +01:00
parent 1ca72118f1
commit ab3a31d4fb
7 changed files with 127 additions and 4 deletions

View File

@@ -416,6 +416,7 @@ module.exports = {
CNM: '10',
RISO: '13',
FIOREDELLAVITA: '15',
PIUCHEBUONO: '17',
HELP_CHAT: '',
TYPECONF_ZOOM: 'zoom',

View File

@@ -61,6 +61,7 @@ const Cart = require('../models/cart');
const OrdersCart = require('../models/orderscart');
const Storehouse = require('../models/storehouse');
const Provider = require('../models/provider');
const Scontistica = require('../models/scontistica');
const Department = require('../models/department');
const { Category } = require('../models/category');
const ShareWithUs = require('../models/sharewithus');
@@ -107,6 +108,8 @@ module.exports = {
mytable = Storehouse;
else if (tablename === 'providers')
mytable = Provider;
else if (tablename === 'scontisticas')
mytable = Scontistica;
else if (tablename === 'departments')
mytable = Department;
else if (tablename === 'categorys')