• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP fs_model类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中fs_model的典型用法代码示例。如果您正苦于以下问题:PHP fs_model类的具体用法?PHP fs_model怎么用?PHP fs_model使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了fs_model类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($t = false)
 {
     parent::__construct('distribucion_segmentos', 'plugins/distribucion/');
     if ($t) {
         $this->idempresa = $t['idempresa'];
         $this->codigo = $t['codigo'];
         $this->descripcion = $t['descripcion'];
         $this->codigo_padre = $t['codigo_padre'];
         $this->tiposegmento = $t['tiposegmento'];
         $this->estado = $this->str2bool($t['estado']);
         $this->usuario_creacion = $t['usuario_creacion'];
         $this->fecha_creacion = Date('d-m-Y H:i', strtotime($t['fecha_creacion']));
         $this->usuario_modificacion = $t['usuario_modificacion'];
         $this->fecha_modificacion = Date('d-m-Y H:i');
     } else {
         $this->idempresa = null;
         $this->codigo = null;
         $this->descripcion = null;
         $this->codigo_padre = null;
         $this->tiposegmento = null;
         $this->estado = false;
         $this->usuario_creacion = null;
         $this->fecha_creacion = Date('d-m-Y H:i');
         $this->usuario_modificacion = null;
         $this->fecha_modificacion = null;
     }
 }
开发者ID:joenilson,项目名称:distribucion,代码行数:27,代码来源:distribucion_segmentos.php


示例2: __construct

 public function __construct($t = false)
 {
     parent::__construct('distribucion_ordenescarga_facturas', 'plugins/distribucion/');
     if ($t) {
         $this->idempresa = $t['idempresa'];
         $this->codalmacen = $t['codalmacen'];
         $this->idordencarga = $t['idordencarga'];
         $this->idfactura = $t['idfactura'];
         $this->idtransporte = $t['idtransporte'];
         $this->fecha = $t['fecha'];
         $this->usuario_creacion = $t['usuario_creacion'];
         $this->fecha_creacion = Date('d-m-Y H:i', strtotime($t['fecha_creacion']));
         $this->usuario_modificacion = $t['usuario_modificacion'];
         $this->fecha_modificacion = Date('d-m-Y H:i');
     } else {
         $this->idempresa = null;
         $this->codalmacen = null;
         $this->idordencarga = null;
         $this->idfactura = null;
         $this->idtransporte = null;
         $this->fecha = null;
         $this->usuario_creacion = null;
         $this->fecha_creacion = Date('d-m-Y H:i');
         $this->usuario_modificacion = null;
         $this->fecha_modificacion = null;
     }
     $this->factura_cliente = new factura_cliente();
     $this->cliente = new cliente();
     if (class_exists('ncf_rango')) {
         $this->ncf_ventas = new ncf_ventas();
     }
 }
开发者ID:joenilson,项目名称:distribucion,代码行数:32,代码来源:distribucion_ordenescarga_facturas.php


示例3: __construct

 public function __construct($r = FALSE)
 {
     parent::__construct('remesas_sepa');
     if ($r) {
         $this->idremesa = $this->intval($r['idremesa']);
         $this->descripcion = $r['descripcion'];
         $this->codpago = $r['codpago'];
         $this->codcuenta = $r['codcuenta'];
         $this->iban = $r['iban'];
         $this->swift = $r['swift'];
         $this->total = floatval($r['total']);
         $this->coddivisa = $r['coddivisa'];
         $this->tasaconv = floatval($r['tasaconv']);
         $this->estado = $r['estado'];
         $this->fechacargo = date('d-m-Y', strtotime($r['fechacargo']));
         $this->fecha = date('d-m-Y', strtotime($r['fecha']));
     } else {
         $this->idremesa = NULL;
         $this->descripcion = NULL;
         $this->codpago = NULL;
         $this->codcuenta = NULL;
         $this->iban = NULL;
         $this->swift = NULL;
         $this->total = 0;
         $this->coddivisa = NULL;
         $this->tasaconv = 1;
         $this->estado = 'Preparada';
         $this->fechacargo = date('d-m-Y');
         $this->fecha = date('d-m-Y');
     }
 }
开发者ID:desalort,项目名称:FSAutoventas,代码行数:31,代码来源:remesa.php


