本文整理匯總了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';
//.........這裏部分代碼省略.........