Ejemplo n.º 1
0
        internal static string SELECT(long oid, bool lockTable)
        {
            QueryConditions conditions = new QueryConditions {
                ConceptoFactura = OutputInvoiceLineInfo.New(oid)
            };

            return(SELECT(conditions, lockTable));
        }
Ejemplo n.º 2
0
        public void CopyValues(OutputInvoiceLineInfo source)
        {
            if (source == null)
            {
                return;
            }

            _record.CopyValues(source.Base.Record);

            _oid_almacen     = source.OidAlmacen;
            _store           = source.Almacen;
            _store_id        = source.StoreID;
            _expediente      = source.Expediente;
            _cuenta_contable = source.CuentaContable;
            _n_factura       = source.NFactura;
            _fecha_factura   = source.FechaFactura;
            _cliente         = source.Cliente;
        }