mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
- feat: Sales invoices APIs. - feat: Sales receipts APIs. - WIP: Sales payment receipts. - WIP: Purchases bills. - WIP: Purchases payments made.
15 lines
351 B
JavaScript
15 lines
351 B
JavaScript
import express from 'express';
|
|
import Bills from '@/http/controllers/Purchases/Bills'
|
|
import BillPayments from '@/http/controllers/Purchases/BillsPayments';
|
|
|
|
export default {
|
|
|
|
router() {
|
|
const router = express.Router();
|
|
|
|
router.use('/bills', Bills.router());
|
|
router.use('/bill_payments', BillPayments.router());
|
|
|
|
return router;
|
|
}
|
|
} |