Exemplo n.º 1
0
 /// <summary>
 /// Refresh the mobile business object from database.
 /// </summary>
 public void Refresh()
 {
     if (!_isNew && !__isOsEntity)
     {
         YPF.Comercial.RRCC.SUP.RelevamientoPrecios ent = Load(_pk());
         CopyAll(ent);
         if (this.IsPending)
         {
             this.SetOriginalState(null);
             this.__originalStateValid = false;
         }
         else
         {
             YPF.Comercial.RRCC.SUP.RelevamientoPrecios os_1 = new YPF.Comercial.RRCC.SUP.RelevamientoPrecios();
             os_1.CopyAll(this);
             this.SetOriginalState(os_1);
         }
         _isNew = false;
         _isDirty = false;
     }
 }
Exemplo n.º 2
0
 protected  override void Bind(Sybase.Persistence.ConnectionProfile profile, System.Data.IDataReader rs) 
 {
     this.__idInteraccion = com.sybase.afx.db.ReaderUtil.GetString(profile,rs,"idInteraccion",0);
     this.__interaccion_nroOperacionSAP = com.sybase.afx.db.ReaderUtil.GetString(profile,rs,"interaccion_nroOperacionSAP",1);
     this.__relevamientoPreciosProducto_CodigoSAP = com.sybase.afx.db.ReaderUtil.GetString(profile,rs,"relevamientoPreciosProducto_CodigoSAP",2);
     this.__precio = com.sybase.afx.db.ReaderUtil.GetDecimal(profile,rs,"precio",3);
     this.__volumen = com.sybase.afx.db.ReaderUtil.GetString(profile,rs,"volumen",4);
     this.__pending = com.sybase.afx.db.ReaderUtil.GetBoolean(profile,rs,"pending",5);
     this.__pendingChange = com.sybase.afx.db.ReaderUtil.GetChar(profile,rs,"pendingChange",6);
     this.__replayPending = com.sybase.afx.db.ReaderUtil.GetLong(profile,rs,"replayPending",7);
     this.__replayFailure = com.sybase.afx.db.ReaderUtil.GetLong(profile,rs,"replayFailure",8);
     this.__interaccionFK = com.sybase.afx.db.ReaderUtil.GetNullableLong(profile,rs,"interaccionFK",9);
     this.__surrogateKey = com.sybase.afx.db.ReaderUtil.GetLong(profile,rs,"surrogateKey",10);
     this.__replayCounter = com.sybase.afx.db.ReaderUtil.GetLong(profile,rs,"replayCounter",11);
     this.__disableSubmit = com.sybase.afx.db.ReaderUtil.GetBoolean(profile,rs,"disableSubmit",12);
     _isNew = false;
     _isDirty = false;
     if (this.IsPending)
     {
         this.SetOriginalState(null);
         this.__originalStateValid = false;
     }
     else
     {
         YPF.Comercial.RRCC.SUP.RelevamientoPrecios os_1 = new YPF.Comercial.RRCC.SUP.RelevamientoPrecios();
         os_1.CopyAll(this);
         this.SetOriginalState(os_1);
     }
 }
Exemplo n.º 3
0
 private void Internal_Create()
 {
     bool ok = true;
     Sybase.Persistence.LocalTransaction localTransaction = null;
     try
     {
         localTransaction = YPF.Comercial.RRCC.SUP.CRMMobileDesaDB.BeginTransaction();
         if(__surrogateKey == 0) __surrogateKey = (long)(YPF.Comercial.RRCC.SUP.KeyGenerator.GenerateId());
         YPF.Comercial.RRCC.SUP.RelevamientoPrecios os_1 = new YPF.Comercial.RRCC.SUP.RelevamientoPrecios();
         os_1.CopyAll(this);
         this.SetOriginalState(os_1);
         PendingChange = 'C';
         SetReplayCounter(KeyGenerator.GenerateId());
         SetReplayFailure(0);
         ReplayPending = 0;
         if(_isNew)
         {
             Create(true);
         }
         else
         {
             Update(true);
         }
     }
     catch(System.SystemException e)
     {
         ok = false;
         throw e;
     }
     finally
     {
         if(localTransaction != null)
         {
             localTransaction.EndTransaction(ok);
         }
     }
 }