Logo
Creative Financial Staffing

Accountant

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

Save Job

Accountant

$62,000-$67,000 Why Work Here

* Our client is a rapidly growing family owned business in Bakersfield

* Our client is vastly expanding, and they are seeking to add a determined individual to grow with their company

* Great work/life balance

* Throws holiday parties

* Friendly work environment, everyone gets along great!

* Full benefits package, medical, dental and vision plans

* 2 weeks of paid time off

* Opportunity for growth, they love to promote within!

* Located downtown!

Responsibilities of the Accountant

* Compile and analyze financial information to prepare entries to general ledger accounts

* Process and prepare accounts payable and accounts receivable

* Assist month-end, quarter-end and year-end closing activities

* Prepare journal entries

* Reconcile bank accounts, and credit cards

* Investigating and resolving audit findings, account discrepancies, and issues of non-compliance

* Maintain and reconcile balance sheet and general ledger accounts

Qualifications for the Accountant role

* At least 1-3 years of previous accounting experience

* Bachelor's degree

EB-7110456462 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