Logo
Creative Financial Staffing

Bookkeeper

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

Save Job

Bookkeeper About the Company:

Our client is a growing, values-driven organization with locations across the Central Valley. They're committed to fostering a collaborative culture, investing in employee development, and offering real long-term career paths. Team members enjoy a supportive work environment, cross-training opportunities, annual events, and holiday celebrations-all while contributing to a company that's expanding and thriving. Why You'll Love Working Here:

* Supportive, team-oriented culture grounded in strong core values

* 9/80 schedule offered

* Low-cost healthcare benefits

* Salary: $55,000-75,000 plus two yearly bonuses

Key Responsibilities:

* Manage full-cycle accounts payable and accounts receivable

* Perform bank reconciliations and general ledger reconciliations

* Enter and maintain general ledger data using proprietary accounting software

* Prepare and post journal entries

* Assist with month-end and year-end close processes

* Monitor unit cost variances and contribute to setting cost standards for materials and labor

* Support the accounting team with special projects and cross-functional tasks

What We're Looking For:

* 2+ years of bookkeeping or accounting experience

* Strong attention to detail, accuracy, and organizational skills

* Ability to work independently and collaboratively within a fast-paced environment

* Comfort learning new systems and contributing to process improvements #ZRCFS

#INJAN2026

#LI-LR1

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