@@ 266-274 (lines=9) @@ | ||
263 | * @author Esteban De La Fuente Rubio, DeLaF (esteban[at]sasco.cl) |
|
264 | * @version 2015-09-07 |
|
265 | */ |
|
266 | public function getEmisor() |
|
267 | { |
|
268 | $nodo = $this->xml->xpath('/DTE/'.$this->tipo_general.'/Encabezado/Emisor/RUTEmisor')->item(0); |
|
269 | if ($nodo) |
|
270 | return $nodo->nodeValue; |
|
271 | if (!$this->getDatos()) |
|
272 | return false; |
|
273 | return $this->datos['Encabezado']['Emisor']['RUTEmisor']; |
|
274 | } |
|
275 | ||
276 | /** |
|
277 | * Método que entrega rut del receptor del DTE |
|
@@ 282-290 (lines=9) @@ | ||
279 | * @author Esteban De La Fuente Rubio, DeLaF (esteban[at]sasco.cl) |
|
280 | * @version 2015-09-07 |
|
281 | */ |
|
282 | public function getReceptor() |
|
283 | { |
|
284 | $nodo = $this->xml->xpath('/DTE/'.$this->tipo_general.'/Encabezado/Receptor/RUTRecep')->item(0); |
|
285 | if ($nodo) |
|
286 | return $nodo->nodeValue; |
|
287 | if (!$this->getDatos()) |
|
288 | return false; |
|
289 | return $this->datos['Encabezado']['Receptor']['RUTRecep']; |
|
290 | } |
|
291 | ||
292 | /** |
|
293 | * Método que entrega fecha de emisión del DTE |
|
@@ 298-306 (lines=9) @@ | ||
295 | * @author Esteban De La Fuente Rubio, DeLaF (esteban[at]sasco.cl) |
|
296 | * @version 2015-09-07 |
|
297 | */ |
|
298 | public function getFechaEmision() |
|
299 | { |
|
300 | $nodo = $this->xml->xpath('/DTE/'.$this->tipo_general.'/Encabezado/IdDoc/FchEmis')->item(0); |
|
301 | if ($nodo) |
|
302 | return $nodo->nodeValue; |
|
303 | if (!$this->getDatos()) |
|
304 | return false; |
|
305 | return $this->datos['Encabezado']['IdDoc']['FchEmis']; |
|
306 | } |
|
307 | ||
308 | /** |
|
309 | * Método que entrega el monto total del DTE |
|
@@ 314-322 (lines=9) @@ | ||
311 | * @author Esteban De La Fuente Rubio, DeLaF (esteban[at]sasco.cl) |
|
312 | * @version 2015-09-07 |
|
313 | */ |
|
314 | public function getMontoTotal() |
|
315 | { |
|
316 | $nodo = $this->xml->xpath('/DTE/'.$this->tipo_general.'/Encabezado/Totales/MntTotal')->item(0); |
|
317 | if ($nodo) |
|
318 | return $nodo->nodeValue; |
|
319 | if (!$this->getDatos()) |
|
320 | return false; |
|
321 | return $this->datos['Encabezado']['Totales']['MntTotal']; |
|
322 | } |
|
323 | ||
324 | /** |
|
325 | * Método que entrega el tipo de moneda del documento |
|
@@ 330-338 (lines=9) @@ | ||
327 | * @author Esteban De La Fuente Rubio, DeLaF (esteban[at]sasco.cl) |
|
328 | * @version 2016-07-16 |
|
329 | */ |
|
330 | public function getMoneda() |
|
331 | { |
|
332 | $nodo = $this->xml->xpath('/DTE/'.$this->tipo_general.'/Encabezado/Totales/TpoMoneda')->item(0); |
|
333 | if ($nodo) |
|
334 | return $nodo->nodeValue; |
|
335 | if (!$this->getDatos()) |
|
336 | return false; |
|
337 | return $this->datos['Encabezado']['Totales']['TpoMoneda']; |
|
338 | } |
|
339 | ||
340 | /** |
|
341 | * Método que entrega las referencias del DTE si existen |