Logo
Creative Financial Staffing

Bookkeeper

Creative Financial Staffing, Bakersfield, California, United States, 93311

Save Job

Bookkeeper $51,000 - $56,000 About the company and opportunity:

* Our client is an agriculture company with over 30 years in the business

* Company is dedicated to quality, innovation, and stability

* They offer a strong family-oriented environment

* Mission driven organization

* Work alongside strong executives who have been with the organization for over 10 years

* They offer competitive salary and generous benefits package

Overview of the Bookkeeper role:

* Maintains records of financial transactions by establishing accounts; posting transactions

* Develops system to account for financial transactions by establishing a chart of accounts; defining bookkeeping policies and procedures.

* Maintains subsidiary accounts by verifying, allocating, and posting transactions.

* Balances accounts by reconciling entries.

* Maintains general ledger by transferring subsidiary account summaries.

* Balances general ledger by preparing a trial balance; reconciling entries.

* Prepares financial statements by collecting, analyzing, and summarizing account information and trends.

* Complies with federal, state, and local legal requirements by studying requirements; enforcing adherence to requirements; filing reports; advising management on needed actions.

* Contributes to team effort by accomplishing related results as needed.

Preferred requirements:

* 1+ years of accounting experience

EB-1736342253 document.addEventListener('DOMContentLoaded', () => { const root = document.querySelector('#job_desc'); if (!root) return; // Skip wrapping if we've already done it if (root.dataset.hashtagsWrapped === "1") return; const SKIP = new Set(['SCRIPT','STYLE']); const walker = document.createTreeWalker(root, NodeFilter.SHOW_TEXT, { acceptNode(node) { if (!node.nodeValue || !node.nodeValue.match(/#[\p{L}\p{N}_]+/u)) return NodeFilter.FILTER_REJECT; // Avoid wrapping inside an existing hashtag span let p = node.parentNode; while (p && p !== root) { if (p.nodeType === 1 && p.hasAttribute('data-hashtag')) return NodeFilter.FILTER_REJECT; if (SKIP.has(p.nodeName)) return NodeFilter.FILTER_REJECT; p = p.parentNode; } return NodeFilter.FILTER_ACCEPT; } }); const re = /#[\p{L}\p{N}_-]+/gu; function wrapTextNode(textNode) { const text = textNode.nodeValue; re.lastIndex = 0; let m, last = 0; const frag = document.createDocumentFragment(); while ((m = re.exec(text)) !== null) { // preceding plain text if (m.index > last) frag.appendChild(document.createTextNode(text.slice(last, m.index))); // hashtag span const span = document.createElement('span'); span.textContent = m[0]; span.setAttribute('data-hashtag', '1'); // idempotence guard span.setAttribute('style', 'font-size:9px;color:#fff'); // requested inline style frag.appendChild(span); last = re.lastIndex; } // trailing plain text if (last