-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
68 lines (62 loc) · 2.05 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
const chalk = require('chalk')
var Sequelize = require('sequelize')
const Op = Sequelize.Op;
var GruposMongo = require('./mongoModels/Grupo')
var GruposMSSQL = require('./mssqlModels/Grupo')
var UsersMongo = require('./mongoModels/User')
var ClientesMSSQL = require('./mssqlModels/Cliente')
var PolizasMongo = require('./mongoModels/Poliza')
var PolizasMSSQL = require('./mssqlModels/Poliza')
//migrateClientes()
//migratePolizas()
function mapDataValues(data){
return data.map(function(item,idx){return item.dataValues})
}
function migratePolizas(){
var filter = {
[Op.and]:{
Ramo:'autos',
ClienteID : { [Op.or] : [1010,1011,1038] }
}
}
PolizasMSSQL.findAll({where:filter}).then(polizas => {
polizas = mapDataValues(polizas)
polizas = PolizasMongo.mapData(polizas)
PolizasMongo.create(polizas).then(function(success){
console.log(chalk.green("Polizas guardados"))
}).catch(function(err){
console.log(chalk.red(err))
})
}).catch(function(exc){
if(exc) console.log(chalk.red(exc))
})
}
function migrateGrupos(){
GruposMSSQL.findAll().then(grupos => {
grupos = mapDataValues(grupos)
grupos = GruposMongo.mapData(grupos)
GruposMongo.create(grupos,function(success){
console.log(chalk.green("Grupos guardados"))
}).catch(function(exc){
if(exc) console.log(chalk.red(exc))
})
}).catch(function(exc){
if(exc) console.log(chalk.red(exc))
})
}
function migrateClientes(){
var filter = {
ClienteID : { [Op.or]:[1010,1011,1038] }
}
ClientesMSSQL.findAll({where:filter}).then(clientes => {
clientes = mapDataValues(clientes)
clientes = UsersMongo.mapData(clientes)
UsersMongo.create(clientes).then(function(success){
console.log(chalk.green("Clientes guardados"))
}).catch(function(err){
console.log(chalk.red(err))
})
}).catch(function(exc){
if(exc) console.log(chalk.red(exc))
})
}