X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/99ae850764606d3b4e30519b8131b5e074a8fc29..543d78225ec609:/SL/CA.pm diff --git a/SL/CA.pm b/SL/CA.pm index d9fa677a6..85f8dfdb9 100644 --- a/SL/CA.pm +++ b/SL/CA.pm @@ -25,7 +25,8 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1335, USA. #====================================================================== # chart of accounts # @@ -103,7 +104,7 @@ sub all_accounts { comma(tk.startdate::text) AS startdate, comma(tk.taxkey_id::text) AS taxkey, comma(tx.taxdescription || to_char (tx.rate, '99V99' ) || '%') AS taxdescription, - comma(tx.taxnumber::text) AS taxaccount, + comma(taxchart.accno::text) AS taxaccount, comma(tk.pos_ustva::text) AS tk_ustva, ( SELECT accno FROM chart c2 @@ -112,6 +113,7 @@ sub all_accounts { FROM chart c LEFT JOIN taxkeys tk ON (c.id = tk.chart_id) LEFT JOIN tax tx ON (tk.tax_id = tx.id) + LEFT JOIN chart taxchart ON (taxchart.id = tx.chart_id) WHERE 1=1 $where GROUP BY c.accno, c.id, c.description, c.charttype,