Re: crash at Reports/Account Transaction Report

2009-09-28 Thread Brian Amos
On Sun, Sep 27, 2009 at 7:12 PM, jra...@raehls.org wrote:

 Gnucash disappears in Windows when selecting Account Transaction Report, as 
 well as Account Report just above it in the menu.  This is with a copy that 
 I compiled with install.sh and distribution executable built with dist.sh, 
 installed to c:\Program Files\Gnucash in the usual way.  I have a fairly 
 sizeable 2 Mb XML database.

 Unfortunately, I do not have time to learn the debugger, but wanted to report 
 that the bug also appears in Windows.

 Jim Raehl

I experienced the same problem and found bug 593906 in bugzilla that
appears to be the same issue and offers a patch.  Not having tried the
patch I cannot say whether it works or not, but it's worth  a try.

Brian Amos
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: crash at Reports/Account Transaction Report

2009-09-28 Thread Sebastian Held
Am Montag, 28. September 2009 14:23:47 schrieb Brian Amos:
 On Sun, Sep 27, 2009 at 7:12 PM, jra...@raehls.org wrote:
  Gnucash disappears in Windows when selecting Account Transaction
  Report, as well as Account Report just above it in the menu.  This is
  with a copy that I compiled with install.sh and distribution executable
  built with dist.sh, installed to c:\Program Files\Gnucash in the usual
  way.  I have a fairly sizeable 2 Mb XML database.
 
  Unfortunately, I do not have time to learn the debugger, but wanted to
  report that the bug also appears in Windows.
 
  Jim Raehl
 
 I experienced the same problem and found bug 593906 in bugzilla that
 appears to be the same issue and offers a patch.  Not having tried the
 patch I cannot say whether it works or not, but it's worth  a try.
 
 Brian Amos
 

