-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
176 lines (152 loc) · 4.32 KB
/
test.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// const { getAllContacts } = require('./modules/amocrm');
// (async () => {
// const contacts = await getAllContacts();
// console.log(contacts);
// })()
// const AmoClient = require('./helpers/amoCrmConnection');
// // Create first and return id
// const leads = [{
// name : `${leadName} (из бота)`
// }];
// // Create second and return id
// const companies = [{
// name: vinNumber,
// linked_leads_id:[ leadId ],
// }];
// // Create third and return id
// const contact = [{
// name: leadName,
// linked_leads_id:[ leadId ], // const id = lead[0].id;
// linked_company_id:[ companyId ],
// custom_fields: [{
// id: phoneId,
// name: phoneName,
// code: 'PHONE',
// values: [{ value: phoneNumber, enum: '26615' }]
// }]
// }];
// // Create note
// const note = [{
// element_id: leadId,
// element_type: "2",
// text: `Детали: ${detail}\nСрочность: ${urgency}`,
// note_type: "4"
// }];
// const getAllCompanies = async () => {
// const amoClient = await AmoClient.get();
// if (amoClient) {
// const companies = await amoClient.addNotes();
// // for (const company of companies) {
// console.log(companies)
// // const { contacts, leads } = company;
// // listNotes, setNotes, addNotes, updateNotes
// // console.log('\n\nCONTACTS', contacts);
// // console.log('\n\nLEADS', leads);
// // }
// } else {
// console.log('No client');
// }
// };
// // getAllCompanies();
// const addCompany = async (companies) => {
// const amoClient = await AmoClient.get();
// if (amoClient) {
// const company = await amoClient.addCompanies(companies);
// console.log(company);
// } else {
// console.log('No client');
// }
// };
// const companies = [{
// name: "DEMO COMPANY",
// linked_leads_id:[ 2482323 ], // const id = lead[0].id;
// }];
// addCompany(companies);
// amoClient.auth(subdomain, login, key).then(function (res) {
// console.log('auth res: ', res);
// if (res.auth === true) {
// amoClient.listContacts({}).then(ds => {
// const peter = ds.find(val => val.id === 827179)
// // if (Array.isArray(ds.custom_fields)) {
// for (const pe of peter.custom_fields) {
// console.log("\n",pe, pe.values)
// // console.log('\n',peter.custom_fields[0].values)
// }
// // }
// })
// amoClient.addLeads([{
// name: "Грасии (из Бота)",
// tags: "today",
// custom_fields: [
// {
// id: urgencyId,
// name: urgencyName,
// values: [{ value: "Завтра"}]
// },
// { id: vinId,
// name: vinName,
// values: [{ value: "JA111TJ8055510777"}]
// }
// ]
// }]).then(lead => {
// console.log("\n\nADDED NEW LEAD", lead)
// const id = lead[0].id;
// console.log('Lead id', id)
// if (id) {
// amoClient.addContacts(
//[{
// name: "Грасии",
// linked_leads_id:[ id ],
// custom_fields: [
// {
// id: phoneId,
// name: phoneName,
// code: 'PHONE',
// values: [{ value: "+380933485968", enum: '26615' }]
// }
// ]
// }]).then(contact => {
// console.log('ADDED NEW CONTACT: ', contact)
// const id = contact[0].id;
// })
// }
// })
// }
// });
// Add Leads
// amoClient.addLeads([
// {
// name : "Mark Fildrovich" ,
// tags: "justtoday, nottomorrow",
// price: 10000,
// custom_fields: [
// {
// id: 16835,
// name: 'Срочность',
// values: [{ value: "now now now"}]
// },
// { id: 16837,
// name: 'Номер авто',
// values: [{ value: "tomorow"}]
// }
// ]
// }
// ]).then((id) => {
// console.log("\n\nID: ", id);
// })
// List lead
// amoClient.listLeads({}).then(ds => {
// const mark = ds.find(val => val.id === 2481773)
// console.log(mark.main_contact)
// console.log(mark.contacts)
// console.log(mark)
// for (const d of ds) {
// console.log('\n', d.custom_fields)
// console.log('\n', d.custom_fields[0])
// if (d.custom_fields[0]) {
// for (const val of d.custom_fields[0]) {
// console.log('\n', val)
// }
// }
// }
// })