示例4: __construct

 public function __construct($a = FALSE)
 {
     parent::__construct('almacenes');
     if ($a) {
         $this->codalmacen = $a['codalmacen'];
         $this->nombre = $a['nombre'];
         $this->codpais = $a['codpais'];
         $this->provincia = $a['provincia'];
         $this->poblacion = $a['poblacion'];
         $this->codpostal = $a['codpostal'];
         $this->direccion = $a['direccion'];
         $this->contacto = $a['contacto'];
         $this->fax = $a['fax'];
         $this->telefono = $a['telefono'];
         $this->observaciones = $a['observaciones'];
     } else {
         $this->codalmacen = NULL;
         $this->nombre = '';
         $this->codpais = NULL;
         $this->provincia = NULL;
         $this->poblacion = NULL;
         $this->codpostal = '';
         $this->direccion = '';
         $this->contacto = '';
         $this->fax = '';
         $this->telefono = '';
         $this->observaciones = '';
     }
 }
开发者ID:pcrednet,项目名称:facturascripts_2015,代码行数:29,代码来源:almacen.php


示例5: __construct

 public function __construct($p = FALSE)
 {
     parent::__construct('autorizados', 'plugins/autorizados_procli/');
     if ($p) {
         $this->autorizado_id = $p['autorizado_id'];
         $this->autorizado_cifnif = $p['autorizado_cifnif'];
         $this->autorizado_nombre = $p['autorizado_nombre'];
         $this->autorizado_telefono = $p['autorizado_telefono'];
         $this->autorizado_concepto = $this->no_html($p['autorizado_concepto']);
         $this->autorizado_fecha = NULL;
         if (isset($p['autorizado_fecha'])) {
             $this->autorizado_fecha = date('d-m-Y', strtotime($p['autorizado_fecha']));
         }
         $this->autorizado_codproveedor = $p['autorizado_codproveedor'];
         $this->autorizado_codcliente = $p['autorizado_codcliente'];
     } else {
         $this->autorizado_id = NULL;
         $this->autorizado_cifnif = '';
         $this->autorizado_nombre = '';
         $this->autorizado_telefono = '';
         $this->autorizado_concepto = '';
         $this->autorizado_fecha = date('d-m-Y');
         $this->autorizado_codproveedor = NULL;
         $this->autorizado_codcliente = NULL;
     }
 }
开发者ID:ramikat,项目名称:ERPSISFS,代码行数:26,代码来源:autorizados.php


示例6: __construct

 public function __construct($s = FALSE)
 {
     parent::__construct('stocks', 'plugins/facturacion_base/');
     if ($s) {
         $this->idstock = $this->intval($s['idstock']);
         $this->codalmacen = $s['codalmacen'];
         $this->referencia = $s['referencia'];
         $this->nombre = $s['nombre'];
         $this->cantidad = floatval($s['cantidad']);
         $this->reservada = floatval($s['reservada']);
         $this->disponible = floatval($s['disponible']);
         $this->pterecibir = floatval($s['pterecibir']);
         $this->stockmin = floatval($s['stockmin']);
         $this->stockmax = floatval($s['stockmax']);
         $this->cantidadultreg = floatval($s['cantidadultreg']);
     } else {
         $this->idstock = NULL;
         $this->codalmacen = NULL;
         $this->referencia = NULL;
         $this->nombre = '';
         $this->cantidad = 0;
         $this->reservada = 0;
         $this->disponible = 0;
         $this->pterecibir = 0;
         $this->stockmin = 0;
         $this->stockmax = 0;
         $this->cantidadultreg = 0;
     }
 }
开发者ID:Juanicos,项目名称:ventas_stock_almacen_seleccionado,代码行数:29,代码来源:stock.php


示例7: __construct

 public function __construct($d = FALSE)
 {
     parent::__construct('dirclientes');
     if ($d) {
         $this->id = $this->intval($d['id']);
         $this->codcliente = $d['codcliente'];
         $this->codpais = $d['codpais'];
         $this->apartado = $d['apartado'];
         $this->provincia = $d['provincia'];
         $this->ciudad = $d['ciudad'];
         $this->codpostal = $d['codpostal'];
         $this->direccion = $d['direccion'];
         $this->domenvio = $this->str2bool($d['domenvio']);
         $this->domfacturacion = $this->str2bool($d['domfacturacion']);
         $this->descripcion = $d['descripcion'];
         $this->fecha = date('d-m-Y', strtotime($d['fecha']));
     } else {
         $this->id = NULL;
         $this->codcliente = NULL;
         $this->codpais = NULL;
         $this->apartado = NULL;
         $this->provincia = NULL;
         $this->ciudad = NULL;
         $this->codpostal = NULL;
         $this->direccion = NULL;
         $this->domenvio = TRUE;
         $this->domfacturacion = TRUE;
         $this->descripcion = 'Principal';
         $this->fecha = date('d-m-Y');
     }
 }
