-
Notifications
You must be signed in to change notification settings - Fork 3
/
move_units.js
141 lines (130 loc) · 3.55 KB
/
move_units.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/**
* ### Модуль переноса единиц измерения вовнутрь номенклатур
* дополнительно, устанавливает НДС20
*
* @module move_units
*
* Created 24.02.2018
*/
/**
* ### Переменные окружения
* DEBUG "wb:*,-not_this"
* ZONE 21
* DBPWD admin
* DBUSER admin
* COUCHPATH http://cou221:5984/wb_
*/
'use strict';
const debug = require('debug')('wb:move_units');
const PouchDB = require('./pouchdb')
.plugin(require('pouchdb-find'));
debug('required');
// инициализируем параметры сеанса и метаданные
const {DBUSER, DBPWD, COUCHPATH, ZONE} = process.env;
const prefix = 'wb_';
const blank = '00000000-0000-0000-0000-000000000000';
let step = 0;
const db = new PouchDB(`${COUCHPATH}${ZONE}_ram`, {
auth: {
username: DBUSER,
password: DBPWD
},
skip_setup: true,
ajax: {timeout: 100000}
});
db.info()
.then((info) => {
debug(`connected to ${info.host}, doc count: ${info.doc_count}`);
})
.then(move_units)
.then(() => debug(`ok`));
function bulk(rows) {
return () => {
step++;
debug(`saved ${step * 150}`);
return db.bulkDocs(rows);
};
}
function move_units(bookmark) {
// получаем в ОЗУ все номенклатуры и единицы измерения
return db.find({selector: {class_name: {$in: ['cat.nom', 'cat.nom_units']}}, bookmark, limit: 100000})
.then(({docs}) => {
debug(`received ${docs.length} rows`);
// Разделим на два массива
const noms = [];
const units = [];
const rows = [];
for(const doc of docs) {
if(doc._id.startsWith('cat.nom_units')) {
units.push(doc);
}
else {
noms.push(doc);
}
}
for(const nom of noms) {
if(nom.is_folder) {
continue;
}
let nunits = '';
let ch;
const ref = nom._id.substr(8);
for(const unit of units) {
if((unit.owner === ref) || (unit.owner && unit.owner.ref === ref)) {
if(nunits) {
nunits += '\n';
}
nunits += `${unit._id.substr(14)},${unit.id},${unit.name},${
typeof unit.qualifier_unit === 'object' ? unit.qualifier_unit.ref : unit.qualifier_unit},${unit.heft},${
unit.volume},${unit.coefficient},${unit.rounding_threshold || ''}`;
}
}
for(const fld in nom) {
if((nom[fld] === blank) || (nom[fld] && nom[fld].ref === blank)) {
nom[fld] = '';
ch = true;
}
}
if((nom.vat_rate === 'НДС18') || (nom.vat_rate && nom.vat_rate.name === 'НДС18')) {
nom.vat_rate = 'НДС20';
ch = true;
}
if(nom.units !== nunits && nunits) {
nom.units = nunits;
ch = true;
}
if(ch) {
rows.push(nom);
}
}
return {rows, units};
})
.then(({rows, units}) => {
let res = Promise.resolve();
let tmp = [];
rows.forEach((row) => {
if(tmp.length < 150) {
tmp.push(row);
}
else {
res = res.then(bulk(tmp));
tmp = [];
}
});
if(tmp.length) {
res = res.then(bulk(tmp));
}
return res.then(() => {
db.bulkDocs(units.map((row) => {
return {
_id: row._id,
_rev: row._rev,
_deleted: true,
}
}));
});
})
.catch(err => {
debug(err)
});
}