#6818 hotfix-addInternationalChannel #3268
|
@ -130,6 +130,9 @@
|
||||||
"Payment": {
|
"Payment": {
|
||||||
"dataSource": "vn"
|
"dataSource": "vn"
|
||||||
},
|
},
|
||||||
|
"PbxConfig": {
|
||||||
|
"dataSource": "vn"
|
||||||
|
},
|
||||||
"Postcode": {
|
"Postcode": {
|
||||||
"dataSource": "vn"
|
"dataSource": "vn"
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
{
|
||||||
|
"name": "PbxConfig",
|
||||||
|
"base": "VnModel",
|
||||||
|
"options": {
|
||||||
|
"mysql": {
|
||||||
|
"table": "pbx.config"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "number",
|
||||||
|
"id": true
|
||||||
|
},
|
||||||
|
"defaultPrefix": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"acls": [
|
||||||
|
{
|
||||||
|
"property": "*",
|
||||||
|
"accessType": "READ",
|
||||||
|
"principalType": "ROLE",
|
||||||
|
"principalId": "employee",
|
||||||
|
"permission": "ALLOW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -2040,7 +2040,7 @@ INSERT INTO `vn`.`ticketService`(`id`, `description`, `quantity`, `price`, `taxC
|
||||||
INSERT INTO `pbx`.`config` (id,defaultPrefix)
|
INSERT INTO `pbx`.`config` (id,defaultPrefix)
|
||||||
VALUES (1,'0034');
|
VALUES (1,'0034');
|
||||||
|
|
||||||
INSERT INTO `pbx`.`prefix` (country, prefix)
|
INSERT IGNORE INTO `pbx`.`prefix` (country, prefix)
|
||||||
VALUES
|
VALUES
|
||||||
('es', '0034'),
|
('es', '0034'),
|
||||||
('fr', '0033'),
|
('fr', '0033'),
|
||||||
|
@ -4028,7 +4028,8 @@ INSERT INTO srt.buffer (id, x, y, `size`, `length`, stateFk, typeFk, isActive, c
|
||||||
|
|
||||||
INSERT IGNORE INTO vn.saySimpleCountry (countryFk, channel)
|
INSERT IGNORE INTO vn.saySimpleCountry (countryFk, channel)
|
||||||
VALUES (19, '1169'),
|
VALUES (19, '1169'),
|
||||||
(8, '1183');
|
(8, '1183'),
|
||||||
|
(1, '1320');
|
||||||
|
|||||||
|
|
||||||
INSERT IGNORE INTO vn.saySimpleConfig (url, defaultChannel)
|
INSERT IGNORE INTO vn.saySimpleConfig (url, defaultChannel)
|
||||||
VALUES ('saysimle-url-mock', 1320);
|
VALUES ('saysimle-url-mock', '1819');
|
||||||
|
|
|
@ -0,0 +1,107 @@
|
||||||
|
INSERT IGNORE INTO vn.saySimpleCountry
|
||||||
|
SET countryFk = 1,
|
||||||
|
channel = '1320';
|
||||||
|
|
||||||
|
UPDATE vn.saySimpleConfig
|
||||||
jorgep
commented
Valor por defecto, para llamadas internacionales, hablado con Paco Rico. Valor por defecto, para llamadas internacionales, hablado con Paco Rico.
|
|||||||
|
SET defaultChannel = '1819';
|
||||||
|
|
||||||
|
INSERT IGNORE INTO pbx.prefix (country, prefix) VALUES
|
||||||
jorgep
commented
Paco Rico me ha dicho que poner el prefijo siempre, he añadido los prefijos que tenemos en base de datos. Juan me ha dicho que si quieren alguno más en algún momento que lo pidan. Paco Rico me ha dicho que poner el prefijo siempre, he añadido los prefijos que tenemos en base de datos. Juan me ha dicho que si quieren alguno más en algún momento que lo pidan.
|
|||||||
|
('ES', '0034'),
|
||||||
|
('IT', '0039'),
|
||||||
|
('DE', '0049'),
|
||||||
|
('RO', '0040'),
|
||||||
|
('NL', '0031'),
|
||||||
|
('BE', '0032'),
|
||||||
|
('RU', '007'),
|
||||||
|
('PT', '00351'),
|
||||||
|
('LT', '00370'),
|
||||||
|
('UA', '00380'),
|
||||||
|
('CO', '0057'),
|
||||||
|
('FI', '00358'),
|
||||||
|
('EC', '00593'),
|
||||||
|
('LB', '00961'),
|
||||||
|
('IL', '00972'),
|
||||||
|
('TH', '0066'),
|
||||||
|
('PA', '00507'),
|
||||||
|
('GB', '0044'),
|
||||||
|
('FR', '0033'),
|
||||||
|
('PL', '0048'),
|
||||||
|
('MX', '0052'),
|
||||||
|
('MA', '00212'),
|
||||||
|
('AI', '001268'),
|
||||||
|
('GH', '00233'),
|
||||||
|
('SE', '0046'),
|
||||||
|
('AE', '00971'),
|
||||||
|
('KE', '00254'),
|
||||||
|
('AD', '00376'),
|
||||||
|
('AO', '00244'),
|
||||||
|
('LU', '00352'),
|
||||||
|
('BY', '00375'),
|
||||||
|
('MD', '00373'),
|
||||||
|
('DK', '0045'),
|
||||||
|
('ET', '00251'),
|
||||||
|
('AU', '0061'),
|
||||||
|
('CA', '0001'),
|
||||||
|
('CL', '0056'),
|
||||||
|
('CN', '0086'),
|
||||||
|
('CR', '00506'),
|
||||||
|
('GT', '00502'),
|
||||||
|
('CI', '00225'),
|
||||||
|
('PE', '0051'),
|
||||||
|
('LK', '0094'),
|
||||||
|
('ZA', '0027'),
|
||||||
|
('TR', '0090'),
|
||||||
|
('ZW', '00263'),
|
||||||
|
('MY', '0060'),
|
||||||
|
('NZ', '0064'),
|
||||||
|
('IE', '00353'),
|
||||||
|
('MN', '00976'),
|
||||||
|
('SV', '00503'),
|
||||||
|
('ZM', '00260'),
|
||||||
|
('JP', '0081'),
|
||||||
|
('RW', '00250'),
|
||||||
|
('AL', '00355'),
|
||||||
|
('KW', '00965'),
|
||||||
|
('SG', '0065'),
|
||||||
|
('SR', '00597'),
|
||||||
|
('KR', '0082'),
|
||||||
|
('US', '0001'),
|
||||||
|
('RS', '00381'),
|
||||||
|
('AT', '0043'),
|
||||||
|
('EG', '0020'),
|
||||||
|
('LV', '00371'),
|
||||||
|
('CY', '00357'),
|
||||||
|
('CZ', '00420'),
|
||||||
|
('BB', '001246'),
|
||||||
|
('SK', '00421'),
|
||||||
|
('IN', '0091'),
|
||||||
|
('DZ', '00213'),
|
||||||
|
('BR', '0055'),
|
||||||
|
('GR', '0030'),
|
||||||
|
('MC', '00377'),
|
||||||
|
('SI', '00386'),
|
||||||
|
('GP', '00590'),
|
||||||
|
('NO', '0047'),
|
||||||
|
('CH', '0041'),
|
||||||
|
('AR', '0054'),
|
||||||
|
('CU', '0053'),
|
||||||
|
('GQ', '00240'),
|
||||||
|
('GN', '00224'),
|
||||||
|
('HN', '00504'),
|
||||||
|
('ML', '00223'),
|
||||||
|
('NI', '00505'),
|
||||||
|
('PK', '0092'),
|
||||||
|
('PY', '00595'),
|
||||||
|
('SN', '00221'),
|
||||||
|
('UY', '00598'),
|
||||||
|
('VE', '0058'),
|
||||||
|
('BG', '00359'),
|
||||||
|
('GE', '00995'),
|
||||||
|
('EE', '00372'),
|
||||||
|
('SA', '00966'),
|
||||||
|
('RN', '00234'),
|
||||||
|
('HK', '00852'),
|
||||||
|
('GI', '00350'),
|
||||||
|
('CM', '00237'),
|
||||||
|
('HU', '0036'),
|
||||||
|
('AM', '00374');
|
Loading…
Reference in New Issue
Valor para España