开发者ID:pcrednet,项目名称:facturacion_base,代码行数:31,代码来源:direccion_cliente.php


示例8: __construct

 public function __construct($t = false)
 {
     parent::__construct('distribucion_transporte', 'plugins/distribucion/');
     if ($t) {
         $this->idempresa = $t['idempresa'];
         $this->codalmacen = $t['codalmacen'];
         $this->idordencarga = $t['idordencarga'];
         $this->idtransporte = $t['idtransporte'];
         $this->codalmacen_dest = $t['codalmacen_dest'];
         $this->fecha = $t['fecha'];
         $this->fechad = $t['fechad'];
         $this->fechal = $t['fechal'];
         $this->codtrans = $t['codtrans'];
         $this->unidad = $t['unidad'];
         $this->tipounidad = $t['tipounidad'];
         $this->conductor = $t['conductor'];
         $this->tipolicencia = $t['tipolicencia'];
         $this->totalcantidad = $t['totalcantidad'];
         $this->totalimporte = $t['totalimporte'];
         $this->liquidacion_importe = $t['liquidacion_importe'];
         $this->liquidacion_faltante = $t['liquidacion_faltante'];
         $this->totalpeso = $t['totalpeso'];
         $this->estado = $this->str2bool($t['estado']);
         $this->despachado = $this->str2bool($t['despachado']);
         $this->liquidado = $this->str2bool($t['liquidado']);
         $this->usuario_creacion = $t['usuario_creacion'];
         $this->fecha_creacion = Date('d-m-Y H:i', strtotime($t['fecha_creacion']));
         $this->usuario_modificacion = $t['usuario_modificacion'];
         $this->fecha_modificacion = Date('d-m-Y H:i');
     } else {
         $this->idempresa = null;
         $this->codalmacen = null;
         $this->idordencarga = null;
         $this->idtransporte = null;
         $this->codalmacen_dest = null;
         $this->fecha = null;
         $this->fechad = null;
         $this->fechal = null;
         $this->codtrans = null;
         $this->unidad = null;
         $this->tipounidad = null;
         $this->conductor = null;
         $this->tipolicencia = null;
         $this->totalcantidad = null;
         $this->totalimporte = null;
         $this->liquidacion_importe = null;
         $this->liquidacion_faltante = null;
         $this->totalpeso = null;
         $this->estado = false;
         $this->despachado = false;
         $this->liquidado = false;
         $this->cargado = false;
         $this->usuario_creacion = null;
         $this->fecha_creacion = Date('d-m-Y H:i');
         $this->usuario_modificacion = null;
         $this->fecha_modificacion = null;
     }
     $this->distribucion_conductores = new distribucion_conductores();
     $this->distribucion_unidades = new distribucion_unidades();
 }
开发者ID:joenilson,项目名称:distribucion,代码行数:60,代码来源:distribucion_transporte.php


示例9: __construct

 public function __construct($t = false)
 {
     parent::__construct('ncf_entidad_tipo', 'plugins/republica_dominicana/');
     if ($t) {
         $this->idempresa = $t['idempresa'];
         $this->entidad = $t['entidad'];
         $this->tipo_entidad = $t['tipo_entidad'];
         $this->tipo_comprobante = $t['tipo_comprobante'];
         $this->usuario_creacion = $t['usuario_creacion'];
         $this->fecha_creacion = Date('d-m-Y H:i:s', strtotime($t['fecha_creacion']));
         $this->usuario_modificacion = $t['usuario_modificacion'];
         $this->fecha_modificacion = Date('d-m-Y H:i');
         $this->estado = $this->str2bool($t['estado']);
     } else {
         $this->idempresa = null;
         $this->entidad = null;
         $this->tipo_entidad = null;
         $this->tipo_comprobante = null;
         $this->usuario_creacion = null;
         $this->fecha_creacion = Date('d-m-Y H:i');
         $this->usuario_modificacion = null;
         $this->fecha_modificacion = null;
         $this->estado = false;
     }
 }
开发者ID:joenilson,项目名称:republica_dominicana,代码行数:25,代码来源:ncf_entidad_tipo.php


