Skip to content

Commit 451f2e3

Browse files
committed
ad inforamtion about chapter bus_pay
1 parent d3e3d41 commit 451f2e3

File tree

3 files changed

+306
-3
lines changed

3 files changed

+306
-3
lines changed

guide/de/Makefile.am

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ entities = \
88
ch_bus_ap.xml \
99
ch_bus_ar.xml \
1010
ch_bus_intro.xml \
11+
ch_bus_pay.xml \
1112
ch_bus_setup.xml \
1213
ch_capgain.xml \
1314
ch_cbook.xml \

guide/de/ch_bus_pay.xml

Lines changed: 301 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,301 @@
1+
<!--
2+
(Do not remove this comment block.)
3+
Version: 2.0.0
4+
Last modified: July 9th 2006
5+
Maintainers:
6+
Chris Lyttle <chris@wilddev.net>
7+
Author:
8+
Jon Lapham <lapham@extracta.com.br>
9+
updated Patrick Schweiger <pks@spiffykitty.com>
10+
Originally designed by Carol Champagne.
11+
Translators:
12+
(translators put your name and email here)
13+
-->
14+
<chapter id="chapter_bus_pay">
15+
<title>Payroll</title>
16+
<para>&untranslated;</para>
17+
<!--
18+
<para>Payroll is a financial record of wages, net pay, paid vacations, and deductions for an employee. This chapter demonstrates how to track payroll using <application>&app;</application></para>
19+
<sect1 id="bus-pay-concepts1">
20+
<title>Basic Concepts</title>
21+
<para>Payroll is a financial record of wages, net pay, paid vacations, and deductions for an employee. Basically, anything that relates to giving money or benefits to an employee. Payroll is one of the more complex tasks in accounting, because there are many different accounts, people, and agencies involved in paying salaries.</para>
22+
<para>Payroll is typically accounted for as an expense. Sometimes accountants <quote>store</quote> some payroll expenses in a short term liability account. This is useful for things such as payroll taxes, which may be paid at a different time than the employee. The employee might get paid biweekly, while taxes are paid quarterly. This chapter presents a methodology which expenses payroll immediately for salaries, but stores taxes in liability accounts.</para>
23+
<note>
24+
<para><application>&app;</application> does not have an integrated payroll system. While you can track payroll expenses in <application>&app;</application>, the calculation of taxes and deductions has to be done outside of <application>&app;</application>.</para>
25+
</note>
26+
</sect1>
27+
28+
<sect1 id="bus-pay-acct1">
29+
<title>Account Setup</title>
30+
31+
<para>Local tax law must be considered when setting up accounts. Because there are many different ways payroll taxes are handled throughout the world, this section presents a very simple structure. From this, you should be able to adapt your particular payroll deductions setup.</para>
32+
<para>Assume that you must pay 2 taxes, Tax1 and Tax2 and that each has an employee contributed and an employer contributed component.</para>
33+
<para>The employee&rsquo;s salary and these two taxes are expense accounts. The tax components are liability accounts. The tax liability accounts are where you accumulate the taxes withheld for all of your employees. The taxes are later paid to the appropriate government agency.</para>
34+
<para>
35+
<literallayout>
36+
Simple Payroll Account Layout:
37+
38+
-Assets
39+
-Checking
40+
-Liabilities
41+
-Tax1 (short term <quote>storage</quote> account)
42+
-Tax2 (short term <quote>storage</quote> account)
43+
-Expenses
44+
-Salaries
45+
-Tax1
46+
-Tax2
47+
</literallayout>
48+
49+
<note>
50+
<para>Resist the temptation to create per-employee sub-accounts to track individual salaries. Creating a sub-account for each employee leads to unmanageably large lists of accounts. Imagine the account structure after a few years of employees coming and going. It is much simpler to keep all of your employees&rsquo; payroll records within a single account (<emphasis>Expenses:Salaries</emphasis> for example) and use reports to view per-employee information.</para>
51+
</note>
52+
</para>
53+
54+
</sect1>
55+
56+
<sect1 id="bus-pay-protocol1">
57+
<title>Protocol</title>
58+
<para><application>&app;</application> does not have an integrated payroll system. <application>&app;</application> can track your payroll expenses, but you need to develop a payroll protocol and perform the calculations outside of <application>&app;</application>, in a spreadsheet for example. In this section, one such protocol is presented. You can use the sample protocol as a model.</para>
59+
60+
<sect2 id="bus-pay-protocolone2">
61+
<title>Step 1: Deductions list</title>
62+
<para>The first step to the payroll protocol is to create a list of all the possible taxes and deductions for each employee. Each entry should include definitions and formulas for calculating each value. Once the protocol is established it needs to be changed only when payroll laws or tax rates change.</para>
63+
64+
<para>In the proposed scenario, such a list would look like this:</para>
65+
<itemizedlist spacing="compact">
66+
<listitem>
67+
<para><emphasis>E_GROSS_SALARY</emphasis> - Employee gross salary</para>
68+
</listitem>
69+
<listitem>
70+
<para><emphasis>E_TAX1</emphasis> - Employee contribution to tax1 (X% of E_GROSS_SALARY)</para>
71+
</listitem>
72+
<listitem>
73+
<para><emphasis>E_TAX2</emphasis> - Employee contribution to tax2 (X% of E_GROSS_SALARY)</para>
74+
</listitem>
75+
<listitem>
76+
<para><emphasis>C_TAX1</emphasis> - Company contribution to tax1 (X% of E_GROSS_SALARY)</para>
77+
</listitem>
78+
<listitem>
79+
<para><emphasis>C_TAX2</emphasis> - Company contribution to tax2 (X% of E_GROSS_SALARY)</para>
80+
</listitem>
81+
</itemizedlist>
82+
<note>
83+
<para>The employee&rsquo;s net salary (E_NET_SALARY) is defined as E_GROSS_SALARY - E_TAX1 - E_TAX2 and need not be placed in this list since it is composed of items that already exist.</para>
84+
</note>
85+
<para>Place the actual formulas for calculating each deduction in this list. Sometimes these formulas are quite complex, and sometimes they simply say "look it up in table XYZ of the tax codes".</para>
86+
<para>Notice that you can calculate some interesting values using the above definitions. One such value is the total cost to the company: E_GROSS_SALARY + C_TAX1 + C_TAX2.</para>
87+
</sect2>
88+
89+
<sect2 id="bus-pay-protocoltwo2">
90+
<title>Step 2: Create the Transaction Map</title>
91+
<para>When you record payroll in <application>&app;</application>, do so with a single split transaction. This split transaction populates the appropriate expense and liability accounts. If you need to look the payroll details at a later time, open the split transaction.</para>
92+
<para>With the deductions list from above, an employee split transaction map can be generated. Each of the items in the list is mapped to a <application>&app;</application> account.</para>
93+
94+
<para>
95+
<table>
96+
<title>Transaction Map</title>
97+
<tgroup cols="3">
98+
<thead>
99+
<row>
100+
<entry>Account</entry><entry>Increase</entry><entry>Decrease</entry>
101+
</row>
102+
</thead>
103+
<tbody>
104+
<row>
105+
<entry>Assets:Checking</entry><entry></entry><entry>E_NET_SALARY</entry>
106+
</row>
107+
<row>
108+
<entry>Expenses:Salaries</entry><entry>E_GROSS_SALARY</entry><entry></entry>
109+
</row>
110+
<row>
111+
<entry>Liabilities:Tax1</entry><entry></entry><entry>E_TAX1</entry>
112+
</row>
113+
<row>
114+
<entry>Liabilities:Tax2</entry><entry></entry><entry>E_TAX2</entry>
115+
</row>
116+
<row>
117+
<entry>Expenses:Tax1</entry><entry>C_TAX1</entry><entry></entry>
118+
</row>
119+
<row>
120+
<entry>Liabilities:Tax1</entry><entry></entry><entry>C_TAX1</entry>
121+
</row>
122+
<row>
123+
<entry>Expenses:Tax2</entry><entry>C_TAX2</entry><entry></entry>
124+
</row>
125+
<row>
126+
<entry>Liabilities:Tax2</entry><entry></entry><entry>C_TAX2</entry>
127+
</row>
128+
</tbody>
129+
</tgroup>
130+
</table>
131+
</para>
132+
133+
<para>Note that the C_TAX1 and C_TAX2 components have entries in the both the liability and expense accounts. The company component of each tax is expensed at the time of payroll, but remains a liability until taxes are due.</para>
134+
</sect2>
135+
136+
<sect2 id="bus-pay-protocolthree2">
137+
<title>Step 3: Pay the Employee</title>
138+
<para>Go to the account from which the employee will be paid, for example your <emphasis>Assets:Checking</emphasis> account. Open a split transaction and enter the real values using the Transaction Map above as a guide. Repeat this for all employees.</para>
139+
<tip>
140+
<para>This manual process is tedious, especially if you have a large number of employees.</para>
141+
<para>One <application>&app;</application> tool you certainly want use when entering employee payroll is duplicate transaction (use the <guibutton>Duplicate</guibutton> <emphasis>Toolbar</emphasis> button). This saves you from having to enter all the transaction splits for each employee. You still need to change the amounts of money to match each employee&rsquo;s real payroll values, but you will not have to build the split for each employee.</para>
142+
<para>If payroll transactions do not change significantly every pay period, you can also use the duplicate transaction feature to duplicate each employee&rsquo;s most recent payroll transaction for the current pay period. If you find you are doing so all the time, read about the Schedule Transactions feature and save even more time!</para>
143+
</tip>
144+
</sect2>
145+
146+
<sect2 id="bus-pay-protocolfour2">
147+
<title>Step 4: Pay the Government</title>
148+
<para>The final thing to do is to pay the taxes to the government. The liability accounts have been collecting the taxes for various government agencies, and periodically you need to send a check to the government to pay this charge. To do so, you simply enter a 2 account transaction in (for example) your checking account to pay off the tax liability. The transaction is between the checking account and the liability account, no expense account is involved. The expense accounts are charged at the time the tax liability is recorded.</para>
149+
</sect2>
150+
151+
</sect1>
152+
153+
<sect1 id="bus-pay-example1">
154+
<title>Example</title>
155+
<para>Using the account setup seen previously, let&rsquo;s go through an example. Assume that there are 2 employees (E1 and E2) which each earn $1000 per month gross salary. The employee contribution to Tax1 and Tax2 are 10% and 5% respectively. The company contribution to Tax1 and Tax2 are 15% and 10% each on top of the employees gross salary.</para>
156+
<para>Staring with $50k in the bank, and before doing any payroll, the account hierarchy looks like this:</para>
157+
<screenshot id="bus-pay-ex1">
158+
<mediaobject>
159+
<imageobject>
160+
<imagedata fileref="figures/bus_pay_ex1.png"
161+
srccredit="Patrick Schweiger" format="PNG"/>
162+
</imageobject>
163+
<textobject>
164+
<phrase>Payroll Example 1</phrase>
165+
</textobject>
166+
<caption>
167+
<para>Payroll Initial Setup
168+
</para>
169+
</caption>
170+
</mediaobject>
171+
</screenshot>
172+
173+
<sect2 id="bus-pay-exampleprotocol2">
174+
<title>Build Protocol</title>
175+
<para>The deductions list for employee 1:</para>
176+
<itemizedlist>
177+
<listitem>
178+
<para><emphasis>E_GROSS_SALARY</emphasis> - Employee gross salary - <emphasis>$1000</emphasis></para>
179+
</listitem>
180+
<listitem>
181+
<para><emphasis>E_TAX1</emphasis> - Employee contribution to tax1 - <emphasis>$100</emphasis> (10% of E_GROSS_SALARY)</para>
182+
</listitem>
183+
<listitem>
184+
<para><emphasis>E_TAX2</emphasis> - Employee contribution to tax2 - <emphasis>$50</emphasis> (5% of E_GROSS_SALARY)</para>
185+
</listitem>
186+
<listitem>
187+
<para><emphasis>C_TAX1</emphasis> - Company contribution to tax1 - <emphasis>$150</emphasis> (15% of E_GROSS_SALARY)</para>
188+
</listitem>
189+
<listitem>
190+
<para><emphasis>C_TAX2</emphasis> - Company contribution to tax2 - <emphasis>$100</emphasis> (10% of E_GROSS_SALARY)</para>
191+
</listitem>
192+
</itemizedlist>
193+
194+
<para>
195+
<table>
196+
<title>Transaction Map for Employee 1</title>
197+
<tgroup cols="3">
198+
<thead>
199+
<row>
200+
<entry>Account</entry><entry>Increase</entry><entry>Decrease</entry>
201+
</row>
202+
</thead>
203+
<tbody>
204+
<row>
205+
<entry>Assets:Checking</entry><entry></entry><entry>$850 (E_NET_SALARY)</entry>
206+
</row>
207+
<row>
208+
<entry>Expenses:Salaries</entry><entry>$1000 (E_GROSS_SALARY)</entry><entry></entry>
209+
</row>
210+
<row>
211+
<entry>Liabilities:Tax1</entry><entry></entry><entry>$100 (E_TAX1)</entry>
212+
</row>
213+
<row>
214+
<entry>Liabilities:Tax2</entry><entry></entry><entry>$50 (E_TAX2)</entry>
215+
</row>
216+
<row>
217+
<entry>Expenses:Tax1</entry><entry>$150 (C_TAX1)</entry><entry></entry>
218+
</row>
219+
<row>
220+
<entry>Liabilities:Tax1</entry><entry></entry><entry>$150 (C_TAX1)</entry>
221+
</row>
222+
<row>
223+
<entry>Expenses:Tax2</entry><entry>$100 (C_TAX2)</entry><entry></entry>
224+
</row>
225+
<row>
226+
<entry>Liabilities:Tax2</entry><entry></entry><entry>$100 (C_TAX2)</entry>
227+
</row>
228+
</tbody>
229+
</tgroup>
230+
</table>
231+
</para>
232+
233+
</sect2>
234+
235+
236+
<sect2 id="bus-pay-examplepay2">
237+
<title>Pay an Employee</title>
238+
239+
<para>Now, enter the first split transaction for employee 1 in the checking account. The split transaction looks like this:</para>
240+
241+
<screenshot id="bus-pay-ex2">
242+
<mediaobject>
243+
<imageobject>
244+
<imagedata fileref="figures/bus_pay_ex2.png"
245+
srccredit="Patrick Schweiger" format="PNG"/>
246+
</imageobject>
247+
<textobject>
248+
<phrase>Payroll Example 2</phrase>
249+
</textobject>
250+
<caption>
251+
<para>Employee 1 Split Transaction
252+
</para>
253+
</caption>
254+
</mediaobject>
255+
</screenshot>
256+
257+
<tip>
258+
<para>When paying employees, enter only the employee name in the Description area. If you decide to use <application>&app;</application>&rsquo;s check printing capabilities, the check is automatically made out to the correct employee. If you want to record other information in the transaction besides the employee name, use the Notes area, available when viewing the Register in double-line mode.</para>
259+
</tip>
260+
<para>Repeat this for the second employee, which leaves the account hierarchy looking like this:</para>
261+
262+
<screenshot id="bus-pay-ex3">
263+
<mediaobject>
264+
<imageobject>
265+
<imagedata fileref="figures/bus_pay_ex3.png"
266+
srccredit="Patrick Schweiger" format="PNG"/>
267+
</imageobject>
268+
<textobject>
269+
<phrase>Payroll Example 3</phrase>
270+
</textobject>
271+
<caption>
272+
<para>Account Tree After Salaries Paid
273+
</para>
274+
</caption>
275+
</mediaobject>
276+
</screenshot>
277+
</sect2>
278+
<sect2 id="bus-pay-examplegovt2">
279+
<title>Pay the Government</title>
280+
<para>The <emphasis>Liabilities:Tax1</emphasis> and <emphasis>Liabilities:Tax2</emphasis> accounts continue to track how much you must pay to the government agencies responsible for each. When it is time to pay these agencies, make a transaction from the checking account to the liability accounts. No expense accounts are involved. The main account will then appear like this for this example:</para>
281+
282+
<screenshot id="bus-pay-ex4">
283+
<mediaobject>
284+
<imageobject>
285+
<imagedata fileref="figures/bus_pay_ex4.png"
286+
srccredit="Patrick Schweiger" format="PNG"/>
287+
</imageobject>
288+
<textobject>
289+
<phrase>Payroll Example 4</phrase>
290+
</textobject>
291+
<caption>
292+
<para>Accounts After Paying Government
293+
</para>
294+
</caption>
295+
</mediaobject>
296+
</screenshot>
297+
298+
</sect2>
299+
</sect1>
300+
-->
301+
</chapter>

guide/de/gnucash-guide.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@
2323
<!ENTITY chapter12 SYSTEM "ch_bus_setup.xml">
2424
<!ENTITY chapter13 SYSTEM "ch_bus_ar.xml">
2525
<!ENTITY chapter14 SYSTEM "ch_bus_ap.xml">
26-
<!--
26+
2727
<!ENTITY chapter15 SYSTEM "ch_bus_pay.xml">
28+
<!--
2829
<!ENTITY chapter16 SYSTEM "ch_budgets.xml"> -->
2930
<!ENTITY chapter17 SYSTEM "ch_oth_assets.xml">
3031
<!--
@@ -521,9 +522,9 @@
521522
&chapter12;
522523
&chapter13;
523524
&chapter14;
524-
<!--
525-
&chapter15;
526525

526+
&chapter15;
527+
<!--
527528
&chapter16;-->
528529
&chapter17;
529530
<!--

0 commit comments

Comments
 (0)