本文整理汇总了PHP中factura_cliente::all方法的典型用法代码示例。如果您正苦于以下问题:PHP factura_cliente::all方法的具体用法?PHP factura_cliente::all怎么用?PHP factura_cliente::all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类factura_cliente
的用法示例。
在下文中一共展示了factura_cliente::all方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test_models
private function test_models()
{
$last_errores = array();
switch ($this->informe['model']) {
default:
/// tablas
$this->test_tablas();
break;
case 'asiento':
$asiento = new asiento();
$asientos = $asiento->all($this->informe['offset']);
if ($asientos) {
if ($this->informe['offset'] == 0) {
foreach ($this->check_partidas_erroneas() as $err) {
$last_errores[] = $err;
}
}
foreach ($asientos as $asi) {
if ($asi->codejercicio == $this->informe['ejercicio']) {
if ($this->informe['all']) {
$this->informe['model'] = 'factura cliente';
} else {
$this->informe['model'] = 'fin';
}
$this->informe['offset'] = 0;
break;
} else {
if (!$asi->full_test($this->informe['duplicados'])) {
$last_errores[] = array('error' => 'Fallo en full_test()', 'model' => $this->informe['model'], 'ejercicio' => $asi->codejercicio, 'id' => $asi->numero, 'url' => $asi->url(), 'fecha' => $asi->fecha, 'fix' => $asi->fix());
}
}
}
$this->informe['offset'] += FS_ITEM_LIMIT;
} else {
if ($this->informe['all']) {
$this->informe['model'] = 'factura cliente';
$this->informe['offset'] = 0;
} else {
$this->informe['model'] = 'fin';
$this->informe['offset'] = 0;
}
}
break;
case 'factura cliente':
$factura = new factura_cliente();
$facturas = $factura->all($this->informe['offset']);
if ($facturas) {
foreach ($facturas as $fac) {
if ($fac->codejercicio == $this->informe['ejercicio']) {
if ($this->informe['all']) {
$this->informe['model'] = 'factura proveedor';
} else {
$this->informe['model'] = 'fin';
}
$this->informe['offset'] = 0;
break;
} else {
if (!$fac->full_test($this->informe['duplicados'])) {
$last_errores[] = array('error' => 'Fallo en full_test()', 'model' => $this->informe['model'], 'ejercicio' => $fac->codejercicio, 'id' => $fac->codigo, 'url' => $fac->url(), 'fecha' => $fac->fecha, 'fix' => FALSE);
}
}
}
$this->informe['offset'] += FS_ITEM_LIMIT;
} else {
if ($this->informe['all']) {
$this->informe['model'] = 'factura proveedor';
$this->informe['offset'] = 0;
} else {
$this->informe['model'] = 'fin';
$this->informe['offset'] = 0;
}
}
break;
case 'factura proveedor':
$factura = new factura_proveedor();
$facturas = $factura->all($this->informe['offset']);
if ($facturas) {
foreach ($facturas as $fac) {
if ($fac->codejercicio == $this->informe['ejercicio']) {
if ($this->informe['all']) {
$this->informe['model'] = 'albaran cliente';
} else {
$this->informe['model'] = 'fin';
}
$this->informe['offset'] = 0;
break;
} else {
if (!$fac->full_test($this->informe['duplicados'])) {
$last_errores[] = array('error' => 'Fallo en full_test()', 'model' => $this->informe['model'], 'ejercicio' => $fac->codejercicio, 'id' => $fac->codigo, 'url' => $fac->url(), 'fecha' => $fac->fecha, 'fix' => FALSE);
}
}
}
$this->informe['offset'] += FS_ITEM_LIMIT;
} else {
if ($this->informe['all']) {
$this->informe['model'] = 'albaran cliente';
$this->informe['offset'] = 0;
} else {
$this->informe['model'] = 'fin';
$this->informe['offset'] = 0;
//.........这里部分代码省略.........
示例2: 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.");
}
}
示例3: test_models
private function test_models()
{
$mpp = 100;
$last_errores = array();
switch ($this->informe['model']) {
default:
/// tablas
$this->test_tablas();
break;
case 'asiento':
$asiento = new asiento();
$asientos = $asiento->all($this->informe['offset'], $mpp);
if ($asientos) {
if ($this->informe['offset'] == 0) {
foreach ($this->check_partidas_erroneas() as $err) {
$last_errores[] = $err;
}
}
foreach ($asientos as $asi) {
if ($asi->codejercicio == $this->informe['ejercicio']) {
if ($this->informe['all']) {
$this->informe['model'] = 'factura cliente';
} else {
$this->informe['model'] = 'fin';
}
$this->informe['offset'] = 0;
break;
} else {
if (!$asi->full_test($this->informe['duplicados'])) {
$last_errores[] = array('error' => 'Fallo en full_test()', 'model' => $this->informe['model'], 'ejercicio' => $asi->codejercicio, 'id' => $asi->numero, 'url' => $asi->url(), 'fecha' => $asi->fecha, 'fix' => $asi->fix());
}
}
}
$this->informe['offset'] += $mpp;
} else {
if ($this->informe['all']) {
$this->informe['model'] = 'factura cliente';
$this->informe['offset'] = 0;
} else {
$this->informe['model'] = 'fin';
$this->informe['offset'] = 0;
}
}
break;
case 'factura cliente':
$factura = new factura_cliente();
$facturas = $factura->all($this->informe['offset'], $mpp);
if ($facturas) {
foreach ($facturas as $fac) {
if ($fac->codejercicio == $this->informe['ejercicio']) {
if ($this->informe['all']) {
$this->informe['model'] = 'factura proveedor';
} else {
$this->informe['model'] = 'fin';
}
$this->informe['offset'] = 0;
break;
} else {
if (!$fac->full_test($this->informe['duplicados'])) {
$last_errores[] = array('error' => 'Fallo en full_test()', 'model' => $this->informe['model'], 'ejercicio' => $fac->codejercicio, 'id' => $fac->codigo, 'url' => $fac->url(), 'fecha' => $fac->fecha, 'fix' => FALSE);
}
}
}
$this->informe['offset'] += $mpp;
} else {
if ($this->informe['all']) {
$this->informe['model'] = 'factura proveedor';
$this->informe['offset'] = 0;
} else {
$this->informe['model'] = 'fin';
$this->informe['offset'] = 0;
}
}
break;
case 'factura proveedor':
$factura = new factura_proveedor();
$facturas = $factura->all($this->informe['offset'], $mpp);
if ($facturas) {
foreach ($facturas as $fac) {
if ($fac->codejercicio == $this->informe['ejercicio']) {
if ($this->informe['all']) {
$this->informe['model'] = 'albaran cliente';
} else {
$this->informe['model'] = 'fin';
}
$this->informe['offset'] = 0;
break;
} else {
if (!$fac->full_test($this->informe['duplicados'])) {
$last_errores[] = array('error' => 'Fallo en full_test()', 'model' => $this->informe['model'], 'ejercicio' => $fac->codejercicio, 'id' => $fac->codigo, 'url' => $fac->url(), 'fecha' => $fac->fecha, 'fix' => FALSE);
}
}
}
$this->informe['offset'] += $mpp;
} else {
if ($this->informe['all']) {
$this->informe['model'] = 'albaran cliente';
$this->informe['offset'] = 0;
} else {
$this->informe['model'] = 'fin';
//.........这里部分代码省略.........