本文整理汇总了PHP中fs_model类的典型用法代码示例。如果您正苦于以下问题:PHP fs_model类的具体用法?PHP fs_model怎么用?PHP fs_model使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了fs_model类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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;
}
}
示例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();
}
}
示例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');
}
}
示例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 = '';
}
}
示例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;
}
}
示例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;
}
}
示例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');
}
}
示例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();
}
示例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;
}
}
示例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;
}
}
示例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();
}
示例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 = '?';
}
}
示例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();
}
示例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;
}
}
示例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();
}