-
Notifications
You must be signed in to change notification settings - Fork 2
/
Tarificacion.php
87 lines (74 loc) · 2.76 KB
/
Tarificacion.php
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
<?php
/**
* Clase para calculo de tarifa de chilexpress
*/
Class Chileexpress_Tarificacion{
/**
* Retorna el valor del shipping de Chilexpress
* @param string $origen Codigo de la ciudad de origen
* @param string $destino Codigo de la ciudad destino
* @param int $peso en kilo
* @param int $alto en cm
* @param int $ancho en cm
* @param int $largo en cm
* @return mixed null o int con valor
*/
public function get($origen, $destino, $peso, $alto, $ancho, $largo){
$route = "TarificarCourier";
$method = 'reqValorizarCourier';
$data = [
'CodCoberturaOrigen' => $origen,
'CodCoberturaDestino' => $destino,
'PesoPza' => $peso,
'DimAltoPza' => $alto,
'DimAnchoPza' => $ancho,
'DimLargoPza' => $largo
];
$client_options = array(
'login' => "UsrTestServicios",
'password' => "U$\$vr2\$tS2T",
'cache_wsdl' => WSDL_CACHE_NONE,
'exceptions' => 0,
'stream_context' => stream_context_create(array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true //can fiddle with this one.
)
))
);
$client = new \SoapClient(__DIR__ . "/wsdl/WSDL_Tarificacion_QA.wsdl", $client_options );
$header_body = array(
'transaccion' => array(
'fechaHora' => date( 'Y-m-d\TH:i:s.Z\Z', time() ),
'idTransaccionNegocio' => '0',
'sistema' => 'TEST',
'usuario' => 'TEST'
)
);
$header = new \SoapHeader( "http://www.chilexpress.cl/TarificaCourier/", 'headerRequest', $header_body );
$client->__setSoapHeaders( $header );
$result = $client->__soapCall( $route, [ $route => [ $method => $data ] ] );
if (is_soap_fault($result)) {
return null;
} else {
$valor = null;
if($result->respValorizarCourier->CodEstado == 0){
//estoy tomando el valor del servicio mayor.
foreach( $result->respValorizarCourier->Servicios as $servicios){
if(is_null($valor)){
$valor = $servicios->ValorServicio;
}
if($valor > $servicios->ValorServicio){
$valor = $servicios->ValorServicio;
}
}
}
if(is_null($valor)){
return null;
} else {
return $valor;
}
}
}
}