Fix recursion in gnc:owner-get-owner-id (reported by Chase James).

* src/business/business-core/business-core.scm:  need to
	  properly recurse in gnc:owner-get-owner-id.  there is no
	  gnc:owner-get-id API.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11263 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2005-08-15 12:54:21 +00:00
parent f104877f42
commit e5ab6b7529
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-08-15 Derek Atkins <derek@ihtfp.com>
* src/business/business-core/business-core.scm: need to
properly recurse in gnc:owner-get-owner-id. there is no
gnc:owner-get-id API.
2005-07-17 Christian Stimming <stimming@tuhh.de>
* macros/openhbci.m4: Remove old unused macros. Add macro name

View File

@ -91,7 +91,7 @@
(let ((e (gnc:owner-get-employee owner)))
(gnc:employee-get-id e)))
((gnc-owner-job)
(gnc:owner-get-id (gnc:job-get-owner (gnc:owner-get-job owner))))
(gnc:owner-get-owner-id (gnc:job-get-owner (gnc:owner-get-job owner))))
(else ""))))
(define (gnc:entry-type-percent-p type-val)