83f124b910
- 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.
23 lines
719 B
TypeScript
23 lines
719 B
TypeScript
import { TEnumApi } from '../models';
|
|
|
|
export const apiEnumTranslates = {
|
|
goldKarat: 'عیار',
|
|
userStatus: 'وضعیت کاربر',
|
|
accountRole: 'نقش',
|
|
accountStatus: 'وضعیت',
|
|
posStatus: 'وضعیت',
|
|
posRole: 'نقش',
|
|
licenseType: 'نوع لایسنس',
|
|
licenseStatus: 'وضعیت لایسنس',
|
|
posType: 'نوع پایانه',
|
|
userType: 'نوع کاربر',
|
|
accountType: 'نوع کاربر',
|
|
partnerRole: 'نقش',
|
|
businessRole: 'نقش',
|
|
providerRole: 'نقش',
|
|
consumerRole: 'نقش',
|
|
unitType: 'واحد اندازهگیری',
|
|
goodPricingModel: 'مدل محاسبه',
|
|
fiscalResponseStatus: 'وضعیت ارسال به سامانه',
|
|
} as Record<TEnumApi, string>;
|