internal void CopyValues(IDataReader source)
        {
            if (source == null)
            {
                return;
            }

            _record.CopyValues(source);

            _importe        = Format.DataReader.GetDecimal(source, "IMPORTE");
            _codigo_ticket  = Format.DataReader.GetString(source, "CODIGO_TICKET");
            _codigo_albaran = Format.DataReader.GetString(source, "CODIGO_ALBARAN");
        }
        internal void Update(Ticket parent)
        {
            // if we're not dirty then don't update the database
            if (!this.IsDirty)
            {
                return;
            }

            try
            {
                SessionCode = parent.SessionCode;
                DeliveryTicketRecord obj = Session().Get <DeliveryTicketRecord>(Oid);
                obj.CopyValues(Base.Record);
                Session().Update(obj);
            }
            catch (Exception ex)
            {
                iQExceptionHandler.TreatException(ex);
            }

            MarkOld();
        }