35be7e0298
- Added InventoryMovementListComponent to display stock movements with filtering options. - Created InventoriesTransferFormComponent for transferring stock between inventories. - Implemented product cardex view to show detailed inventory movements for specific products. - Enhanced product listing with loading states and improved UI components. - Introduced Jalali date formatting directive for better date representation. - Added utility functions for Jalali date conversions and comparisons. - Created reusable details info card component for displaying inventory details. - Updated movement reference types and tags for better categorization of inventory movements.
12 lines
378 B
HTML
12 lines
378 B
HTML
<p-card class="w-full border border-primary-700">
|
|
<div class="flex gap-5 text-primary-400">
|
|
<div class="shrink-0 pt-1">
|
|
<i [class]="'pi ' + icon + ' text-2xl'"></i>
|
|
</div>
|
|
<div class="grow flex flex-col gap-1">
|
|
<span class="text-sm">{{ label }}</span>
|
|
<span class="text-xl font-bold text-primary">{{ value }}</span>
|
|
</div>
|
|
</div>
|
|
</p-card>
|