mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Merge branch 'unstable'.
This commit is contained in:
commit
75970adc61
@ -13,14 +13,14 @@ ENABLE_TESTING()
|
|||||||
# Version number of gnucash
|
# Version number of gnucash
|
||||||
SET (GNUCASH_MAJOR_VERSION 2)
|
SET (GNUCASH_MAJOR_VERSION 2)
|
||||||
SET (GNUCASH_MINOR_VERSION 7)
|
SET (GNUCASH_MINOR_VERSION 7)
|
||||||
SET (GNUCASH_MICRO_VERSION 6)
|
SET (GNUCASH_MICRO_VERSION 7)
|
||||||
SET (GNUCASH_NANO_VERSION 0)
|
SET (GNUCASH_NANO_VERSION 0)
|
||||||
SET (VERSION "${GNUCASH_MAJOR_VERSION}.${GNUCASH_MINOR_VERSION}.${GNUCASH_MICRO_VERSION}")
|
SET (VERSION "${GNUCASH_MAJOR_VERSION}.${GNUCASH_MINOR_VERSION}.${GNUCASH_MICRO_VERSION}")
|
||||||
SET (GNUCASH_LATEST_STABLE_SERIES 2.6)
|
SET (GNUCASH_LATEST_STABLE_SERIES 2.6)
|
||||||
|
|
||||||
SET (PACKAGE gnucash)
|
SET (PACKAGE gnucash)
|
||||||
SET (PACKAGE_NAME GnuCash)
|
SET (PACKAGE_NAME GnuCash)
|
||||||
SET (PACKAGE_VERSION 2.7.6)
|
SET (PACKAGE_VERSION 2.7.7)
|
||||||
SET (PACKAGE_BUGREPORT gnucash-devel@gnucash.org)
|
SET (PACKAGE_BUGREPORT gnucash-devel@gnucash.org)
|
||||||
SET (PACKAGE_TARNAME ${PACKAGE})
|
SET (PACKAGE_TARNAME ${PACKAGE})
|
||||||
SET (PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
|
SET (PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
|
||||||
@ -71,6 +71,9 @@ OPTION (ALLOW_OLD_GETTEXT "allow to configure build with a gettext version older
|
|||||||
|
|
||||||
# These are also settable from the command line in a similar way.
|
# These are also settable from the command line in a similar way.
|
||||||
|
|
||||||
|
# Use gsettings-desktop-schemas for a better integration with GNOME
|
||||||
|
SET(COMPILE_GSCHEMAS ON CACHE BOOL "Compile the GSettings schema")
|
||||||
|
|
||||||
SET(GNUCASH_BUILD_ID "" CACHE STRING "Overrides the GnuCash build identification (Build ID) which defaults to a description of the vcs commit from which gnucash is built. Distributions may want to insert a package management based version number instead")
|
SET(GNUCASH_BUILD_ID "" CACHE STRING "Overrides the GnuCash build identification (Build ID) which defaults to a description of the vcs commit from which gnucash is built. Distributions may want to insert a package management based version number instead")
|
||||||
# GENERATE_SWIG_WRAPPERS - Controls whether to generate the swig wrappers for guile and python. If not set the wrappers will only be generated when building from a git worktree, commented out here, but will be evaluated later on in this file
|
# GENERATE_SWIG_WRAPPERS - Controls whether to generate the swig wrappers for guile and python. If not set the wrappers will only be generated when building from a git worktree, commented out here, but will be evaluated later on in this file
|
||||||
|
|
||||||
@ -459,7 +462,7 @@ ENDIF (WITH_SQL)
|
|||||||
# ############################################################
|
# ############################################################
|
||||||
|
|
||||||
IF (WITH_PYTHON)
|
IF (WITH_PYTHON)
|
||||||
FIND_PACKAGE(PythonInterp)
|
FIND_PACKAGE(PythonInterp 3)
|
||||||
IF (NOT PYTHONINTERP_FOUND)
|
IF (NOT PYTHONINTERP_FOUND)
|
||||||
MESSAGE(SEND_ERROR "Python support enabled, but Python interpreter not found.")
|
MESSAGE(SEND_ERROR "Python support enabled, but Python interpreter not found.")
|
||||||
ENDIF()
|
ENDIF()
|
||||||
@ -468,14 +471,14 @@ IF (WITH_PYTHON)
|
|||||||
MESSAGE(SEND_ERROR "Found python version ${PYTHON_VERSION_STRING}, but it's too old. Need python >= 2.4.0")
|
MESSAGE(SEND_ERROR "Found python version ${PYTHON_VERSION_STRING}, but it's too old. Need python >= 2.4.0")
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
FIND_PACKAGE(PythonLibs)
|
FIND_PACKAGE(PythonLibs 3)
|
||||||
IF (NOT PYTHONLIBS_FOUND)
|
IF (NOT PYTHONLIBS_FOUND)
|
||||||
MESSAGE(SEND_ERROR "Python support enabled, but Python libraries not found.")
|
MESSAGE(SEND_ERROR "Python support enabled, but Python libraries not found.")
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
# Determine where to install the python libraries.
|
# Determine where to install the python libraries.
|
||||||
EXECUTE_PROCESS(
|
EXECUTE_PROCESS(
|
||||||
COMMAND ${PYTHON_EXECUTABLE} -c "from distutils import sysconfig; print sysconfig.get_python_lib(prefix='${CMAKE_INSTALL_PREFIX}', plat_specific=True)"
|
COMMAND ${PYTHON_EXECUTABLE} -c "from distutils import sysconfig; print(sysconfig.get_python_lib(prefix='${CMAKE_INSTALL_PREFIX}', plat_specific=True))"
|
||||||
RESULT_VARIABLE PYTHON_SYSCONFIG_RESULT
|
RESULT_VARIABLE PYTHON_SYSCONFIG_RESULT
|
||||||
OUTPUT_VARIABLE PYTHON_SYSCONFIG_OUTPUT
|
OUTPUT_VARIABLE PYTHON_SYSCONFIG_OUTPUT
|
||||||
ERROR_VARIABLE PYTHON_SYSCONFIG_ERROR
|
ERROR_VARIABLE PYTHON_SYSCONFIG_ERROR
|
||||||
|
49
NEWS
49
NEWS
@ -1,5 +1,54 @@
|
|||||||
Version history:
|
Version history:
|
||||||
------- -------
|
------- -------
|
||||||
|
2.7.7 - 18 March 2018
|
||||||
|
|
||||||
|
The Gnucash Development Team is pleased to release Gnucash 2.7.7,
|
||||||
|
the eighth release of an unstable series leading to Gnucash 3.0.
|
||||||
|
|
||||||
|
Notice that we've decided that beginning with the upcoming major
|
||||||
|
release we will use two-digit release numbers and that the next
|
||||||
|
stable release will be 3.0. Mainenance releases will be 3.1, 3.2,
|
||||||
|
etc. The next unstable release will be 3.900 and will lead to 4.0.
|
||||||
|
|
||||||
|
This release is UNSTABLE and SHOULD NOT BE USED in production.
|
||||||
|
See the KNOWN PROBLEMS list at the bottom of the announcement.
|
||||||
|
|
||||||
|
This release changes file locations, binding APIs, report options,
|
||||||
|
and can make your data file no longer compatible with previous
|
||||||
|
versions. See https://wiki.gnucash.org/wiki/UpdateNotes for
|
||||||
|
details.
|
||||||
|
|
||||||
|
New Features For Users:
|
||||||
|
|
||||||
|
For Developers and Distro packagers:
|
||||||
|
The Python Bindings and Console are now for Python 3.
|
||||||
|
It's now possible to create a GncPrice from the Python bindings
|
||||||
|
with "gnc_price_create(book)", removing the need to clone an existing
|
||||||
|
GncPrice object and modify it.
|
||||||
|
Compilation of GLib Schemas during build and installation can be
|
||||||
|
disabled by setting -DCOMPILE_GSCHEMAS=OFF. This is intended
|
||||||
|
*only* for distribution packaging scripts that run
|
||||||
|
glib-compile-schemas themselves.
|
||||||
|
|
||||||
|
The following bugs are fixed only in unstable/master:
|
||||||
|
Bug 787439 - Segmentation Fault in Transfer dialog after clearing
|
||||||
|
Date field and pressing escape.
|
||||||
|
Bug 791831 - Add python3 support.
|
||||||
|
Bug 794242 - Remove keep above setting for assistant hierarchy
|
||||||
|
|
||||||
|
Other repairs not marked as bugs in git:
|
||||||
|
Fix date corruption in SQL load. Four date elements were affected:
|
||||||
|
GncEntry::date, GncEntry::date_entered, GncInvoice::opened, and
|
||||||
|
GncInvoice::posted. This does not affect the stored values of the dates.
|
||||||
|
Fix lost Bayesian matches in SQL backend. The import-map-bayes uses a
|
||||||
|
three-part key that uses the same delimiter as a path and the SQL
|
||||||
|
backend was throwing away everything except the account guid.
|
||||||
|
More transient-window fixes and other Gtk3 cleanups.
|
||||||
|
Add xmlns namespace declarations to all of the accounts templates that
|
||||||
|
lacked it and remove the emacs mode-setting comments at the end of them.
|
||||||
|
|
||||||
|
Updated Translations: Spanish
|
||||||
|
|
||||||
2.7.6 - 12 March 2018
|
2.7.6 - 12 March 2018
|
||||||
|
|
||||||
The Gnucash Development Team is pleased to release Gnucash 2.7.6,
|
The Gnucash Development Team is pleased to release Gnucash 2.7.6,
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# >>> from gnucash import thingy
|
# >>> from gnucash import thingy
|
||||||
# instead of
|
# instead of
|
||||||
# >>> from gnucash.gnucash_core import thingy
|
# >>> from gnucash.gnucash_core import thingy
|
||||||
from gnucash_core import *
|
from gnucash.gnucash_core import *
|
||||||
## @file
|
## @file
|
||||||
# @brief helper file for the importing of gnucash
|
# @brief helper file for the importing of gnucash
|
||||||
# @author Mark Jenkins, ParIT Worker Co-operative <mark@parit.ca>
|
# @author Mark Jenkins, ParIT Worker Co-operative <mark@parit.ca>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# function_class.py -- Library for making python classes from a set
|
# function_class.py -- Library for making python classes from a set
|
||||||
# of functions.
|
# of functions.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2008 ParIT Worker Co-operative <paritinfo@parit.ca>
|
# Copyright (C) 2008 ParIT Worker Co-operative <paritinfo@parit.ca>
|
||||||
# This program is free software; you can redistribute it and/or
|
# This program is free software; you can redistribute it and/or
|
||||||
@ -53,7 +53,7 @@ class ClassFromFunctions(object):
|
|||||||
# already exist with the same __instance value, or equivalent __instance
|
# already exist with the same __instance value, or equivalent __instance
|
||||||
# values, where this is desirable...
|
# values, where this is desirable...
|
||||||
return super(ClassFromFunctions, cls).__new__(cls)
|
return super(ClassFromFunctions, cls).__new__(cls)
|
||||||
|
|
||||||
def __init__(self, *args, **kargs):
|
def __init__(self, *args, **kargs):
|
||||||
"""Construct a new instance, using either the function
|
"""Construct a new instance, using either the function
|
||||||
self._module[self._new_instance] or using existing instance
|
self._module[self._new_instance] or using existing instance
|
||||||
@ -89,7 +89,7 @@ class ClassFromFunctions(object):
|
|||||||
return getattr(self._module, function_name)(
|
return getattr(self._module, function_name)(
|
||||||
self.instance,
|
self.instance,
|
||||||
*process_list_convert_to_instance(meth_func_args) )
|
*process_list_convert_to_instance(meth_func_args) )
|
||||||
|
|
||||||
setattr(cls, method_name, method_function)
|
setattr(cls, method_name, method_function)
|
||||||
setattr(method_function, "__name__", method_name)
|
setattr(method_function, "__name__", method_name)
|
||||||
return method_function
|
return method_function
|
||||||
@ -97,41 +97,41 @@ class ClassFromFunctions(object):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def ya_add_classmethod(cls, function_name, method_name):
|
def ya_add_classmethod(cls, function_name, method_name):
|
||||||
"""Add the function, method_name to this class as a classmethod named name
|
"""Add the function, method_name to this class as a classmethod named name
|
||||||
|
|
||||||
Taken from function_class and slightly modified.
|
Taken from function_class and slightly modified.
|
||||||
"""
|
"""
|
||||||
def method_function(self, *meth_func_args):
|
def method_function(self, *meth_func_args):
|
||||||
return getattr(self._module, function_name)(
|
return getattr(self._module, function_name)(
|
||||||
self,
|
self,
|
||||||
*process_list_convert_to_instance(meth_func_args) )
|
*process_list_convert_to_instance(meth_func_args) )
|
||||||
|
|
||||||
setattr(cls, method_name, classmethod(method_function))
|
setattr(cls, method_name, classmethod(method_function))
|
||||||
setattr(method_function, "__name__", method_name)
|
setattr(method_function, "__name__", method_name)
|
||||||
return method_function
|
return method_function
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def ya_add_method(cls, function_name, method_name):
|
def ya_add_method(cls, function_name, method_name):
|
||||||
"""Add the function, method_name to this class as a method named name
|
"""Add the function, method_name to this class as a method named name
|
||||||
|
|
||||||
Taken from function_class and slightly modified.
|
Taken from function_class and slightly modified.
|
||||||
"""
|
"""
|
||||||
def method_function(self, *meth_func_args):
|
def method_function(self, *meth_func_args):
|
||||||
return getattr(self._module, function_name)(
|
return getattr(self._module, function_name)(
|
||||||
self,
|
self,
|
||||||
*process_list_convert_to_instance(meth_func_args) )
|
*process_list_convert_to_instance(meth_func_args) )
|
||||||
|
|
||||||
setattr(cls, method_name, method_function)
|
setattr(cls, method_name, method_function)
|
||||||
setattr(method_function, "__name__", method_name)
|
setattr(method_function, "__name__", method_name)
|
||||||
return method_function
|
return method_function
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def add_methods_with_prefix(cls, prefix):
|
def add_methods_with_prefix(cls, prefix):
|
||||||
"""Add a group of functions with the same prefix
|
"""Add a group of functions with the same prefix
|
||||||
"""
|
"""
|
||||||
for function_name, function_value, after_prefix in \
|
for function_name, function_value, after_prefix in \
|
||||||
extract_attributes_with_prefix(cls._module, prefix):
|
extract_attributes_with_prefix(cls._module, prefix):
|
||||||
cls.add_method(function_name, after_prefix)
|
cls.add_method(function_name, after_prefix)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def add_constructor_and_methods_with_prefix(cls, prefix, constructor):
|
def add_constructor_and_methods_with_prefix(cls, prefix, constructor):
|
||||||
"""Add a group of functions with the same prefix, and set the
|
"""Add a group of functions with the same prefix, and set the
|
||||||
@ -160,7 +160,7 @@ def method_function_returns_instance(method_function, cls):
|
|||||||
return None
|
return None
|
||||||
else:
|
else:
|
||||||
return cls( **kargs )
|
return cls( **kargs )
|
||||||
|
|
||||||
return new_function
|
return new_function
|
||||||
|
|
||||||
def method_function_returns_instance_list(method_function, cls):
|
def method_function_returns_instance_list(method_function, cls):
|
||||||
@ -170,7 +170,7 @@ def method_function_returns_instance_list(method_function, cls):
|
|||||||
return new_function
|
return new_function
|
||||||
|
|
||||||
def methods_return_instance_lists(cls, function_dict):
|
def methods_return_instance_lists(cls, function_dict):
|
||||||
for func_name, instance_name in function_dict.iteritems():
|
for func_name, instance_name in iter(function_dict.items()):
|
||||||
setattr(cls, func_name,
|
setattr(cls, func_name,
|
||||||
method_function_returns_instance_list(
|
method_function_returns_instance_list(
|
||||||
getattr(cls, func_name), instance_name))
|
getattr(cls, func_name), instance_name))
|
||||||
@ -186,7 +186,7 @@ def default_arguments_decorator(function, *args):
|
|||||||
new_argset.extend( args[ len(function_args): ] )
|
new_argset.extend( args[ len(function_args): ] )
|
||||||
return function( *new_argset )
|
return function( *new_argset )
|
||||||
return new_function
|
return new_function
|
||||||
|
|
||||||
def return_instance_if_value_has_it(value):
|
def return_instance_if_value_has_it(value):
|
||||||
"""Return value.instance if value is an instance of ClassFromFunctions,
|
"""Return value.instance if value is an instance of ClassFromFunctions,
|
||||||
else return value
|
else return value
|
||||||
@ -212,16 +212,16 @@ def extract_attributes_with_prefix(obj, prefix):
|
|||||||
the attribute name, the attribute value, and the text that appears
|
the attribute name, the attribute value, and the text that appears
|
||||||
after the prefix in the name
|
after the prefix in the name
|
||||||
"""
|
"""
|
||||||
for attr_name, attr_value in obj.__dict__.iteritems():
|
for attr_name, attr_value in iter(obj.__dict__.items()):
|
||||||
if attr_name.startswith(prefix):
|
if attr_name.startswith(prefix):
|
||||||
after_prefix = attr_name[ len(prefix): ]
|
after_prefix = attr_name[ len(prefix): ]
|
||||||
yield attr_name, attr_value, after_prefix
|
yield attr_name, attr_value, after_prefix
|
||||||
|
|
||||||
def methods_return_instance(cls, function_dict):
|
def methods_return_instance(cls, function_dict):
|
||||||
"""Iterates through a dictionary of function name strings and instance names
|
"""Iterates through a dictionary of function name strings and instance names
|
||||||
and sets the function to return the associated instance
|
and sets the function to return the associated instance
|
||||||
"""
|
"""
|
||||||
for func_name, instance_name in function_dict.iteritems():
|
for func_name, instance_name in iter(function_dict.items()):
|
||||||
setattr(cls, func_name,
|
setattr(cls, func_name,
|
||||||
method_function_returns_instance( getattr(cls, func_name), instance_name))
|
method_function_returns_instance( getattr(cls, func_name), instance_name))
|
||||||
|
|
||||||
|
@ -26,18 +26,18 @@
|
|||||||
# @author Jeff Green, ParIT Worker Co-operative <jeff@parit.ca>
|
# @author Jeff Green, ParIT Worker Co-operative <jeff@parit.ca>
|
||||||
# @ingroup python_bindings
|
# @ingroup python_bindings
|
||||||
|
|
||||||
import gnucash_core_c
|
import gnucash.gnucash_core_c as gnucash_core_c
|
||||||
|
|
||||||
from function_class import \
|
from gnucash.function_class import \
|
||||||
ClassFromFunctions, extract_attributes_with_prefix, \
|
ClassFromFunctions, extract_attributes_with_prefix, \
|
||||||
default_arguments_decorator, method_function_returns_instance, \
|
default_arguments_decorator, method_function_returns_instance, \
|
||||||
methods_return_instance, methods_return_instance_lists
|
methods_return_instance, methods_return_instance_lists
|
||||||
|
|
||||||
from gnucash_core import \
|
from gnucash.gnucash_core import \
|
||||||
GnuCashCoreClass, GncNumeric, GncCommodity, Transaction, \
|
GnuCashCoreClass, GncNumeric, GncCommodity, Transaction, \
|
||||||
Split, Book, GncLot, Account, GUID
|
Split, Book, GncLot, Account, GUID
|
||||||
|
|
||||||
from gnucash_core_c import GNC_OWNER_CUSTOMER, GNC_OWNER_JOB, \
|
from gnucash.gnucash_core_c import GNC_OWNER_CUSTOMER, GNC_OWNER_JOB, \
|
||||||
GNC_OWNER_EMPLOYEE, GNC_OWNER_VENDOR, \
|
GNC_OWNER_EMPLOYEE, GNC_OWNER_VENDOR, \
|
||||||
GNC_PAYMENT_CASH, GNC_PAYMENT_CARD, \
|
GNC_PAYMENT_CASH, GNC_PAYMENT_CARD, \
|
||||||
GNC_DISC_PRETAX, GNC_DISC_SAMETIME, GNC_DISC_POSTTAX, \
|
GNC_DISC_PRETAX, GNC_DISC_SAMETIME, GNC_DISC_POSTTAX, \
|
||||||
@ -66,7 +66,7 @@ class GnuCashBusinessEntity(GnuCashCoreClass):
|
|||||||
GnuCashCoreClass.__init__(self, instance=instance)
|
GnuCashCoreClass.__init__(self, instance=instance)
|
||||||
|
|
||||||
class Customer(GnuCashBusinessEntity): pass
|
class Customer(GnuCashBusinessEntity): pass
|
||||||
|
|
||||||
class Employee(GnuCashBusinessEntity): pass
|
class Employee(GnuCashBusinessEntity): pass
|
||||||
|
|
||||||
class Vendor(GnuCashBusinessEntity): pass
|
class Vendor(GnuCashBusinessEntity): pass
|
||||||
@ -88,10 +88,10 @@ class Job(GnuCashBusinessEntity):
|
|||||||
if name != None:
|
if name != None:
|
||||||
self.SetName(name)
|
self.SetName(name)
|
||||||
else:
|
else:
|
||||||
GnuCashCoreClass.__init__(self, instance=instance)
|
GnuCashCoreClass.__init__(self, instance=instance)
|
||||||
|
|
||||||
class Address(GnuCashCoreClass): pass
|
class Address(GnuCashCoreClass): pass
|
||||||
|
|
||||||
class BillTerm(GnuCashCoreClass): pass
|
class BillTerm(GnuCashCoreClass): pass
|
||||||
|
|
||||||
class TaxTable(GnuCashCoreClass):
|
class TaxTable(GnuCashCoreClass):
|
||||||
@ -111,14 +111,14 @@ class TaxTable(GnuCashCoreClass):
|
|||||||
class TaxTableEntry(GnuCashCoreClass):
|
class TaxTableEntry(GnuCashCoreClass):
|
||||||
def __init__(self, account=None, percent=True, amount=None, instance=None):
|
def __init__(self, account=None, percent=True, amount=None, instance=None):
|
||||||
"""TaxTableEntry constructor
|
"""TaxTableEntry constructor
|
||||||
|
|
||||||
You must provide an account, or be initizing this with an existing
|
You must provide an account, or be initizing this with an existing
|
||||||
swig proxy object via the instance keyword argument.
|
swig proxy object via the instance keyword argument.
|
||||||
|
|
||||||
You may also optionally set the percent keyword argument to False to get
|
You may also optionally set the percent keyword argument to False to get
|
||||||
a fixed value instead of percentage based tax (which is the default, or
|
a fixed value instead of percentage based tax (which is the default, or
|
||||||
when percent=True).
|
when percent=True).
|
||||||
|
|
||||||
The tax will be zero percent or zero unless you set the amount keyword
|
The tax will be zero percent or zero unless you set the amount keyword
|
||||||
argument to a GncNumeric value as well.
|
argument to a GncNumeric value as well.
|
||||||
"""
|
"""
|
||||||
@ -138,7 +138,7 @@ class TaxTableEntry(GnuCashCoreClass):
|
|||||||
if amount != None:
|
if amount != None:
|
||||||
self.SetAmount(amount)
|
self.SetAmount(amount)
|
||||||
else:
|
else:
|
||||||
GnuCashCoreClass.__init__(self, instance=instance)
|
GnuCashCoreClass.__init__(self, instance=instance)
|
||||||
|
|
||||||
class Invoice(GnuCashCoreClass):
|
class Invoice(GnuCashCoreClass):
|
||||||
def __init__(self, book=None, id=None, currency=None, owner=None,
|
def __init__(self, book=None, id=None, currency=None, owner=None,
|
||||||
@ -191,7 +191,7 @@ def decorate_to_return_instance_instead_of_owner(dec_function):
|
|||||||
class Entry(GnuCashCoreClass):
|
class Entry(GnuCashCoreClass):
|
||||||
def __init__(self, book=None, invoice=None, date=None, instance=None):
|
def __init__(self, book=None, invoice=None, date=None, instance=None):
|
||||||
"""Invoice Entry constructor
|
"""Invoice Entry constructor
|
||||||
|
|
||||||
You must provide a book or be initizing this with an existing
|
You must provide a book or be initizing this with an existing
|
||||||
swig proxy object via the instance keyword argument.
|
swig proxy object via the instance keyword argument.
|
||||||
|
|
||||||
@ -217,7 +217,7 @@ class Entry(GnuCashCoreClass):
|
|||||||
if invoice != None:
|
if invoice != None:
|
||||||
invoice.AddEntry(self)
|
invoice.AddEntry(self)
|
||||||
else:
|
else:
|
||||||
GnuCashCoreClass.__init__(self, instance=instance)
|
GnuCashCoreClass.__init__(self, instance=instance)
|
||||||
|
|
||||||
def test_type(self, invoice):
|
def test_type(self, invoice):
|
||||||
if invoice.GetTypeString() == "Invoice" and self.GetInvoice() == None:
|
if invoice.GetTypeString() == "Invoice" and self.GetInvoice() == None:
|
||||||
@ -370,7 +370,7 @@ entry_dict = {
|
|||||||
'GetInvoice': Invoice,
|
'GetInvoice': Invoice,
|
||||||
'GetBill': Invoice
|
'GetBill': Invoice
|
||||||
}
|
}
|
||||||
methods_return_instance(Entry, entry_dict)
|
methods_return_instance(Entry, entry_dict)
|
||||||
Entry.decorate_functions(
|
Entry.decorate_functions(
|
||||||
decorate_to_return_instance_instead_of_owner,
|
decorate_to_return_instance_instead_of_owner,
|
||||||
'GetBillTo' )
|
'GetBillTo' )
|
||||||
|
@ -28,15 +28,15 @@
|
|||||||
# @author Jeff Green, ParIT Worker Co-operative <jeff@parit.ca>
|
# @author Jeff Green, ParIT Worker Co-operative <jeff@parit.ca>
|
||||||
# @ingroup python_bindings
|
# @ingroup python_bindings
|
||||||
|
|
||||||
import gnucash_core_c
|
import gnucash.gnucash_core_c as gnucash_core_c
|
||||||
|
|
||||||
from function_class import \
|
from gnucash.function_class import \
|
||||||
ClassFromFunctions, extract_attributes_with_prefix, \
|
ClassFromFunctions, extract_attributes_with_prefix, \
|
||||||
default_arguments_decorator, method_function_returns_instance, \
|
default_arguments_decorator, method_function_returns_instance, \
|
||||||
methods_return_instance, process_list_convert_to_instance, \
|
methods_return_instance, process_list_convert_to_instance, \
|
||||||
method_function_returns_instance_list, methods_return_instance_lists
|
method_function_returns_instance_list, methods_return_instance_lists
|
||||||
|
|
||||||
from gnucash_core_c import gncInvoiceLookup, gncInvoiceGetInvoiceFromTxn, \
|
from gnucash.gnucash_core_c import gncInvoiceLookup, gncInvoiceGetInvoiceFromTxn, \
|
||||||
gncInvoiceGetInvoiceFromLot, gncEntryLookup, gncInvoiceLookup, \
|
gncInvoiceGetInvoiceFromLot, gncEntryLookup, gncInvoiceLookup, \
|
||||||
gncCustomerLookup, gncVendorLookup, gncJobLookup, gncEmployeeLookup, \
|
gncCustomerLookup, gncVendorLookup, gncJobLookup, gncEmployeeLookup, \
|
||||||
gncTaxTableLookup, gncTaxTableLookupByName, gnc_search_invoice_on_id, \
|
gncTaxTableLookup, gncTaxTableLookupByName, gnc_search_invoice_on_id, \
|
||||||
@ -112,7 +112,7 @@ class Session(GnuCashCoreClass):
|
|||||||
# More background: https://bugzilla.gnome.org/show_bug.cgi?id=726891
|
# More background: https://bugzilla.gnome.org/show_bug.cgi?id=726891
|
||||||
if book_uri[:3] != "xml" or not is_new:
|
if book_uri[:3] != "xml" or not is_new:
|
||||||
self.load()
|
self.load()
|
||||||
except GnuCashBackendException, backend_exception:
|
except GnuCashBackendException as backend_exception:
|
||||||
self.end()
|
self.end()
|
||||||
self.destroy()
|
self.destroy()
|
||||||
raise
|
raise
|
||||||
@ -174,75 +174,75 @@ class Book(GnuCashCoreClass):
|
|||||||
get_table -- Returns a commodity lookup table, of type GncCommodityTable
|
get_table -- Returns a commodity lookup table, of type GncCommodityTable
|
||||||
"""
|
"""
|
||||||
def InvoiceLookup(self, guid):
|
def InvoiceLookup(self, guid):
|
||||||
from gnucash_business import Invoice
|
from gnucash.gnucash_business import Invoice
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gncInvoiceLookup, Invoice, guid.get_instance() )
|
gncInvoiceLookup, Invoice, guid.get_instance() )
|
||||||
|
|
||||||
def EntryLookup(self, guid):
|
def EntryLookup(self, guid):
|
||||||
from gnucash_business import Entry
|
from gnucash.gnucash_business import Entry
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gncEntryLookup, Entry, guid.get_instance() )
|
gncEntryLookup, Entry, guid.get_instance() )
|
||||||
|
|
||||||
def CustomerLookup(self, guid):
|
def CustomerLookup(self, guid):
|
||||||
from gnucash_business import Customer
|
from gnucash.gnucash_business import Customer
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gncCustomerLookup, Customer, guid.get_instance())
|
gncCustomerLookup, Customer, guid.get_instance())
|
||||||
|
|
||||||
def JobLookup(self, guid):
|
def JobLookup(self, guid):
|
||||||
from gnucash_business import Job
|
from gnucash.gnucash_business import Job
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gncJobLookup, Job, guid.get_instance() )
|
gncJobLookup, Job, guid.get_instance() )
|
||||||
|
|
||||||
def VendorLookup(self, guid):
|
def VendorLookup(self, guid):
|
||||||
from gnucash_business import Vendor
|
from gnucash.gnucash_business import Vendor
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gncVendorLookup, Vendor, guid.get_instance() )
|
gncVendorLookup, Vendor, guid.get_instance() )
|
||||||
|
|
||||||
def EmployeeLookup(self, guid):
|
def EmployeeLookup(self, guid):
|
||||||
from gnucash_business import Employee
|
from gnucash.gnucash_business import Employee
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gncEmployeeLookup, Employee, guid.get_instance() )
|
gncEmployeeLookup, Employee, guid.get_instance() )
|
||||||
|
|
||||||
def TaxTableLookup(self, guid):
|
def TaxTableLookup(self, guid):
|
||||||
from gnucash_business import TaxTable
|
from gnucash.gnucash_business import TaxTable
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gncTaxTableLookup, TaxTable, guid.get_instance() )
|
gncTaxTableLookup, TaxTable, guid.get_instance() )
|
||||||
|
|
||||||
def TaxTableLookupByName(self, name):
|
def TaxTableLookupByName(self, name):
|
||||||
from gnucash_business import TaxTable
|
from gnucash.gnucash_business import TaxTable
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gncTaxTableLookupByName, TaxTable, name)
|
gncTaxTableLookupByName, TaxTable, name)
|
||||||
|
|
||||||
def TaxTableGetTables(self):
|
def TaxTableGetTables(self):
|
||||||
from gnucash_business import TaxTable
|
from gnucash.gnucash_business import TaxTable
|
||||||
return [ TaxTable(instance=item) for item in gncTaxTableGetTables(self.instance) ]
|
return [ TaxTable(instance=item) for item in gncTaxTableGetTables(self.instance) ]
|
||||||
|
|
||||||
def BillLookupByID(self, id):
|
def BillLookupByID(self, id):
|
||||||
from gnucash_business import Bill
|
from gnucash.gnucash_business import Bill
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gnc_search_bill_on_id, Bill, id)
|
gnc_search_bill_on_id, Bill, id)
|
||||||
|
|
||||||
def InvoiceLookupByID(self, id):
|
def InvoiceLookupByID(self, id):
|
||||||
from gnucash_business import Invoice
|
from gnucash.gnucash_business import Invoice
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gnc_search_invoice_on_id, Invoice, id)
|
gnc_search_invoice_on_id, Invoice, id)
|
||||||
|
|
||||||
def CustomerLookupByID(self, id):
|
def CustomerLookupByID(self, id):
|
||||||
from gnucash_business import Customer
|
from gnucash.gnucash_business import Customer
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gnc_search_customer_on_id, Customer, id)
|
gnc_search_customer_on_id, Customer, id)
|
||||||
|
|
||||||
def VendorLookupByID(self, id):
|
def VendorLookupByID(self, id):
|
||||||
from gnucash_business import Vendor
|
from gnucash.gnucash_business import Vendor
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gnc_search_vendor_on_id, Vendor, id)
|
gnc_search_vendor_on_id, Vendor, id)
|
||||||
|
|
||||||
def InvoiceNextID(self, customer):
|
def InvoiceNextID(self, customer):
|
||||||
''' Return the next invoice ID.
|
''' Return the next invoice ID.
|
||||||
This works but I'm not entirely happy with it. FIX ME'''
|
This works but I'm not entirely happy with it. FIX ME'''
|
||||||
from gnucash.gnucash_core_c import gncInvoiceNextID
|
from gnucash.gnucash_core_c import gncInvoiceNextID
|
||||||
return gncInvoiceNextID(self.get_instance(),customer.GetEndOwner().get_instance()[1])
|
return gncInvoiceNextID(self.get_instance(),customer.GetEndOwner().get_instance()[1])
|
||||||
|
|
||||||
def BillNextID(self, vendor):
|
def BillNextID(self, vendor):
|
||||||
''' Return the next Bill ID. '''
|
''' Return the next Bill ID. '''
|
||||||
from gnucash.gnucash_core_c import gncInvoiceNextID
|
from gnucash.gnucash_core_c import gncInvoiceNextID
|
||||||
@ -294,11 +294,11 @@ class GncNumeric(GnuCashCoreClass):
|
|||||||
return gnc_numeric_zero()
|
return gnc_numeric_zero()
|
||||||
elif len(args) == 1:
|
elif len(args) == 1:
|
||||||
arg = args[0]
|
arg = args[0]
|
||||||
if type(arg) in (int, long):
|
if isinstance(arg, int):
|
||||||
return gnc_numeric_create(arg ,1)
|
return gnc_numeric_create(arg ,1)
|
||||||
elif type(arg) == float:
|
elif isinstance(arg, float):
|
||||||
return double_to_gnc_numeric(arg, GNC_DENOM_AUTO, GNC_HOW_DENOM_FIXED | GNC_HOW_RND_NEVER)
|
return double_to_gnc_numeric(arg, GNC_DENOM_AUTO, GNC_HOW_DENOM_FIXED | GNC_HOW_RND_NEVER)
|
||||||
elif type(arg) == str:
|
elif isinstance(arg, str):
|
||||||
instance = gnc_numeric_zero()
|
instance = gnc_numeric_zero()
|
||||||
if not string_to_gnc_numeric(arg, instance):
|
if not string_to_gnc_numeric(arg, instance):
|
||||||
raise TypeError('Failed to convert to GncNumeric: ' + str(args))
|
raise TypeError('Failed to convert to GncNumeric: ' + str(args))
|
||||||
@ -306,17 +306,17 @@ class GncNumeric(GnuCashCoreClass):
|
|||||||
else:
|
else:
|
||||||
raise TypeError('Only single int/float/str allowed: ' + str(args))
|
raise TypeError('Only single int/float/str allowed: ' + str(args))
|
||||||
elif len(args) == 2:
|
elif len(args) == 2:
|
||||||
if type(args[0]) == int and type(args[1]) == int:
|
if isinstance(args[0], int) and isinstance(args[1], int):
|
||||||
return gnc_numeric_create(*args)
|
return gnc_numeric_create(*args)
|
||||||
else:
|
else:
|
||||||
raise TypeError('Only two ints allowed: ' + str(args))
|
raise TypeError('Only two ints allowed: ' + str(args))
|
||||||
elif len(args) == 3:
|
elif len(args) == 3:
|
||||||
if type(args[0]) == float \
|
if isinstance(args[0], float) \
|
||||||
and type(args[1]) in (int, long) \
|
and isinstance(args[1], int) \
|
||||||
and type(args[2]) == type(GNC_HOW_DENOM_FIXED):
|
and type(args[2]) == type(GNC_HOW_DENOM_FIXED):
|
||||||
return double_to_gnc_numeric(*args)
|
return double_to_gnc_numeric(*args)
|
||||||
else:
|
else:
|
||||||
raise TypeError('Only (float, int/long, GNC_HOW_RND_*) allowed: ' + str(args))
|
raise TypeError('Only (float, int, GNC_HOW_RND_*) allowed: ' + str(args))
|
||||||
else:
|
else:
|
||||||
raise TypeError('Required single int/float/str or two ints: ' + str(args))
|
raise TypeError('Required single int/float/str or two ints: ' + str(args))
|
||||||
|
|
||||||
@ -324,14 +324,10 @@ class GncNumeric(GnuCashCoreClass):
|
|||||||
from fractions import Fraction
|
from fractions import Fraction
|
||||||
return Fraction(self.num(), self.denom())
|
return Fraction(self.num(), self.denom())
|
||||||
|
|
||||||
def __unicode__(self):
|
def __str__(self):
|
||||||
"""Returns a human readable numeric value string as UTF8."""
|
"""Returns a human readable numeric value string as UTF8."""
|
||||||
return gnc_numeric_to_string(self.instance)
|
return gnc_numeric_to_string(self.instance)
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
"""returns a human readable numeric value string as bytes."""
|
|
||||||
return unicode(self).encode('utf-8')
|
|
||||||
|
|
||||||
class GncPrice(GnuCashCoreClass):
|
class GncPrice(GnuCashCoreClass):
|
||||||
'''
|
'''
|
||||||
Each priceEach price in the database represents an "instantaneous"
|
Each priceEach price in the database represents an "instantaneous"
|
||||||
@ -356,7 +352,7 @@ class GncPrice(GnuCashCoreClass):
|
|||||||
|
|
||||||
See also http://code.gnucash.org/docs/head/group__Price.html
|
See also http://code.gnucash.org/docs/head/group__Price.html
|
||||||
'''
|
'''
|
||||||
pass
|
_new_instance = 'gnc_price_create'
|
||||||
GncPrice.add_methods_with_prefix('gnc_price_')
|
GncPrice.add_methods_with_prefix('gnc_price_')
|
||||||
|
|
||||||
|
|
||||||
@ -411,7 +407,7 @@ class GncCommodityNamespace(GnuCashCoreClass):
|
|||||||
|
|
||||||
class GncLot(GnuCashCoreClass):
|
class GncLot(GnuCashCoreClass):
|
||||||
def GetInvoiceFromLot(self):
|
def GetInvoiceFromLot(self):
|
||||||
from gnucash_business import Invoice
|
from gnucash.gnucash_business import Invoice
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gncInvoiceGetInvoiceFromLot, Invoice )
|
gncInvoiceGetInvoiceFromLot, Invoice )
|
||||||
|
|
||||||
@ -434,7 +430,7 @@ class Transaction(GnuCashCoreClass):
|
|||||||
return self.GetSplitList().pop(n)
|
return self.GetSplitList().pop(n)
|
||||||
|
|
||||||
def GetInvoiceFromTxn(self):
|
def GetInvoiceFromTxn(self):
|
||||||
from gnucash_business import Transaction
|
from gnucash.gnucash_business import Transaction
|
||||||
return self.do_lookup_create_oo_instance(
|
return self.do_lookup_create_oo_instance(
|
||||||
gncInvoiceGetInvoiceFromTxn, Transaction )
|
gncInvoiceGetInvoiceFromTxn, Transaction )
|
||||||
|
|
||||||
@ -587,7 +583,7 @@ methods_return_instance_lists(
|
|||||||
GncCommodityTable, { 'get_namespaces_list': GncCommodityNamespace,
|
GncCommodityTable, { 'get_namespaces_list': GncCommodityNamespace,
|
||||||
'get_commodities': GncCommodity,
|
'get_commodities': GncCommodity,
|
||||||
'get_quotable_commodities': GncCommodity,
|
'get_quotable_commodities': GncCommodity,
|
||||||
|
|
||||||
} )
|
} )
|
||||||
setattr(GncCommodityTable, 'get_namespaces', getattr(GncCommodityTable, '_get_namespaces_py'))
|
setattr(GncCommodityTable, 'get_namespaces', getattr(GncCommodityTable, '_get_namespaces_py'))
|
||||||
|
|
||||||
@ -632,7 +628,7 @@ trans_dict = {
|
|||||||
'GetCurrency': GncCommodity,
|
'GetCurrency': GncCommodity,
|
||||||
'GetGUID': GUID
|
'GetGUID': GUID
|
||||||
}
|
}
|
||||||
|
|
||||||
methods_return_instance(Transaction, trans_dict)
|
methods_return_instance(Transaction, trans_dict)
|
||||||
methods_return_instance_lists(
|
methods_return_instance_lists(
|
||||||
Transaction, { 'GetSplitList': Split,
|
Transaction, { 'GetSplitList': Split,
|
||||||
@ -738,18 +734,18 @@ class GUIDString(GnuCashCoreClass):
|
|||||||
GUIDString.add_constructor_and_methods_with_prefix('string_', 'to_guid')
|
GUIDString.add_constructor_and_methods_with_prefix('string_', 'to_guid')
|
||||||
|
|
||||||
#Query
|
#Query
|
||||||
from gnucash_core_c import \
|
from gnucash.gnucash_core_c import \
|
||||||
QOF_QUERY_AND, \
|
QOF_QUERY_AND, \
|
||||||
QOF_QUERY_OR, \
|
QOF_QUERY_OR, \
|
||||||
QOF_QUERY_NAND, \
|
QOF_QUERY_NAND, \
|
||||||
QOF_QUERY_NOR, \
|
QOF_QUERY_NOR, \
|
||||||
QOF_QUERY_XOR
|
QOF_QUERY_XOR
|
||||||
|
|
||||||
from gnucash_core_c import \
|
from gnucash.gnucash_core_c import \
|
||||||
QOF_STRING_MATCH_NORMAL, \
|
QOF_STRING_MATCH_NORMAL, \
|
||||||
QOF_STRING_MATCH_CASEINSENSITIVE
|
QOF_STRING_MATCH_CASEINSENSITIVE
|
||||||
|
|
||||||
from gnucash_core_c import \
|
from gnucash.gnucash_core_c import \
|
||||||
QOF_COMPARE_LT, \
|
QOF_COMPARE_LT, \
|
||||||
QOF_COMPARE_LTE, \
|
QOF_COMPARE_LTE, \
|
||||||
QOF_COMPARE_EQUAL, \
|
QOF_COMPARE_EQUAL, \
|
||||||
@ -757,10 +753,10 @@ from gnucash_core_c import \
|
|||||||
QOF_COMPARE_GTE, \
|
QOF_COMPARE_GTE, \
|
||||||
QOF_COMPARE_NEQ
|
QOF_COMPARE_NEQ
|
||||||
|
|
||||||
from gnucash_core_c import \
|
from gnucash.gnucash_core_c import \
|
||||||
INVOICE_TYPE
|
INVOICE_TYPE
|
||||||
|
|
||||||
from gnucash_core_c import \
|
from gnucash.gnucash_core_c import \
|
||||||
INVOICE_IS_PAID
|
INVOICE_IS_PAID
|
||||||
|
|
||||||
class Query(GnuCashCoreClass):
|
class Query(GnuCashCoreClass):
|
||||||
|
@ -5,8 +5,6 @@ import os
|
|||||||
|
|
||||||
os.environ["GNC_UNINSTALLED"] = "1"
|
os.environ["GNC_UNINSTALLED"] = "1"
|
||||||
|
|
||||||
from test import test_support
|
|
||||||
|
|
||||||
from test_book import TestBook
|
from test_book import TestBook
|
||||||
from test_account import TestAccount
|
from test_account import TestAccount
|
||||||
from test_split import TestSplit
|
from test_split import TestSplit
|
||||||
@ -15,8 +13,5 @@ from test_business import TestBusiness
|
|||||||
from test_commodity import TestCommodity, TestCommodityNamespace
|
from test_commodity import TestCommodity, TestCommodityNamespace
|
||||||
from test_numeric import TestGncNumeric
|
from test_numeric import TestGncNumeric
|
||||||
|
|
||||||
def test_main():
|
|
||||||
test_support.run_unittest(TestBook, TestAccount, TestSplit, TestTransaction, TestBusiness, TestCommodity, TestCommodityNamespace, TestGncNumeric)
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
test_main()
|
unittest.main()
|
||||||
|
@ -13,9 +13,9 @@ class AccountSession( BookSession ):
|
|||||||
class TestAccount( AccountSession ):
|
class TestAccount( AccountSession ):
|
||||||
def test_name(self):
|
def test_name(self):
|
||||||
NAME = "Money"
|
NAME = "Money"
|
||||||
self.assertEquals( '', self.account.GetName() )
|
self.assertEqual( '', self.account.GetName() )
|
||||||
self.account.SetName(NAME)
|
self.account.SetName(NAME)
|
||||||
self.assertEquals( NAME, self.account.GetName() )
|
self.assertEqual( NAME, self.account.GetName() )
|
||||||
|
|
||||||
def test_split(self):
|
def test_split(self):
|
||||||
SPLIT = Split(self.book)
|
SPLIT = Split(self.book)
|
||||||
|
@ -22,12 +22,6 @@ class TestGncNumeric( TestCase ):
|
|||||||
self.assertEqual(num.num(), 3)
|
self.assertEqual(num.num(), 3)
|
||||||
self.assertEqual(num.denom(), 1)
|
self.assertEqual(num.denom(), 1)
|
||||||
|
|
||||||
def test_from_long(self):
|
|
||||||
num = GncNumeric(3L)
|
|
||||||
self.assertEqual(str(num), "3/1")
|
|
||||||
self.assertEqual(num.num(), 3)
|
|
||||||
self.assertEqual(num.denom(), 1)
|
|
||||||
|
|
||||||
with self.assertRaises(Exception) as context:
|
with self.assertRaises(Exception) as context:
|
||||||
GncNumeric((2**64)+1)
|
GncNumeric((2**64)+1)
|
||||||
|
|
||||||
|
@ -17,9 +17,9 @@ class SplitSession( BookSession ):
|
|||||||
class TestSplit( SplitSession ):
|
class TestSplit( SplitSession ):
|
||||||
def test_memo(self):
|
def test_memo(self):
|
||||||
MEMO = "cookie monster"
|
MEMO = "cookie monster"
|
||||||
self.assertEquals( '', self.split.GetMemo() )
|
self.assertEqual( '', self.split.GetMemo() )
|
||||||
self.split.SetMemo(MEMO)
|
self.split.SetMemo(MEMO)
|
||||||
self.assertEquals( MEMO, self.split.GetMemo() )
|
self.assertEqual( MEMO, self.split.GetMemo() )
|
||||||
|
|
||||||
def test_account(self):
|
def test_account(self):
|
||||||
ACCT = Account(self.book)
|
ACCT = Account(self.book)
|
||||||
@ -49,7 +49,7 @@ class TestSplit( SplitSession ):
|
|||||||
self.split.SetParent(TRANS)
|
self.split.SetParent(TRANS)
|
||||||
TRANS.SetCurrency(self.currency)
|
TRANS.SetCurrency(self.currency)
|
||||||
TRANS.SetDescription("Foo")
|
TRANS.SetDescription("Foo")
|
||||||
self.assertEquals( TRANS.GetDescription(), self.split.GetParent().GetDescription() )
|
self.assertEqual( TRANS.GetDescription(), self.split.GetParent().GetDescription() )
|
||||||
|
|
||||||
g_log_remove_handler(domain2, hdlr2)
|
g_log_remove_handler(domain2, hdlr2)
|
||||||
g_log_remove_handler(domain1, hdlr1)
|
g_log_remove_handler(domain1, hdlr1)
|
||||||
|
@ -73,13 +73,13 @@ class TestTransaction( TransactionSession ):
|
|||||||
self.assertFalse( self.trans.IsOpen() )
|
self.assertFalse( self.trans.IsOpen() )
|
||||||
|
|
||||||
def test_rollback(self):
|
def test_rollback(self):
|
||||||
self.assertEquals( '', self.trans.GetDescription() )
|
self.assertEqual( '', self.trans.GetDescription() )
|
||||||
self.trans.BeginEdit()
|
self.trans.BeginEdit()
|
||||||
DESC = 'Food'
|
DESC = 'Food'
|
||||||
self.trans.SetDescription(DESC)
|
self.trans.SetDescription(DESC)
|
||||||
self.assertEquals( DESC, self.trans.GetDescription() )
|
self.assertEqual( DESC, self.trans.GetDescription() )
|
||||||
self.trans.RollbackEdit()
|
self.trans.RollbackEdit()
|
||||||
self.assertEquals( '', self.trans.GetDescription() )
|
self.assertEqual( '', self.trans.GetDescription() )
|
||||||
|
|
||||||
def test_findsplit(self):
|
def test_findsplit(self):
|
||||||
ACCT = Account(self.book)
|
ACCT = Account(self.book)
|
||||||
@ -87,51 +87,51 @@ class TestTransaction( TransactionSession ):
|
|||||||
self.split.SetAccount( ACCT )
|
self.split.SetAccount( ACCT )
|
||||||
SPLIT = self.trans.FindSplitByAccount( ACCT )
|
SPLIT = self.trans.FindSplitByAccount( ACCT )
|
||||||
self.assertTrue( SPLIT.Equal(self.split, True, False, False) )
|
self.assertTrue( SPLIT.Equal(self.split, True, False, False) )
|
||||||
|
|
||||||
def test_getsplit(self):
|
def test_getsplit(self):
|
||||||
SPLIT = self.trans.GetSplit(0)
|
SPLIT = self.trans.GetSplit(0)
|
||||||
self.assertTrue( SPLIT.Equal(self.split, True, False, False) )
|
self.assertTrue( SPLIT.Equal(self.split, True, False, False) )
|
||||||
|
|
||||||
def test_getsplitindex(self):
|
def test_getsplitindex(self):
|
||||||
self.assertEquals( 0, self.trans.GetSplitIndex(self.split) )
|
self.assertEqual( 0, self.trans.GetSplitIndex(self.split) )
|
||||||
|
|
||||||
def test_countsplits(self):
|
def test_countsplits(self):
|
||||||
self.assertEquals( 1, self.trans.CountSplits() )
|
self.assertEqual( 1, self.trans.CountSplits() )
|
||||||
|
|
||||||
def test_readonly(self):
|
def test_readonly(self):
|
||||||
self.assertEquals( None, self.trans.GetReadOnly() )
|
self.assertEqual( None, self.trans.GetReadOnly() )
|
||||||
REASON = 'none'
|
REASON = 'none'
|
||||||
self.trans.SetReadOnly(REASON)
|
self.trans.SetReadOnly(REASON)
|
||||||
self.assertEquals( REASON, self.trans.GetReadOnly() )
|
self.assertEqual( REASON, self.trans.GetReadOnly() )
|
||||||
self.trans.ClearReadOnly()
|
self.trans.ClearReadOnly()
|
||||||
self.assertEquals( None, self.trans.GetReadOnly() )
|
self.assertEqual( None, self.trans.GetReadOnly() )
|
||||||
|
|
||||||
def test_txntype(self):
|
def test_txntype(self):
|
||||||
self.assertEquals( '\x00', self.trans.GetTxnType() )
|
self.assertEqual( '\x00', self.trans.GetTxnType() )
|
||||||
TYPE = 'I'
|
TYPE = 'I'
|
||||||
self.trans.SetTxnType(TYPE)
|
self.trans.SetTxnType(TYPE)
|
||||||
self.assertEquals( TYPE, self.trans.GetTxnType() )
|
self.assertEqual( TYPE, self.trans.GetTxnType() )
|
||||||
TYPE = 'P'
|
TYPE = 'P'
|
||||||
self.trans.SetTxnType(TYPE)
|
self.trans.SetTxnType(TYPE)
|
||||||
self.assertEquals( TYPE, self.trans.GetTxnType() )
|
self.assertEqual( TYPE, self.trans.GetTxnType() )
|
||||||
|
|
||||||
def test_num(self):
|
def test_num(self):
|
||||||
NUM = '5'
|
NUM = '5'
|
||||||
self.assertEquals( '', self.trans.GetNum() )
|
self.assertEqual( '', self.trans.GetNum() )
|
||||||
self.trans.SetNum(NUM)
|
self.trans.SetNum(NUM)
|
||||||
self.assertEquals( NUM, self.trans.GetNum() )
|
self.assertEqual( NUM, self.trans.GetNum() )
|
||||||
|
|
||||||
def test_description(self):
|
def test_description(self):
|
||||||
DESCR = 'Groceries'
|
DESCR = 'Groceries'
|
||||||
self.assertEquals( '', self.trans.GetDescription() )
|
self.assertEqual( '', self.trans.GetDescription() )
|
||||||
self.trans.SetDescription(DESCR)
|
self.trans.SetDescription(DESCR)
|
||||||
self.assertEquals( DESCR, self.trans.GetDescription() )
|
self.assertEqual( DESCR, self.trans.GetDescription() )
|
||||||
|
|
||||||
def test_notes(self):
|
def test_notes(self):
|
||||||
NOTE = 'For dinner party'
|
NOTE = 'For dinner party'
|
||||||
self.assertEquals( None, self.trans.GetNotes() )
|
self.assertEqual( None, self.trans.GetNotes() )
|
||||||
self.trans.SetNotes(NOTE)
|
self.trans.SetNotes(NOTE)
|
||||||
self.assertEquals( NOTE, self.trans.GetNotes() )
|
self.assertEqual( NOTE, self.trans.GetNotes() )
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
@ -75,7 +75,7 @@ macro (gnc_add_swig_python_command _target _out_var _py_out_var _output _py_outp
|
|||||||
|
|
||||||
if (GENERATE_SWIG_WRAPPERS)
|
if (GENERATE_SWIG_WRAPPERS)
|
||||||
set (DEFAULT_SWIG_PYTHON_FLAGS
|
set (DEFAULT_SWIG_PYTHON_FLAGS
|
||||||
-python
|
-python -py3
|
||||||
-Wall -Werror
|
-Wall -Werror
|
||||||
${SWIG_ARGS}
|
${SWIG_ARGS}
|
||||||
)
|
)
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Investment Accounts
|
Investment Accounts
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -183,7 +214,3 @@
|
|||||||
<act:parent type="new">6de23244232785031501171abcc1d4aa</act:parent>
|
<act:parent type="new">6de23244232785031501171abcc1d4aa</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Car Loan
|
Car Loan
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -100,8 +131,3 @@
|
|||||||
<act:parent type="new">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
<act:parent type="new">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
CD and Money Market
|
CD and Money Market
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -122,7 +153,3 @@
|
|||||||
<act:parent type="new">fd131cae797d1fb83c2e2bf57254eca5</act:parent>
|
<act:parent type="new">fd131cae797d1fb83c2e2bf57254eca5</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
A Simple Checkbook
|
A Simple Checkbook
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -118,8 +149,3 @@
|
|||||||
<act:parent type="new">b8b72887da1adf889f171923d23efbdd</act:parent>
|
<act:parent type="new">b8b72887da1adf889f171923d23efbdd</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Childcare Expenses
|
Childcare Expenses
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -44,7 +75,3 @@
|
|||||||
<act:parent type="new">ee8238ee2c2ce590160761df09b99b72</act:parent>
|
<act:parent type="new">ee8238ee2c2ce590160761df09b99b72</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Education Loan
|
Education Loan
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -100,7 +131,3 @@
|
|||||||
<act:parent type="new">1cfcd30ea97b954ffb550ab87d561033</act:parent>
|
<act:parent type="new">1cfcd30ea97b954ffb550ab87d561033</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Fixed Assets
|
Fixed Assets
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -83,7 +114,3 @@
|
|||||||
<act:parent type="new">9b171f77000bf68dd1ebbaf58336656d</act:parent>
|
<act:parent type="new">9b171f77000bf68dd1ebbaf58336656d</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Home Mortgage Loan
|
Home Mortgage Loan
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -100,7 +131,3 @@
|
|||||||
<act:parent type="new">3dc58d8a51b5deaa22e0c65d81e90346</act:parent>
|
<act:parent type="new">3dc58d8a51b5deaa22e0c65d81e90346</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Homeowner Expenses
|
Homeowner Expenses
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -88,7 +119,3 @@
|
|||||||
<act:parent type="new">a931b8ffe2917ff9a069333623da96ca</act:parent>
|
<act:parent type="new">a931b8ffe2917ff9a069333623da96ca</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Other Loans
|
Other Loans
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -100,7 +131,3 @@
|
|||||||
<act:parent type="new">4a02c14e992ea79076837c164aa6fc8d</act:parent>
|
<act:parent type="new">4a02c14e992ea79076837c164aa6fc8d</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Renter Expenses
|
Renter Expenses
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -66,7 +97,3 @@
|
|||||||
<act:parent type="new">9a2b4520f113372f4e576f5b6dc129c6</act:parent>
|
<act:parent type="new">9a2b4520f113372f4e576f5b6dc129c6</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Retirement Accounts
|
Retirement Accounts
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -115,7 +146,3 @@
|
|||||||
<act:parent type="new">4173f3047238f4b5595b11d6161b2f48</act:parent>
|
<act:parent type="new">4173f3047238f4b5595b11d6161b2f48</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Spouse Income
|
Spouse Income
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -127,7 +158,3 @@
|
|||||||
<act:parent type="new">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
<act:parent type="new">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Spouse Retirement Accounts
|
Spouse Retirement Accounts
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -115,7 +146,3 @@
|
|||||||
<act:parent type="new">4426b41837adc284f96b291c31022844</act:parent>
|
<act:parent type="new">4426b41837adc284f96b291c31022844</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Compte d'Inversió
|
Compte d'Inversió
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -159,7 +190,3 @@
|
|||||||
<act:parent type="new">6de23244232785031501171abcc1d4aa</act:parent>
|
<act:parent type="new">6de23244232785031501171abcc1d4aa</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Préstec d'automòbil
|
Préstec d'automòbil
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -82,8 +113,3 @@
|
|||||||
<act:parent type="new">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
<act:parent type="new">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Pagarés i mercat monetari
|
Pagarés i mercat monetari
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -104,7 +135,3 @@
|
|||||||
<act:parent type="new">fd131cae797d1fb83c2e2bf57254eca5</act:parent>
|
<act:parent type="new">fd131cae797d1fb83c2e2bf57254eca5</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Despeses de la llar d'infants
|
Despeses de la llar d'infants
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -38,7 +69,3 @@
|
|||||||
<act:parent type="new">ee8238ee2c2ce590160761df09b99b72</act:parent>
|
<act:parent type="new">ee8238ee2c2ce590160761df09b99b72</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Comptes comuns
|
Comptes comuns
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -722,7 +753,3 @@
|
|||||||
<act:parent type="new">3ab6a6d97b216c11333e48aa2b749a91</act:parent>
|
<act:parent type="new">3ab6a6d97b216c11333e48aa2b749a91</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Compte de conversió monetària
|
Compte de conversió monetària
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -51,7 +82,3 @@
|
|||||||
<act:parent type="new">d9c796b35784533aee4309e28a3cbfc5</act:parent>
|
<act:parent type="new">d9c796b35784533aee4309e28a3cbfc5</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Préstec per a l'educació
|
Préstec per a l'educació
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -82,7 +113,3 @@
|
|||||||
<act:parent type="new">1cfcd30ea97b954ffb550ab87d561033</act:parent>
|
<act:parent type="new">1cfcd30ea97b954ffb550ab87d561033</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Actius fixos
|
Actius fixos
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -71,7 +102,3 @@
|
|||||||
<act:parent type="new">9b171f77000bf68dd1ebbaf58336656d</act:parent>
|
<act:parent type="new">9b171f77000bf68dd1ebbaf58336656d</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Préstec hipotecari
|
Préstec hipotecari
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -82,7 +113,3 @@
|
|||||||
<act:parent type="new">3dc58d8a51b5deaa22e0c65d81e90346</act:parent>
|
<act:parent type="new">3dc58d8a51b5deaa22e0c65d81e90346</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Despeses de propietari de casa
|
Despeses de propietari de casa
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -82,7 +113,3 @@
|
|||||||
<act:parent type="new">a931b8ffe2917ff9a069333623da96ca</act:parent>
|
<act:parent type="new">a931b8ffe2917ff9a069333623da96ca</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Altres préstecs
|
Altres préstecs
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -82,7 +113,3 @@
|
|||||||
<act:parent type="new">4a02c14e992ea79076837c164aa6fc8d</act:parent>
|
<act:parent type="new">4a02c14e992ea79076837c164aa6fc8d</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Despeses d'inquilí
|
Despeses d'inquilí
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -60,7 +91,3 @@
|
|||||||
<act:parent type="new">9a2b4520f113372f4e576f5b6dc129c6</act:parent>
|
<act:parent type="new">9a2b4520f113372f4e576f5b6dc129c6</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Comptes de jubilació
|
Comptes de jubilació
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -99,7 +130,3 @@
|
|||||||
<act:parent type="new">4173f3047238f4b5595b11d6161b2f48</act:parent>
|
<act:parent type="new">4173f3047238f4b5595b11d6161b2f48</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Ingressos de cònjuge
|
Ingressos de cònjuge
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -115,7 +146,3 @@
|
|||||||
<act:parent type="new">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
<act:parent type="new">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Comptes de jubilació de cònjuge
|
Comptes de jubilació de cònjuge
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -99,7 +130,3 @@
|
|||||||
<act:parent type="new">4426b41837adc284f96b291c31022844</act:parent>
|
<act:parent type="new">4426b41837adc284f96b291c31022844</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Investiční účty
|
Investiční účty
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -159,7 +190,3 @@
|
|||||||
<act:parent type="new">6de23244232785031501171abcc1d4aa</act:parent>
|
<act:parent type="new">6de23244232785031501171abcc1d4aa</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Úvěr na auto
|
Úvěr na auto
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -82,8 +113,3 @@
|
|||||||
<act:parent type="new">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
<act:parent type="new">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Depozitní certifikát a peněžní trh
|
Depozitní certifikát a peněžní trh
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -104,7 +135,3 @@
|
|||||||
<act:parent type="new">fd131cae797d1fb83c2e2bf57254eca5</act:parent>
|
<act:parent type="new">fd131cae797d1fb83c2e2bf57254eca5</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Výdaje na péči o dítě
|
Výdaje na péči o dítě
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -38,7 +69,3 @@
|
|||||||
<act:parent type="new">ee8238ee2c2ce590160761df09b99b72</act:parent>
|
<act:parent type="new">ee8238ee2c2ce590160761df09b99b72</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Běžné účty
|
Běžné účty
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -721,7 +752,3 @@
|
|||||||
<act:parent type="new">3ab6a6d97b216c11333e48aa2b749a91</act:parent>
|
<act:parent type="new">3ab6a6d97b216c11333e48aa2b749a91</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Účet na obchodování s měnou
|
Účet na obchodování s měnou
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -51,7 +82,3 @@
|
|||||||
<act:parent type="new">d9c796b35784533aee4309e28a3cbfc5</act:parent>
|
<act:parent type="new">d9c796b35784533aee4309e28a3cbfc5</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Studijní půjčka
|
Studijní půjčka
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -82,7 +113,3 @@
|
|||||||
<act:parent type="new">1cfcd30ea97b954ffb550ab87d561033</act:parent>
|
<act:parent type="new">1cfcd30ea97b954ffb550ab87d561033</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Fixní aktiva
|
Fixní aktiva
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -71,7 +102,3 @@
|
|||||||
<act:parent type="new">9b171f77000bf68dd1ebbaf58336656d</act:parent>
|
<act:parent type="new">9b171f77000bf68dd1ebbaf58336656d</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Hypotéční úvěr
|
Hypotéční úvěr
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -82,7 +113,3 @@
|
|||||||
<act:parent type="new">3dc58d8a51b5deaa22e0c65d81e90346</act:parent>
|
<act:parent type="new">3dc58d8a51b5deaa22e0c65d81e90346</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Výdaje z vlastnictví domu
|
Výdaje z vlastnictví domu
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -82,7 +113,3 @@
|
|||||||
<act:parent type="new">a931b8ffe2917ff9a069333623da96ca</act:parent>
|
<act:parent type="new">a931b8ffe2917ff9a069333623da96ca</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Ostatní půjčky
|
Ostatní půjčky
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -82,7 +113,3 @@
|
|||||||
<act:parent type="new">4a02c14e992ea79076837c164aa6fc8d</act:parent>
|
<act:parent type="new">4a02c14e992ea79076837c164aa6fc8d</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Výdaje na nájemné
|
Výdaje na nájemné
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -60,7 +91,3 @@
|
|||||||
<act:parent type="new">9a2b4520f113372f4e576f5b6dc129c6</act:parent>
|
<act:parent type="new">9a2b4520f113372f4e576f5b6dc129c6</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Penzijní účty
|
Penzijní účty
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -99,7 +130,3 @@
|
|||||||
<act:parent type="new">4173f3047238f4b5595b11d6161b2f48</act:parent>
|
<act:parent type="new">4173f3047238f4b5595b11d6161b2f48</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Partnerův příjem
|
Partnerův příjem
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -115,7 +146,3 @@
|
|||||||
<act:parent type="new">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
<act:parent type="new">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Partnerova penze
|
Partnerova penze
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -99,7 +130,3 @@
|
|||||||
<act:parent type="new">4426b41837adc284f96b291c31022844</act:parent>
|
<act:parent type="new">4426b41837adc284f96b291c31022844</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Bilejer
|
Bilejer
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -104,7 +135,3 @@
|
|||||||
<act:parent type="new">5bda5ff833bc395dc1b00f95c66ce555</act:parent>
|
<act:parent type="new">5bda5ff833bc395dc1b00f95c66ce555</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Basiskonti
|
Basiskonti
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -655,7 +686,3 @@
|
|||||||
<act:parent type="new">3ab6a6d97b216c11333e48aa2b749a91</act:parent>
|
<act:parent type="new">3ab6a6d97b216c11333e48aa2b749a91</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Realkreditlån
|
Realkreditlån
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -82,7 +113,3 @@
|
|||||||
<act:parent type="new">3dc58d8a51b5deaa22e0c65d81e90346</act:parent>
|
<act:parent type="new">3dc58d8a51b5deaa22e0c65d81e90346</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Boligejer
|
Boligejer
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -93,7 +124,3 @@
|
|||||||
<act:parent type="new">a931b8ffe2917ff9a069333623da96ca</act:parent>
|
<act:parent type="new">a931b8ffe2917ff9a069333623da96ca</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Kredit Auto
|
Kredit Auto
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -123,7 +154,3 @@
|
|||||||
<act:parent type="new">8fc4ba994d32d90d7a9a9112ee37f3f6</act:parent>
|
<act:parent type="new">8fc4ba994d32d90d7a9a9112ee37f3f6</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Kleinunternehmen
|
Kleinunternehmen
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -935,7 +966,3 @@
|
|||||||
<act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
|
<act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Allgemeine Konten
|
Allgemeine Konten
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -935,7 +966,3 @@
|
|||||||
<act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
|
<act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Hausbesitz
|
Hausbesitz
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -201,7 +232,3 @@
|
|||||||
<act:parent type="new">b413c76bf6939070b97f7fed1c4fd367</act:parent>
|
<act:parent type="new">b413c76bf6939070b97f7fed1c4fd367</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Aktienhandel
|
Aktienhandel
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -137,7 +168,3 @@
|
|||||||
<act:parent type="new">18ca785b6fcd2895427459c233a47c57</act:parent>
|
<act:parent type="new">18ca785b6fcd2895427459c233a47c57</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
KMU Kontenrahmen
|
KMU Kontenrahmen
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -9220,7 +9251,3 @@
|
|||||||
<act:parent type="new">7cf6f12e6b6fbbc4dd29b9e66463ddca</act:parent>
|
<act:parent type="new">7cf6f12e6b6fbbc4dd29b9e66463ddca</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Allgemeine Konten
|
Allgemeine Konten
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -710,7 +741,3 @@
|
|||||||
<act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
|
<act:parent type="new">1972cce2e2364f95b2b0bc014502661d</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Kinder
|
Kinder
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -71,7 +102,3 @@
|
|||||||
<act:parent type="new">bc39f4d37eb75353f4f971e80b9d2818</act:parent>
|
<act:parent type="new">bc39f4d37eb75353f4f971e80b9d2818</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Sonstige Sachanlage
|
Sonstige Sachanlage
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -49,7 +80,3 @@
|
|||||||
<act:parent type="new">f7b3424631deed453984e6f5c5569669</act:parent>
|
<act:parent type="new">f7b3424631deed453984e6f5c5569669</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Sonstiger Kredit
|
Sonstiger Kredit
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -49,7 +80,3 @@
|
|||||||
<act:parent type="new">13df44e66790069c74d563946aa0394e</act:parent>
|
<act:parent type="new">13df44e66790069c74d563946aa0394e</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Autobesitz
|
Autobesitz
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -167,7 +198,3 @@
|
|||||||
<act:parent type="new">8fc4ba994d32d90d7a9a9112ee37f3f6</act:parent>
|
<act:parent type="new">8fc4ba994d32d90d7a9a9112ee37f3f6</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Aktienhandel
|
Aktienhandel
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -173,7 +204,3 @@
|
|||||||
<act:parent type="new">18ca785b6fcd2895427459c233a47c57</act:parent>
|
<act:parent type="new">18ca785b6fcd2895427459c233a47c57</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Geldanlagen
|
Geldanlagen
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -206,7 +237,3 @@
|
|||||||
<act:parent type="new">b0dbf43ea99f54e0a9f94a535b10941b</act:parent>
|
<act:parent type="new">b0dbf43ea99f54e0a9f94a535b10941b</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Kinder
|
Kinder
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -89,7 +120,3 @@
|
|||||||
<act:parent type="new">bc39f4d37eb75353f4f971e80b9d2818</act:parent>
|
<act:parent type="new">bc39f4d37eb75353f4f971e80b9d2818</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Λογαριασμοί Επενδύσεων
|
Λογαριασμοί Επενδύσεων
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -183,7 +214,3 @@
|
|||||||
<act:parent type="new">6de23244232785031501171abcc1d4aa</act:parent>
|
<act:parent type="new">6de23244232785031501171abcc1d4aa</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Δάνειο Αυτοκινήτου
|
Δάνειο Αυτοκινήτου
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -100,8 +131,3 @@
|
|||||||
<act:parent type="new">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
<act:parent type="new">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Συνήθεις Λογαριασμοί
|
Συνήθεις Λογαριασμοί
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -757,7 +788,3 @@
|
|||||||
<act:parent type="new">3ab6a6d97b216c11333e48aa2b749a91</act:parent>
|
<act:parent type="new">3ab6a6d97b216c11333e48aa2b749a91</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Business Accounts
|
Business Accounts
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -1407,7 +1438,3 @@
|
|||||||
<act:parent type="new">87e02e757b32b3059652cfe09fe9ae00</act:parent>
|
<act:parent type="new">87e02e757b32b3059652cfe09fe9ae00</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Common Accounts
|
Common Accounts
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -746,7 +777,3 @@
|
|||||||
<act:parent type="new">3ab6a6d97b216c11333e48aa2b749a91</act:parent>
|
<act:parent type="new">3ab6a6d97b216c11333e48aa2b749a91</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Full Chart
|
Full Chart
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -1358,7 +1389,3 @@
|
|||||||
<act:parent type="new">68d4074f91295062c0b773b4ae8de6bd</act:parent>
|
<act:parent type="new">68d4074f91295062c0b773b4ae8de6bd</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
UK VAT Accounts
|
UK VAT Accounts
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
|
@ -1163,7 +1163,3 @@
|
|||||||
<act:parent type="new">599b08659324698f0177ce3dbb513e5f</act:parent>
|
<act:parent type="new">599b08659324698f0177ce3dbb513e5f</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Cuentas de Inversión
|
Cuentas de Inversión
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -161,7 +192,3 @@
|
|||||||
<act:parent type="new">6de23244232785031501171abcc1d4aa</act:parent>
|
<act:parent type="new">6de23244232785031501171abcc1d4aa</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Préstamo de automóvil
|
Préstamo de automóvil
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -84,8 +115,3 @@
|
|||||||
<act:parent type="new">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
<act:parent type="new">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Pagarés y mercado monetario
|
Pagarés y mercado monetario
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -106,7 +137,3 @@
|
|||||||
<act:parent type="new">fd131cae797d1fb83c2e2bf57254eca5</act:parent>
|
<act:parent type="new">fd131cae797d1fb83c2e2bf57254eca5</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Gastos de guardería
|
Gastos de guardería
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -39,7 +70,3 @@
|
|||||||
<act:parent type="new">ee8238ee2c2ce590160761df09b99b72</act:parent>
|
<act:parent type="new">ee8238ee2c2ce590160761df09b99b72</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Cuentas comunes
|
Cuentas comunes
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -724,7 +755,3 @@
|
|||||||
<act:parent type="new">3ab6a6d97b216c11333e48aa2b749a91</act:parent>
|
<act:parent type="new">3ab6a6d97b216c11333e48aa2b749a91</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Cuenta de conversión monetaria
|
Cuenta de conversión monetaria
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -53,7 +84,3 @@
|
|||||||
<act:parent type="new">d9c796b35784533aee4309e28a3cbfc5</act:parent>
|
<act:parent type="new">d9c796b35784533aee4309e28a3cbfc5</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Préstamo para educación
|
Préstamo para educación
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -84,7 +115,3 @@
|
|||||||
<act:parent type="new">1cfcd30ea97b954ffb550ab87d561033</act:parent>
|
<act:parent type="new">1cfcd30ea97b954ffb550ab87d561033</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Activos fijos
|
Activos fijos
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -72,7 +103,3 @@
|
|||||||
<act:parent type="new">9b171f77000bf68dd1ebbaf58336656d</act:parent>
|
<act:parent type="new">9b171f77000bf68dd1ebbaf58336656d</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Préstamo hipotecario
|
Préstamo hipotecario
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -83,7 +114,3 @@
|
|||||||
<act:parent type="new">3dc58d8a51b5deaa22e0c65d81e90346</act:parent>
|
<act:parent type="new">3dc58d8a51b5deaa22e0c65d81e90346</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Gastos de propietario de casa
|
Gastos de propietario de casa
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -84,7 +115,3 @@
|
|||||||
<act:parent type="new">a931b8ffe2917ff9a069333623da96ca</act:parent>
|
<act:parent type="new">a931b8ffe2917ff9a069333623da96ca</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Otros préstamos
|
Otros préstamos
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -84,7 +115,3 @@
|
|||||||
<act:parent type="new">4a02c14e992ea79076837c164aa6fc8d</act:parent>
|
<act:parent type="new">4a02c14e992ea79076837c164aa6fc8d</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Gastos de inquilino
|
Gastos de inquilino
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -61,7 +92,3 @@
|
|||||||
<act:parent type="new">9a2b4520f113372f4e576f5b6dc129c6</act:parent>
|
<act:parent type="new">9a2b4520f113372f4e576f5b6dc129c6</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Cuentas de jubilación
|
Cuentas de jubilación
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -101,7 +132,3 @@
|
|||||||
<act:parent type="new">4173f3047238f4b5595b11d6161b2f48</act:parent>
|
<act:parent type="new">4173f3047238f4b5595b11d6161b2f48</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Ingresos de cónyuge
|
Ingresos de cónyuge
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -116,7 +147,3 @@
|
|||||||
<act:parent type="new">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
<act:parent type="new">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Cuentas de jubilación de cónyuge
|
Cuentas de jubilación de cónyuge
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -101,7 +132,3 @@
|
|||||||
<act:parent type="new">4426b41837adc284f96b291c31022844</act:parent>
|
<act:parent type="new">4426b41837adc284f96b291c31022844</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Cuentas de Inversión
|
Cuentas de Inversión
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -161,7 +192,3 @@
|
|||||||
<act:parent type="new">6de23244232785031501171abcc1d4aa</act:parent>
|
<act:parent type="new">6de23244232785031501171abcc1d4aa</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Préstamo de automóvil
|
Préstamo de automóvil
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -84,8 +115,3 @@
|
|||||||
<act:parent type="new">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
<act:parent type="new">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
@ -1,5 +1,36 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<gnc-account-example>
|
<gnc-account-example
|
||||||
|
xmlns="http://www.gnucash.org/XML/"
|
||||||
|
xmlns:act="http://www.gnucash.org/XML/act"
|
||||||
|
xmlns:addr="http://www.gnucash.org/XML/addr"
|
||||||
|
xmlns:bgt="http://www.gnucash.org/XML/bgt"
|
||||||
|
xmlns:billterm="http://www.gnucash.org/XML/billterm"
|
||||||
|
xmlns:book="http://www.gnucash.org/XML/book"
|
||||||
|
xmlns:bt-days="http://www.gnucash.org/XML/bt-days"
|
||||||
|
xmlns:bt-prox="http://www.gnucash.org/XML/bt-prox"
|
||||||
|
xmlns:cd="http://www.gnucash.org/XML/cd"
|
||||||
|
xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
|
||||||
|
xmlns:cust="http://www.gnucash.org/XML/cust"
|
||||||
|
xmlns:employee="http://www.gnucash.org/XML/employee"
|
||||||
|
xmlns:entry="http://www.gnucash.org/XML/entry"
|
||||||
|
xmlns:fs="http://www.gnucash.org/XML/fs"
|
||||||
|
xmlns:gnc="http://www.gnucash.org/XML/gnc"
|
||||||
|
xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
|
||||||
|
xmlns:invoice="http://www.gnucash.org/XML/invoice"
|
||||||
|
xmlns:job="http://www.gnucash.org/XML/job"
|
||||||
|
xmlns:lot="http://www.gnucash.org/XML/lot"
|
||||||
|
xmlns:order="http://www.gnucash.org/XML/order"
|
||||||
|
xmlns:owner="http://www.gnucash.org/XML/owner"
|
||||||
|
xmlns:price="http://www.gnucash.org/XML/price"
|
||||||
|
xmlns:recurrence="http://www.gnucash.org/XML/recurrence"
|
||||||
|
xmlns:slot="http://www.gnucash.org/XML/slot"
|
||||||
|
xmlns:split="http://www.gnucash.org/XML/split"
|
||||||
|
xmlns:sx="http://www.gnucash.org/XML/sx"
|
||||||
|
xmlns:taxtable="http://www.gnucash.org/XML/taxtable"
|
||||||
|
xmlns:trn="http://www.gnucash.org/XML/trn"
|
||||||
|
xmlns:ts="http://www.gnucash.org/XML/ts"
|
||||||
|
xmlns:tte="http://www.gnucash.org/XML/tte"
|
||||||
|
xmlns:vendor="http://www.gnucash.org/XML/vendor">
|
||||||
<gnc-act:title>
|
<gnc-act:title>
|
||||||
Pagarés y mercado monetario
|
Pagarés y mercado monetario
|
||||||
</gnc-act:title>
|
</gnc-act:title>
|
||||||
@ -106,7 +137,3 @@
|
|||||||
<act:parent type="new">fd131cae797d1fb83c2e2bf57254eca5</act:parent>
|
<act:parent type="new">fd131cae797d1fb83c2e2bf57254eca5</act:parent>
|
||||||
</gnc:account>
|
</gnc:account>
|
||||||
</gnc-account-example>
|
</gnc-account-example>
|
||||||
|
|
||||||
<!-- Local variables: -->
|
|
||||||
<!-- mode: xml -->
|
|
||||||
<!-- End: -->
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user