Thanks, Brian. The patch works.
Derek, can you please commit it (it's 9 days old...)?

Sebastian
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Invoices: Process Payment

2009-09-28 Thread Sebastian Held
Hello List, hello Derek,

I'm currently trying to get familiar with the invoice payment procedure, but 
it seems to only model the got cash way of paying an invoice, correct?

This is, what I want the invoice payment to do:
 - I sell s.th. and create an invoice
 - this invoice shows up in A/R (asset)
 - the Income/Sales is credited

 - now the customer pays the invoice
 - via HBCI I see this payment on my checking account
 - now I like to link this payment with the invoice item in A/R
   this seems to be impossible.

The process payment command creates a new transaction to my checking account, 
which is not correct.


Is it possible to modify an imported (via HBCI aka aqbanking) transaction to 
behave like a payment?

If not, I'll need to code that. Or is there a fundamental flaw in my 
description above?

Sebastian


PS: I also like to have a more intelligent process payment druid (take the 
description of the selected transaction and try to find a matching invoice 
(customer))
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: How to setup gconf data

2009-09-28 Thread Colin Law
Can anyone help with this I am a bit stuck?

Colin

2009/9/26 Colin Law clan...@googlemail.com:
 I have added a checkbox to the preferences, register dialog and
 entered the data for the gconf key in apps_gnucash_general.schemas.in.
  I have done a full rebuild and everything works except that the key
 is not being initialised to the default value I specified in the
 schema and the descriptions (long and short) are not appearing in
 gconf-editor.  Is there something else I have to do to register the
 data with gconf?

 Colin L

___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: crash at Reports/Account Transaction Report

2009-09-28 Thread Christian Stimming
Am Montag, 28. September 2009 14:23 schrieb Brian Amos:
 On Sun, Sep 27, 2009 at 7:12 PM, jra...@raehls.org wrote:
  Gnucash disappears in Windows when selecting Account Transaction
  Report, as well as Account Report just above it in the menu.  This is
  with a copy that I compiled with install.sh and distribution executable
  built with dist.sh, installed to c:\Program Files\Gnucash in the usual
  way.  I have a fairly sizeable 2 Mb XML database.
 
  Unfortunately, I do not have time to learn the debugger, but wanted to
  report that the bug also appears in Windows.
 
  Jim Raehl

 I experienced the same problem and found bug 593906 in bugzilla that
 appears to be the same issue and offers a patch.  Not having tried the
 patch I cannot say whether it works or not, but it's worth  a try.

Thanks for pointing out this patch. Somehow the bug remained in NEEDINFO, 
which means we would have got to it eventually but it doesn't show up in some 
of the more frequently checked search lists, like Recent Patches. Anyway, 
I've committed this now.

Christian
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: Invoices: Process Payment

2009-09-28 Thread David T.
Sebastian--

If I am understanding you correctly, you want to be able to use an existing 
transaction (the one that has been imported to Gnucash) to account for an 
invoice. In my few experiments with using the billing features, I was unable to 
figure out how to do that, and I believe I was told that Gnucash doesn't have 
the option of using an existing transaction to pay an invoice. I will be eager 
to see how this plays out for you, as it would help me as well.

David

--- On Mon, 9/28/09, Sebastian Held sebastian.h...@gmx.de wrote:

 From: Sebastian Held sebastian.h...@gmx.de
 Subject: Invoices: Process Payment
 To: gnucash-devel@gnucash.org
 Date: Monday, September 28, 2009, 8:58 AM
 Hello List, hello Derek,
 
 I'm currently trying to get familiar with the invoice
 payment procedure, but 
 it seems to only model the got cash way of paying an
 invoice, correct?
 
 This is, what I want the invoice payment to do:
  - I sell s.th. and create an invoice
  - this invoice shows up in A/R (asset)
  - the Income/Sales is credited
 
  - now the customer pays the invoice
  - via HBCI I see this payment on my checking account
  - now I like to link this payment with the invoice item
 in A/R
    this seems to be impossible.
 
 The process payment command creates a new transaction to my
 checking account, 
 which is not correct.
 
 
 Is it possible to modify an imported (via HBCI aka
 aqbanking) transaction to 
 behave like a payment?
 
 If not, I'll need to code that. Or is there a fundamental
 flaw in my 
 description above?
 
 Sebastian
 
 
 PS: I also like to have a more intelligent process
 payment druid (take the 
 description of the selected transaction and try to find a
 matching invoice 
 (customer))
 ___
 gnucash-devel mailing list
 gnucash-devel@gnucash.org
 https://lists.gnucash.org/mailman/listinfo/gnucash-devel
 


  
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: How to setup gconf data

2009-09-28 Thread Christian Stimming
Am Montag, 28. September 2009 19:24 schrieb Colin Law:
  I have added a checkbox to the preferences, register dialog and
  entered the data for the gconf key in apps_gnucash_general.schemas.in.
   I have done a full rebuild and everything works except that the key
  is not being initialised to the default value I specified in the
  schema and the descriptions (long and short) are not appearing in
  gconf-editor.  Is there something else I have to do to register the
  data with gconf?

Sorry, I've got only some random ideas:
- make install so that the .schemas file is built and installes
- restarting gconf

That's all I can think of.

Regards,

Christian

___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: There has an error in GnuCash Tutorial and Concepts Guide

2009-09-28 Thread Christian Stimming
Am Freitag, 25. September 2009 04:55 schrieb 陈伟:
 There has an error in GnuCash Tutorial and Concepts Guide:
 7.3.3.3. Example: Monthly Payments  (
 http://svn.gnucash.org/docs/guide/loans_calcs1.html)
 *“CF = PV = 12”   should be  CF = PF = 12*

Fixed. Thanks for pointing this out.

Regards,

Christian Stimming
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: Spanish translation project

2009-09-28 Thread Christian Stimming
Dear Guillermo,

Am Montag, 28. September 2009 04:22 schrieb Guillermo Lengemann:
 Greetings Comrades,

 I would like to help with the Spanish translation of gnucash.

sure, you are very welcome to contribute in this area. Everything that needs 
to be known about the translation of gnucash is written on 
http://wiki.gnucash.org/wiki/Translation . Feel free to ask more questions 
here on gnucash-devel if anything is unclear after reading those 
instructions.

Regards,

Christian Stimming
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: Patch for balance column displayed in template register

2009-09-28 Thread Christian Stimming
Am Samstag, 26. September 2009 14:59 schrieb Tim M:
 I noticed yesterday a bug in the reg run balance patch that was applied,
 there is now a Balance column displayed in the template transaction
 register.  If you open the scheduled transaction editor, then open a
 scheduled transaction and go to the Template Transaction tab, there is a
 Balance column displayed on the far right side of the register.

 The attached patch fixes this defect so that the RBALN column is not
 displayed in template registers.

Applied. Thanks a lot!

Christian
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: Patch to allow reg run balances for single account registers (partial implementation)

2009-09-28 Thread Christian Stimming
Am Samstag, 26. September 2009 18:30 schrieb Tim M:
 The attached patch is an enhancement to the original reg_run_balance patch
 that was implemented.  

Applied as well. Thanks a lot!

(Just a small remark: For non-trivial patches, please create the patch/diff 
from the top-level directory of the sources, rather than inside the directory 
down in the source tree. Otherwise it's not always obvious to those who want 
to apply and commit where this particular source file is located. One easy 
way of creating the suitable patch is by running svn diff in the top-level 
directory. Thanks!)

Christian

 This patch has been created off of a recent trunk 
 (in the last week).  It makes the following changes:

 1. Add a gboolean to the argument list of the
 gnc_split_register_get_rbaln() function.  If the new boolean value is set
 to TRUE, then the function will return the running balance for the parent
 account and all subaccounts.  If set to FALSE, the function will only
 return the running balance of the parent account and will not include the
 subaccounts.  The function has been modified also to accomodate this
 change.

 2. Update existing calls to the function to add the boolean value.


 This patch does not actually implement a runtime balance for single account
 register view or normal balance column because of potential issues that
 will need to be addressed, but it opens up the possibility for easy
 implementation of such a change.
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: How to setup gconf data

2009-09-28 Thread Christian Stimming
Am Montag, 28. September 2009 22:26 schrieb Colin Law:
   I have added a checkbox to the preferences, register dialog and
   entered the data for the gconf key in apps_gnucash_general.schemas.in.
    I have done a full rebuild and everything works except that the key
   is not being initialised 
 
  Sorry, I've got only some random ideas:
  - make install so that the .schemas file is built and installes
  - restarting gconf

 I had done make install, and have rebooted in fact.  Should the new
 key appear in gconf before gnucash is run?  It does not appear until I
 open the preferences dialog and change the new key, and then it does
 not have the descriptions I have put in the schema.  I have examined
 the schema data and cannot see anything wrong. 

Then I can only think of the install prefix of gnucash which might be 
different from where gconf expects its .schemas file. Other than that I alos 
don't know of anything. Anyone else?

Christian

 Perhaps I should tweak 
 one of the strings on one of the other keys and see if gconf picks
 that up, that will tell me whether I have a problem with picking up
 the schema or with what I have put in it.
 I did not really want to have to learn about how gconf works at this
 time, I have enough I am trying to pick up.  I may have no choice
 however.

 Colin
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel