task-d5.5.1

This commit is contained in:
phaichayon
2026-06-25 12:16:41 +07:00
parent f2c7156851
commit c2a74b6764
121 changed files with 3407 additions and 2679 deletions

View File

@@ -3,8 +3,8 @@ export const CRM_TERMS = {
dashboard: 'Dashboard',
lead: 'ลีด',
leads: 'ลีด',
enquiry: 'โอกาสขาย',
enquiries: 'โอกาสขาย',
opportunity: 'โอกาสขาย',
opportunities: 'โอกาสขาย',
quotation: 'ใบเสนอราคา',
quotations: 'ใบเสนอราคา',
approval: 'อนุมัติเอกสาร',
@@ -17,7 +17,7 @@ export const CRM_TERMS = {
projectParties: 'ผู้เกี่ยวข้องในโครงการ',
crmSettings: 'ตั้งค่า CRM',
leadCount: 'จำนวนลีด',
enquiryCount: 'จำนวนโอกาสขาย',
opportunityCount: 'จำนวนโอกาสขาย',
wonCount: 'จำนวนงานที่ชนะ',
lostCount: 'จำนวนงานที่แพ้',
revenue: 'มูลค่าใบเสนอราคา',
@@ -26,7 +26,7 @@ export const CRM_TERMS = {
export const PIPELINE_STAGE_THAI_LABELS = {
lead: 'ลีด',
enquiry: 'โอกาสขาย',
opportunity: 'โอกาสขาย',
closed_won: 'ชนะ',
closed_lost: 'แพ้'
} as const;
@@ -49,3 +49,4 @@ export function getPipelineStageThaiLabel(
) {
return PIPELINE_STAGE_THAI_LABELS[stage as keyof typeof PIPELINE_STAGE_THAI_LABELS] ?? stage;
}