879e29f54f
- Updated InputComponent to handle 'price' type with appropriate formatting and validation. - Introduced new API routes for purchase receipt payments. - Created constants for purchase receipts and invoices. - Developed SupplierInvoicePayFormComponent for processing invoice payments. - Implemented SupplierLedgerComponent to display supplier transactions. - Added services and stores for managing supplier invoices and payments. - Created components for selecting payment methods and displaying payment type tags. - Enhanced UI with new templates for invoices and payment forms. - Added utility functions for handling payment method types and statuses.
6 lines
139 B
TypeScript
6 lines
139 B
TypeScript
const baseUrl = '/api/v1/purchase-receipt-payments';
|
|
|
|
export const PURCHASE_RECEIPT_PAYMENTS_API_ROUTES = {
|
|
list: () => `${baseUrl}`,
|
|
};
|