示例10: __construct

 public function __construct($t = FALSE)
 {
     parent::__construct('tarifasav');
     if ($t) {
         $this->codtarifa = $t['codtarifa'];
         $this->madre = $t['madre'];
         $this->codfamilia = $t['codfamilia'];
         $this->nombre = $t['nombre'];
         $this->margen = $this->str2bool($t['margen']);
         $this->incporcentual = floatval($t['incporcentual']);
         $this->inclineal = floatval($t['inclineal']);
         $this->mincoste = $this->str2bool($t['mincoste']);
         $this->maxpvp = $this->str2bool($t['maxpvp']);
     } else {
         $this->codtarifa = NULL;
         $this->madre = NULL;
         $this->codfamilia = NULL;
         $this->nombre = NULL;
         $this->margen = FALSE;
         $this->incporcentual = 0;
         $this->inclineal = 0;
         $this->mincoste = TRUE;
         $this->maxpvp = TRUE;
     }
 }
开发者ID:desalort,项目名称:FSAutoventas,代码行数:25,代码来源:tarifa.php


示例11: __construct

 public function __construct($t = false)
 {
     parent::__construct('distribucion_clientes', 'plugins/distribucion/');
     if ($t) {
         $this->idempresa = $t['idempresa'];
         $this->codalmacen = $t['codalmacen'];
         $this->codcliente = $t['codcliente'];
         $this->iddireccion = $t['iddireccion'];
         $this->ruta = $t['ruta'];
         $this->canal = $t['canal'];
         $this->subcanal = $t['subcanal'];
         $this->usuario_creacion = $t['usuario_creacion'];
         $this->fecha_creacion = Date('d-m-Y H:i', strtotime($t['fecha_creacion']));
         $this->usuario_modificacion = $t['usuario_modificacion'];
         $this->fecha_modificacion = Date('d-m-Y H:i');
     } else {
         $this->idempresa = null;
         $this->codalmacen = null;
         $this->codcliente = null;
         $this->iddireccion = null;
         $this->ruta = null;
         $this->canal = null;
         $this->subcanal = null;
         $this->usuario_creacion = null;
         $this->fecha_creacion = Date('d-m-Y H:i');
         $this->usuario_modificacion = null;
         $this->fecha_modificacion = null;
     }
     $this->distrib_rutas = new distribucion_rutas();
     $this->distrib_segmentos = new distribucion_segmentos();
     $this->direccion_cliente = new direccion_cliente();
     $this->cliente = new cliente();
 }
开发者ID:joenilson,项目名称:distribucion,代码行数:33,代码来源:distribucion_clientes.php


示例12: __construct

 public function __construct($d = FALSE)
 {
     parent::__construct('divisas');
     if ($d) {
         $this->coddivisa = $d['coddivisa'];
         $this->descripcion = $d['descripcion'];
         $this->tasaconv = floatval($d['tasaconv']);
         $this->codiso = $d['codiso'];
         $this->simbolo = $d['simbolo'];
         if ($this->simbolo == '' and $this->coddivisa == 'EUR') {
             $this->simbolo = '€';
             $this->save();
         }
         if (is_null($d['tasaconv_compra'])) {
             $this->tasaconv_compra = floatval($d['tasaconv']);
             /// forzamos guardar para asegurarnos que siempre hay una tasa para compras
             $this->save();
         } else {
             $this->tasaconv_compra = floatval($d['tasaconv_compra']);
         }
     } else {
         $this->coddivisa = NULL;
         $this->descripcion = '';
         $this->tasaconv = 1;
         $this->tasaconv_compra = 1;
         $this->codiso = NULL;
         $this->simbolo = '?';
     }
 }
开发者ID:pcrednet,项目名称:facturascripts_2015,代码行数:29,代码来源:divisa.php


示例13: __construct

 public function __construct($t = false)
 {
     parent::__construct('distribucion_organizacion', 'plugins/distribucion/');
     if ($t) {
         $this->idempresa = $t['idempresa'];
         $this->codalmacen = $t['codalmacen'];
         $this->codagente = $t['codagente'];
         $this->codsupervisor = $t['codsupervisor'];
         $this->tipoagente = $t['tipoagente'];
         $this->estado = $this->str2bool($t['estado']);
         $this->usuario_creacion = $t['usuario_creacion'];
         $this->fecha_creacion = Date('d-m-Y H:i', strtotime($t['fecha_creacion']));
         $this->usuario_modificacion = $t['usuario_modificacion'];
         $this->fecha_modificacion = Date('d-m-Y H:i');
     } else {
         $this->idempresa = null;
         $this->codalmacen = null;
         $this->codagente = null;
         $this->codsupervisor = null;
         $this->tipoagente = null;
         $this->estado = false;
         $this->usuario_creacion = null;
         $this->fecha_creacion = Date('d-m-Y H:i');
         $this->usuario_modificacion = null;
         $this->fecha_modificacion = null;
     }
     $this->agente = new agente();
 }
