本文整理汇总了PHP中factura_cliente::get_by_codigo方法的典型用法代码示例。如果您正苦于以下问题:PHP factura_cliente::get_by_codigo方法的具体用法?PHP factura_cliente::get_by_codigo怎么用?PHP factura_cliente::get_by_codigo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类factura_cliente
的用法示例。
在下文中一共展示了factura_cliente::get_by_codigo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: reimprimir_ticket
private function reimprimir_ticket()
{
$factura = new factura_cliente();
$fac0 = FALSE;
if ($_GET['reticket'] == '') {
foreach ($factura->all() as $fac) {
$fac0 = $fac;
break;
}
} else {
$fac0 = $factura->get_by_codigo($_GET['reticket']);
}
if ($fac0) {
$this->imprimir_ticket($fac0, 1, FALSE);
} else {
$this->new_error_msg("Ticket no encontrado.");
}
}
示例2: get_factura
public function get_factura()
{
if ($this->tipodocumento == 'Factura de cliente') {
$fac = new factura_cliente();
return $fac->get_by_codigo($this->documento);
} else {
if ($this->tipodocumento == 'Factura de proveedor') {
$fac = new factura_proveedor();
return $fac->get_by_codigo($this->documento);
} else {
return FALSE;
}
}
}