search for: saldos

Displaying 15 results from an estimated 15 matches for "saldos".

Did you mean: saludos
2018 Jan 02
3
Help with first S3-class
Hi, I am trying to understand S3 classes. I have read several tutorials about the topics but I am still a bit confused. I guess it is because it is so different from Java OOP. I have pasted my attempt at creating a bank-account class below and my problems are: 1. What should be added some plot.default() calls the account$plot() method ? 2. What should the account$plot() be implemented to
2020 Sep 13
3
CALCULAR SALDO DE CUENTA CORRIENTE
Pido ayuda para calcular el SALDO *DATAFRAME:* ASIENTO FECHA CUENTA CONCEPTO ARS_DEB ARS_HAB SALDO 1 1 2020-01-01 40100006 Asiento de Apertura 0 199517. -199517. 2 231 2020-01-13 40100006 15/01 CH53677071 GALICIA 14054. 0 14054. 3 231 2020-01-13 40100006 20/01 CH22406030 CREDICOO 9458. 0 23511. 4 231 2020-01-13
2020 Sep 10
2
SALDO EN RESUMEN DE CUENTA CONTABLE
Tengo que preparar un Dataset que termine siendo un resumen de cuenta contable a partir de los datos del diario contable de una empresa que el script va filtrando cuenta por cuenta. He podido importar los datos con variables: fecha , concepto, valor debe, valor haber y me falta una variable que sea el saldo. Sucede que el saldo se tiene que calcular fila a fila, es decir sumando el valor debe y
2018 Jan 02
0
Help with first S3-class
On 02/01/2018 6:38 PM, Martin M?ller Skarbiniks Pedersen wrote: > Hi, > > I am trying to understand S3 classes. I have read several tutorials about > the topics but I am still a bit confused. I guess it is because it is > so different from > Java OOP. What you do below isn't S3. S3 is a system where the classes are secondary to the generic functions. Methods
2018 Jan 03
2
Help with first S3-class
On 3 January 2018 at 00:52, Duncan Murdoch <murdoch.duncan at gmail.com> wrote: > On 02/01/2018 6:38 PM, Martin M?ller Skarbiniks Pedersen wrote: >> >> Hi, >> >> I am trying to understand S3 classes. I have read several tutorials >> about >> the topics but I am still a bit confused. I guess it is because it is >> so different from >> Java
2018 Jan 03
0
Help with first S3-class
Some mistake: > I expect this output: [1] 100 Martin Saldo is: 100 but I get [1] 0 Martn Saldo is: 0
2006 Jun 30
1
tkbutton command - how to know which button was clicked?
In the below code fragment, print(arg) always prints the last element of rekeningen$rekening. Is this because of lazy evaluation? I.e. arg is evaluated at the time the button is pressed? And, if so, how can I avoid this? I tried function() {force(arg); print(arg)} but that didn't work either. Thanks, Jeebee. for(rek in seq(1,nrow(rekeningen))) { arg <- rekeningen$rekening[rek]
2017 Mar 18
2
Ocultar código
...en medio del trabajo se me ocurre la idea de ocultar parte del código de un scrpit de programación, esto ayudaría a la validación de los resultados y del paso a paso. Es posible hacer esto? o encriptar de alguna forma? si bien va en contra de los principios del proyecto R tal vez se puede hacer. Saldos y gracias Andrés [[alternative HTML version deleted]]
2011 Aug 10
0
sql query in a more "rails 3 way"
Hi people I want to know if you know how to write the following sql query in a more "rails way" UPDATE buy_order_detail SET saldo = saldo - detail_purchase.cantidad FROM purchase_detail INNER JOIN purchase ON purchase.id = purchaser_detail.purchase_id INNER JOIN waybill ON waybill.id = purchase.waybill_id INNER JOIN buy_order ON buy_order.id =
2018 Jan 03
1
Help with first S3-class
Function arguments are not pass-by-reference... they are pass-by-value. You need to return the altered object to the caller when you are done messing with it. Note that R is a data processing language... your example will not scale to real world use cases because you make no use of vectorization to handle multiple accounts. It is better to focus on the functional aspect of computing and let the
2017 Mar 18
2
Ocultar código
...curre la idea de ocultar parte del > código de un scrpit de programación, esto ayudaría a la validación de los > resultados y del paso a paso. Es posible hacer esto? o encriptar de alguna > forma? si bien va en contra de los principios del proyecto R tal vez se > puede hacer. > > Saldos y gracias > > Andrés > > [[alternative HTML version deleted]] > > _______________________________________________ > R-help-es mailing list > R-help-es en r-project.org > https://stat.ethz.ch/mailman/listinfo/r-help-es > -- Saludos, Carlos Ortega www.quality...
2006 Jul 14
1
error with Dates in SQL Server
An application that run without flaw last week has been reported to crash with an error that says that a conversion from char to datetime has given a date outside range. This very application runs OK today in production (fortunately :-), and the difference in both SQL Servers is just that the one where the exception has started to appear has Spanish conventions. I can''t give
2003 May 20
0
De um amigo
...Endividei-me desmesuradamente devido a retracc?o do mercado para os produtos que vendia e tambem pelos altos juros que pagava na banca - contractos para capital de circulacao, etc.. Os meus amigos afastaram-se, com receio de pedidos de dinheiro emprestado ou avais bancarios. Passei a trabalhar com saldos bancarios negativos e os meus cartoes de credito acumularam uma divida enorme, os quais tinha usado para levar adiante o meu negocio e sustentar a minha familia de seis pessoas. Ja nao suportava as interminaveis ligacoes telefonicas dos credores, de cartas de cobranca de advogados e visitas de cob...
2003 Apr 12
0
De um amigo
...Endividei-me desmesuradamente devido a retracc?o do mercado para os produtos que vendia e tambem pelos altos juros que pagava na banca - contractos para capital de circulacao, etc.. Os meus amigos afastaram-se, com receio de pedidos de dinheiro emprestado ou avais bancarios. Passei a trabalhar com saldos bancarios negativos e os meus cartoes de credito acumularam uma divida enorme, os quais tinha usado para levar adiante o meu negocio e sustentar a minha familia de seis pessoas. Ja nao suportava as interminaveis ligacoes telefonicas dos credores, de cartas de cobranca de advogados e visitas de cob...
2006 Jul 17
18
Inserting datetime value into SQL Server
I have a SQL Server column named StartTime of (SQL Server) type datetime If I attempt to set the attribute using public def StartTime=(time) write_attribute(:StartTime, "{ts ''1899-12-30 #{time.hour}:#{time.min}:#{time.sec}''}") end it''s inserting a NULL value. Anyone else able to successfully insert a date time value into a SQL Server table using