feat: add sale invoice card component with functionality for sending and retrieving invoice status
- Implemented sale invoice card component with HTML and TypeScript files. - Added API routes for sale invoices including sending, retrying, and checking status. - Created models for sale invoice fiscal actions and filters. - Developed service for handling sale invoice operations. - Introduced store for managing sale invoice state. - Created views for listing and displaying single sale invoices. - Added support for managing stock keeping units with forms and services. - Implemented reusable select components for measure units and SKUs. - Enhanced shared components for input fields including fiscal ID, SKU type, and VAT.
This commit is contained in:
@@ -4,9 +4,14 @@
|
||||
<ng-container [ngTemplateOutlet]="startTemplate"></ng-container>
|
||||
} @else {
|
||||
@if (showMenu) {
|
||||
<button class="layout-menu-button layout-topbar-action" (click)="layoutService.onMenuToggle()">
|
||||
<p-button
|
||||
text
|
||||
size="large"
|
||||
class="layout-menu-button layout-topbar-action me-2"
|
||||
(click)="layoutService.onMenuToggle()"
|
||||
>
|
||||
<i class="pi pi-bars"></i>
|
||||
</button>
|
||||
</p-button>
|
||||
}
|
||||
<div class="flex items-center gap-2">
|
||||
<img [src]="logo" width="32" />
|
||||
@@ -29,6 +34,7 @@
|
||||
type="button"
|
||||
[icon]="`pi ${layoutService.isDarkTheme() ? 'pi-moon' : 'pi-sun'}`"
|
||||
text
|
||||
size="large"
|
||||
(click)="toggleDarkMode()"
|
||||
>
|
||||
<i [ngClass]="{}"></i>
|
||||
|
||||
Reference in New Issue
Block a user