Logo
Creative Financial Staffing

Staff Accountant

Creative Financial Staffing, Houston, Texas, United States, 77064

Save Job

Staff Accountant

Compensation: $60,000 - $80,000 base Why Consider This Staff Accountant Role:

* Career Growth and Development: Opportunity to build a long-term career in a multi-unit restaurant organization that values internal promotions and professional development.

* Collaborative and Positive Working Environment: Work with a tight-knit, supportive accounting team in an office environment that encourages cross-functional collaboration and mentorship.

* Hands-On Accounting Exposure: Manage core accounting functions across bank reconciliations, accruals, lease accounting, inventory, and job costing with visibility into multi-unit operations.

* Process Improvement & Automation: Contribute to process improvement initiatives and system enhancements, including exposure to Blackline and Microsoft Dynamics GP.

* Competitive Compensation and Benefits: Enjoy competitive salaries, comprehensive benefits, and potential performance-based incentives.

* Professional Growth Opportunities: Gain experience interfacing with operations, AP/AR, and external auditors, building a well-rounded accounting skill set.

Key Responsibilities of the Staff Accountant:

* Reconcile bank accounts, monitor cash activity, and resolve discrepancies for multiple units.

* Oversee job cost accounting, including tracking expenses, allocating costs, and analyzing margins for multiple locations.

* Perform inventory accounting, including reconciliation, cost reviews, and variance analysis.

* Manage lease accounting tasks, including classification, amortization schedules, and compliance with ASC 842.

* Prepare and post journal entries and maintain balance sheet reconciliations using Blackline.

* Participate in month-end and year-end close processes, ensuring timely and accurate reporting. Support external audits and provide schedules and documentation as requested.

Qualifications of the Staff Accountant:

* Bachelor's degree in Accounting required; CPA or advanced degree preferred.

* 3-5+ years of accounting experience, ideally in multi-unit operations.

* Hands-on experience with bank reconciliations, accruals, lease accounting, job costing, and inventory accounting.

* Experience with Blackline and Microsoft Dynamics GP preferred. Advanced Excel skills, including VLOOKUP, pivot tables, and formulas.

#INJAN2026 #LI-MG9 EB-1550400340 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