2016-01-14 GnuCash IRC logs

00:24:35 *** fell has joined #gnucash
01:11:17 *** Mechtilde has joined #gnucash
01:17:46 *** fell has quit IRC
01:23:27 *** Confused has quit IRC
01:59:42 *** Mechtilde has quit IRC
02:10:20 *** rubdos has joined #gnucash
02:35:05 *** autoditac__ has joined #gnucash
02:35:41 *** uXus has quit IRC
02:37:30 *** autoditac__ has quit IRC
02:38:32 *** autoditac__ has joined #gnucash
02:39:15 *** uXus has joined #gnucash
02:50:54 *** autoditac___ has joined #gnucash
02:50:55 *** autoditac__ has quit IRC
02:50:58 *** autoditac___ is now known as autoditac__
03:15:39 *** Mechtilde has joined #gnucash
03:50:38 *** fabior has joined #gnucash
04:14:54 *** nomeata has joined #gnucash
04:25:39 *** aqua___ has joined #gnucash
04:32:49 *** mazzen has joined #gnucash
04:35:02 <mazzen> Hi! I was wondering if GNUCash can handle the german "Umsatzsteuervoranmeldung" and found this: http://wiki.gnucash.org/wiki/De/Projekte#UStVA "Dies ist ohne zusätzliche Software möglich." = "You do not need software for handling the Umsatzsteuervoranmeldung." This confuse me! Are there any more information about it?
04:39:42 <Mechtilde> Hast du unter Berichte geschaut?
04:40:07 <Mechtilde> eventuell geht es inzwischen auch ohne den Umweg über das Programm "winston2
04:41:55 *** aqua___ has quit IRC
04:53:47 <mazzen> Mechtilde: Danke für die Info! Winston kenne ich, den Export von GNUCash hatte ich noch nicht gesehen. Eine integrierte Lösung hätte ich "besonders schön" empfunden, aber ... da gibt es schlimmeres! ;-) Nochmals Danke!
04:55:26 <Mechtilde> weist Du vielleicht, wie man die Jahreszahl in die Rechnungsnummer bekommt
04:55:42 <Mechtilde> z.b 1610034
04:55:55 <Mechtilde> für Rechnung 10034 aus 2016?
04:59:45 <mazzen> Mechtilde: nein, leider nicht.
05:06:33 *** mazzen has left #gnucash
06:22:13 *** ThomasKeller has quit IRC
06:47:56 *** Jimraehl1 has left #gnucash
06:52:48 *** Jimraehl1 has joined #gnucash
06:56:16 *** Mechtilde has quit IRC
06:56:48 *** Mechtilde has joined #gnucash
07:12:57 *** fabior has quit IRC
07:18:55 *** ThomasKeller has joined #gnucash
08:40:18 *** fabior has joined #gnucash
08:41:08 *** fell has joined #gnucash
08:48:17 *** aqua___ has joined #gnucash
08:53:09 *** ErKa has joined #gnucash
10:17:14 *** BuschMan has joined #gnucash
11:08:45 *** nomeata has quit IRC
11:22:27 *** aqua___ has quit IRC
11:34:57 *** rpg has joined #gnucash
11:39:47 *** Mechtilde has quit IRC
12:51:31 *** nomeata has joined #gnucash
12:52:25 *** rpg has quit IRC
12:54:19 *** rpg has joined #gnucash
12:54:27 *** rpg has joined #gnucash
13:02:37 *** fabior has quit IRC
13:05:23 *** fabior has joined #gnucash
13:05:28 <jralls> codesmythe: I found the problem with cmake in my gtk-osx environment: The PKG_CONFIG_PATH was getting cleared at the end of the first run of _gnc_pkg_check_modules_internal at line 225. You meant that to reset it to _pkgconfig_path_old, didn't you?
13:05:51 *** fabior has quit IRC
13:07:18 *** BuschMan has quit IRC
13:12:54 *** Mechtilde has joined #gnucash
13:27:12 *** nomeata has quit IRC
13:29:59 *** codesmy36 has joined #gnucash
13:31:25 *** nomeata has joined #gnucash
13:31:50 <codesmy36> jralls: Hmm. I'll have to take a look later. I had a lot of trouble getting cmake and pkg-config to behave together, so I'm not surprised that some issues remain.
13:33:08 <jralls> codesmy36: OK. With that change it works fine for me, just tested ninja satisfactorily too.
13:33:39 <codesmy36> Great.
13:35:05 <codesmy36> Gtest question: on OS X, do you install gtest system wide by hand. It does not seem to be managed by jhbuild.
13:39:27 <codesmy36> (not system wide, rather install into $PREFIX)
13:42:50 <jralls> Not exactly install. I just unpacked the gmock tarball, which includes gtest, and then point gnucash at it with the configure options. That sets up building a libgtest.a for test programs to link to. See configure.ac starting at line 854.
13:44:35 <jralls> And src/test-core/Makefile.am starting at line 82.
13:46:44 <jralls> That, incidentally, is the way the google-test authors intended one to do it, but the distro packagers make it hard so almost all of the macro in configure.ac is to try and find gtest without requiring any configure flags.
13:49:53 <codesmy36> Yeah. I had headed down the path of having cmake download gtest as in the person in closed PR 53/54 because that looked simpler. :-)
13:51:51 <codesmy36> But I agree with the reasons you have there.
13:52:24 <codesmy36> gave
13:54:40 <jralls> Yeah, that's a slippery slope for inside GnuCash. OTOH, it could be an alternative to gnucash-on-windows that would also work on Mac with less overhead and without the Gnome dependence.
13:59:21 <codesmy36> Yeah I agree. I was going to explore that a bit once I got through getting the tests converted
14:00:24 <codesmy36> Some of the test and engine code assume autotools library layout. I may have a PR for that in a few days.
14:04:39 *** bozonius has quit IRC
14:05:05 *** bozonius has joined #gnucash
14:09:25 <codesmy36> jralls: And thanks for sorting out the INSTALL/ COPYING stuff. I'll need to do a couple more tweaks. The link in make install winds up linking to the source for and we will need to copy instead of link on windows. I think that is why the master build on windows is failing.
14:11:15 <jralls> OK. Are the cmake folks really so obtuse that create_symlink doesn't do a copy on Win32?
14:14:17 <codesmy36> yes. :-)
14:19:49 <jralls> That's very disappointing.
14:20:35 <Mechtilde> under src/report/locale-specific/us I find German templates too
14:21:00 <Mechtilde> Is it possible to have two directories, one for us and one for de?
14:24:38 <warlord> Mechtilde: I think it would require some other changes in the code to support that; I don't know why the DE tax report was done the way it was, but probably to reduce the amount of extra code that needed tobe written.
14:28:27 *** autoditac__ has quit IRC
14:29:15 <Mechtilde> there is an example to do German invoice in the wiki and I try to understand where I have to copy it and so on (http://wiki.gnucash.org/wiki/De/Kundenrechnung)
14:30:06 *** bertbob has quit IRC
14:33:28 <warlord> Mechtilde: assuming it's based on the existing invoices, you would copy it into the same place as the current invoices..
14:34:36 <warlord> Actually, that's not completely true -- to get it to autoload you need to put it in as a "standard report"
14:34:49 <warlord> I believe there is also a location in .gnucash that you can use
14:35:37 <Mechtilde> and where in ~/.gnucash?
14:37:56 <warlord> If i knew that off the top of my head I've have told you
14:40:42 <Mechtilde> maybe someone else?
14:41:18 <Mechtilde> in parallel I'm looking for it with my search engine
14:44:22 *** bertbob has joined #gnucash
14:47:17 <jralls> I think warlord is thinking of saved-reports-2.4, but IIRC that's for save report configurations, not for custom-coded reports.
14:47:35 *** bertbob has quit IRC
14:50:11 <Mechtilde> that's why I ask
14:53:33 <warlord> no, that's not what I was thinking. I thought you could put new .scm files somewhere in ~/.gnucash and they would get auto-loaded.
14:56:54 *** BuschMan has joined #gnucash
14:57:44 *** rubdos has quit IRC
15:02:29 *** BuschMan has quit IRC
15:02:43 *** bertbob has joined #gnucash
15:13:30 <mikee> Mechtilde: you can modify ~/.gnucash/config.user to load custom reports.
15:13:44 <mikee> (load "/home/mikee/.gnucash/mytaxinvoice.scm")
15:13:55 <mikee> as an example.
15:14:17 <Mechtilde> I didn't have this file, mikee
15:16:57 <mikee> You may have to create it. Linux I assume?
15:17:12 <Mechtilde> fresh Debian Stretch
15:17:20 *** aqua___ has joined #gnucash
15:17:42 <Mechtilde> do you have an example for thatß
15:17:48 <mikee> Not sure if it's created by GnuCash.
15:18:37 <Mechtilde> is it scheme?
15:18:38 <mikee> Just add that line. Provided you have a file called /home/YOUR_USER_NAME/.gnucash/mytaxinvoice.scm
15:18:52 <Mechtilde> then I find one under /etc/gnucash/
15:19:20 <mikee> I have a modified copy of the tax invoice.
15:20:20 <Mechtilde> can you post the line for config.user
15:20:34 <mikee> Not sure. I have a custom install. So my scheme files are at...
15:20:39 <Mechtilde> then I have an example how to write it in scheme
15:20:43 <mikee> That was it.
15:21:15 <Mechtilde> so you only wrote the path to the *.scm file
15:21:18 <Mechtilde> ?
15:22:03 <mikee> Yes but it a customised file stored in /home/mikee/.gnucash/
15:22:30 <Mechtilde> I want to add cutomized reports too
15:22:36 <mikee> A variant of /home/mikee/progs/gnucash-maint/share/gnucash/scm/gnucash/report/taxinvoice.scm
15:23:03 <mikee> With the name and the GUID changed.
15:24:46 <Mechtilde> the GUId is the git commit ID?
15:24:57 <Mechtilde> or what
15:25:36 <mikee> No it's the unique identifier for the report. Usually defined near the bottom of the scm file.
15:25:53 <Mechtilde> hom can I create it
15:28:32 <mikee> Copy the report you want to modify somewhere. Edit the name and the GUID. Add the path to the file in .gnucash/config.user . Modify the file tou your liking.
15:28:52 <mikee> This is not via GnuCash custom reports.
15:29:56 <Mechtilde> I will try it an describe it in the wiki
15:49:37 <Mechtilde> where can I define that the user config should be used?
15:51:13 <Mechtilde> I looked into "File - Preferences" and "Edit - Options" and "Edit - Report Options2
15:52:01 *** fell_ has joined #gnucash
15:53:57 *** fell has quit IRC
15:59:09 *** Mechtilde has quit IRC
16:23:18 *** BuschMan has joined #gnucash
16:36:05 *** MarcGuay has quit IRC
16:42:59 *** rpg- has joined #gnucash
16:43:14 *** rpg- has quit IRC
16:45:18 *** rpg has quit IRC
16:50:51 *** MarcGuay has joined #gnucash
16:55:01 <jralls> codesmy36: Just built -GXcode. Had to do it outside of my jhbuild environment. Makes an executable that actually runs from the build dircetory. Normal builds won't do that! Woo Hoo!
16:59:20 <codesmy36> Excellent! Glad it worked.
17:27:16 *** aqua___ has quit IRC
17:57:15 *** nomeata has quit IRC
18:07:08 *** MarcGuay has quit IRC
18:21:49 *** MarcGuay has joined #gnucash
18:38:27 *** BuschMan has quit IRC
18:38:47 *** BuschMan has joined #gnucash
18:40:02 *** codesmy63 has joined #gnucash
18:40:21 *** ErKa has quit IRC
18:42:42 *** codesmy36 has quit IRC
19:27:57 *** codesmy63 has quit IRC
19:52:17 *** jralls has quit IRC
19:53:07 *** jralls has joined #gnucash
19:53:08 *** ChanServ sets mode: +o jralls
19:53:41 *** jralls has quit IRC
19:53:46 *** jralls has joined #gnucash
19:53:46 *** ChanServ sets mode: +o jralls
20:00:55 *** ErKa has joined #gnucash
20:51:14 *** ErKa has quit IRC