开发者ID:joenilson,项目名称:distribucion,代码行数:28,代码来源:distribucion_organizacion.php


示例14: __construct

 public function __construct($d = FALSE)
 {
     parent::__construct('dirproveedores');
     if ($d) {
         $this->codproveedor = $d['codproveedor'];
         $this->codpais = $d['codpais'];
         $this->apartado = $d['apartado'];
         $this->provincia = $d['provincia'];
         $this->ciudad = $d['ciudad'];
         $this->codpostal = $d['codpostal'];
         $this->direccion = $d['direccion'];
         $this->direccionppal = $this->str2bool($d['direccionppal']);
         $this->descripcion = $d['descripcion'];
         $this->id = $this->intval($d['id']);
     } else {
         $this->codproveedor = NULL;
         $this->codpais = NULL;
         $this->apartado = NULL;
         $this->provincia = NULL;
         $this->ciudad = NULL;
         $this->codpostal = NULL;
         $this->direccion = NULL;
         $this->direccionppal = TRUE;
         $this->descripcion = NULL;
         $this->id = NULL;
     }
 }
开发者ID:BGCX067,项目名称:facturascripts-svn-to-git,代码行数:27,代码来源:direccion_proveedor.php


示例15: __construct

 public function __construct($t = false)
 {
     parent::__construct('distribucion_lineastransporte', 'plugins/distribucion/');
     if ($t) {
         $this->idempresa = $t['idempresa'];
         $this->codalmacen = $t['codalmacen'];
         $this->idtransporte = $t['idtransporte'];
         $this->fecha = $t['fecha'];
         $this->referencia = $t['referencia'];
         $this->cantidad = $t['cantidad'];
         $this->importe = $t['importe'];
         $this->peso = $t['peso'];
         $this->estado = $this->str2bool($t['estado']);
         $this->usuario_creacion = $t['usuario_creacion'];
         $this->fecha_creacion = Date('d-m-Y H:i', strtotime($t['fecha_creacion']));
         $this->usuario_modificacion = $t['usuario_modificacion'];
         $this->fecha_modificacion = Date('d-m-Y H:i');
     } else {
         $this->idempresa = null;
         $this->idtransporte = null;
         $this->codalmacen = null;
         $this->fecha = null;
         $this->referencia = null;
         $this->cantidad = null;
         $this->importe = null;
         $this->peso = null;
         $this->estado = false;
         $this->usuario_creacion = null;
         $this->fecha_creacion = \Date('d-m-Y H:i');
         $this->usuario_modificacion = null;
         $this->fecha_modificacion = \Date('d-m-Y H:i');
     }
     $this->articulo = new articulo();
 }
开发者ID:joenilson,项目名称:distribucion,代码行数:34,代码来源:distribucion_lineastransporte.php


示例16: __construct

 public function __construct($r = FALSE)
 {
     parent::__construct('lineasregstocks');
     if ($r) {
         $this->id = $this->intval($r['id']);
         $this->idstock = $this->intval($r['idstock']);
         $this->cantidadini = floatval($r['cantidadini']);
         $this->cantidadfin = floatval($r['cantidadfin']);
         $this->codalmacendest = $r['codalmacendest'];
         $this->fecha = date('d-m-Y', strtotime($r['fecha']));
         $this->hora = '00:00:00';
         if (!is_null($r['hora'])) {
             $this->hora = date('H:i:s', strtotime($r['hora']));
         }
         $this->motivo = $r['motivo'];
         $this->nick = $r['nick'];
     } else {
         $this->id = NULL;
         $this->idstock = NULL;
         $this->cantidadini = 0;
         $this->cantidadfin = 0;
         $this->codalmacendest = NULL;
         $this->fecha = date('d-m-Y');
         $this->hora = date('H:i:s');
         $this->motivo = '';
         $this->nick = NULL;
     }
 }
开发者ID:pcrednet,项目名称:facturacion_base,代码行数:28,代码来源:regularizacion_stock.php


