Example #1
0
        public virtual void CopyValues(OutputDeliveryInvoiceRecord source)
        {
            if (source == null)
            {
                return;
            }

            Oid               = source.Oid;
            _oid_albaran      = source.OidAlbaran;
            _oid_factura      = source.OidFactura;
            _fecha_asignacion = source.FechaAsignacion;
        }
Example #2
0
        internal void Update(OutputInvoice parent)
        {
            // if we're not dirty then don't update the database
            if (!this.IsDirty)
            {
                return;
            }

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

            MarkOld();
        }