1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
<!--
(Do not remove this comment block.)
Version: 1.8.4
Last modified: April 10th 2004
Maintainers:
Chris Lyttle <chris@wilddev.net>
Author:
Jon Lapham <lapham@extracta.com.br>
Originally designed by Carol Champagne.
Translators:
(translators put your name and email here)
-->
<chapter id="chapter14">
<title>Payroll</title>
<para>Payroll is a financial record of wages, net pay, paid vacations, and deductions for an employee. This chapter will demonstrate how to track payroll in GnuCash</para>
<sect1 id="bus_pay_concepts1">
<title>Basic Concepts</title>
<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. This is one of the more complex tasks in terms of accounting, simply because there are many different accounts, people, and agencies involved in the act of paying an employee's salary.</para>
<para>Payroll is typically accounted for as an expense. Sometimes, accountants will "store" some payroll expenses in a short term liability account. This is useful for things such as payroll taxes, which may be paid to the government at a different times from paying employee salaries. This chapter will present a methodology which expenses payroll immediately for salaries, but store taxes in a liability account.</para>
<note>
<para>GnuCash does not (yet) have an integrated payroll system. What this means is that while you can track payroll expenses in GnuCash, the actual calculation of taxes and deductions will have to be done outside of GnuCash.</para>
</note>
</sect1>
<sect1 id="bus_pay_acct1">
<title>Account Setup</title>
<para>Some considerations that must be addressed when setting up your accounts is how your local tax laws work. Because there are so many different ways payroll taxes can be handled throughout the world, this section will present a simple structure. From this, you should be able to adapt your particular payroll deductions setup.</para>
<para>Let us assume that you must pay 2 taxes, Tax1 and Tax2 and that each has an employee contributed component and an employer contributed component.</para>
<para>The employee's salary and these two taxes will have to have expense accounts associated, and the taxes will have to have liability accounts. The tax liability account is the place where you accumulate the withheld taxes for all of your employees, which is later paid to the appropriate government agency.</para>
<para>
<literallayout>
Simple Payroll Account Layout:
-Assets
-Checking
-Liabilities
-Tax1 (short term "storage" account)
-Tax2 (short term "storage" account)
-Expenses
-Salaries
-Taxes
</literallayout>
<note>
<para>There is a temptation to create per-employee sub-accounts, to track each employee separately. However, this often leads to unmanageably large lists of accounts. Imagine how your account structure would look after a few years of employees coming and going in your company. It is much simpler to keep all of your employees payroll records within a single account (Expense:Salaries for example) and use reports to view per-employee information.</para>
</note>
</para>
</sect1>
<sect1 id="bus_pay_protocol1">
<title>Protocol</title>
<para>GnuCash does not (yet) have an integrated payroll system. You can use GnuCash to track your payroll expenses, but you will need to develop a payroll protocol and perform the calculations outside of GnuCash, in a spreadsheet for example. In this section, one such protocol is presented, which you can use as a model.</para>
<sect2 id="bus_pay_protocolone2">
<title>Step 1: Deductions list</title>
<para>The first step to the payroll protocol is to create a list of all the possible taxes and deductions for each employee, which should include definitions and formulas for calculating each value. This step of the protocol will only need to be done once, and again in the future when the payroll laws or tax rates change. For our simple payroll situation with the two taxes, such a list would look like this:</para>
<itemizedlist spacing="compact">
<listitem>
<para><emphasis>E_GROSS_SALARY</emphasis> - Employee gross salary</para>
</listitem>
<listitem>
<para><emphasis>E_TAX1</emphasis> - Employee contribution to tax1 (X% of E_GROSS_SALARY)</para>
</listitem>
<listitem>
<para><emphasis>E_TAX2</emphasis> - Employee contribution to tax2 (X% of E_GROSS_SALARY)</para>
</listitem>
<listitem>
<para><emphasis>C_TAX1</emphasis> - Company contribution to tax1 (X% of E_GROSS_SALARY)</para>
</listitem>
<listitem>
<para><emphasis>C_TAX2</emphasis> - Company contribution to tax2 (X% of E_GROSS_SALARY)</para>
</listitem>
</itemizedlist>
<note>
<para>The employee'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>
</note>
<para>You will want to place the actual formulas for calculating each deduction in this list. Sometimes, these formulas can be quite complex, and sometimes the formula may simply say "look this number up in table XYZ of the tax codes."</para>
<para>Notice that you can calculate some interesting values using the above definitions, such as the total cost to the company: E_GROSS_SALARY + C_TAX1 + C_TAX2.</para>
</sect2>
<sect2 id="bus_pay_protocoltwo2">
<title>Step 2: Create the Transaction Map</title>
<para>When you record payroll in GnuCash, it is done with a single split transaction. This split transaction will populate the appropriate expense and liability accounts. If, in the future, you want to discover any of the payroll details for a particular employee, simply open the split transaction.</para>
<para>With the deductions list from above in hand, an employee split transaction map can be generated which maps each of the items in the list to a GnuCash account.</para>
<para>
<table>
<title>Transaction Map</title>
<tgroup cols="3">
<tbody>
<row>
<entry>Account</entry><entry>Increase</entry><entry>Decrease</entry>
</row>
<row>
<entry>Assets:Checking</entry><entry></entry><entry>E_NET_SALARY</entry>
</row>
<row>
<entry>Expenses:Salaries</entry><entry>E_GROSS_SALARY</entry><entry></entry>
</row>
<row>
<entry>Liabilities:Tax1</entry><entry></entry><entry>E_TAX1</entry>
</row>
<row>
<entry>Liabilities:Tax2</entry><entry></entry><entry>E_TAX2</entry>
</row>
<row>
<entry>Expenses:Tax1</entry><entry>C_TAX1</entry><entry></entry>
</row>
<row>
<entry>Liabilities:Tax1</entry><entry></entry><entry>C_TAX1</entry>
</row>
<row>
<entry>Expenses:Tax2</entry><entry>C_TAX2</entry><entry></entry>
</row>
<row>
<entry>Liabilities:Tax2</entry><entry></entry><entry>C_TAX2</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
</sect2>
<sect2 id="bus_pay_protocolthree2">
<title>Step 3: Pay the Employee</title>
<para>Go to the account from which the employee will be paid, for example your Asset:Checking account. Open a split transaction and enter the real values using the Transaction Map above as a guide. Repeat this for all employees.</para>
<tip>
<para>This manual process is tedious, especially if you have a large number of employees. One GnuCash tool you will certainly want to make use of when entering employee payroll is duplicate transaction (use the <guibutton>Duplicate</guibutton> tool bar button). Using this will save you from having to enter all the transaction splits for each employee. You will still need to change the amounts of money to match each employee's real payroll values, but at least you do not need to build the split each time.</para>
</tip>
</sect2>
<sect2 id="bus_pay_protocolfour2">
<title>Step 4: Pay the Government</title>
<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 will 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 will be between the checking account and the liability account, no expense account are involved.</para>
</sect2>
</sect1>
<sect1 id="bus_pay_example1">
<title>Example</title>
<para>Using the account setup seen previously, let'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>
<para>Staring with $50k in the bank, and before doing any payroll, the account hierarchy looks like this:</para>
<screenshot id="bus_pay_ex1">
<mediaobject>
<imageobject>
<imagedata fileref="figures/bus_pay_ex1.png"
srccredit="Jon Lapham" format="PNG"/>
</imageobject>
<textobject>
<phrase>Payroll Example 1</phrase>
</textobject>
<caption>
<para>Payroll Initial Setup
</para>
</caption>
</mediaobject>
</screenshot>
<sect2 id="bus_pay_exampleprotocol2">
<title>Build Protocol</title>
<para>The deductions list for employee 1:</para>
<itemizedlist>
<listitem>
<para><emphasis>E_GROSS_SALARY</emphasis> - Employee gross salary - <emphasis>$1000</emphasis></para>
</listitem>
<listitem>
<para><emphasis>E_TAX1</emphasis> - Employee contribution to tax1 - <emphasis>$100</emphasis> (10% of E_GROSS_SALARY)</para>
</listitem>
<listitem>
<para><emphasis>E_TAX2</emphasis> - Employee contribution to tax2 - <emphasis>$50</emphasis> (5% of E_GROSS_SALARY)</para>
</listitem>
<listitem>
<para><emphasis>C_TAX1</emphasis> - Company contribution to tax1 - <emphasis>$150</emphasis> (15% of E_GROSS_SALARY)</para>
</listitem>
<listitem>
<para><emphasis>C_TAX2</emphasis> - Company contribution to tax2 - <emphasis>$100</emphasis> (10% of E_GROSS_SALARY)</para>
</listitem>
</itemizedlist>
<para>
<table>
<title>Transaction Map for Employee 1</title>
<tgroup cols="3">
<tbody>
<row>
<entry>Account</entry><entry>Increase</entry><entry>Decrease</entry>
</row>
<row>
<entry>Assets:Checking</entry><entry></entry><entry>$850 (E_NET_SALARY)</entry>
</row>
<row>
<entry>Expenses:Salaries</entry><entry>$1000 (E_GROSS_SALARY)</entry><entry></entry>
</row>
<row>
<entry>Liabilities:Tax1</entry><entry></entry><entry>$100 (E_TAX1)</entry>
</row>
<row>
<entry>Liabilities:Tax2</entry><entry></entry><entry>$50 (E_TAX2)</entry>
</row>
<row>
<entry>Expenses:Tax1</entry><entry>$150 (C_TAX1)</entry><entry></entry>
</row>
<row>
<entry>Liabilities:Tax1</entry><entry></entry><entry>$150 (C_TAX1)</entry>
</row>
<row>
<entry>Expenses:Tax2</entry><entry>$100 (C_TAX2)</entry><entry></entry>
</row>
<row>
<entry>Liabilities:Tax2</entry><entry></entry><entry>$100 (C_TAX2)</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
</sect2>
<sect2 id="bus_pay_examplepay2">
<title>Pay an Employee</title>
<para>Now, enter the first split transaction for employee 1 in the checking account. The split transaction will look like this:</para>
<screenshot id="bus_pay_ex2">
<mediaobject>
<imageobject>
<imagedata fileref="figures/bus_pay_ex2.png"
srccredit="Jon Lapham" format="PNG"/>
</imageobject>
<textobject>
<phrase>Payroll Example 2</phrase>
</textobject>
<caption>
<para>Employee 1 Split Transaction
</para>
</caption>
</mediaobject>
</screenshot>
<tip>
<para>When paying employees, enter only the employee name in the Description area. If you decide to use GnuCash's check printing capabilities, the check will automatically be made out to the employee correctly. 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>
</tip>
<para>Repeat this for the second employee, which leaves the account hierarchy looking like this:</para>
<screenshot id="bus_pay_ex3">
<mediaobject>
<imageobject>
<imagedata fileref="figures/bus_pay_ex3.png"
srccredit="Jon Lapham" format="PNG"/>
</imageobject>
<textobject>
<phrase>Payroll Example 3</phrase>
</textobject>
<caption>
<para>Account Tree After Salaries Paid
</para>
</caption>
</mediaobject>
</screenshot>
</sect2>
<sect2 id="bus_pay_examplegovt2">
<title>Pay the Government</title>
<para>The Liability:Tax1 and Liability:Tax2 accounts will 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>
<screenshot id="bus_pay_ex4">
<mediaobject>
<imageobject>
<imagedata fileref="figures/bus_pay_ex4.png"
srccredit="Jon Lapham" format="PNG"/>
</imageobject>
<textobject>
<phrase>Payroll Example 4</phrase>
</textobject>
<caption>
<para>Accounts After Paying Government
</para>
</caption>
</mediaobject>
</screenshot>
</sect2>
</sect1>
</chapter>
|