示例17: __construct

 public function __construct($p = FALSE)
 {
     parent::__construct('pagos', 'plugins/tesoreria/');
     if ($p) {
         $this->id = $this->intval($p['id']);
         $this->idfactura = $this->intval($p['idfactura']);
         $this->idalbaran = $this->intval($p['idalbaran']);
         $this->idpedido = $this->intval($p['idpedido']);
         $this->idrecibo = $this->intval($p['idrecibo']);
         $this->fase = $p['fase'];
         $this->fecha = Date('d-m-Y', strtotime($p['fecha']));
         $this->importe = floatval($p['importe']);
         $this->nota = $p['nota'];
     } else {
         $this->id = NULL;
         $this->idfactura = NULL;
         $this->idalbaran = NULL;
         $this->idpedido = NULL;
         $this->idrecibo = NULL;
         $this->fase = '-';
         $this->fecha = Date('d-m-Y');
         $this->importe = 0;
         $this->nota = '';
     }
     $this->pendiente = 0;
 }
开发者ID:desalort,项目名称:FSAutoventas,代码行数:26,代码来源:pago.php


示例18: __construct

 public function __construct($a = FALSE)
 {
     parent::__construct('autoventas_opciones', 'plugins/autoventas/');
     if ($a) {
         $this->url = $this->escape_string($a["url"]);
         $this->activo = (int) $a["activo"];
         $this->cron = (int) $a["cron"];
         $this->tiempocron = (int) $a["tiempocron"];
         $this->last_sincro = (int) $a["last_sincro"];
         $this->ftp_url = $this->escape_string($a["ftp_url"]);
         $this->ftp_user = $this->escape_string($a["ftp_user"]);
         $this->ftp_pass = $this->escape_string($a["ftp_pass"]);
         $this->ftp_dir = $this->escape_string($a["ftp_dir"]);
     } else {
         $this->url = NULL;
         $this->activo = 0;
         $this->cron = 0;
         $this->tiempocron = 5;
         $this->last_sincro = 0;
         $this->ftp_url = NULL;
         $this->ftp_user = NULL;
         $this->ftp_pass = NULL;
         $this->ftp_dir = NULL;
     }
 }
开发者ID:desalort,项目名称:FSAutoventas,代码行数:25,代码来源:autoventas_opcionesdb.php


示例19: __construct

 public function __construct($l = FALSE)
 {
     parent::__construct('lineasivafactprov', 'plugins/facturacion_base/');
     if ($l) {
         $this->idlinea = $this->intval($l['idlinea']);
         $this->idfactura = $this->intval($l['idfactura']);
         $this->neto = floatval($l['neto']);
         $this->codimpuesto = $l['codimpuesto'];
         $this->iva = floatval($l['iva']);
         $this->totaliva = floatval($l['totaliva']);
         $this->recargo = floatval($l['recargo']);
         $this->totalrecargo = floatval($l['totalrecargo']);
         $this->totallinea = floatval($l['totallinea']);
     } else {
         $this->idlinea = NULL;
         $this->idfactura = NULL;
         $this->neto = 0;
         $this->codimpuesto = NULL;
         $this->iva = 0;
         $this->totaliva = 0;
         $this->recargo = 0;
         $this->totalrecargo = 0;
         $this->totallinea = 0;
     }
 }
开发者ID:arielopez,项目名称:temporal,代码行数:25,代码来源:linea_iva_factura_proveedor.php


示例20: __construct

 public function __construct($t = FALSE)
 {
     parent::__construct('inme_temas');
     if ($t) {
         $this->codtema = $t['codtema'];
         $this->titulo = $t['titulo'];
         $this->texto = $t['texto'];
         $this->keywords = $t['keywords'];
         $this->imagen = $t['imagen'];
         $this->articulos = intval($t['articulos']);
         $this->popularidad = intval($t['popularidad']);
         $this->activo = $this->str2bool($t['activo']);
         $this->fecha = date('d-m-Y', strtotime($t['fecha']));
         $this->busqueda = $t['busqueda'];
     } else {
         $this->codtema = NULL;
         $this->titulo = '';
         $this->texto = '';
         $this->keywords = '';
         $this->imagen = NULL;
         $this->articulos = 0;
         $this->popularidad = 0;
         $this->activo = TRUE;
         $this->fecha = date('d-m-Y');
         $this->busqueda = '';
     }
 }
开发者ID:NeoRazorX,项目名称:informame,代码行数:27,代码来源:inme_tema.php



注:本文中的fs_model类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP fs_var类代码示例发布时间:2022-05-23
下一篇:
PHP fs_extension类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap