import React, { useState, useEffect, useMemo } from 'react'; import { Search, Plus, X, Mail, Edit2, Trash2, Check, Clock, Settings as SettingsIcon, Copy, ChevronRight, Building2, Globe, Phone, Save, RefreshCw, LayoutDashboard, Users, Package, Layers, Zap, Tag, Inbox, Paperclip, Menu, LogOut, GripVertical, BookOpen, FileText, FolderTree, Lock, Sparkles, Printer, Image as ImageIcon, ShieldCheck, Settings2, Boxes, Download, Wifi, Radio, QrCode, Folder, FolderPlus, Factory } from 'lucide-react'; import { storageGet, storageSet, uploadFile, deleteFile, authCheck, authLogin, authLogout, authChangePassword, getAiConfig, saveAiConfig, deleteAiConfig, testAiConfig, parseCatalogFiles, translateTerms, } from './storage'; /* ----------------------------- constants ----------------------------- */ const REGIONS = [ { id: 'africa', label: 'Africa / 非洲' }, { id: 'middle_east', label: 'Middle East / 中东' }, { id: 'australia', label: 'Australia / 大洋洲' }, { id: 'europe', label: 'Europe / 欧洲' }, { id: 'sea', label: 'SE Asia / 东南亚' }, { id: 'other', label: 'Other / 其他' }, ]; const PRODUCT_LINES = ['UPS不间断电源', '光伏逆变器', '储能电池', 'Other']; // LEGACY_PRODUCT_TAXONOMY:旧版写死的三级分类树,仅用于首次迁移生成默认的 // 动态类目数据(类目/品牌/类型现在都存在 crm:productCategories 里,用户可自行增删)。 const LEGACY_PRODUCT_TAXONOMY = [ { id: 'ups', label: 'UPS不间断电源 / UPS', short: 'UPS不间断电源', subs: [ { id: 'mini', label: '迷你UPS / Mini UPS', short: '迷你UPS' }, { id: 'offline', label: '离线式UPS / Offline UPS', short: '离线式UPS' }, { id: 'line_interactive', label: '在线互动式UPS / Line-Interactive UPS', short: '在线互动式UPS' }, { id: 'online', label: '在线式UPS / Online UPS', short: '在线式UPS', subs: [ { id: 'rack', label: '机架式UPS / Rack-mount UPS', short: '机架式UPS' }, { id: 'online_high_freq', label: '在线式高频UPS / Online High-Frequency UPS', short: '在线式高频UPS' }, { id: 'high_freq_tower', label: '高频塔式UPS / High-Frequency Tower UPS', short: '高频塔式UPS' }, { id: 'low_freq', label: '工频UPS / Low-Frequency UPS', short: '工频UPS' }, { id: 'modular', label: '模块化UPS / Modular UPS', short: '模块化UPS' }, ], }, ], }, { id: 'inverter', label: '光伏逆变器 / Solar Inverter', short: '光伏逆变器', subs: [ { id: 'hybrid', label: '太阳能混网逆变器 / Hybrid Solar Inverter', short: '太阳能混网逆变器' }, { id: 'grid_off_grid', label: '并网/离网逆变器 / Grid-tied / Off-grid Inverter', short: '并网/离网逆变器' }, ], }, { id: 'battery', label: '储能电池 / Energy Storage Battery', short: '储能电池', subs: [ { id: 'lead_acid', label: '铅酸电池 / Lead-acid Battery', short: '铅酸电池' }, { id: 'lifepo4', label: '磷酸铁锂电池 / LiFePO4 Battery', short: '磷酸铁锂电池' }, { id: 'ups_lithium_system', label: 'UPS配套锂电池系统 / UPS-matched Lithium Battery System', short: 'UPS配套锂电池系统' }, ], }, ]; function flattenLegacyTypes(top) { const out = []; (top.subs || []).forEach(s => { out.push(s.short); (s.subs || []).forEach(ss => out.push(ss.short)); }); return out; } function buildDefaultProductCategories() { return LEGACY_PRODUCT_TAXONOMY.map(top => ({ id: top.id, name: top.short, brands: [], types: flattenLegacyTypes(top), })); } const CUSTOMER_SOURCES = ['Made-in-China', '官网', '展会', 'Other']; const FILE_CATEGORIES = ['报价单', '合同', '聊天记录', '产品资料', '物流单据', 'Other']; // 国家 -> 地区 / 电话国家代码 / 时区(以首都为准)映射表 // 用于:选择国家后自动匹配所属大洲、电话区号前缀、当地时间 const COUNTRIES = [ // Africa / 非洲 { name: '尼日利亚', en: 'Nigeria', region: 'africa', dial: '+234', tz: 'Africa/Lagos' }, { name: '埃及', en: 'Egypt', region: 'africa', dial: '+20', tz: 'Africa/Cairo' }, { name: '南非', en: 'South Africa', region: 'africa', dial: '+27', tz: 'Africa/Johannesburg' }, { name: '肯尼亚', en: 'Kenya', region: 'africa', dial: '+254', tz: 'Africa/Nairobi' }, { name: '加纳', en: 'Ghana', region: 'africa', dial: '+233', tz: 'Africa/Accra' }, { name: '阿尔及利亚', en: 'Algeria', region: 'africa', dial: '+213', tz: 'Africa/Algiers' }, { name: '摩洛哥', en: 'Morocco', region: 'africa', dial: '+212', tz: 'Africa/Casablanca' }, { name: '突尼斯', en: 'Tunisia', region: 'africa', dial: '+216', tz: 'Africa/Tunis' }, { name: '埃塞俄比亚', en: 'Ethiopia', region: 'africa', dial: '+251', tz: 'Africa/Addis_Ababa' }, { name: '坦桑尼亚', en: 'Tanzania', region: 'africa', dial: '+255', tz: 'Africa/Dar_es_Salaam' }, { name: '乌干达', en: 'Uganda', region: 'africa', dial: '+256', tz: 'Africa/Kampala' }, { name: '安哥拉', en: 'Angola', region: 'africa', dial: '+244', tz: 'Africa/Luanda' }, { name: '莫桑比克', en: 'Mozambique', region: 'africa', dial: '+258', tz: 'Africa/Maputo' }, { name: '赞比亚', en: 'Zambia', region: 'africa', dial: '+260', tz: 'Africa/Lusaka' }, { name: '津巴布韦', en: 'Zimbabwe', region: 'africa', dial: '+263', tz: 'Africa/Harare' }, { name: '塞内加尔', en: 'Senegal', region: 'africa', dial: '+221', tz: 'Africa/Dakar' }, { name: '科特迪瓦', en: "Cote d'Ivoire", region: 'africa', dial: '+225', tz: 'Africa/Abidjan' }, { name: '喀麦隆', en: 'Cameroon', region: 'africa', dial: '+237', tz: 'Africa/Douala' }, { name: '刚果(金)', en: 'DR Congo', region: 'africa', dial: '+243', tz: 'Africa/Kinshasa' }, { name: '刚果(布)', en: 'Congo', region: 'africa', dial: '+242', tz: 'Africa/Brazzaville' }, { name: '利比亚', en: 'Libya', region: 'africa', dial: '+218', tz: 'Africa/Tripoli' }, { name: '苏丹', en: 'Sudan', region: 'africa', dial: '+249', tz: 'Africa/Khartoum' }, { name: '卢旺达', en: 'Rwanda', region: 'africa', dial: '+250', tz: 'Africa/Kigali' }, { name: '博茨瓦纳', en: 'Botswana', region: 'africa', dial: '+267', tz: 'Africa/Gaborone' }, { name: '纳米比亚', en: 'Namibia', region: 'africa', dial: '+264', tz: 'Africa/Windhoek' }, { name: '马里', en: 'Mali', region: 'africa', dial: '+223', tz: 'Africa/Bamako' }, { name: '尼日尔', en: 'Niger', region: 'africa', dial: '+227', tz: 'Africa/Niamey' }, { name: '贝宁', en: 'Benin', region: 'africa', dial: '+229', tz: 'Africa/Porto-Novo' }, { name: '布基纳法索', en: 'Burkina Faso', region: 'africa', dial: '+226', tz: 'Africa/Ouagadougou' }, { name: '多哥', en: 'Togo', region: 'africa', dial: '+228', tz: 'Africa/Lome' }, { name: '几内亚', en: 'Guinea', region: 'africa', dial: '+224', tz: 'Africa/Conakry' }, { name: '塞拉利昂', en: 'Sierra Leone', region: 'africa', dial: '+232', tz: 'Africa/Freetown' }, { name: '利比里亚', en: 'Liberia', region: 'africa', dial: '+231', tz: 'Africa/Monrovia' }, { name: '乍得', en: 'Chad', region: 'africa', dial: '+235', tz: 'Africa/Ndjamena' }, { name: '索马里', en: 'Somalia', region: 'africa', dial: '+252', tz: 'Africa/Mogadishu' }, { name: '吉布提', en: 'Djibouti', region: 'africa', dial: '+253', tz: 'Africa/Djibouti' }, { name: '南苏丹', en: 'South Sudan', region: 'africa', dial: '+211', tz: 'Africa/Juba' }, { name: '马拉维', en: 'Malawi', region: 'africa', dial: '+265', tz: 'Africa/Blantyre' }, { name: '马达加斯加', en: 'Madagascar', region: 'africa', dial: '+261', tz: 'Indian/Antananarivo' }, { name: '毛里求斯', en: 'Mauritius', region: 'africa', dial: '+230', tz: 'Indian/Mauritius' }, { name: '加蓬', en: 'Gabon', region: 'africa', dial: '+241', tz: 'Africa/Libreville' }, { name: '布隆迪', en: 'Burundi', region: 'africa', dial: '+257', tz: 'Africa/Bujumbura' }, { name: '斯威士兰', en: 'Eswatini', region: 'africa', dial: '+268', tz: 'Africa/Mbabane' }, { name: '厄立特里亚', en: 'Eritrea', region: 'africa', dial: '+291', tz: 'Africa/Asmara' }, // Middle East / 中东 { name: '沙特阿拉伯', en: 'Saudi Arabia', region: 'middle_east', dial: '+966', tz: 'Asia/Riyadh' }, { name: '阿联酋', en: 'UAE', region: 'middle_east', dial: '+971', tz: 'Asia/Dubai' }, { name: '卡塔尔', en: 'Qatar', region: 'middle_east', dial: '+974', tz: 'Asia/Qatar' }, { name: '科威特', en: 'Kuwait', region: 'middle_east', dial: '+965', tz: 'Asia/Kuwait' }, { name: '巴林', en: 'Bahrain', region: 'middle_east', dial: '+973', tz: 'Asia/Bahrain' }, { name: '阿曼', en: 'Oman', region: 'middle_east', dial: '+968', tz: 'Asia/Muscat' }, { name: '伊拉克', en: 'Iraq', region: 'middle_east', dial: '+964', tz: 'Asia/Baghdad' }, { name: '伊朗', en: 'Iran', region: 'middle_east', dial: '+98', tz: 'Asia/Tehran' }, { name: '约旦', en: 'Jordan', region: 'middle_east', dial: '+962', tz: 'Asia/Amman' }, { name: '黎巴嫩', en: 'Lebanon', region: 'middle_east', dial: '+961', tz: 'Asia/Beirut' }, { name: '以色列', en: 'Israel', region: 'middle_east', dial: '+972', tz: 'Asia/Jerusalem' }, { name: '也门', en: 'Yemen', region: 'middle_east', dial: '+967', tz: 'Asia/Aden' }, { name: '叙利亚', en: 'Syria', region: 'middle_east', dial: '+963', tz: 'Asia/Damascus' }, { name: '土耳其', en: 'Turkey', region: 'middle_east', dial: '+90', tz: 'Europe/Istanbul' }, { name: '巴勒斯坦', en: 'Palestine', region: 'middle_east', dial: '+970', tz: 'Asia/Gaza' }, // Australia / 大洋洲 { name: '澳大利亚', en: 'Australia', region: 'australia', dial: '+61', tz: 'Australia/Sydney' }, { name: '新西兰', en: 'New Zealand', region: 'australia', dial: '+64', tz: 'Pacific/Auckland' }, { name: '巴布亚新几内亚', en: 'Papua New Guinea', region: 'australia', dial: '+675', tz: 'Pacific/Port_Moresby' }, { name: '斐济', en: 'Fiji', region: 'australia', dial: '+679', tz: 'Pacific/Fiji' }, // Europe / 欧洲 { name: '俄罗斯', en: 'Russia', region: 'europe', dial: '+7', tz: 'Europe/Moscow' }, { name: '德国', en: 'Germany', region: 'europe', dial: '+49', tz: 'Europe/Berlin' }, { name: '法国', en: 'France', region: 'europe', dial: '+33', tz: 'Europe/Paris' }, { name: '英国', en: 'United Kingdom', region: 'europe', dial: '+44', tz: 'Europe/London' }, { name: '意大利', en: 'Italy', region: 'europe', dial: '+39', tz: 'Europe/Rome' }, { name: '西班牙', en: 'Spain', region: 'europe', dial: '+34', tz: 'Europe/Madrid' }, { name: '波兰', en: 'Poland', region: 'europe', dial: '+48', tz: 'Europe/Warsaw' }, { name: '乌克兰', en: 'Ukraine', region: 'europe', dial: '+380', tz: 'Europe/Kyiv' }, { name: '荷兰', en: 'Netherlands', region: 'europe', dial: '+31', tz: 'Europe/Amsterdam' }, { name: '比利时', en: 'Belgium', region: 'europe', dial: '+32', tz: 'Europe/Brussels' }, { name: '瑞典', en: 'Sweden', region: 'europe', dial: '+46', tz: 'Europe/Stockholm' }, { name: '挪威', en: 'Norway', region: 'europe', dial: '+47', tz: 'Europe/Oslo' }, { name: '芬兰', en: 'Finland', region: 'europe', dial: '+358', tz: 'Europe/Helsinki' }, { name: '丹麦', en: 'Denmark', region: 'europe', dial: '+45', tz: 'Europe/Copenhagen' }, { name: '瑞士', en: 'Switzerland', region: 'europe', dial: '+41', tz: 'Europe/Zurich' }, { name: '奥地利', en: 'Austria', region: 'europe', dial: '+43', tz: 'Europe/Vienna' }, { name: '葡萄牙', en: 'Portugal', region: 'europe', dial: '+351', tz: 'Europe/Lisbon' }, { name: '希腊', en: 'Greece', region: 'europe', dial: '+30', tz: 'Europe/Athens' }, { name: '罗马尼亚', en: 'Romania', region: 'europe', dial: '+40', tz: 'Europe/Bucharest' }, { name: '匈牙利', en: 'Hungary', region: 'europe', dial: '+36', tz: 'Europe/Budapest' }, { name: '捷克', en: 'Czech Republic', region: 'europe', dial: '+420', tz: 'Europe/Prague' }, { name: '塞尔维亚', en: 'Serbia', region: 'europe', dial: '+381', tz: 'Europe/Belgrade' }, { name: '保加利亚', en: 'Bulgaria', region: 'europe', dial: '+359', tz: 'Europe/Sofia' }, { name: '克罗地亚', en: 'Croatia', region: 'europe', dial: '+385', tz: 'Europe/Zagreb' }, { name: '爱尔兰', en: 'Ireland', region: 'europe', dial: '+353', tz: 'Europe/Dublin' }, { name: '白俄罗斯', en: 'Belarus', region: 'europe', dial: '+375', tz: 'Europe/Minsk' }, { name: '摩尔多瓦', en: 'Moldova', region: 'europe', dial: '+373', tz: 'Europe/Chisinau' }, { name: '立陶宛', en: 'Lithuania', region: 'europe', dial: '+370', tz: 'Europe/Vilnius' }, { name: '拉脱维亚', en: 'Latvia', region: 'europe', dial: '+371', tz: 'Europe/Riga' }, { name: '爱沙尼亚', en: 'Estonia', region: 'europe', dial: '+372', tz: 'Europe/Tallinn' }, { name: '斯洛伐克', en: 'Slovakia', region: 'europe', dial: '+421', tz: 'Europe/Bratislava' }, { name: '斯洛文尼亚', en: 'Slovenia', region: 'europe', dial: '+386', tz: 'Europe/Ljubljana' }, { name: '波黑', en: 'Bosnia and Herzegovina', region: 'europe', dial: '+387', tz: 'Europe/Sarajevo' }, { name: '北马其顿', en: 'North Macedonia', region: 'europe', dial: '+389', tz: 'Europe/Skopje' }, { name: '阿尔巴尼亚', en: 'Albania', region: 'europe', dial: '+355', tz: 'Europe/Tirane' }, { name: '黑山', en: 'Montenegro', region: 'europe', dial: '+382', tz: 'Europe/Podgorica' }, { name: '冰岛', en: 'Iceland', region: 'europe', dial: '+354', tz: 'Atlantic/Reykjavik' }, { name: '马耳他', en: 'Malta', region: 'europe', dial: '+356', tz: 'Europe/Malta' }, { name: '塞浦路斯', en: 'Cyprus', region: 'europe', dial: '+357', tz: 'Asia/Nicosia' }, { name: '卢森堡', en: 'Luxembourg', region: 'europe', dial: '+352', tz: 'Europe/Luxembourg' }, // SE Asia / 东南亚 { name: '印度尼西亚', en: 'Indonesia', region: 'sea', dial: '+62', tz: 'Asia/Jakarta' }, { name: '马来西亚', en: 'Malaysia', region: 'sea', dial: '+60', tz: 'Asia/Kuala_Lumpur' }, { name: '泰国', en: 'Thailand', region: 'sea', dial: '+66', tz: 'Asia/Bangkok' }, { name: '越南', en: 'Vietnam', region: 'sea', dial: '+84', tz: 'Asia/Ho_Chi_Minh' }, { name: '菲律宾', en: 'Philippines', region: 'sea', dial: '+63', tz: 'Asia/Manila' }, { name: '新加坡', en: 'Singapore', region: 'sea', dial: '+65', tz: 'Asia/Singapore' }, { name: '缅甸', en: 'Myanmar', region: 'sea', dial: '+95', tz: 'Asia/Yangon' }, { name: '柬埔寨', en: 'Cambodia', region: 'sea', dial: '+855', tz: 'Asia/Phnom_Penh' }, { name: '老挝', en: 'Laos', region: 'sea', dial: '+856', tz: 'Asia/Vientiane' }, { name: '文莱', en: 'Brunei', region: 'sea', dial: '+673', tz: 'Asia/Brunei' }, // Other / 其他 { name: '美国', en: 'United States', region: 'other', dial: '+1', tz: 'America/New_York' }, { name: '加拿大', en: 'Canada', region: 'other', dial: '+1', tz: 'America/Toronto' }, { name: '巴西', en: 'Brazil', region: 'other', dial: '+55', tz: 'America/Sao_Paulo' }, { name: '墨西哥', en: 'Mexico', region: 'other', dial: '+52', tz: 'America/Mexico_City' }, { name: '阿根廷', en: 'Argentina', region: 'other', dial: '+54', tz: 'America/Argentina/Buenos_Aires' }, { name: '印度', en: 'India', region: 'other', dial: '+91', tz: 'Asia/Kolkata' }, { name: '巴基斯坦', en: 'Pakistan', region: 'other', dial: '+92', tz: 'Asia/Karachi' }, { name: '孟加拉国', en: 'Bangladesh', region: 'other', dial: '+880', tz: 'Asia/Dhaka' }, { name: '中国', en: 'China', region: 'other', dial: '+86', tz: 'Asia/Shanghai' }, { name: '韩国', en: 'South Korea', region: 'other', dial: '+82', tz: 'Asia/Seoul' }, { name: '日本', en: 'Japan', region: 'other', dial: '+81', tz: 'Asia/Tokyo' }, { name: '乌兹别克斯坦', en: 'Uzbekistan', region: 'other', dial: '+998', tz: 'Asia/Tashkent' }, { name: '哈萨克斯坦', en: 'Kazakhstan', region: 'other', dial: '+7', tz: 'Asia/Almaty' }, { name: '吉尔吉斯斯坦', en: 'Kyrgyzstan', region: 'other', dial: '+996', tz: 'Asia/Bishkek' }, { name: '塔吉克斯坦', en: 'Tajikistan', region: 'other', dial: '+992', tz: 'Asia/Dushanbe' }, { name: '土库曼斯坦', en: 'Turkmenistan', region: 'other', dial: '+993', tz: 'Asia/Ashgabat' }, { name: '格鲁吉亚', en: 'Georgia', region: 'other', dial: '+995', tz: 'Asia/Tbilisi' }, { name: '亚美尼亚', en: 'Armenia', region: 'other', dial: '+374', tz: 'Asia/Yerevan' }, { name: '阿塞拜疆', en: 'Azerbaijan', region: 'other', dial: '+994', tz: 'Asia/Baku' }, { name: '斯里兰卡', en: 'Sri Lanka', region: 'other', dial: '+94', tz: 'Asia/Colombo' }, { name: '尼泊尔', en: 'Nepal', region: 'other', dial: '+977', tz: 'Asia/Kathmandu' }, { name: '阿富汗', en: 'Afghanistan', region: 'other', dial: '+93', tz: 'Asia/Kabul' }, { name: '蒙古', en: 'Mongolia', region: 'other', dial: '+976', tz: 'Asia/Ulaanbaatar' }, { name: '智利', en: 'Chile', region: 'other', dial: '+56', tz: 'America/Santiago' }, { name: '秘鲁', en: 'Peru', region: 'other', dial: '+51', tz: 'America/Lima' }, { name: '哥伦比亚', en: 'Colombia', region: 'other', dial: '+57', tz: 'America/Bogota' }, { name: '厄瓜多尔', en: 'Ecuador', region: 'other', dial: '+593', tz: 'America/Guayaquil' }, { name: '委内瑞拉', en: 'Venezuela', region: 'other', dial: '+58', tz: 'America/Caracas' }, { name: '玻利维亚', en: 'Bolivia', region: 'other', dial: '+591', tz: 'America/La_Paz' }, { name: '巴拉圭', en: 'Paraguay', region: 'other', dial: '+595', tz: 'America/Asuncion' }, { name: '乌拉圭', en: 'Uruguay', region: 'other', dial: '+598', tz: 'America/Montevideo' }, ]; const COUNTRY_BY_NAME = Object.fromEntries(COUNTRIES.map(c => [c.name, c])); const STORAGE_KEYS = { customers: 'crm:customers', products: 'crm:products', quotes: 'crm:quotes', sellerProfiles: 'crm:sellerProfiles', certifications: 'crm:certifications', productCategories: 'crm:productCategories', packingLists: 'crm:packingLists', catalogDocs: 'crm:catalogDocs', jmsLines: 'crm:jmsLines', backPanelTemplates: 'crm:backPanelTemplates', suppliers: 'crm:suppliers' }; const blankCustomer = () => ({ id: 'c_' + Date.now() + '_' + Math.random().toString(36).slice(2, 7), company: '', contact: '', country: '', region: 'middle_east', email: '', phone: '', isVip: false, hasOrdered: false, preferredContacts: [], website: '', productLines: [], intendedModel: '', intendedQty: '', source: '', tags: '', notes: '', warehouseAddress: '', freightContact: '', shippingMarkNote: '', attachments: [], fileFolders: [], // 虚拟文件夹:{id, name, parentId},parentId为null表示根目录下的文件夹 }); const blankSupplier = () => ({ id: 'sup_' + Date.now() + '_' + Math.random().toString(36).slice(2, 7), name: '', contact: '', phone: '', email: '', wechatOrWhatsapp: '', address: '', website: '', mainProducts: '', notes: '', attachments: [], // 厂家资料:PDF/图片等,{fileName, originalName, note, date} }); const OUTPUT_PORT_TYPES = ['USB', 'DC', 'DC1', 'DC2', 'DC3', 'POE', 'Type-C', 'DC interface', 'POE interface']; const EXPORT_LANGUAGES = [ { code: 'zh', label: '中文', rtl: false }, { code: 'en', label: 'English', rtl: false }, { code: 'fr', label: 'Français', rtl: false }, { code: 'ru', label: 'Русский', rtl: false }, { code: 'es', label: 'Español', rtl: false }, { code: 'ar', label: 'العربية', rtl: true }, ]; // 多语言PDF导出用的内置专业翻译词典:固定字段名 + 已知的品类/机型名称,人工核对过的翻译, // 不依赖AI、不占用DeepSeek额度、永远一致准确。词典里没有的词(比如用户自己新建的品类/品牌名、 // 或者产品备注这种自由文本)才会走AI翻译并缓存(见 resolveExportTranslations)。 /* ---------------------------- 后板图图标库 ---------------------------- */ // 后板图编辑器用到的固定图标集:基础元件(交流输入口/保险丝/输出插座/USB/RJ45/风扇) // + 常见插座类型(可选配插座变体)。每个图标是一段简约线条风格的SVG,viewBox统一 // 0 0 40 40,用currentColor描边,方便跟着容器的文字颜色走、也方便被选中时变色高亮。 const BACK_PANEL_ICON_LIBRARY = [ { type: 'ac_input', label: '交流输入口', group: '基础元件' }, { type: 'fuse_breaker', label: '保险丝/断路器', group: '基础元件' }, { type: 'output_generic', label: '输出插座(通用)', group: '基础元件' }, { type: 'usb', label: 'USB', group: '基础元件' }, { type: 'rj45', label: 'RJ45', group: '基础元件' }, { type: 'fan', label: '风扇', group: '基础元件' }, { type: 'socket_cn', label: '国标插座', group: '可选配插座' }, { type: 'socket_schuko', label: '德标插座(Schuko)', group: '可选配插座' }, { type: 'socket_uk', label: '英标插座(BS1363)', group: '可选配插座' }, { type: 'socket_us', label: '美标插座(NEMA)', group: '可选配插座' }, { type: 'socket_au', label: '澳标插座', group: '可选配插座' }, { type: 'socket_za', label: '南非/印度插座', group: '可选配插座' }, { type: 'socket_it', label: '意标插座', group: '可选配插座' }, { type: 'socket_iec', label: 'IEC C13/C14', group: '可选配插座' }, ]; const BACK_PANEL_ICON_LABELS = BACK_PANEL_ICON_LIBRARY.reduce((m, i) => ({ ...m, [i.type]: i.label }), {}); function BackPanelIconSVG({ type, size = 40 }) { const stroke = { stroke: 'currentColor', strokeWidth: 2, fill: 'none' }; const body = (() => { switch (type) { case 'ac_input': return (<> ); case 'fuse_breaker': return (<> ); case 'output_generic': return (<> ); case 'usb': return (<> ); case 'rj45': return (<> {[0, 1, 2, 3, 4, 5].map(i => ())} ); case 'fan': return (<> {[0, 90, 180, 270].map(a => ( ))} ); case 'socket_cn': return (<> ); case 'socket_schuko': return (<> ); case 'socket_uk': return (<> ); case 'socket_us': return (<> ); case 'socket_au': return (<> ); case 'socket_za': return (<> ); case 'socket_it': return (<> ); case 'socket_iec': return (<> ); default: return ; } })(); return {body}; } const TRANSLATION_DICTIONARY = { // 文档通用 '产品规格书': { en: 'Specifications', fr: 'Spécifications', ru: 'Технические характеристики', es: 'Especificaciones', ar: 'المواصفات' }, '* 产品规格如有变动,恕不另行通知': { en: 'Product specifications are subject to change without notice.', fr: "Les spécifications du produit peuvent être modifiées sans préavis.", ru: 'Технические характеристики могут быть изменены без предварительного уведомления.', es: 'Las especificaciones del producto están sujetas a cambios sin previo aviso.', ar: 'تخضع مواصفات المنتج للتغيير دون إشعار مسبق.', }, // 固定字段名 '型号': { en: 'Model', fr: 'Modèle', ru: 'Модель', es: 'Modelo', ar: 'الطراز' }, '品牌': { en: 'Brand', fr: 'Marque', ru: 'Бренд', es: 'Marca', ar: 'العلامة التجارية' }, '产品大类': { en: 'Category', fr: 'Catégorie', ru: 'Категория', es: 'Categoría', ar: 'الفئة' }, '细分品类': { en: 'Type', fr: 'Type', ru: 'Тип', es: 'Tipo', ar: 'النوع' }, '机型': { en: 'Machine Type', fr: "Type d'appareil", ru: 'Тип модели', es: 'Tipo de equipo', ar: 'طراز الجهاز' }, '标准机型': { en: 'Standard Model', fr: 'Modèle standard', ru: 'Стандартная модель', es: 'Modelo estándar', ar: 'الطراز القياسي' }, '长延时机型': { en: 'Long Backup Time Model', fr: 'Modèle longue autonomie', ru: 'Модель увеличенной автономности', es: 'Modelo de larga autonomía', ar: 'طراز الدعم الطويل' }, '输出功率': { en: 'Output Power', fr: 'Puissance de sortie', ru: 'Выходная мощность', es: 'Potencia de salida', ar: 'طاقة الخرج' }, '功率 / 容量': { en: 'Power / Capacity', fr: 'Puissance / Capacité', ru: 'Мощность / Ёмкость', es: 'Potencia / Capacidad', ar: 'الطاقة / السعة' }, '输入电压': { en: 'Input Voltage', fr: "Tension d'entrée", ru: 'Входное напряжение', es: 'Voltaje de entrada', ar: 'جهد الدخل' }, '容量': { en: 'Capacity', fr: 'Capacité', ru: 'Ёмкость', es: 'Capacidad', ar: 'السعة' }, '输入电压范围': { en: 'Input Voltage Range', fr: "Plage de tension d'entrée", ru: 'Диапазон входного напряжения', es: 'Rango de voltaje de entrada', ar: 'نطاق جهد الدخل' }, '输入频率': { en: 'Input Frequency', fr: "Fréquence d'entrée", ru: 'Входная частота', es: 'Frecuencia de entrada', ar: 'تردد الدخل' }, '输出电压': { en: 'Output Voltage', fr: 'Tension de sortie', ru: 'Выходное напряжение', es: 'Voltaje de salida', ar: 'جهد الخرج' }, '输出电压范围': { en: 'Output Voltage Range', fr: 'Plage de tension de sortie', ru: 'Диапазон выходного напряжения', es: 'Rango de voltaje de salida', ar: 'نطاق جهد الخرج' }, '转换时间': { en: 'Transfer Time', fr: 'Temps de transfert', ru: 'Время переключения', es: 'Tiempo de transferencia', ar: 'وقت التحويل' }, '波形': { en: 'Waveform', fr: "Forme d'onde", ru: 'Форма волны', es: 'Forma de onda', ar: 'شكل الموجة' }, '电池电压': { en: 'Battery Voltage', fr: 'Tension de batterie', ru: 'Напряжение батареи', es: 'Voltaje de batería', ar: 'جهد البطارية' }, '电池型号和数量': { en: 'Battery Model & Qty', fr: 'Modèle et quantité de batterie', ru: 'Модель и кол-во батарей', es: 'Modelo y cantidad de batería', ar: 'طراز وعدد البطاريات' }, '充电电流': { en: 'Charge Current', fr: 'Courant de charge', ru: 'Ток зарядки', es: 'Corriente de carga', ar: 'تيار الشحن' }, '频率范围(电池模式)': { en: 'Frequency Range (Battery Mode)', fr: 'Plage de fréquence (mode batterie)', ru: 'Диапазон частот (режим батареи)', es: 'Rango de frecuencia (modo batería)', ar: 'نطاق التردد (وضع البطارية)' }, '充电时间': { en: 'Charge Time', fr: 'Temps de charge', ru: 'Время зарядки', es: 'Tiempo de carga', ar: 'وقت الشحن' }, 'LCD显示': { en: 'LCD Display', fr: 'Affichage LCD', ru: 'ЖК-дисплей', es: 'Pantalla LCD', ar: 'شاشة LCD' }, 'LED显示': { en: 'LED Display', fr: 'Affichage LED', ru: 'Светодиодный индикатор', es: 'Indicador LED', ar: 'مؤشر LED' }, '全面保护': { en: 'Full Protection', fr: 'Protection complète', ru: 'Полная защита', es: 'Protección completa', ar: 'حماية شاملة' }, '警告提示': { en: 'Alarm', fr: 'Alarme', ru: 'Сигнализация', es: 'Alarma', ar: 'إنذار' }, '控制管理': { en: 'Interface', fr: 'Interface', ru: 'Интерфейс', es: 'Interfaz', ar: 'الواجهة' }, '湿度': { en: 'Humidity', fr: 'Humidité', ru: 'Влажность', es: 'Humedad', ar: 'الرطوبة' }, '噪音': { en: 'Noise Level', fr: 'Niveau sonore', ru: 'Уровень шума', es: 'Nivel de ruido', ar: 'مستوى الضوضاء' }, '应用场景': { en: 'Application', fr: 'Application', ru: 'Применение', es: 'Aplicación', ar: 'التطبيق' }, '20尺柜装箱数量': { en: '20ft Container Qty', fr: 'Qté conteneur 20 pieds', ru: 'Кол-во в 20-фут контейнере', es: 'Cant. contenedor 20 pies', ar: 'الكمية في حاوية 20 قدم' }, '40尺柜装箱数量': { en: '40ft Container Qty', fr: 'Qté conteneur 40 pieds', ru: 'Кол-во в 40-фут контейнере', es: 'Cant. contenedor 40 pies', ar: 'الكمية في حاوية 40 قدم' }, '40高柜装箱数量': { en: '40HQ Container Qty', fr: 'Qté conteneur 40HQ', ru: 'Кол-во в контейнере 40HQ', es: 'Cant. contenedor 40HQ', ar: 'الكمية في حاوية 40HQ' }, '主要特点': { en: 'Main Features', fr: 'Caractéristiques principales', ru: 'Основные характеристики', es: 'Características principales', ar: 'الميزات الرئيسية' }, '相数': { en: 'Phase', fr: 'Phase', ru: 'Фаза', es: 'Fase', ar: 'الطور' }, '输入功率因数': { en: 'Input Power Factor', fr: "Facteur de puissance d'entrée", ru: 'Входной коэффициент мощности', es: 'Factor de potencia de entrada', ar: 'معامل قدرة الدخل' }, '转换时间(市电到电池)': { en: 'Transfer Time (AC to Battery)', fr: 'Temps de transfert (secteur vers batterie)', ru: 'Время переключения (сеть на батарею)', es: 'Tiempo de transferencia (red a batería)', ar: 'وقت التحويل (من الشبكة إلى البطارية)' }, '峰值电流比': { en: 'Current Crest Ratio', fr: 'Facteur de crête de courant', ru: 'Пик-фактор тока', es: 'Relación de cresta de corriente', ar: 'نسبة ذروة التيار' }, '谐波失真': { en: 'Harmonic Distortion', fr: 'Distorsion harmonique', ru: 'Гармонические искажения', es: 'Distorsión armónica', ar: 'التشويه التوافقي' }, '效率(市电模式)': { en: 'Efficiency (AC Mode)', fr: 'Rendement (mode secteur)', ru: 'КПД (сетевой режим)', es: 'Eficiencia (modo red)', ar: 'الكفاءة (وضع الشبكة)' }, '效率(电池模式)': { en: 'Efficiency (Battery Mode)', fr: 'Rendement (mode batterie)', ru: 'КПД (режим батареи)', es: 'Eficiencia (modo batería)', ar: 'الكفاءة (وضع البطارية)' }, '充电电压': { en: 'Charging Voltage', fr: 'Tension de charge', ru: 'Напряжение зарядки', es: 'Voltaje de carga', ar: 'جهد الشحن' }, '可选SNMP': { en: 'Optional SNMP', fr: 'SNMP en option', ru: 'SNMP (опционально)', es: 'SNMP opcional', ar: 'SNMP اختياري' }, '输出功率因数': { en: 'Output Power Factor', fr: 'Facteur de puissance de sortie', ru: 'Выходной коэффициент мощности', es: 'Factor de potencia de salida', ar: 'معامل قدرة الخرج' }, '可并联台数': { en: 'Parallel Units', fr: 'Unités en parallèle', ru: 'Количество параллельных блоков', es: 'Unidades en paralelo', ar: 'عدد الوحدات المتوازية' }, '过载保护': { en: 'Overload Protection', fr: 'Protection contre les surcharges', ru: 'Защита от перегрузки', es: 'Protección contra sobrecarga', ar: 'حماية من الحمل الزائد' }, 'UPS配套锂电池系统': { en: 'UPS-matched Lithium Battery System', fr: 'Système de batterie lithium pour UPS', ru: 'Литиевая батарейная система для ИБП', es: 'Sistema de batería de litio para SAI', ar: 'نظام بطارية ليثيوم متوافق مع UPS' }, '模块类型': { en: 'Module Type', fr: 'Type de module', ru: 'Тип модуля', es: 'Tipo de módulo', ar: 'نوع الوحدة' }, '额定容量': { en: 'Rated Capacity', fr: 'Capacité nominale', ru: 'Номинальная ёмкость', es: 'Capacidad nominal', ar: 'السعة الاسمية' }, '电芯类型': { en: 'Cell Type', fr: 'Type de cellule', ru: 'Тип элемента', es: 'Tipo de celda', ar: 'نوع الخلية' }, '额定电压': { en: 'Rated Voltage', fr: 'Tension nominale', ru: 'Номинальное напряжение', es: 'Voltaje nominal', ar: 'الجهد الاسمي' }, '放电倍率': { en: 'Discharge Rate', fr: 'Taux de décharge', ru: 'Скорость разряда', es: 'Tasa de descarga', ar: 'معدل التفريغ' }, '充电倍率': { en: 'Charge Rate', fr: 'Taux de charge', ru: 'Скорость заряда', es: 'Tasa de carga', ar: 'معدل الشحن' }, '模块最大能量(kWh)': { en: 'Module Max Energy (kWh)', fr: 'Énergie max du module (kWh)', ru: 'Макс. энергия модуля (кВт·ч)', es: 'Energía máxima del módulo (kWh)', ar: 'أقصى طاقة للوحدة (كيلوواط ساعة)' }, '模块输出功率(kW)': { en: 'Module Output Power (kW)', fr: 'Puissance de sortie du module (kW)', ru: 'Выходная мощность модуля (кВт)', es: 'Potencia de salida del módulo (kW)', ar: 'طاقة خرج الوحدة (كيلوواط)' }, '模块尺寸(mm)': { en: 'Module Dimensions (mm)', fr: 'Dimensions du module (mm)', ru: 'Габариты модуля (мм)', es: 'Dimensiones del módulo (mm)', ar: 'أبعاد الوحدة (مم)' }, '模块重量(kg)': { en: 'Module Weight (kg)', fr: 'Poids du module (kg)', ru: 'Вес модуля (кг)', es: 'Peso del módulo (kg)', ar: 'وزن الوحدة (كجم)' }, '电池最大能量(kWh)': { en: 'Battery Max Energy (kWh)', fr: 'Énergie max de la batterie (kWh)', ru: 'Макс. энергия батареи (кВт·ч)', es: 'Energía máxima de la batería (kWh)', ar: 'أقصى طاقة للبطارية (كيلوواط ساعة)' }, '额定输出电压(V)': { en: 'Rated Output Voltage (V)', fr: 'Tension de sortie nominale (V)', ru: 'Номинальное выходное напряжение (В)', es: 'Voltaje de salida nominal (V)', ar: 'جهد الخرج الاسمي (فولت)' }, '循环寿命': { en: 'Cycle Life', fr: 'Durée de vie (cycles)', ru: 'Циклический ресурс', es: 'Vida útil (ciclos)', ar: 'عمر الدورة' }, '通信接口': { en: 'Communication Interface', fr: 'Interface de communication', ru: 'Интерфейс связи', es: 'Interfaz de comunicación', ar: 'واجهة الاتصال' }, '保护功能': { en: 'Protection Functions', fr: 'Fonctions de protection', ru: 'Функции защиты', es: 'Funciones de protección', ar: 'وظائف الحماية' }, '运行温度': { en: 'Operating Temperature', fr: 'Température de fonctionnement', ru: 'Рабочая температура', es: 'Temperatura de funcionamiento', ar: 'درجة حرارة التشغيل' }, '颜色': { en: 'Color', fr: 'Couleur', ru: 'Цвет', es: 'Color', ar: 'اللون' }, '系统柜尺寸(mm)': { en: 'Cabinet Dimensions (mm)', fr: "Dimensions de l'armoire (mm)", ru: 'Габариты шкафа (мм)', es: 'Dimensiones del gabinete (mm)', ar: 'أبعاد الخزانة (مم)' }, '系统柜重量(kg)': { en: 'Cabinet Weight (kg)', fr: "Poids de l'armoire (kg)", ru: 'Вес шкафа (кг)', es: 'Peso del gabinete (kg)', ar: 'وزن الخزانة (كجم)' }, '海拔(m)': { en: 'Altitude (m)', fr: 'Altitude (m)', ru: 'Высота над уровнем моря (м)', es: 'Altitud (m)', ar: 'الارتفاع (م)' }, '自放电率': { en: 'Self-discharge Rate', fr: "Taux d'autodécharge", ru: 'Скорость саморазряда', es: 'Tasa de autodescarga', ar: 'معدل التفريغ الذاتي' }, '电池类型': { en: 'Battery Type', fr: 'Type de batterie', ru: 'Тип батареи', es: 'Tipo de batería', ar: 'نوع البطارية' }, '最大充电电压': { en: 'Max Charging Voltage', fr: 'Tension de charge maximale', ru: 'Макс. напряжение зарядки', es: 'Voltaje máximo de carga', ar: 'أقصى جهد شحن' }, '最大充放电电流': { en: 'Max Charge/Discharge Current', fr: 'Courant max de charge/décharge', ru: 'Макс. ток заряда/разряда', es: 'Corriente máxima de carga/descarga', ar: 'أقصى تيار شحن/تفريغ' }, '最大直流输入功率': { en: 'Max DC Input Power', fr: "Puissance d'entrée CC maximale", ru: 'Макс. мощность входа пост. тока', es: 'Potencia máxima de entrada CC', ar: 'أقصى طاقة دخل التيار المستمر' }, '最大直流输入电压': { en: 'Max DC Input Voltage', fr: "Tension d'entrée CC maximale", ru: 'Макс. входное напряжение пост. тока', es: 'Voltaje máximo de entrada CC', ar: 'أقصى جهد دخل التيار المستمر' }, 'MPPT工作电压范围': { en: 'MPPT Operating Voltage Range', fr: 'Plage de tension MPPT', ru: 'Диапазон рабочего напряжения MPPT', es: 'Rango de voltaje de operación MPPT', ar: 'نطاق جهد تشغيل MPPT' }, '启动电压': { en: 'Starting Voltage', fr: 'Tension de démarrage', ru: 'Напряжение запуска', es: 'Voltaje de arranque', ar: 'جهد البدء' }, '最大输入电流': { en: 'Max Input Current', fr: "Courant d'entrée maximal", ru: 'Макс. входной ток', es: 'Corriente de entrada máxima', ar: 'أقصى تيار دخل' }, 'MPPT路数': { en: 'Number of MPPT Trackers', fr: 'Nombre de trackers MPPT', ru: 'Кол-во трекеров MPPT', es: 'Número de rastreadores MPPT', ar: 'عدد متتبعات MPPT' }, '并网最大输出视在功率': { en: 'Max Output Apparent Power (On-Grid)', fr: 'Puissance apparente max de sortie (Réseau)', ru: 'Макс. полная выходная мощность (сеть)', es: 'Potencia aparente máxima de salida (Red)', ar: 'أقصى قدرة ظاهرية للخرج (متصل بالشبكة)' }, '额定输出频率': { en: 'Rated Output Frequency', fr: 'Fréquence de sortie nominale', ru: 'Номинальная выходная частота', es: 'Frecuencia de salida nominal', ar: 'تردد الخرج الاسمي' }, '并网最大输出电流': { en: 'Max Output Current (On-Grid)', fr: 'Courant de sortie max (Réseau)', ru: 'Макс. выходной ток (сеть)', es: 'Corriente de salida máxima (Red)', ar: 'أقصى تيار خرج (متصل بالشبكة)' }, '离网额定输出视在功率': { en: 'Rated Output Apparent Power (Off-Grid)', fr: 'Puissance apparente nominale de sortie (Hors réseau)', ru: 'Номинальная полная выходная мощность (авт.)', es: 'Potencia aparente nominal de salida (Aislada)', ar: 'القدرة الظاهرية الاسمية للخرج (خارج الشبكة)' }, '离网最大输出视在功率': { en: 'Max Output Apparent Power (Off-Grid)', fr: 'Puissance apparente max de sortie (Hors réseau)', ru: 'Макс. полная выходная мощность (авт.)', es: 'Potencia aparente máxima de salida (Aislada)', ar: 'أقصى قدرة ظاهرية للخرج (خارج الشبكة)' }, '离网最大输出电流': { en: 'Max Output Current (Off-Grid)', fr: 'Courant de sortie max (Hors réseau)', ru: 'Макс. выходной ток (авт.)', es: 'Corriente de salida máxima (Aislada)', ar: 'أقصى تيار خرج (خارج الشبكة)' }, '最大效率(MPPT)': { en: 'Max Efficiency (MPPT)', fr: 'Rendement max (MPPT)', ru: 'Макс. КПД (MPPT)', es: 'Eficiencia máxima (MPPT)', ar: 'أقصى كفاءة (MPPT)' }, '最大效率': { en: 'Max Efficiency', fr: 'Rendement maximal', ru: 'Максимальный КПД', es: 'Eficiencia máxima', ar: 'أقصى كفاءة' }, '欧洲效率': { en: 'European Efficiency', fr: 'Rendement européen', ru: 'Европейский КПД', es: 'Eficiencia europea', ar: 'الكفاءة الأوروبية' }, '存储温度': { en: 'Storage Temperature', fr: 'Température de stockage', ru: 'Температура хранения', es: 'Temperatura de almacenamiento', ar: 'درجة حرارة التخزين' }, '散热方式': { en: 'Cooling', fr: 'Refroidissement', ru: 'Охлаждение', es: 'Refrigeración', ar: 'التبريد' }, '防护等级': { en: 'Protection Class', fr: 'Indice de protection', ru: 'Класс защиты', es: 'Clase de protección', ar: 'درجة الحماية' }, '拓扑结构': { en: 'Topology', fr: 'Topologie', ru: 'Топология', es: 'Topología', ar: 'البنية الطوبولوجية' }, '安规/EMC标准': { en: 'Safety/EMC Standard', fr: 'Norme de sécurité/CEM', ru: 'Стандарт безопасности/ЭМС', es: 'Norma de seguridad/EMC', ar: 'معيار السلامة/التوافق الكهرومغناطيسي' }, '并网标准': { en: 'Grid-connected Standard', fr: 'Norme de raccordement au réseau', ru: 'Стандарт подключения к сети', es: 'Norma de conexión a red', ar: 'معيار الاتصال بالشبكة' }, '其他标准': { en: 'Other Standard', fr: 'Autre norme', ru: 'Другой стандарт', es: 'Otra norma', ar: 'معيار آخر' }, '在线式高频UPS': { en: 'Online High-Frequency UPS', fr: 'Onduleur en ligne haute fréquence', ru: 'Онлайн высокочастотный ИБП', es: 'SAI en línea de alta frecuencia', ar: 'يو بي إس عالي التردد أونلاين' }, '电压': { en: 'Voltage', fr: 'Tension', ru: 'Напряжение', es: 'Voltaje', ar: 'الجهد' }, '视载功率': { en: 'Rated Power (VA)', fr: 'Puissance nominale (VA)', ru: 'Номинальная мощность (ВА)', es: 'Potencia nominal (VA)', ar: 'الطاقة الاسمية (فولت أمبير)' }, '功率因数': { en: 'Power Factor', fr: 'Facteur de puissance', ru: 'Коэффициент мощности', es: 'Factor de potencia', ar: 'معامل القدرة' }, '最大功率': { en: 'Max Power', fr: 'Puissance maximale', ru: 'Максимальная мощность', es: 'Potencia máxima', ar: 'أقصى طاقة' }, '输出口数量': { en: 'Output Ports', fr: 'Nombre de sorties', ru: 'Количество выходов', es: 'Número de salidas', ar: 'عدد منافذ الخرج' }, '输出口类型': { en: 'Output Types', fr: 'Types de sortie', ru: 'Типы выходов', es: 'Tipos de salida', ar: 'أنواع منافذ الخرج' }, '电池数量和容量': { en: 'Battery Qty & Capacity', fr: 'Nombre et capacité de batterie', ru: 'Кол-во и ёмкость батарей', es: 'Cantidad y capacidad de batería', ar: 'عدد وسعة البطارية' }, '尺寸(mm)': { en: 'Dimensions (mm)', fr: 'Dimensions (mm)', ru: 'Габариты (мм)', es: 'Dimensiones (mm)', ar: 'الأبعاد (مم)' }, '净重(kg)': { en: 'Net Weight (kg)', fr: 'Poids net (kg)', ru: 'Вес нетто (кг)', es: 'Peso neto (kg)', ar: 'الوزن الصافي (كجم)' }, '备注': { en: 'Notes', fr: 'Remarques', ru: 'Примечания', es: 'Notas', ar: 'ملاحظات' }, '输出': { en: 'Output', fr: 'Sortie', ru: 'Выход', es: 'Salida', ar: 'الخرج' }, // 已知产品大类 'UPS不间断电源': { en: 'UPS (Uninterruptible Power Supply)', fr: 'Onduleur (UPS)', ru: 'ИБП (Источник бесперебойного питания)', es: 'SAI (Sistema de Alimentación Ininterrumpida)', ar: 'مزود طاقة غير منقطعة (UPS)' }, '光伏逆变器': { en: 'Solar Inverter', fr: 'Onduleur solaire', ru: 'Солнечный инвертор', es: 'Inversor solar', ar: 'عاكس شمسي' }, '储能电池': { en: 'Energy Storage Battery', fr: "Batterie de stockage d'énergie", ru: 'Аккумулятор для хранения энергии', es: 'Batería de almacenamiento de energía', ar: 'بطارية تخزين الطاقة' }, // 已知细分品类 '迷你UPS': { en: 'Mini UPS', fr: 'Mini onduleur', ru: 'Мини-ИБП', es: 'Mini SAI', ar: 'يو بي إس صغير' }, '离线式UPS': { en: 'Offline UPS', fr: 'Onduleur hors ligne', ru: 'Резервный ИБП (Offline)', es: 'SAI fuera de línea', ar: 'يو بي إس غير متصل' }, '在线互动式UPS': { en: 'Line-Interactive UPS', fr: 'Onduleur interactif', ru: 'Линейно-интерактивный ИБП', es: 'SAI interactivo de línea', ar: 'يو بي إس تفاعلي الخط' }, '高频塔式UPS': { en: 'High-Frequency Tower UPS', fr: 'Onduleur tour haute fréquence', ru: 'Высокочастотный башенный ИБП', es: 'SAI torre de alta frecuencia', ar: 'يو بي إس برجي عالي التردد' }, '工频UPS': { en: 'Low-Frequency UPS', fr: 'Onduleur basse fréquence', ru: 'Низкочастотный ИБП', es: 'SAI de baja frecuencia', ar: 'يو بي إس منخفض التردد' }, '模块化UPS': { en: 'Modular UPS', fr: 'Onduleur modulaire', ru: 'Модульный ИБП', es: 'SAI modular', ar: 'يو بي إس معياري' }, '机架式UPS': { en: 'Rack-mount UPS', fr: 'Onduleur rackable', ru: 'Стоечный ИБП', es: 'SAI para rack', ar: 'يو بي إس للتركيب في الرف' }, '太阳能混网逆变器': { en: 'Hybrid Solar Inverter', fr: 'Onduleur solaire hybride', ru: 'Гибридный солнечный инвертор', es: 'Inversor solar híbrido', ar: 'عاكس شمسي هجين' }, '并网/离网逆变器': { en: 'Grid-tied / Off-grid Inverter', fr: 'Onduleur raccordé / hors réseau', ru: 'Сетевой / автономный инвертор', es: 'Inversor conectado a la red / aislado', ar: 'عاكس متصل بالشبكة / خارج الشبكة' }, '铅酸电池': { en: 'Lead-acid Battery', fr: 'Batterie au plomb', ru: 'Свинцово-кислотная батарея', es: 'Batería de plomo-ácido', ar: 'بطارية الرصاص الحمضية' }, '磷酸铁锂电池': { en: 'LiFePO4 Battery', fr: 'Batterie LiFePO4', ru: 'Аккумулятор LiFePO4', es: 'Batería LiFePO4', ar: 'بطارية ليثيوم فوسفات الحديد' }, }; // 解析一批词条在目标语言下的翻译:优先用上面内置的专业词典(永远准确、不占用AI额度), // 词典里没有的再查本地缓存(之前AI翻译过的词,存在 crm:translationGlossary 里), // 缓存也没有的才真的调用DeepSeek翻译,翻完存回缓存,下次同一个词就不用再调了。 // 词条不一定是中文——extraSpecs(AI识别到但没有具名字段的参数)经常是"原样"从原始英文资料 // 里提取的标签/数值,如果目标语言正好是英文、且词条本身没有中文字符,直接原样保留, // 既省一次AI调用,也避免"已经是英文的内容被反向翻译成中文"这种方向搞反的问题。 async function resolveExportTranslations(terms, lang) { if (lang === 'zh' || !terms.length) { const map = {}; terms.forEach(t => { map[t] = t; }); return map; } let glossary = {}; try { const res = await storageGet('crm:translationGlossary'); glossary = JSON.parse(res.value) || {}; } catch (e) {} const map = {}; const misses = []; terms.forEach(t => { // 缓存自愈:目标是英文,但缓存里存的"翻译结果"本身却包含中文——这是老版本那个"方向 // 搞反"的bug留下的错误缓存(比如"Temperature Compensation"被误翻译成"温度补偿"存进去了), // 判定这条缓存无效,当成miss重新走一遍解析,不会一直卡在错误结果上。 const cachedGlossaryHit = glossary[t] && glossary[t][lang]; const cachedIsBad = lang === 'en' && cachedGlossaryHit && containsChinese(cachedGlossaryHit); if (TRANSLATION_DICTIONARY[t] && TRANSLATION_DICTIONARY[t][lang]) { map[t] = TRANSLATION_DICTIONARY[t][lang]; } else if (cachedGlossaryHit && !cachedIsBad) { map[t] = cachedGlossaryHit; } else if (lang === 'en' && !containsChinese(t)) { map[t] = t; // 目标是英文、词条本身不含中文字符——大概率已经是英文原文,直接用,不送AI } else { misses.push(t); } }); if (misses.length) { try { const translations = await translateTerms(misses, lang); const newGlossary = { ...glossary }; misses.forEach(t => { const translated = (translations && translations[t]) || t; map[t] = translated; newGlossary[t] = { ...(newGlossary[t] || {}), [lang]: translated }; }); try { await storageSet('crm:translationGlossary', JSON.stringify(newGlossary)); } catch (e) {} } catch (e) { misses.forEach(t => { map[t] = t; }); // 翻译失败就用原文兜底,不阻塞导出 } } return map; } // 把某个产品需要展示的规格行整理出来(和ProductDetail的powerInfoItems逻辑对齐,但拆分出 // 独立的label/value结构,方便多语言渲染时分别处理"字段名要翻译"和"数值一般不用翻译") // 把AI识别到但没有具名字段的参数(extraSpecs)插入到已经组装好的规格行列表里——如果这一条 // 标注了afterLabel(应该跟在哪个已知字段后面显示),就插到那个字段紧后面;找不到匹配的就 // 兜底追加到列表最后,不会丢数据,只是位置不够准确。labelProp传'labelKey'(productExportRows // 用)或'label'(powerInfoItems用),因为两边字段名不一样。 function insertExtraSpecs(list, extraSpecs, labelProp) { (extraSpecs || []).forEach((item, i) => { if (!item || !item.label || !item.value) return; const entry = labelProp === 'labelKey' ? { labelKey: item.label, value: item.value } : { key: 'extra_' + i + '_' + item.label, label: item.label, value: item.value }; if (item.afterLabel) { const idx = list.findIndex(r => r[labelProp] === item.afterLabel); if (idx !== -1) { list.splice(idx + 1, 0, entry); return; } } list.push(entry); }); return list; } function productExportRows(p, categories) { const cat = (categories || []).find(c => c.id === p.category); const rows = []; if (isInverterCategory(cat) && p.type === '太阳能混网逆变器') { if (p.batteryType) rows.push({ labelKey: '电池类型', value: p.batteryType }); if (p.batteryVoltage) rows.push({ labelKey: '电池电压', value: p.batteryVoltage }); if (p.maxChargingVoltage) rows.push({ labelKey: '最大充电电压', value: p.maxChargingVoltage }); if (p.maxChargeDischargeCurrent) rows.push({ labelKey: '最大充放电电流', value: p.maxChargeDischargeCurrent }); if (p.maxDcInputPower) rows.push({ labelKey: '最大直流输入功率', value: p.maxDcInputPower }); if (p.maxDcInputVoltage) rows.push({ labelKey: '最大直流输入电压', value: p.maxDcInputVoltage }); if (p.mpptVoltageRange) rows.push({ labelKey: 'MPPT工作电压范围', value: p.mpptVoltageRange }); if (p.startingVoltage) rows.push({ labelKey: '启动电压', value: p.startingVoltage }); if (p.maxInputCurrent) rows.push({ labelKey: '最大输入电流', value: p.maxInputCurrent }); if (p.mpptNumber) rows.push({ labelKey: 'MPPT路数', value: p.mpptNumber }); if (p.onGridMaxApparentPower) rows.push({ labelKey: '并网最大输出视在功率', value: p.onGridMaxApparentPower }); if (p.outputVoltage) rows.push({ labelKey: '输出电压', value: p.outputVoltage }); if (p.ratedOutputFrequency) rows.push({ labelKey: '额定输出频率', value: p.ratedOutputFrequency }); if (p.onGridMaxOutputCurrent) rows.push({ labelKey: '并网最大输出电流', value: p.onGridMaxOutputCurrent }); if (p.outputPowerFactor) rows.push({ labelKey: '输出功率因数', value: p.outputPowerFactor }); if (p.offGridRatedApparentPower) rows.push({ labelKey: '离网额定输出视在功率', value: p.offGridRatedApparentPower }); if (p.offGridMaxApparentPower) rows.push({ labelKey: '离网最大输出视在功率', value: p.offGridMaxApparentPower }); if (p.offGridMaxOutputCurrent) rows.push({ labelKey: '离网最大输出电流', value: p.offGridMaxOutputCurrent }); if (p.efficiencyMppt) rows.push({ labelKey: '最大效率(MPPT)', value: p.efficiencyMppt }); if (p.efficiencyMax) rows.push({ labelKey: '最大效率', value: p.efficiencyMax }); if (p.efficiencyEurope) rows.push({ labelKey: '欧洲效率', value: p.efficiencyEurope }); if (p.protectionFunctions) rows.push({ labelKey: '保护功能', value: p.protectionFunctions }); if (p.operatingTemp) rows.push({ labelKey: '运行温度', value: p.operatingTemp }); if (p.storageTemp) rows.push({ labelKey: '存储温度', value: p.storageTemp }); if (p.humidity) rows.push({ labelKey: '湿度', value: p.humidity }); if (p.altitude) rows.push({ labelKey: '海拔(m)', value: p.altitude }); if (p.cooling) rows.push({ labelKey: '散热方式', value: p.cooling }); if (p.noiseLevel) rows.push({ labelKey: '噪音', value: p.noiseLevel }); if (p.netWeight) rows.push({ labelKey: '净重(kg)', value: p.netWeight }); if (p.dimensions) rows.push({ labelKey: '尺寸(mm)', value: p.dimensions }); if (p.protectionClass) rows.push({ labelKey: '防护等级', value: p.protectionClass }); if (p.topology) rows.push({ labelKey: '拓扑结构', value: p.topology }); if (p.safetyStandard) rows.push({ labelKey: '安规/EMC标准', value: p.safetyStandard }); if (p.gridStandard) rows.push({ labelKey: '并网标准', value: p.gridStandard }); if (p.otherStandard) rows.push({ labelKey: '其他标准', value: p.otherStandard }); } else if (isBatteryCategory(cat) && p.type === 'UPS配套锂电池系统') { if (p.moduleType) rows.push({ labelKey: '模块类型', value: p.moduleType }); if (p.moduleCapacity) rows.push({ labelKey: '额定容量', value: p.moduleCapacity }); if (p.cellType) rows.push({ labelKey: '电芯类型', value: p.cellType }); if (p.moduleVoltage) rows.push({ labelKey: '额定电压', value: p.moduleVoltage }); if (p.dischargeRate) rows.push({ labelKey: '放电倍率', value: p.dischargeRate }); if (p.chargeRate) rows.push({ labelKey: '充电倍率', value: p.chargeRate }); if (p.moduleMaxEnergy) rows.push({ labelKey: '模块最大能量(kWh)', value: p.moduleMaxEnergy }); if (p.moduleOutputPower) rows.push({ labelKey: '模块输出功率(kW)', value: p.moduleOutputPower }); if (p.moduleDimensions) rows.push({ labelKey: '模块尺寸(mm)', value: p.moduleDimensions }); if (p.moduleWeight) rows.push({ labelKey: '模块重量(kg)', value: p.moduleWeight }); if (p.cabinetMaxEnergy) rows.push({ labelKey: '电池最大能量(kWh)', value: p.cabinetMaxEnergy }); if (p.cabinetRatedVoltage) rows.push({ labelKey: '额定输出电压(V)', value: p.cabinetRatedVoltage }); if (p.cycleLife) rows.push({ labelKey: '循环寿命', value: p.cycleLife }); if (p.commInterface) rows.push({ labelKey: '通信接口', value: p.commInterface }); if (p.protectionFunctions) rows.push({ labelKey: '保护功能', value: p.protectionFunctions }); if (p.operatingTemp) rows.push({ labelKey: '运行温度', value: p.operatingTemp }); if (p.humidity) rows.push({ labelKey: '湿度', value: p.humidity }); if (p.color) rows.push({ labelKey: '颜色', value: p.color }); if (p.cabinetDimensions) rows.push({ labelKey: '系统柜尺寸(mm)', value: p.cabinetDimensions }); if (p.cabinetWeight) rows.push({ labelKey: '系统柜重量(kg)', value: p.cabinetWeight }); if (p.altitude) rows.push({ labelKey: '海拔(m)', value: p.altitude }); if (p.selfDischargeRate) rows.push({ labelKey: '自放电率', value: p.selfDischargeRate }); } else if (isUpsCategory(cat) && (p.type === '离线式UPS' || p.type === '在线互动式UPS')) { if (p.powerOrCapacity) rows.push({ labelKey: '容量', value: p.powerOrCapacity }); if (p.inputVoltage) rows.push({ labelKey: '输入电压', value: p.inputVoltage }); if (p.inputVoltageRange) rows.push({ labelKey: '输入电压范围', value: p.inputVoltageRange }); if (p.inputFrequency) rows.push({ labelKey: '输入频率', value: p.inputFrequency }); if (p.outputVoltage) rows.push({ labelKey: '输出电压', value: p.outputVoltage }); if (p.outputVoltageRange) rows.push({ labelKey: '输出电压范围', value: p.outputVoltageRange }); if (p.transferTime) rows.push({ labelKey: '转换时间', value: p.transferTime }); if (p.waveform) rows.push({ labelKey: '波形', value: p.waveform }); if (p.batteryVoltage) rows.push({ labelKey: '电池电压', value: p.batteryVoltage }); if (p.batterySpec) rows.push({ labelKey: '电池型号和数量', value: p.batterySpec }); if (p.chargeCurrent) rows.push({ labelKey: '充电电流', value: p.chargeCurrent }); if (p.frequencyRangeBatteryMode) rows.push({ labelKey: '频率范围(电池模式)', value: p.frequencyRangeBatteryMode }); if (p.chargeTime) rows.push({ labelKey: '充电时间', value: p.chargeTime }); if (p.lcdDisplay) rows.push({ labelKey: 'LCD显示', value: p.lcdDisplay }); if (p.ledDisplay) rows.push({ labelKey: 'LED显示', value: p.ledDisplay }); if (p.fullProtection) rows.push({ labelKey: '全面保护', value: p.fullProtection }); if (p.alarmInfo) rows.push({ labelKey: '警告提示', value: p.alarmInfo }); if (p.interfacePort) rows.push({ labelKey: '控制管理', value: p.interfacePort }); if (p.humidity) rows.push({ labelKey: '湿度', value: p.humidity }); if (p.noiseLevel) rows.push({ labelKey: '噪音', value: p.noiseLevel }); if (p.dimensions) rows.push({ labelKey: '尺寸(mm)', value: p.dimensions }); if (p.netWeight) rows.push({ labelKey: '净重(kg)', value: p.netWeight }); } else if (isUpsCategory(cat) && ['机架式UPS', '在线式高频UPS', '工频UPS', '高频塔式UPS', '模块化UPS'].includes(p.type)) { if (p.phase) rows.push({ labelKey: '相数', value: p.phase }); if (p.powerOrCapacity) rows.push({ labelKey: '容量', value: p.powerOrCapacity }); if (p.inputVoltage) rows.push({ labelKey: '输入电压', value: p.inputVoltage }); if (p.inputVoltageRange) rows.push({ labelKey: '输入电压范围', value: p.inputVoltageRange }); if (p.inputFrequency) rows.push({ labelKey: '输入频率', value: p.inputFrequency }); if (p.inputPowerFactor) rows.push({ labelKey: '输入功率因数', value: p.inputPowerFactor }); if (p.parallelUnits) rows.push({ labelKey: '可并联台数', value: p.parallelUnits }); if (p.outputVoltage) rows.push({ labelKey: '输出电压', value: p.outputVoltage }); if (p.outputPowerFactor) rows.push({ labelKey: '输出功率因数', value: p.outputPowerFactor }); if (p.outputVoltageRange) rows.push({ labelKey: '输出电压范围', value: p.outputVoltageRange }); if (p.frequencyRangeBatteryMode) rows.push({ labelKey: '频率范围(电池模式)', value: p.frequencyRangeBatteryMode }); if (p.currentCrestRatio) rows.push({ labelKey: '峰值电流比', value: p.currentCrestRatio }); if (p.harmonicDistortion) rows.push({ labelKey: '谐波失真', value: p.harmonicDistortion }); if (p.transferTimeAcToBattery) rows.push({ labelKey: '转换时间(市电到电池)', value: p.transferTimeAcToBattery }); if (p.transferTime) rows.push({ labelKey: '转换时间', value: p.transferTime }); if (p.waveform) rows.push({ labelKey: '波形', value: p.waveform }); if (p.overload) rows.push({ labelKey: '过载保护', value: p.overload }); if (p.efficiencyAcMode) rows.push({ labelKey: '效率(市电模式)', value: p.efficiencyAcMode }); if (p.efficiencyBatteryMode) rows.push({ labelKey: '效率(电池模式)', value: p.efficiencyBatteryMode }); if (p.batterySpec) rows.push({ labelKey: '电池型号和数量', value: p.batterySpec }); if (p.chargeCurrent) rows.push({ labelKey: '充电电流', value: p.chargeCurrent }); if (p.chargeTime) rows.push({ labelKey: '充电时间', value: p.chargeTime }); if (p.chargingVoltage) rows.push({ labelKey: '充电电压', value: p.chargingVoltage }); if (p.lcdDisplay) rows.push({ labelKey: 'LCD显示', value: p.lcdDisplay }); if (p.alarmInfo) rows.push({ labelKey: '警告提示', value: p.alarmInfo }); if (p.dimensions) rows.push({ labelKey: '尺寸(mm)', value: p.dimensions }); if (p.netWeight) rows.push({ labelKey: '净重(kg)', value: p.netWeight }); if (p.operatingTemp) rows.push({ labelKey: '运行温度', value: p.operatingTemp }); if (p.storageTemp) rows.push({ labelKey: '存储温度', value: p.storageTemp }); if (p.humidity) rows.push({ labelKey: '湿度', value: p.humidity }); if (p.noiseLevel) rows.push({ labelKey: '噪音', value: p.noiseLevel }); if (p.protectionClass) rows.push({ labelKey: '防护等级', value: p.protectionClass }); if (p.interfacePort) rows.push({ labelKey: '控制管理', value: p.interfacePort }); if (p.optionalSnmp) rows.push({ labelKey: '可选SNMP', value: p.optionalSnmp }); } else if (isUpsCategory(cat) && p.type !== '迷你UPS') { const maxKW = computeMaxPowerKW(p.ratedPower, p.ratedPowerUnit, p.powerFactor); if (p.ratedPower) rows.push({ labelKey: '视载功率', value: `${p.ratedPower} ${p.ratedPowerUnit || 'VA'}` }); if (p.powerFactor) rows.push({ labelKey: '功率因数', value: p.powerFactor }); if (maxKW !== null) rows.push({ labelKey: '最大功率', value: `${maxKW} kW` }); if (p.voltage) rows.push({ labelKey: '电压', value: p.voltage }); } else if (isUpsCategory(cat) && p.type === '迷你UPS') { if (p.powerOrCapacity) rows.push({ labelKey: '输出功率', value: p.powerOrCapacity }); if (p.voltage) rows.push({ labelKey: '输入电压', value: p.voltage }); if (p.outputPortCount) rows.push({ labelKey: '输出口数量', value: p.outputPortCount }); if (p.outputPortTypes && p.outputPortTypes.length) rows.push({ labelKey: '输出口类型', value: p.outputPortTypes.join(' / ') }); (p.outputPorts || []).forEach(port => { if (port.voltage || port.current) rows.push({ labelKey: '__port__', portType: port.type, value: [port.voltage, port.current].filter(Boolean).join(' / ') }); }); if (p.batterySpec) rows.push({ labelKey: '电池数量和容量', value: p.batterySpec }); if (p.dimensions) rows.push({ labelKey: '尺寸(mm)', value: p.dimensions }); if (p.netWeight) rows.push({ labelKey: '净重(kg)', value: p.netWeight }); } else { if (p.powerOrCapacity) rows.push({ labelKey: '功率 / 容量', value: p.powerOrCapacity }); if (p.voltage) rows.push({ labelKey: '电压', value: p.voltage }); } insertExtraSpecs(rows, p.extraSpecs, 'labelKey'); if (p.applicationScenarios) rows.push({ labelKey: '应用场景', value: p.applicationScenarios }); if (p.container20ft) rows.push({ labelKey: '20尺柜装箱数量', value: p.container20ft }); if (p.container40ft) rows.push({ labelKey: '40尺柜装箱数量', value: p.container40ft }); if (p.container40hq) rows.push({ labelKey: '40高柜装箱数量', value: p.container40hq }); return rows; } // 收集导出这份产品规格书需要翻译的全部词条(字段名 + 品类/机型这些中文数值 + 备注自由文本) // 按型号名称去重合并:"同一个型号只能存在1个"——如果传入的产品和列表里某个已有产品 // 型号名称相同(但不是同一条记录本身),说明是重复建了同型号,这时用新参数覆盖旧记录 // (复用旧记录的id),但保留旧记录里手动维护的图片/对客卖点/正本价格/内部备注,不会被 // 这次导入/新建的技术参数覆盖清空(因为AI批量导入/新建产品表单都不会填这几项)。 // 如果传入的产品本身就是列表里已有的那一条(正常编辑保存),走普通按id更新。 function upsertProductByName(list, product) { const dupIdx = list.findIndex(p => p.id !== product.id && p.name.trim() === product.name.trim()); const selfIdx = list.findIndex(p => p.id === product.id); if (dupIdx !== -1) { const existing = list[dupIdx]; const merged = { ...product, id: existing.id, productImageFileName: existing.productImageFileName, productImageOriginalName: existing.productImageOriginalName, brochureFileName: existing.brochureFileName, brochureOriginalName: existing.brochureOriginalName, sellingPoints: existing.sellingPoints, costPrice: existing.costPrice, notes: existing.notes, }; let copy = list.map((p, i) => (i === dupIdx ? merged : p)); if (selfIdx !== -1 && selfIdx !== dupIdx) copy = copy.filter((_, i) => i !== selfIdx); return { list: copy, collision: true, isNew: false, resultId: existing.id }; } if (selfIdx !== -1) { const copy = [...list]; copy[selfIdx] = product; return { list: copy, collision: false, isNew: false, resultId: product.id }; } return { list: [...list, product], collision: false, isNew: true, resultId: product.id }; } // 判断一段文字里有没有中文字符——用来决定"这个数值要不要走翻译":纯数字/英文的技术写法 // (比如 220V、50Hz、12V9AH*1)不用碰,只有真的混了中文说明文字(比如"三相五线"、"非凝露" // 这种AI从原文里保留下来的注释)才需要送去翻译,避免不分青红皂白地把所有数值都送去翻译、 // 反而影响本来就没问题的技术数值的准确性。 function containsChinese(str) { return /[\u4e00-\u9fa5]/.test(String(str || '')); } // 机型改名:老数据存的是"标机"/"长机",新数据统一存"标准机型"/"长延时机型"——这里做一层 // 兼容转换,不管产品是什么时候建的,显示的时候都会自动变成新名字,不需要跑数据迁移。 function normalizeMachineVariant(v) { if (v === '标机') return '标准机型'; if (v === '长机') return '长延时机型'; return v; } // 机型旁边固定带的英文注释,说明有没有内置电池——这个注释始终保持英文,不随导出语言翻译 // (类似行业里通用的技术标注惯例) const MACHINE_VARIANT_NOTES = { '标准机型': '(*with built-in battery)', '长延时机型': '(*external battery pack required)', }; function gatherExportTerms(p, categories) { const cat = (categories || []).find(c => c.id === p.category); const terms = new Set(['产品规格书', '* 产品规格如有变动,恕不另行通知', '型号', '品牌', '产品大类']); if (cat) terms.add(cat.name); if (p.type) { terms.add('细分品类'); terms.add(p.type); } if (isUpsCategory(cat) && p.machineVariant) { terms.add('机型'); terms.add(normalizeMachineVariant(p.machineVariant)); } const rows = productExportRows(p, categories); let hasPortRow = false; rows.forEach(r => { if (r.labelKey === '__port__') hasPortRow = true; else terms.add(r.labelKey); // 数值本身如果混了中文说明文字,也要一起收集去翻译(比如"380/400/415VAC(三相五线)" // 里的"三相五线"),纯数字/英文的值不会被这个判断收进来 if (containsChinese(r.value)) terms.add(r.value); }); if (hasPortRow) terms.add('输出'); // 对客卖点/主要特点:每行一条,都是要给客户看的文字,需要翻译 const sellingPointLines = (p.sellingPoints || '').split('\n').map(l => l.trim()).filter(Boolean); if (sellingPointLines.length > 0) terms.add('主要特点'); sellingPointLines.forEach(line => terms.add(line)); // 注意:备注(notes)字段故意不收集、不导出——这里经常被用来记内部信息(成本价、 // 采购渠道、库存数量这类),一旦跟着PDF发给客户后果很麻烦,所以规格书导出永远不碰这个字段。 return Array.from(terms); } const DEFAULT_MINI_UPS_OUTPUT_TYPES = ['USB', 'DC1', 'DC2', 'DC3', 'POE']; const blankProduct = () => ({ id: 'p_' + Date.now() + '_' + Math.random().toString(36).slice(2, 7), name: '', extraNames: [], brand: '', category: '', type: '', machineVariant: '', // 标机 / 长机,仅UPS大类适用,独立于细分品类(迷你UPS固定为标机) powerOrCapacity: '', // 非UPS大类的功率/容量;迷你UPS的输出功率;离线式/在线互动式UPS的容量(如400VA/240W) ratedPower: '', ratedPowerUnit: 'VA', powerFactor: '', // UPS大类下机架式/高频塔式/工频/模块化UPS的三段式功率 voltage: '', // 非迷你UPS的通用大类:电压;迷你UPS:输入电压(默认 100~240Vac/50-60Hz,可修改) outputPortCount: '', // 迷你UPS专属:输出口数量 1-6 outputPortTypes: [], // 迷你UPS专属:输出口类型(多选) outputPorts: [], // 迷你UPS专属:每个已选输出口类型对应的输出电压/电流,如 [{type:'USB', voltage:'5Vdc', current:'3.0A'}] // 离线式UPS / 在线互动式UPS 专属:输入输出参数(这两个细分品类共用同一套字段) inputVoltage: '', // 输入电压,如 "110V/120Vac or 220V/230Vac" inputVoltageRange: '', // 输入电压范围,如 "81-134Vac/89-145Vac or 162-268Vac/170-280Vac" inputFrequency: '', // 输入频率,如 "50/60Hz(自动识别)" outputVoltage: '', // 输出电压,如 "110V/120Vac or 220V/230Vac" outputVoltageRange: '', // 输出电压范围,如 "±10%" transferTime: '', // 转换时间,如 "Typical 2-8ms, 13ms max" waveform: '', // 波形(电池模式),如 "Simulated Sine Wave" / "Sine Wave" batteryVoltage: '', // 电池电压,如 "12V" / "24V" chargeCurrent: '', // 充电电流,如 "1A" frequencyRangeBatteryMode: '', // 频率范围(电池模式),如 "50/60Hz±1Hz" chargeTime: '', // 充电时间,如 "8小时恢复到90%容量" lcdDisplay: '', // LCD显示内容,如 "AC mode, Battery mode, Load level, Battery level, Input voltage, Output voltage, Overload and low battery" ledDisplay: '', // LED显示说明,如 "AC mode: Green / Battery mode: Yellow / Fault: Red" fullProtection: '', // 全面保护,如 "Discharge, Short circuit and overload protection" alarmInfo: '', // 警告提示(电池模式/低电量/过载/故障这几种蜂鸣提示,合并成一个多行字段) interfacePort: '', // 控制管理/接口,如 "USB/RS232 port(optional), support windows xp/vista, 7/8/11 and MAC" humidity: '', // 湿度,如 "0-90% RH@0-40℃(Non-condensing)" noiseLevel: '', // 噪音,如 "Less than 40dB(1m spacing)" // 机架式UPS(真双变换在线式)专属字段 phase: '', // 相数,如 "1-phase input/1-phase output" inputPowerFactor: '', // 输入功率因数,如 "≥0.99@100% load" transferTimeAcToBattery: '', // 转换时间(市电到电池),如 "0ms" currentCrestRatio: '', // 峰值电流比,如 "3:1" harmonicDistortion: '', // 谐波失真,如 "≤3% THD (Linear Load), ≤5% THD (Non-linear Load)" efficiencyAcMode: '', // 效率(市电模式),如 "88%" efficiencyBatteryMode: '', // 效率(电池模式),如 "83%" chargingVoltage: '', // 充电电压,如 "27.4VDC±1%" optionalSnmp: '', // 可选SNMP,如 "Power management from SNMP manager and web browser" // 在线式高频UPS专属字段(在机架式UPS那套字段基础上再加这3个) outputPowerFactor: '', // 输出功率因数,如 "0.9" 或 "1" parallelUnits: '', // 可并联台数,如 "Not supported" 或具体数字 overload: '', // 过载保护,如 "105%-125% 6-25s; >150% 200ms" // UPS配套锂电池系统专属字段(储能电池大类)——模块级参数 moduleType: '', // 模块类型,如 "长延时型" moduleCapacity: '', // 模块额定容量(Ah),如 "100" cellType: '', // 电芯类型,如 "磷酸铁锂电池(LFP)" moduleVoltage: '', // 模块额定电压(V),如 "51.2" dischargeRate: '', // 放电倍率(C),如 "2" chargeRate: '', // 充电倍率(C),如 "1" moduleMaxEnergy: '', // 模块最大能量(kWh),如 "5.12" moduleOutputPower: '', // 模块输出功率(kW),如 "10.24" moduleDimensions: '', // 模块尺寸(mm),如 "440*440*131" moduleWeight: '', // 模块重量(kg),如 "43±2" // UPS配套锂电池系统专属字段——电池系统柜级参数 cabinetMaxEnergy: '', // 电池最大能量(kWh),如 "40.96" cabinetRatedVoltage: '', // 额定输出电压(V),如 "409.6/±204.8/460.8/512/±256/563.2/614.4/±307.2" cycleLife: '', // 循环寿命,如 "5000次@50%DOD" commInterface: '', // 通信接口,如 "LAN/CAN/RS485/干接点" protectionFunctions: '', // 保护功能,如 "过充、过放、过温、过流、短路等" operatingTemp: '', // 运行温度,如 "0~40℃(推荐20~25℃运行)" color: '', // 颜色,如 "RAL9004" cabinetDimensions: '', // 系统柜尺寸(mm),如 "600×850×2000" cabinetWeight: '', // 系统柜重量(kg),如 "544±10(8模组配置)" altitude: '', // 海拔(m),如 "≤4000(>2000降额使用)" selfDischargeRate: '', // 自放电率,如 "<5%(环境温度0~30℃/30天)" // 太阳能混网逆变器专属字段(光伏逆变器大类)——电池输入、PV输入、AC输出(并网/离网)、效率、标准 batteryType: '', // 电池类型,如 "Lithium or lead acid battery" maxChargingVoltage: '', // 最大充电电压,如 "≤60 (Configurable)" maxChargeDischargeCurrent: '', // 最大充放电电流,如 "190A" maxDcInputPower: '', // 最大直流输入功率,如 "16000W" maxDcInputVoltage: '', // 最大直流输入电压,如 "1000V" mpptVoltageRange: '', // MPPT工作电压范围,如 "200~800V" startingVoltage: '', // 启动电压,如 "150V" maxInputCurrent: '', // 最大输入电流,如 "18/18A" mpptNumber: '', // MPPT路数,如 "2" onGridMaxApparentPower: '', // 并网最大输出视在功率,如 "8800W" ratedOutputFrequency: '', // 额定输出频率,如 "50/60Hz" onGridMaxOutputCurrent: '', // 并网最大输出电流,如 "13.3A" offGridRatedApparentPower: '', // 离网额定输出视在功率,如 "8000W" offGridMaxApparentPower: '', // 离网最大输出视在功率,如 ">200%,15sec" offGridMaxOutputCurrent: '', // 离网最大输出电流,如 "13.3A" efficiencyMppt: '', // 最大效率(MPPT),如 "98%" efficiencyMax: '', // 最大效率,如 "94.5%" efficiencyEurope: '', // 欧洲效率,如 "97.5%" storageTemp: '', // 存储温度,如 "-30~65°C" cooling: '', // 散热方式,如 "Intelligent forced air cooling" protectionClass: '', // 防护等级,如 "IP66" topology: '', // 拓扑结构,如 "HF isolation(Battery side)" safetyStandard: '', // 安规/EMC标准 gridStandard: '', // 并网标准 otherStandard: '', // 其他标准 batterySpec: '', // 电池型号和数量,如 "12V4.5AH*1"(迷你UPS/离线式/在线互动式UPS共用) dimensions: '', // 尺寸(mm)(迷你UPS/离线式/在线互动式UPS共用) netWeight: '', // 净重(kg)(迷你UPS/离线式/在线互动式UPS共用) applicationScenarios: '', // 应用场景文本,如 "电脑、投影仪、打印机、摄像机、收银机" container20ft: '', container40ft: '', container40hq: '', // 装箱数量(20尺柜/40尺柜/40高柜,无栈板台数) extraSpecs: [], // 动态兜底参数:AI识别到但不在上面任何具名字段里的参数,原样保留 {label, value},如 [{label:'浮充电压', value:'13.7VDC/节'}] backPanelTemplateId: '', // 引用的后板图模板id(可跨产品共用同一个模板),迷你UPS不适用 productImageFileName: '', productImageOriginalName: '', // 产品主图,导出多语言PDF时展示 brochureFileName: '', brochureOriginalName: '', // 原版彩页(厂家原始彩页PDF/图片),只做保存和下载,不参与PDF导出排版 sellingPoints: '', // 对客卖点/主要特点,每行一条,专门给客户看的(和下面的costPrice/notes内部信息彻底分开,不会一起导出) costPrice: '', notes: '', }); function isUpsCategory(cat) { return !!cat && (cat.id === 'ups' || cat.name === 'UPS不间断电源'); } function isBatteryCategory(cat) { return !!cat && (cat.id === 'battery' || cat.name === '储能电池'); } function isInverterCategory(cat) { return !!cat && (cat.id === 'inverter' || cat.name === '光伏逆变器'); } function spaceToAsterisk(v) { return (v || '').replace(/ /g, '*'); } function computeMaxPowerKW(ratedPower, ratedPowerUnit, powerFactor) { const rp = parseFloat(ratedPower); const pf = parseFloat(powerFactor); if (!rp || !pf) return null; const ratedKVA = ratedPowerUnit === 'kVA' ? rp : rp / 1000; const kw = ratedKVA * pf; return Math.round(kw * 1000) / 1000; } function powerInfoItems(p, categories) { const cat = (categories || []).find(c => c.id === p.category); if (isInverterCategory(cat) && p.type === '太阳能混网逆变器') { const items = []; if (p.batteryType) items.push({ key: 'batterytype', label: '电池类型', value: p.batteryType }); if (p.batteryVoltage) items.push({ key: 'batteryvoltage', label: '电池电压', value: p.batteryVoltage }); if (p.maxChargingVoltage) items.push({ key: 'maxchargingvoltage', label: '最大充电电压', value: p.maxChargingVoltage }); if (p.maxChargeDischargeCurrent) items.push({ key: 'maxchargedischarge', label: '最大充放电电流', value: p.maxChargeDischargeCurrent }); if (p.maxDcInputPower) items.push({ key: 'maxdcpower', label: '最大直流输入功率', value: p.maxDcInputPower }); if (p.maxDcInputVoltage) items.push({ key: 'maxdcvoltage', label: '最大直流输入电压', value: p.maxDcInputVoltage }); if (p.mpptVoltageRange) items.push({ key: 'mpptrange', label: 'MPPT工作电压范围', value: p.mpptVoltageRange }); if (p.startingVoltage) items.push({ key: 'startvoltage', label: '启动电压', value: p.startingVoltage }); if (p.maxInputCurrent) items.push({ key: 'maxinputcurrent', label: '最大输入电流', value: p.maxInputCurrent }); if (p.mpptNumber) items.push({ key: 'mpptnum', label: 'MPPT路数', value: p.mpptNumber }); if (p.onGridMaxApparentPower) items.push({ key: 'ongridpower', label: '并网最大输出视在功率', value: p.onGridMaxApparentPower }); if (p.outputVoltage) items.push({ key: 'outputvoltage', label: '输出电压', value: p.outputVoltage }); if (p.ratedOutputFrequency) items.push({ key: 'outputfreq', label: '额定输出频率', value: p.ratedOutputFrequency }); if (p.onGridMaxOutputCurrent) items.push({ key: 'ongridcurrent', label: '并网最大输出电流', value: p.onGridMaxOutputCurrent }); if (p.outputPowerFactor) items.push({ key: 'outputpf', label: '输出功率因数', value: p.outputPowerFactor }); if (p.offGridRatedApparentPower) items.push({ key: 'offgridrated', label: '离网额定输出视在功率', value: p.offGridRatedApparentPower }); if (p.offGridMaxApparentPower) items.push({ key: 'offgridmax', label: '离网最大输出视在功率', value: p.offGridMaxApparentPower }); if (p.offGridMaxOutputCurrent) items.push({ key: 'offgridcurrent', label: '离网最大输出电流', value: p.offGridMaxOutputCurrent }); if (p.efficiencyMppt) items.push({ key: 'effmppt', label: '最大效率(MPPT)', value: p.efficiencyMppt }); if (p.efficiencyMax) items.push({ key: 'effmax', label: '最大效率', value: p.efficiencyMax }); if (p.efficiencyEurope) items.push({ key: 'effeurope', label: '欧洲效率', value: p.efficiencyEurope }); if (p.protectionFunctions) items.push({ key: 'protectionfunc', label: '保护功能', value: p.protectionFunctions }); if (p.operatingTemp) items.push({ key: 'operatingtemp', label: '运行温度', value: p.operatingTemp }); if (p.storageTemp) items.push({ key: 'storagetemp', label: '存储温度', value: p.storageTemp }); if (p.humidity) items.push({ key: 'humidity', label: '湿度', value: p.humidity }); if (p.altitude) items.push({ key: 'altitude', label: '海拔(m)', value: p.altitude }); if (p.cooling) items.push({ key: 'cooling', label: '散热方式', value: p.cooling }); if (p.noiseLevel) items.push({ key: 'noiselevel', label: '噪音', value: p.noiseLevel }); if (p.netWeight) items.push({ key: 'weight', label: '净重(kg)', value: p.netWeight }); if (p.dimensions) items.push({ key: 'dim', label: '尺寸(mm)', value: p.dimensions }); if (p.protectionClass) items.push({ key: 'protectionclass', label: '防护等级', value: p.protectionClass }); if (p.topology) items.push({ key: 'topology', label: '拓扑结构', value: p.topology }); if (p.safetyStandard) items.push({ key: 'safetystd', label: '安规/EMC标准', value: p.safetyStandard }); if (p.gridStandard) items.push({ key: 'gridstd', label: '并网标准', value: p.gridStandard }); if (p.otherStandard) items.push({ key: 'otherstd', label: '其他标准', value: p.otherStandard }); insertExtraSpecs(items, p.extraSpecs, 'label'); return items; } if (isBatteryCategory(cat) && p.type === 'UPS配套锂电池系统') { const items = []; if (p.moduleType) items.push({ key: 'moduletype', label: '模块类型', value: p.moduleType }); if (p.moduleCapacity) items.push({ key: 'modulecap', label: '额定容量', value: p.moduleCapacity }); if (p.cellType) items.push({ key: 'celltype', label: '电芯类型', value: p.cellType }); if (p.moduleVoltage) items.push({ key: 'modulevoltage', label: '额定电压', value: p.moduleVoltage }); if (p.dischargeRate) items.push({ key: 'dischargerate', label: '放电倍率', value: p.dischargeRate }); if (p.chargeRate) items.push({ key: 'chargerate', label: '充电倍率', value: p.chargeRate }); if (p.moduleMaxEnergy) items.push({ key: 'modulemaxenergy', label: '模块最大能量(kWh)', value: p.moduleMaxEnergy }); if (p.moduleOutputPower) items.push({ key: 'moduleoutputpower', label: '模块输出功率(kW)', value: p.moduleOutputPower }); if (p.moduleDimensions) items.push({ key: 'moduledim', label: '模块尺寸(mm)', value: p.moduleDimensions }); if (p.moduleWeight) items.push({ key: 'moduleweight', label: '模块重量(kg)', value: p.moduleWeight }); if (p.cabinetMaxEnergy) items.push({ key: 'cabinetmaxenergy', label: '电池最大能量(kWh)', value: p.cabinetMaxEnergy }); if (p.cabinetRatedVoltage) items.push({ key: 'cabinetvoltage', label: '额定输出电压(V)', value: p.cabinetRatedVoltage }); if (p.cycleLife) items.push({ key: 'cyclelife', label: '循环寿命', value: p.cycleLife }); if (p.commInterface) items.push({ key: 'comminterface', label: '通信接口', value: p.commInterface }); if (p.protectionFunctions) items.push({ key: 'protectionfunc', label: '保护功能', value: p.protectionFunctions }); if (p.operatingTemp) items.push({ key: 'operatingtemp', label: '运行温度', value: p.operatingTemp }); if (p.humidity) items.push({ key: 'humidity', label: '湿度', value: p.humidity }); if (p.color) items.push({ key: 'color', label: '颜色', value: p.color }); if (p.cabinetDimensions) items.push({ key: 'cabinetdim', label: '系统柜尺寸(mm)', value: p.cabinetDimensions }); if (p.cabinetWeight) items.push({ key: 'cabinetweight', label: '系统柜重量(kg)', value: p.cabinetWeight }); if (p.altitude) items.push({ key: 'altitude', label: '海拔(m)', value: p.altitude }); if (p.selfDischargeRate) items.push({ key: 'selfdischarge', label: '自放电率', value: p.selfDischargeRate }); insertExtraSpecs(items, p.extraSpecs, 'label'); return items; } if (isUpsCategory(cat) && (p.type === '离线式UPS' || p.type === '在线互动式UPS')) { const items = []; if (p.powerOrCapacity) items.push({ key: 'capacity', label: '容量', value: p.powerOrCapacity }); if (p.inputVoltage) items.push({ key: 'inputvoltage', label: '输入电压', value: p.inputVoltage }); if (p.inputVoltageRange) items.push({ key: 'inputvoltagerange', label: '输入电压范围', value: p.inputVoltageRange }); if (p.inputFrequency) items.push({ key: 'inputfreq', label: '输入频率', value: p.inputFrequency }); if (p.outputVoltage) items.push({ key: 'outputvoltage', label: '输出电压', value: p.outputVoltage }); if (p.outputVoltageRange) items.push({ key: 'outputvoltagerange', label: '输出电压范围', value: p.outputVoltageRange }); if (p.transferTime) items.push({ key: 'transfertime', label: '转换时间', value: p.transferTime }); if (p.waveform) items.push({ key: 'waveform', label: '波形', value: p.waveform }); if (p.batteryVoltage) items.push({ key: 'batteryvoltage', label: '电池电压', value: p.batteryVoltage }); if (p.batterySpec) items.push({ key: 'batteryspec', label: '电池型号和数量', value: p.batterySpec }); if (p.chargeCurrent) items.push({ key: 'chargecurrent', label: '充电电流', value: p.chargeCurrent }); if (p.frequencyRangeBatteryMode) items.push({ key: 'freqrange', label: '频率范围(电池模式)', value: p.frequencyRangeBatteryMode }); if (p.chargeTime) items.push({ key: 'chargetime', label: '充电时间', value: p.chargeTime }); if (p.lcdDisplay) items.push({ key: 'lcddisplay', label: 'LCD显示', value: p.lcdDisplay }); if (p.ledDisplay) items.push({ key: 'leddisplay', label: 'LED显示', value: p.ledDisplay }); if (p.fullProtection) items.push({ key: 'fullprotection', label: '全面保护', value: p.fullProtection }); if (p.alarmInfo) items.push({ key: 'alarminfo', label: '警告提示', value: p.alarmInfo }); if (p.interfacePort) items.push({ key: 'interfaceport', label: '控制管理', value: p.interfacePort }); if (p.humidity) items.push({ key: 'humidity', label: '湿度', value: p.humidity }); if (p.noiseLevel) items.push({ key: 'noiselevel', label: '噪音', value: p.noiseLevel }); if (p.dimensions) items.push({ key: 'dim', label: '尺寸(mm)', value: p.dimensions }); if (p.netWeight) items.push({ key: 'weight', label: '净重(kg)', value: p.netWeight }); insertExtraSpecs(items, p.extraSpecs, 'label'); if (p.applicationScenarios) items.push({ key: 'appscenario', label: '应用场景', value: p.applicationScenarios }); if (p.container20ft) items.push({ key: 'container20', label: '20尺柜装箱数量', value: p.container20ft }); if (p.container40ft) items.push({ key: 'container40', label: '40尺柜装箱数量', value: p.container40ft }); if (p.container40hq) items.push({ key: 'container40hq', label: '40高柜装箱数量', value: p.container40hq }); return items; } if (isUpsCategory(cat) && ['机架式UPS', '在线式高频UPS', '工频UPS', '高频塔式UPS', '模块化UPS'].includes(p.type)) { const items = []; if (p.phase) items.push({ key: 'phase', label: '相数', value: p.phase }); if (p.powerOrCapacity) items.push({ key: 'capacity', label: '容量', value: p.powerOrCapacity }); if (p.inputVoltage) items.push({ key: 'inputvoltage', label: '输入电压', value: p.inputVoltage }); if (p.inputVoltageRange) items.push({ key: 'inputvoltagerange', label: '输入电压范围', value: p.inputVoltageRange }); if (p.inputFrequency) items.push({ key: 'inputfreq', label: '输入频率', value: p.inputFrequency }); if (p.inputPowerFactor) items.push({ key: 'inputpf', label: '输入功率因数', value: p.inputPowerFactor }); if (p.parallelUnits) items.push({ key: 'parallel', label: '可并联台数', value: p.parallelUnits }); if (p.outputVoltage) items.push({ key: 'outputvoltage', label: '输出电压', value: p.outputVoltage }); if (p.outputPowerFactor) items.push({ key: 'outputpf', label: '输出功率因数', value: p.outputPowerFactor }); if (p.outputVoltageRange) items.push({ key: 'outputvoltagerange', label: '输出电压范围', value: p.outputVoltageRange }); if (p.frequencyRangeBatteryMode) items.push({ key: 'freqrange', label: '频率范围(电池模式)', value: p.frequencyRangeBatteryMode }); if (p.currentCrestRatio) items.push({ key: 'crestratio', label: '峰值电流比', value: p.currentCrestRatio }); if (p.harmonicDistortion) items.push({ key: 'thd', label: '谐波失真', value: p.harmonicDistortion }); if (p.transferTimeAcToBattery) items.push({ key: 'transferacbat', label: '转换时间(市电到电池)', value: p.transferTimeAcToBattery }); if (p.transferTime) items.push({ key: 'transfertime', label: '转换时间', value: p.transferTime }); if (p.waveform) items.push({ key: 'waveform', label: '波形', value: p.waveform }); if (p.overload) items.push({ key: 'overload', label: '过载保护', value: p.overload }); if (p.efficiencyAcMode) items.push({ key: 'effac', label: '效率(市电模式)', value: p.efficiencyAcMode }); if (p.efficiencyBatteryMode) items.push({ key: 'effbat', label: '效率(电池模式)', value: p.efficiencyBatteryMode }); if (p.batterySpec) items.push({ key: 'batteryspec', label: '电池型号和数量', value: p.batterySpec }); if (p.chargeCurrent) items.push({ key: 'chargecurrent', label: '充电电流', value: p.chargeCurrent }); if (p.chargeTime) items.push({ key: 'chargetime', label: '充电时间', value: p.chargeTime }); if (p.chargingVoltage) items.push({ key: 'chargingvoltage', label: '充电电压', value: p.chargingVoltage }); if (p.lcdDisplay) items.push({ key: 'lcddisplay', label: 'LCD显示', value: p.lcdDisplay }); if (p.alarmInfo) items.push({ key: 'alarminfo', label: '警告提示', value: p.alarmInfo }); if (p.dimensions) items.push({ key: 'dim', label: '尺寸(mm)', value: p.dimensions }); if (p.netWeight) items.push({ key: 'weight', label: '净重(kg)', value: p.netWeight }); if (p.operatingTemp) items.push({ key: 'operatingtemp', label: '运行温度', value: p.operatingTemp }); if (p.storageTemp) items.push({ key: 'storagetemp', label: '存储温度', value: p.storageTemp }); if (p.humidity) items.push({ key: 'humidity', label: '湿度', value: p.humidity }); if (p.noiseLevel) items.push({ key: 'noiselevel', label: '噪音', value: p.noiseLevel }); if (p.protectionClass) items.push({ key: 'protectionclass', label: '防护等级', value: p.protectionClass }); if (p.interfacePort) items.push({ key: 'interfaceport', label: '控制管理', value: p.interfacePort }); if (p.optionalSnmp) items.push({ key: 'snmp', label: '可选SNMP', value: p.optionalSnmp }); insertExtraSpecs(items, p.extraSpecs, 'label'); if (p.applicationScenarios) items.push({ key: 'appscenario', label: '应用场景', value: p.applicationScenarios }); if (p.container20ft) items.push({ key: 'container20', label: '20尺柜装箱数量', value: p.container20ft }); if (p.container40ft) items.push({ key: 'container40', label: '40尺柜装箱数量', value: p.container40ft }); if (p.container40hq) items.push({ key: 'container40hq', label: '40高柜装箱数量', value: p.container40hq }); return items; } if (isUpsCategory(cat) && p.type !== '迷你UPS') { const maxKW = computeMaxPowerKW(p.ratedPower, p.ratedPowerUnit, p.powerFactor); const rackFallbackItems = [ { key: 'rated', label: '视载功率', value: p.ratedPower ? `${p.ratedPower} ${p.ratedPowerUnit || 'VA'}` : '—' }, { key: 'pf', label: '功率因数', value: p.powerFactor || '—' }, { key: 'maxkw', label: '最大功率', value: maxKW !== null ? `${maxKW} kW` : '—' }, ]; insertExtraSpecs(rackFallbackItems, p.extraSpecs, 'label'); return rackFallbackItems; } if (isUpsCategory(cat) && p.type === '迷你UPS') { const items = [{ key: 'maxout', label: '输出功率', value: p.powerOrCapacity || '—' }]; items.push({ key: 'inputvoltage', label: '输入电压', value: p.voltage || '—' }); if (p.outputPortCount) items.push({ key: 'portcount', label: '输出口数量', value: p.outputPortCount }); if (p.outputPortTypes && p.outputPortTypes.length) items.push({ key: 'porttypes', label: '输出口类型', value: p.outputPortTypes.join(' / ') }); (p.outputPorts || []).forEach(port => { if (port.voltage || port.current) { items.push({ key: 'port_' + port.type, label: `${port.type} 输出`, value: [port.voltage, port.current].filter(Boolean).join(' ') }); } }); if (p.batterySpec) items.push({ key: 'battery', label: '电池数量和容量', value: p.batterySpec }); if (p.dimensions) items.push({ key: 'dim', label: '尺寸(mm)', value: p.dimensions }); if (p.netWeight) items.push({ key: 'weight', label: '净重(kg)', value: p.netWeight }); insertExtraSpecs(items, p.extraSpecs, 'label'); if (p.applicationScenarios) items.push({ key: 'appscenario', label: '应用场景', value: p.applicationScenarios }); if (p.container20ft) items.push({ key: 'container20', label: '20尺柜装箱数量', value: p.container20ft }); if (p.container40ft) items.push({ key: 'container40', label: '40尺柜装箱数量', value: p.container40ft }); if (p.container40hq) items.push({ key: 'container40hq', label: '40高柜装箱数量', value: p.container40hq }); return items; } const fallbackItems = [{ key: 'power', label: '功率 / 容量', value: p.powerOrCapacity || '—' }]; insertExtraSpecs(fallbackItems, p.extraSpecs, 'label'); return fallbackItems; } /* ------------------------------- quotes/invoices ------------------------------ */ const CURRENCIES = [ { code: 'USD', symbol: 'US$' }, { code: 'CNY', symbol: '¥' }, { code: 'RUB', symbol: '₽' }, ]; const DEFAULT_SELLER_PROFILES = [ { id: 'seller_1', name: 'BEIJING JINYIDA BORUI TECHNOLOGY DEVELOPMENT CO., LTD.', address: '313, Floor 3, Building 1, Yard 4, Fuze Road, Fangshan, Beijing, China', logoFileName: '', bankInfo: '', }, { id: 'seller_2', name: 'XINHUA CHUIXUE COMPUTER CO., LTD', address: 'No.8 Wenyuan Street Shijiazhuang, Hebei, China', logoFileName: '', bankInfo: '', }, { id: 'seller_3', name: 'Shenzhen Pengcheng Electric Co., Ltd.', address: "No. 6093, Bao'an Avenue, Xinhe Community, Fuhai Street, Bao'an District, Shenzhen, China", logoFileName: '', bankInfo: '', }, ]; const PAYMENT_TERMS_OPTIONS = [ '100% IN ADVANCE T/T', '50% IN ADVANCE T/T 50% BEFORE DELIVERY', '30% IN ADVANCE T/T 70% BEFORE DELIVERY', ]; const QUOTE_NOTE_DEFAULTS = ['BRAND NEW ORIGINAL PACKED BY CARTON', 'PRICE BASED ON EXW TERM']; const QUOTE_NOTE_OPTIONS = ['IN STOCK', 'LEAD TIME 1 WEEK', 'LEAD TIME 2 WEEKS', 'WARRANTY 1 YEAR', 'WARRANTY 2 YEARS', 'WARRANTY 3 YEARS', 'WARRANTY 5 YEARS']; const blankLineItem = () => ({ id: 'li_' + Date.now() + '_' + Math.random().toString(36).slice(2, 6), description: '', quantity: '', rate: '' }); const blankPackingLineItem = () => ({ id: 'pli_' + Date.now() + '_' + Math.random().toString(36).slice(2, 6), description: '', qty: '', cartons: '', grossWeight: '', netWeight: '', volume: '', }); const blankPackingList = () => ({ id: 'pl_' + Date.now() + '_' + Math.random().toString(36).slice(2, 7), type: 'packing', number: '', date: todayStr(), sellerProfileId: 'seller_1', customerId: '', billToName: '', showSeller: true, showBillTo: true, lineItems: [blankPackingLineItem()], notes: '', createdAt: todayStr(), }); function packingTotals(pl) { return (pl.lineItems || []).reduce((sum, li) => ({ qty: sum.qty + (parseFloat(li.qty) || 0), cartons: sum.cartons + (parseFloat(li.cartons) || 0), grossWeight: sum.grossWeight + (parseFloat(li.grossWeight) || 0), netWeight: sum.netWeight + (parseFloat(li.netWeight) || 0), volume: sum.volume + (parseFloat(li.volume) || 0), }), { qty: 0, cartons: 0, grossWeight: 0, netWeight: 0, volume: 0 }); } const blankQuote = (type) => ({ id: 'q_' + Date.now() + '_' + Math.random().toString(36).slice(2, 7), type, // 'quote' | 'invoice' number: '', date: todayStr(), currency: 'USD', sellerProfileId: 'seller_1', customerId: '', billToName: '', shipToName: '', paymentTerms: '', bankInfo: '', signerName: '', lineItems: [blankLineItem()], notes: type === 'quote' ? QUOTE_NOTE_DEFAULTS.join('\n') : '', createdAt: todayStr(), }); function suggestDocNumber(date, existingQuotes, type) { const d = new Date((date || todayStr()) + 'T00:00:00'); const yyyy = d.getFullYear(); const mm = String(d.getMonth() + 1).padStart(2, '0'); const dd = String(d.getDate()).padStart(2, '0'); const base = `${yyyy}${mm}${dd}`; const sameDay = (existingQuotes || []).filter(q => q.type === type && (q.number || '').startsWith(base)); const letter = String.fromCharCode(65 + sameDay.length); return `${base}${letter}`; } function addOneMonth(dateStr) { if (!dateStr) return ''; const d = new Date(dateStr + 'T00:00:00'); d.setMonth(d.getMonth() + 1); return d.toISOString().slice(0, 10); } function formatMoney(amount, currencyCode) { const found = CURRENCIES.find(c => c.code === currencyCode); const symbol = found ? found.symbol : ''; const safeAmount = Number.isFinite(amount) ? amount : 0; return `${symbol}${safeAmount.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 })}`; } function quoteTotals(quote) { const total = (quote.lineItems || []).reduce((sum, li) => { const qty = parseFloat(li.quantity) || 0; const rate = parseFloat(li.rate) || 0; return sum + qty * rate; }, 0); return { total }; } // 从所有历史报价单/Invoice里提取"型号(首行) -> 完整描述+单价"的记录,按日期保留最新的一条, // 方便录入新产品明细时按关键词自动带出之前报过的价格 function buildPriceHistory(quotes) { const map = new Map(); const sorted = [...quotes].sort((a, b) => (a.date || '').localeCompare(b.date || '')); for (const q of sorted) { for (const li of q.lineItems || []) { const firstLine = (li.description || '').split('\n')[0].trim(); if (!firstLine || !li.rate) continue; map.set(firstLine.toUpperCase(), { description: li.description, rate: li.rate, date: q.date }); } } return Array.from(map.values()); } // 客户档案在下拉框里展示的标签:意向型号 - 公司名字 - 客户姓名,方便辨认是哪一个客户 function quoteLinkLabel(c) { const modelQty = [c.intendedModel, c.intendedQty ? `×${c.intendedQty}` : ''].filter(Boolean).join(' '); return [modelQty, c.company, c.contact].filter(Boolean).join(' - ') || '(未命名)'; } // 真正要打印在报价单/Invoice上的客户名称:用公司名/联系人,不能用型号(型号只是用来辨认客户,不是收件人名字) function billPartyName(c) { return c.company || c.contact || ''; } /* ------------------------------- helpers ------------------------------ */ function todayStr() { const d = new Date(); return d.toISOString().slice(0, 10); } function regionLabel(id) { return (REGIONS.find(r => r.id === id) || {}).label || id; } function localTimeInfo(countryName, now) { const c = COUNTRY_BY_NAME[countryName]; if (!c) return null; try { const time = new Intl.DateTimeFormat('zh-CN', { timeZone: c.tz, hour: '2-digit', minute: '2-digit', hour12: false }).format(now); return { time, en: c.en, tz: c.tz }; } catch (e) { return null; } } // 没有手动标记常用联系方式时,邮箱和电话都展示;标了哪个就只展示哪个 function contactDisplayFlags(c) { const preferred = c.preferredContacts || []; const none = preferred.length === 0; return { showEmail: (none || preferred.includes('email')) && !!c.email, showPhone: (none || preferred.includes('phone')) && !!c.phone, }; } // 标题统一规则:意向型号(+数量)优先,没有就退回公司名,再没有就显示未命名 function customerTitle(c) { const modelQty = [c.intendedModel, c.intendedQty ? `× ${c.intendedQty}` : ''].filter(Boolean).join(' '); return modelQty || c.company || '(未命名)'; } function customerTitleIsModel(c) { return !!(c.intendedModel || c.intendedQty); } function reorderArray(arr, fromIndex, toIndex) { const copy = [...arr]; const [moved] = copy.splice(fromIndex, 1); copy.splice(toIndex, 0, moved); return copy; } function reorderWithinCategory(products, category, fromIndex, toIndex) { const catItems = products.filter(p => p.category === category); const reordered = reorderArray(catItems, fromIndex, toIndex); let i = 0; return products.map(p => (p.category === category ? reordered[i++] : p)); } // VIP客户和非VIP客户在"客户档案"看板里分两组展示,拖拽排序只在各自组内生效—— // 取出该组成员按新顺序重排,再按原来在整个customers数组里的位置依次塞回去,不影响另一组的顺序。 function reorderCustomerGroup(customers, vipFlag, fromIndex, toIndex) { const groupItems = customers.filter(c => !!c.isVip === vipFlag); const reordered = reorderArray(groupItems, fromIndex, toIndex); let i = 0; return customers.map(c => (!!c.isVip === vipFlag ? reordered[i++] : c)); } function categoryBreadcrumb(p, categories) { const cat = (categories || []).find(c => c.id === p.category); if (!cat) return '未分类'; return [cat.name, p.type].filter(Boolean).join(' › '); } // 一次性迁移:把旧版 subCategory/subSubCategory(写死id)转换成新版的 type(自由文本, // 存在类目自己的 types 列表里);把产品里已有的自由文本品牌,补进所属类目的 brands 列表, // 这样老数据在新的下拉选择模型里仍然是合法可选项,不会丢失也不会报错。幂等:跑第二次不会重复添加。 function normalizeProductTaxonomy(products, categories) { let cats = (categories && categories.length ? categories : buildDefaultProductCategories()) .map(c => ({ ...c, brands: [...(c.brands || [])], types: [...(c.types || [])] })); const migratedProducts = (products || []).map(p => { let type = p.type || ''; if (!type && (p.subCategory || p.subSubCategory)) { const top = LEGACY_PRODUCT_TAXONOMY.find(t => t.id === p.category); const sub = top && (top.subs || []).find(s => s.id === p.subCategory); const subsub = sub && (sub.subs || []).find(s => s.id === p.subSubCategory); type = (subsub && subsub.short) || (sub && sub.short) || ''; } return { ...p, type }; }); migratedProducts.forEach(p => { if (!p.category) return; let cat = cats.find(c => c.id === p.category); if (!cat) { cat = { id: p.category, name: p.category, brands: [], types: [] }; cats.push(cat); } if (p.brand && !cat.brands.includes(p.brand)) cat.brands.push(p.brand); if (p.type && !cat.types.includes(p.type)) cat.types.push(p.type); }); // 老数据兼容:如果之前版本把"标机/长机"(或者新命名"标准机型/长延时机型")误存进了某个类目的 // types 列表里,这里清掉,机型是独立字段(machineVariant),不再作为细分品类的一个选项。 cats.forEach(c => { c.types = c.types.filter(t => !['标机', '长机', '标准机型', '长延时机型'].includes(t)); }); return { products: migratedProducts, categories: cats }; } /* -------------------------------- storage ------------------------------ */ async function loadAll() { let customers = []; let products = []; let quotes = []; let sellerProfiles = DEFAULT_SELLER_PROFILES; let certifications = []; let productCategories = []; let packingLists = []; let catalogDocs = []; try { const c = await storageGet(STORAGE_KEYS.customers); if (c && c.value) customers = JSON.parse(c.value); } catch (e) {} try { const p = await storageGet(STORAGE_KEYS.products); if (p && p.value) products = JSON.parse(p.value); } catch (e) {} try { const q = await storageGet(STORAGE_KEYS.quotes); if (q && q.value) quotes = JSON.parse(q.value); } catch (e) {} try { const sp = await storageGet(STORAGE_KEYS.sellerProfiles); if (sp && sp.value) sellerProfiles = JSON.parse(sp.value); } catch (e) {} try { const cf = await storageGet(STORAGE_KEYS.certifications); if (cf && cf.value) certifications = JSON.parse(cf.value); } catch (e) {} try { const pc = await storageGet(STORAGE_KEYS.productCategories); if (pc && pc.value) productCategories = JSON.parse(pc.value); } catch (e) {} try { const pl = await storageGet(STORAGE_KEYS.packingLists); if (pl && pl.value) packingLists = JSON.parse(pl.value); } catch (e) {} try { const cd = await storageGet(STORAGE_KEYS.catalogDocs); if (cd && cd.value) catalogDocs = JSON.parse(cd.value); } catch (e) {} let jmsLines = []; try { const jl = await storageGet(STORAGE_KEYS.jmsLines); if (jl && jl.value) jmsLines = JSON.parse(jl.value); } catch (e) {} let backPanelTemplates = []; try { const bpt = await storageGet(STORAGE_KEYS.backPanelTemplates); if (bpt && bpt.value) backPanelTemplates = JSON.parse(bpt.value); } catch (e) {} let suppliers = []; try { const sup = await storageGet(STORAGE_KEYS.suppliers); if (sup && sup.value) suppliers = JSON.parse(sup.value); } catch (e) {} return { customers, products, quotes, sellerProfiles, certifications, productCategories, packingLists, catalogDocs, jmsLines, backPanelTemplates, suppliers }; } /* -------------------------------- styles -------------------------------- */ const Styles = () => ( ); /* -------------------------------- pieces -------------------------------- */ // 品牌 / 类型标签行:展示某类目下的 tax-pill 列表,可点击 x 删除单个, // 末尾的虚线圆圈 + 号点击后原地变成一个小输入框,回车/失焦保存,Esc取消。 function TaxPillRow({ label, values, catId, kind, addingPill, addingPillValue, setAddingPillValue, onOpenAdd, onConfirmAdd, onCancelAdd, onRemove }) { const isAdding = addingPill && addingPill.catId === catId && addingPill.kind === kind; return (
{label && {label}} {values.map(v => ( {v} onRemove(catId, kind, v)}> ))} {isAdding ? ( setAddingPillValue(e.target.value)} onBlur={onConfirmAdd} onKeyDown={e => { if (e.key === 'Enter') e.currentTarget.blur(); if (e.key === 'Escape') onCancelAdd(); }} placeholder={kind === 'brand' ? '品牌名称' : '类型名称'} /> ) : ( onOpenAdd(catId, kind)}> )}
); } function StatCard({ num, label, tone }) { return (
{num}
{label}
); } function CustomerMonitorGrid({ list, vipFlag, dragCustomerIdx, dragCustomerVip, onDragStart, onDrop, onDragEnd, now, onView }) { if (list.length === 0) { return
{vipFlag ? '还没有VIP客户' : '暂无客户'}
; } return (
{list.map((c, idx) => { const lt = localTimeInfo(c.country, now); const modelQty = [c.intendedModel, c.intendedQty ? `× ${c.intendedQty}` : ''].filter(Boolean).join(' '); const cardTitle = customerTitle(c); const showCompanyLine = !!(modelQty && c.company); const { showEmail, showPhone } = contactDisplayFlags(c); const isDragging = dragCustomerIdx === idx && dragCustomerVip === vipFlag; return (
onDragStart(vipFlag, idx)} onDragOver={(e) => e.preventDefault()} onDrop={() => onDrop(vipFlag, idx)} onDragEnd={onDragEnd} >
{cardTitle}
{c.hasOrdered && 已下单}
{regionLabel(c.region)} · {c.country || '—'}
{showCompanyLine &&
{c.company}
} {c.contact &&
{c.contact}
} {showEmail &&
{c.email}
} {showPhone &&
{c.phone}
} {lt &&
当地时间 {lt.time}
}
); })}
); } function ProductPills({ value, onChange }) { const toggle = (p) => { const has = value.includes(p); onChange(has ? value.filter(x => x !== p) : [...value, p]); }; return (
{PRODUCT_LINES.map(p => (
toggle(p)}> {value.includes(p) && } {p}
))}
); } function RegionPills({ value, onChange }) { const toggle = (id) => { const has = value.includes(id); onChange(has ? value.filter(x => x !== id) : [...value, id]); }; return (
{REGIONS.map(r => (
toggle(r.id)}> {value.includes(r.id) && } {r.label}
))}
); } /* --------------------------------- app ---------------------------------- */ /* --------------------------------- nav --------------------------------- */ const NAV_GROUPS = [ { label: '客户', items: [ { id: 'monitor', label: '客户档案', icon: LayoutDashboard }, { id: 'manage', label: '客户管理', icon: Users }, { id: 'jms', label: 'Just My Socks', icon: Wifi }, ] }, { label: '产品', items: [ { id: 'groups', label: '产品分组', icon: FolderTree }, { id: 'products', label: '产品管理', icon: Package }, { id: 'backpanel', label: '后板图模板', icon: Settings2 }, ] }, ]; const STANDALONE_NAV = [ { id: 'certs', label: '授权管理', icon: ShieldCheck }, { id: 'suppliers', label: '供应商名录', icon: Factory }, { id: 'catalog', label: '产品目录', icon: BookOpen }, { id: 'quotes', label: '报价单', icon: FileText }, { id: 'packing', label: '箱单', icon: Boxes }, { id: 'settings', label: '设置', icon: SettingsIcon }, ]; function viewTitle(view) { const all = [...NAV_GROUPS.flatMap(g => g.items), ...STANDALONE_NAV]; const found = all.find(i => i.id === view); return found ? found.label : '客户档案系统'; } /* ------------------------------- login screen ----------------------------- */ function LoginScreen({ onSuccess }) { const [username, setUsername] = useState(''); const [password, setPassword] = useState(''); const [error, setError] = useState(''); const [loading, setLoading] = useState(false); async function handleSubmit(e) { e.preventDefault(); if (loading) return; setError(''); setLoading(true); try { const res = await authLogin(username, password); onSuccess(res.username || username); } catch (e) { setError('用户名或密码不正确'); } finally { setLoading(false); } } return (
客户档案系统
请登录后继续
用户名 setUsername(e.target.value)} autoFocus autoCapitalize="off" />
密码 setPassword(e.target.value)} />
{error &&
{error}
}
); } /* --------------------------------- root --------------------------------- */ export default function CustomerCRM() { const [authState, setAuthState] = useState('checking'); // checking | out | in const [username, setUsername] = useState(null); useEffect(() => { authCheck() .then(res => { if (res.authed) { setUsername(res.username); setAuthState('in'); } else setAuthState('out'); }) .catch(() => setAuthState('out')); }, []); function handleLogout() { authLogout().finally(() => { setUsername(null); setAuthState('out'); }); } if (authState === 'checking') { return (
加载中…
); } if (authState === 'out') { return { setUsername(name); setAuthState('in'); }} />; } return ; } export { LoginScreen, MainApp }; function MainApp({ username, onLogout }) { const [loaded, setLoaded] = useState(false); const [customers, setCustomers] = useState([]); const [products, setProducts] = useState([]); const [view, setView] = useState('monitor'); const [mobileMenuOpen, setMobileMenuOpen] = useState(false); const [selectedId, setSelectedId] = useState(null); const [draft, setDraft] = useState(null); const [search, setSearch] = useState(''); const [regionFilter, setRegionFilter] = useState('all'); const [attachmentNote, setAttachmentNote] = useState(''); const [attachmentCategory, setAttachmentCategory] = useState(FILE_CATEGORIES[0]); const [attachmentFiles, setAttachmentFiles] = useState([]); const [uploading, setUploading] = useState(false); const [fileInputKey, setFileInputKey] = useState(0); const [fileDragActive, setFileDragActive] = useState(false); const [selectedProductId, setSelectedProductId] = useState(null); const [productDraft, setProductDraft] = useState(null); const [productSearch, setProductSearch] = useState(''); const [productCategoryFilter, setProductCategoryFilter] = useState('all'); const [productTypeFilter, setProductTypeFilter] = useState('all'); const [productBrandFilter, setProductBrandFilter] = useState('all'); const [aiImportOpen, setAiImportOpen] = useState(false); const [aiImportBusy, setAiImportBusy] = useState(false); const [aiImportError, setAiImportError] = useState(''); const [aiImportDrafts, setAiImportDrafts] = useState(null); // null=还没解析;数组=进入预览确认阶段 const [aiImportHintCategory, setAiImportHintCategory] = useState(''); const [aiImportHintBrand, setAiImportHintBrand] = useState(''); const [aiImportHintType, setAiImportHintType] = useState(''); const [aiImportTruncatedWarning, setAiImportTruncatedWarning] = useState(false); const [exportOpen, setExportOpen] = useState(false); const [toast, setToast] = useState(''); const [now, setNow] = useState(() => new Date()); const [dragCustomerIdx, setDragCustomerIdx] = useState(null); const [dragCustomerVip, setDragCustomerVip] = useState(false); // 正在拖拽的卡片属于VIP组还是普通组 const [dragGroupState, setDragGroupState] = useState(null); // { category, index } const [pwCurrent, setPwCurrent] = useState(''); const [pwNew, setPwNew] = useState(''); const [pwBusy, setPwBusy] = useState(false); const [aiConfigHasKey, setAiConfigHasKey] = useState(false); const [aiKeyInput, setAiKeyInput] = useState(''); const [aiSaving, setAiSaving] = useState(false); const [aiTesting, setAiTesting] = useState(false); const [quotes, setQuotes] = useState([]); const [sellerProfiles, setSellerProfiles] = useState(DEFAULT_SELLER_PROFILES); const [productCategories, setProductCategories] = useState([]); const [addingPill, setAddingPill] = useState(null); // { catId, kind: 'brand' | 'type' | 'category' } const [addingPillValue, setAddingPillValue] = useState(''); const [taxManageMode, setTaxManageMode] = useState(null); // 'category' | 'brand' | 'type' | null const [certifications, setCertifications] = useState([]); const [certUploading, setCertUploading] = useState(false); const [editingCertId, setEditingCertId] = useState(null); const [certBrandDraft, setCertBrandDraft] = useState(''); const [suppliers, setSuppliers] = useState([]); const [selectedSupplierId, setSelectedSupplierId] = useState(null); const [supplierDraft, setSupplierDraft] = useState(null); const [supplierSearch, setSupplierSearch] = useState(''); const [supplierAttachmentNote, setSupplierAttachmentNote] = useState(''); const [supplierAttachmentFiles, setSupplierAttachmentFiles] = useState([]); const [supplierUploading, setSupplierUploading] = useState(false); const [supplierFileInputKey, setSupplierFileInputKey] = useState(0); const [supplierFileDragActive, setSupplierFileDragActive] = useState(false); const [quoteSubView, setQuoteSubView] = useState('list'); // 'list' | 'editor' const [quoteDraft, setQuoteDraft] = useState(null); const [quoteTypeFilter, setQuoteTypeFilter] = useState('all'); const [sellerManagerOpen, setSellerManagerOpen] = useState(false); const [sellerLogoUploading, setSellerLogoUploading] = useState(false); const [pdfExporting, setPdfExporting] = useState(false); const [packingLists, setPackingLists] = useState([]); const [packingSubView, setPackingSubView] = useState('list'); // 'list' | 'editor' const [packingDraft, setPackingDraft] = useState(null); const [packingPdfExporting, setPackingPdfExporting] = useState(false); const [catalogDocs, setCatalogDocs] = useState([]); const [catalogDragActive, setCatalogDragActive] = useState(false); const [dragCatalogDocIdx, setDragCatalogDocIdx] = useState(null); const [editingCatalogId, setEditingCatalogId] = useState(null); const [catalogEditDraft, setCatalogEditDraft] = useState({ title: '', category: '', brand: '', type: '' }); const [catalogCategoryFilter, setCatalogCategoryFilter] = useState('all'); const [jmsLines, setJmsLines] = useState([]); const [backPanelTemplates, setBackPanelTemplates] = useState([]); useEffect(() => { getAiConfig().then((res) => setAiConfigHasKey(!!res.hasKey)).catch(() => {}); }, []); useEffect(() => { const id = setInterval(() => setNow(new Date()), 30000); return () => clearInterval(id); }, []); useEffect(() => { (async () => { const data = await loadAll(); const normalized = normalizeProductTaxonomy(data.products, data.productCategories); setCustomers(data.customers); setProducts(normalized.products); setProductCategories(normalized.categories); setQuotes(data.quotes); setSellerProfiles(data.sellerProfiles); setCertifications(data.certifications); setPackingLists(data.packingLists); setCatalogDocs((data.catalogDocs || []).filter(d => d.fileName)); setJmsLines(data.jmsLines || []); setBackPanelTemplates(data.backPanelTemplates || []); setSuppliers(data.suppliers || []); setLoaded(true); })(); }, []); useEffect(() => { if (loaded) storageSet(STORAGE_KEYS.customers, JSON.stringify(customers)).catch(() => {}); }, [customers, loaded]); useEffect(() => { if (loaded) storageSet(STORAGE_KEYS.products, JSON.stringify(products)).catch(() => {}); }, [products, loaded]); useEffect(() => { if (loaded) storageSet(STORAGE_KEYS.quotes, JSON.stringify(quotes)).catch(() => {}); }, [quotes, loaded]); useEffect(() => { if (loaded) storageSet(STORAGE_KEYS.sellerProfiles, JSON.stringify(sellerProfiles)).catch(() => {}); }, [sellerProfiles, loaded]); useEffect(() => { if (loaded) storageSet(STORAGE_KEYS.certifications, JSON.stringify(certifications)).catch(() => {}); }, [certifications, loaded]); useEffect(() => { if (loaded) storageSet(STORAGE_KEYS.productCategories, JSON.stringify(productCategories)).catch(() => {}); }, [productCategories, loaded]); useEffect(() => { if (loaded) storageSet(STORAGE_KEYS.packingLists, JSON.stringify(packingLists)).catch(() => {}); }, [packingLists, loaded]); useEffect(() => { if (loaded) storageSet(STORAGE_KEYS.catalogDocs, JSON.stringify(catalogDocs)).catch(() => {}); }, [catalogDocs, loaded]); useEffect(() => { if (loaded) storageSet(STORAGE_KEYS.jmsLines, JSON.stringify(jmsLines)).catch(() => {}); }, [jmsLines, loaded]); useEffect(() => { if (loaded) storageSet(STORAGE_KEYS.backPanelTemplates, JSON.stringify(backPanelTemplates)).catch(() => {}); }, [backPanelTemplates, loaded]); useEffect(() => { if (loaded) storageSet(STORAGE_KEYS.suppliers, JSON.stringify(suppliers)).catch(() => {}); }, [suppliers, loaded]); function notify(msg) { setToast(msg); setTimeout(() => setToast(''), 2200); } function copyText(text) { navigator.clipboard.writeText(text).then( () => notify('已复制到剪贴板'), () => notify('复制失败,请手动选择文本复制') ); } const selected = customers.find(c => c.id === selectedId) || null; const selectedProduct = products.find(p => p.id === selectedProductId) || null; const selectedSupplier = suppliers.find(s => s.id === selectedSupplierId) || null; const [productExportLang, setProductExportLang] = useState('zh'); const [productExportLabels, setProductExportLabels] = useState({}); const [productExportLoading, setProductExportLoading] = useState(false); const [productExportPdfBusy, setProductExportPdfBusy] = useState(false); useEffect(() => { if (!selectedProduct) { setProductExportLabels({}); return; } let cancelled = false; setProductExportLoading(true); const terms = gatherExportTerms(selectedProduct, productCategories); resolveExportTranslations(terms, productExportLang) .then(map => { if (!cancelled) setProductExportLabels(map); }) .finally(() => { if (!cancelled) setProductExportLoading(false); }); return () => { cancelled = true; }; }, [selectedProduct && selectedProduct.id, productExportLang, productCategories]); const filteredCustomers = useMemo(() => { let list = customers; if (regionFilter !== 'all') list = list.filter(c => c.region === regionFilter); if (search.trim()) { const q = search.trim().toLowerCase(); list = list.filter(c => (c.company || '').toLowerCase().includes(q) || (c.contact || '').toLowerCase().includes(q) || (c.email || '').toLowerCase().includes(q) || (c.country || '').toLowerCase().includes(q) ); } return [...list].sort((a, b) => (b.isVip ? 1 : 0) - (a.isVip ? 1 : 0) || (a.company || '').localeCompare(b.company || '')); }, [customers, search, regionFilter]); const vipCustomers = useMemo(() => customers.filter(c => c.isVip), [customers]); const normalCustomers = useMemo(() => customers.filter(c => !c.isVip), [customers]); const productsInCategory = useMemo(() => ( productCategoryFilter === 'all' ? products : products.filter(p => p.category === productCategoryFilter) ), [products, productCategoryFilter]); // 可选的"类别"(细分品类,比如高频塔式UPS/工频UPS)跟着"大类"筛选联动收窄; // 可选的"品牌"再跟着"大类+类别"联动收窄,一层层缩小范围 const availableProductTypes = useMemo(() => { const set = new Set(productsInCategory.map(p => p.type).filter(Boolean)); return [...set].sort(); }, [productsInCategory]); const productsInCategoryAndType = useMemo(() => ( productTypeFilter === 'all' ? productsInCategory : productsInCategory.filter(p => p.type === productTypeFilter) ), [productsInCategory, productTypeFilter]); const availableProductBrands = useMemo(() => { const set = new Set(productsInCategoryAndType.map(p => p.brand).filter(Boolean)); return [...set].sort(); }, [productsInCategoryAndType]); const filteredProducts = useMemo(() => { let list = productsInCategoryAndType; if (productBrandFilter !== 'all') list = list.filter(p => p.brand === productBrandFilter); if (productSearch.trim()) { const q = productSearch.trim().toLowerCase(); list = list.filter(p => (p.name || '').toLowerCase().includes(q) || (p.brand || '').toLowerCase().includes(q) || categoryBreadcrumb(p, productCategories).toLowerCase().includes(q) ); } return [...list].sort((a, b) => categoryBreadcrumb(a, productCategories).localeCompare(categoryBreadcrumb(b, productCategories)) || (a.name || '').localeCompare(b.name || '')); }, [productsInCategoryAndType, productBrandFilter, productSearch, productCategories]); function handleProductCategoryFilterChange(catId) { setProductCategoryFilter(catId); setProductTypeFilter('all'); setProductBrandFilter('all'); } function handleProductTypeFilterChange(type) { setProductTypeFilter(type); setProductBrandFilter('all'); } const filteredSuppliers = useMemo(() => { let list = suppliers; if (supplierSearch.trim()) { const q = supplierSearch.trim().toLowerCase(); list = list.filter(s => (s.name || '').toLowerCase().includes(q) || (s.contact || '').toLowerCase().includes(q) || (s.mainProducts || '').toLowerCase().includes(q) ); } return [...list].sort((a, b) => (a.name || '').localeCompare(b.name || '')); }, [suppliers, supplierSearch]); const counts = useMemo(() => ({ total: customers.length, products: products.length, }), [customers, products]); const priceHistory = useMemo(() => buildPriceHistory(quotes), [quotes]); const filteredCatalogDocs = useMemo(() => { if (catalogCategoryFilter === 'all') return catalogDocs; return catalogDocs.filter(d => d.uploading || d.category === catalogCategoryFilter); }, [catalogDocs, catalogCategoryFilter]); function handleCustomerDrop(vipFlag, dropIdx) { if (dragCustomerIdx === null || (dragCustomerIdx === dropIdx && dragCustomerVip === vipFlag)) { setDragCustomerIdx(null); return; } setCustomers(prev => reorderCustomerGroup(prev, vipFlag, dragCustomerIdx, dropIdx)); setDragCustomerIdx(null); } async function handleAddCatalogFile(file) { if (!file) return; const tempId = 'catdoc_' + Date.now().toString(36) + Math.random().toString(36).slice(2, 6); // 先插入一张"上传中"的占位卡片,让用户能实时看到这个文件正在传,传完再替换成真实数据 setCatalogDocs(prev => [{ id: tempId, title: '', fileName: '', originalName: file.name, category: '', brand: '', type: '', uploading: true }, ...prev]); try { const res = await uploadFile(tempId, file); setCatalogDocs(prev => prev.map(d => (d.id === tempId ? { ...d, fileName: res.fileName, originalName: res.originalName, uploading: false } : d))); setEditingCatalogId(tempId); setCatalogEditDraft({ title: '', category: '', brand: '', type: '' }); } catch (e) { notify(`《${file.name}》上传失败,请重试`); setCatalogDocs(prev => prev.filter(d => d.id !== tempId)); } } function handleCatalogFilesSelected(files) { Array.from(files || []).forEach(f => handleAddCatalogFile(f)); } function handleCatalogDragOver(e) { e.preventDefault(); setCatalogDragActive(true); } function handleCatalogDragLeave(e) { if (e.currentTarget.contains(e.relatedTarget)) return; setCatalogDragActive(false); } function handleCatalogDrop(e) { e.preventDefault(); setCatalogDragActive(false); const files = Array.from((e.dataTransfer && e.dataTransfer.files) || []).filter(f => f.type === 'application/pdf' || /\.pdf$/i.test(f.name)); if (files.length === 0) { notify('只能上传PDF文件'); return; } handleCatalogFilesSelected(files); } function startEditCatalogDoc(doc) { setEditingCatalogId(doc.id); setCatalogEditDraft({ title: doc.title || '', category: doc.category || '', brand: doc.brand || '', type: doc.type || '' }); } function updateCatalogEditDraft(patch) { setCatalogEditDraft(d => ({ ...d, ...patch })); } function saveCatalogEdit() { setCatalogDocs(prev => prev.map(d => (d.id === editingCatalogId ? { ...d, title: catalogEditDraft.title.trim(), category: catalogEditDraft.category, brand: catalogEditDraft.brand, type: catalogEditDraft.type } : d))); setEditingCatalogId(null); setCatalogEditDraft({ title: '', category: '', brand: '', type: '' }); } async function deleteCatalogDoc(doc) { if (!window.confirm('确定删除这份产品目录PDF?此操作不可恢复。')) return; try { await deleteFile(doc.id, doc.fileName); } catch (e) {} setCatalogDocs(prev => prev.filter(d => d.id !== doc.id)); if (editingCatalogId === doc.id) setEditingCatalogId(null); } function handleCatalogDocDrop(dropIdx) { if (dragCatalogDocIdx === null || dragCatalogDocIdx === dropIdx) { setDragCatalogDocIdx(null); return; } setCatalogDocs(prev => reorderArray(prev, dragCatalogDocIdx, dropIdx)); setDragCatalogDocIdx(null); } function handleGroupDrop(category, dropIdx) { if (!dragGroupState || dragGroupState.category !== category || dragGroupState.index === dropIdx) { setDragGroupState(null); return; } setProducts(prev => reorderWithinCategory(prev, category, dragGroupState.index, dropIdx)); setDragGroupState(null); } function openAddPill(catId, kind) { setAddingPill({ catId, kind }); setAddingPillValue(''); } function cancelAddPill() { setAddingPill(null); setAddingPillValue(''); } function confirmAddPill() { if (!addingPill) return; const val = addingPillValue.trim(); if (!val) { cancelAddPill(); return; } if (addingPill.kind === 'category') { const exists = productCategories.some(c => c.name === val); if (!exists) { const id = 'cat_' + Date.now().toString(36) + Math.random().toString(36).slice(2, 5); setProductCategories(prev => [...prev, { id, name: val, brands: [], types: [] }]); } } else { const listKey = addingPill.kind === 'brand' ? 'brands' : 'types'; setProductCategories(prev => prev.map(c => { if (c.id !== addingPill.catId) return c; if (c[listKey].includes(val)) return c; return { ...c, [listKey]: [...c[listKey], val] }; })); } cancelAddPill(); } function removeTaxonomyValue(catId, kind, value) { const listKey = kind === 'brand' ? 'brands' : 'types'; setProductCategories(prev => prev.map(c => (c.id === catId ? { ...c, [listKey]: c[listKey].filter(v => v !== value) } : c))); } function deleteProductCategory(cat) { const count = products.filter(p => p.category === cat.id).length; const msg = count > 0 ? `确定删除类目"${cat.name}"?该类目下还有 ${count} 个产品,删除后这些产品会显示为"未分类",产品本身不会被删除。` : `确定删除类目"${cat.name}"?`; if (!window.confirm(msg)) return; setProductCategories(prev => prev.filter(c => c.id !== cat.id)); } async function handleChangePassword() { if (!pwCurrent || !pwNew) { notify('请填写当前密码和新密码'); return; } if (pwNew.length < 4) { notify('新密码至少4位'); return; } setPwBusy(true); try { await authChangePassword(pwCurrent, pwNew); setPwCurrent(''); setPwNew(''); notify('密码已修改'); } catch (e) { notify('修改失败:当前密码不正确'); } finally { setPwBusy(false); } } async function handleSaveAiKey() { if (!aiKeyInput.trim()) { notify('请输入API Key'); return; } setAiSaving(true); try { await saveAiConfig(aiKeyInput.trim()); setAiConfigHasKey(true); setAiKeyInput(''); notify('已保存'); } catch (e) { notify('保存失败'); } finally { setAiSaving(false); } } async function handleTestAiKey() { setAiTesting(true); try { await testAiConfig(); notify('连接成功'); } catch (e) { notify('连接失败,请检查API Key'); } finally { setAiTesting(false); } } async function handleClearAiKey() { if (!window.confirm('确定清除已保存的DeepSeek API Key?')) return; await deleteAiConfig(); setAiConfigHasKey(false); notify('已清除'); } function startNewCustomer() { setDraft(blankCustomer()); setSelectedId(null); } function startEditCustomer(c) { setDraft({ ...c, productLines: [...(c.productLines || [])] }); setSelectedId(c.id); } function cancelDraft() { setDraft(null); } function saveDraft() { setCustomers(prev => { const exists = prev.some(c => c.id === draft.id); return exists ? prev.map(c => (c.id === draft.id ? draft : c)) : [...prev, draft]; }); setSelectedId(draft.id); setDraft(null); notify('已保存'); } function deleteCustomer(id) { if (!window.confirm('确定删除该客户档案?此操作不可恢复。')) return; setCustomers(prev => prev.filter(c => c.id !== id)); if (selectedId === id) setSelectedId(null); notify('已删除'); } function togglePreferredContact(id, channel) { setCustomers(prev => prev.map(c => { if (c.id !== id) return c; const has = (c.preferredContacts || []).includes(channel); return { ...c, preferredContacts: has ? c.preferredContacts.filter(x => x !== channel) : [...(c.preferredContacts || []), channel] }; })); } function toggleVip(id) { setCustomers(prev => prev.map(c => (c.id === id ? { ...c, isVip: !c.isVip } : c))); } function toggleOrdered(id) { setCustomers(prev => prev.map(c => (c.id === id ? { ...c, hasOrdered: !c.hasOrdered } : c))); } function handleFileDragOver(e) { e.preventDefault(); setFileDragActive(true); } function handleFileDragLeave() { setFileDragActive(false); } function handleFileDrop(e) { e.preventDefault(); setFileDragActive(false); const files = e.dataTransfer.files && Array.from(e.dataTransfer.files); if (files && files.length) setAttachmentFiles(files); } async function handleUploadAttachment(customerId, folderId) { if (!attachmentFiles.length) { notify('请先选择文件'); return; } setUploading(true); const failed = []; try { for (const file of attachmentFiles) { try { const res = await uploadFile(customerId, file); const entry = { fileName: res.fileName, originalName: res.originalName, category: attachmentCategory, note: attachmentNote.trim(), date: todayStr(), folderId: folderId || null, }; setCustomers(prev => prev.map(c => (c.id === customerId ? { ...c, attachments: [entry, ...(c.attachments || [])] } : c))); } catch (e) { failed.push(`${file.name}:${e.message}`); } } setAttachmentFiles([]); setAttachmentNote(''); setAttachmentCategory(FILE_CATEGORIES[0]); setFileInputKey(k => k + 1); if (failed.length === 0) notify('已上传'); else notify(`${attachmentFiles.length - failed.length}个成功,失败:${failed.join(';')}`); } finally { setUploading(false); } } async function handleDeleteAttachment(customerId, fileName) { if (!window.confirm('确定删除这个附件?此操作不可恢复。')) return; try { await deleteFile(customerId, fileName); } catch (e) { // 即使服务端删除失败(比如文件已经不存在),也继续把记录从客户档案里移除 } setCustomers(prev => prev.map(c => ( c.id === customerId ? { ...c, attachments: (c.attachments || []).filter(a => a.fileName !== fileName) } : c ))); } function moveAttachmentToFolder(customerId, fileName, folderId) { setCustomers(prev => prev.map(c => ( c.id === customerId ? { ...c, attachments: (c.attachments || []).map(a => (a.fileName === fileName ? { ...a, folderId: folderId || null } : a)) } : c ))); } // 虚拟文件夹:不改变服务器上的实际文件存储位置,只是给客户记录挂一份文件夹树 // {id, name, parentId},附件通过folderId关联到某个文件夹(null=根目录),前端做成 // 资源管理器的样子——新建/重命名/删除文件夹、点进去浏览、面包屑导航。 function createFolder(customerId, parentId, name) { const trimmed = (name || '').trim(); if (!trimmed) return; const folder = { id: 'folder_' + Date.now() + '_' + Math.random().toString(36).slice(2, 7), name: trimmed, parentId: parentId || null }; setCustomers(prev => prev.map(c => ( c.id === customerId ? { ...c, fileFolders: [...(c.fileFolders || []), folder] } : c ))); } function renameFolder(customerId, folderId, name) { const trimmed = (name || '').trim(); if (!trimmed) return; setCustomers(prev => prev.map(c => ( c.id === customerId ? { ...c, fileFolders: (c.fileFolders || []).map(f => (f.id === folderId ? { ...f, name: trimmed } : f)) } : c ))); } function deleteFolder(customerId, folderId) { const customer = customers.find(c => c.id === customerId); if (!customer) return; const hasSubfolder = (customer.fileFolders || []).some(f => f.parentId === folderId); const hasFile = (customer.attachments || []).some(a => a.folderId === folderId); if (hasSubfolder || hasFile) { notify('文件夹不是空的,先移走或删除里面的文件/子文件夹'); return; } if (!window.confirm('确定删除这个文件夹?')) return; setCustomers(prev => prev.map(c => ( c.id === customerId ? { ...c, fileFolders: (c.fileFolders || []).filter(f => f.id !== folderId) } : c ))); } function startNewProduct() { setProductDraft(blankProduct()); setSelectedProductId(null); } function startEditProduct(p) { setProductDraft({ ...p, extraNames: [] }); setSelectedProductId(p.id); } function cancelProductDraft() { setProductDraft(null); } function saveProductDraft() { if (!productDraft.name.trim()) { notify('请填写产品型号/名称'); return; } if (!productDraft.category) { notify('请选择产品大类'); return; } const extraNames = (productDraft.extraNames || []).map(n => n.trim()).filter(Boolean); const { extraNames: _drop, ...primary } = productDraft; const extras = extraNames.map((n, i) => ({ ...primary, id: 'p_' + Date.now() + '_' + i + '_' + Math.random().toString(36).slice(2, 7), name: n, })); let working = products; let newCount = 0; let collisionCount = 0; let primarySelectId = primary.id; [primary, ...extras].forEach((prod, i) => { const res = upsertProductByName(working, prod); working = res.list; if (res.collision) collisionCount++; else if (res.isNew) newCount++; if (i === 0) primarySelectId = res.resultId; }); setProducts(working); setSelectedProductId(primarySelectId); setProductDraft(null); if (extras.length > 0) { notify(`已保存:新建 ${newCount} 个${collisionCount > 0 ? `,型号已存在覆盖更新 ${collisionCount} 个` : ''}`); } else if (collisionCount > 0) { notify('型号已存在,已用最新参数覆盖更新(图片/卖点/成本价/备注保留原样)'); } else { notify('已保存'); } } function deleteProduct(id) { if (!window.confirm('确定删除该产品档案?此操作不可恢复。')) return; setProducts(prev => prev.filter(p => p.id !== id)); if (selectedProductId === id) setSelectedProductId(null); notify('已删除'); } /* --------------------------------- 供应商名录 --------------------------------- */ function startNewSupplier() { setSupplierDraft(blankSupplier()); setSelectedSupplierId(null); } function startEditSupplier(s) { setSupplierDraft({ ...s }); setSelectedSupplierId(null); } function cancelSupplierDraft() { setSupplierDraft(null); } function saveSupplierDraft(s) { setSuppliers(prev => { const exists = prev.some(x => x.id === s.id); return exists ? prev.map(x => (x.id === s.id ? s : x)) : [s, ...prev]; }); setSupplierDraft(null); setSelectedSupplierId(s.id); notify('已保存'); } function deleteSupplier(id) { if (!window.confirm('确定删除这家供应商?此操作不可恢复。')) return; setSuppliers(prev => prev.filter(s => s.id !== id)); if (selectedSupplierId === id) setSelectedSupplierId(null); notify('已删除'); } function handleSupplierFileDragOver(e) { e.preventDefault(); setSupplierFileDragActive(true); } function handleSupplierFileDragLeave() { setSupplierFileDragActive(false); } function handleSupplierFileDrop(e) { e.preventDefault(); setSupplierFileDragActive(false); const files = e.dataTransfer.files && Array.from(e.dataTransfer.files); if (files && files.length) setSupplierAttachmentFiles(files); } async function handleUploadSupplierAttachment(supplierId) { if (!supplierAttachmentFiles.length) { notify('请先选择文件'); return; } setSupplierUploading(true); const failed = []; try { for (const file of supplierAttachmentFiles) { try { const res = await uploadFile(supplierId, file); const entry = { fileName: res.fileName, originalName: res.originalName, note: supplierAttachmentNote.trim(), date: todayStr() }; setSuppliers(prev => prev.map(s => (s.id === supplierId ? { ...s, attachments: [entry, ...(s.attachments || [])] } : s))); } catch (e) { failed.push(`${file.name}:${e.message}`); } } setSupplierAttachmentFiles([]); setSupplierAttachmentNote(''); setSupplierFileInputKey(k => k + 1); if (failed.length === 0) notify('已上传'); else notify(`${supplierAttachmentFiles.length - failed.length}个成功,失败:${failed.join(';')}`); } finally { setSupplierUploading(false); } } async function handleDeleteSupplierAttachment(supplierId, fileName) { if (!window.confirm('确定删除这个文件?此操作不可恢复。')) return; try { await deleteFile(supplierId, fileName); } catch (e) {} setSuppliers(prev => prev.map(s => ( s.id === supplierId ? { ...s, attachments: (s.attachments || []).filter(a => a.fileName !== fileName) } : s ))); } /* --------------------------------- Just My Socks --------------------------------- */ function saveJmsLine(line, editingId) { if (editingId) { setJmsLines(prev => prev.map(l => (l.id === editingId ? { ...line, id: editingId } : l))); notify('已保存修改'); } else { setJmsLines(prev => [...prev, { ...line, id: 'jms_' + Date.now() + '_' + Math.random().toString(36).slice(2, 7) }]); notify('线路已新增'); } } function deleteJmsLine(id) { if (!window.confirm('确定删除这条线路?')) return; setJmsLines(prev => prev.filter(l => l.id !== id)); notify('已删除'); } function reorderJmsLines(fromIndex, toIndex) { setJmsLines(prev => reorderArray(prev, fromIndex, toIndex)); } async function handleExportProductPdf() { if (!selectedProduct) return; setProductExportPdfBusy(true); const el = document.querySelector('.doc-preview'); let originalBorder, originalBoxShadow; try { const mod = await import('html2pdf.js'); const html2pdf = mod.default || mod; if (!el) { notify('找不到预览内容'); return; } originalBorder = el.style.border; originalBoxShadow = el.style.boxShadow; el.style.border = 'none'; el.style.boxShadow = 'none'; const langLabel = (EXPORT_LANGUAGES.find(l => l.code === productExportLang) || {}).code || 'zh'; const filename = `${selectedProduct.name || 'product'}_${langLabel}.pdf`; await html2pdf().set({ margin: 10, filename, image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2 }, jsPDF: { unit: 'mm', format: 'a4', orientation: 'portrait' }, pagebreak: { mode: ['css'], before: '.spec-sheet-page-break', avoid: ['tr', 'img'] }, }).from(el).save(); } catch (e) { notify('导出PDF失败,请重试'); } finally { if (el) { el.style.border = originalBorder || ''; el.style.boxShadow = originalBoxShadow || ''; } setProductExportPdfBusy(false); } } /* ------------------------------ ai bulk import ----------------------------- */ function openAiImport() { setAiImportOpen(true); setAiImportDrafts(null); setAiImportError(''); setAiImportHintCategory(''); setAiImportHintBrand(''); setAiImportHintType(''); setAiImportTruncatedWarning(false); } function closeAiImport() { setAiImportOpen(false); setAiImportDrafts(null); setAiImportError(''); setAiImportBusy(false); } async function handleAiImportFiles(files) { if (!files || !files.length) return; setAiImportBusy(true); setAiImportError(''); try { const res = await parseCatalogFiles(files, { category: aiImportHintCategory.trim(), brand: aiImportHintBrand.trim(), type: aiImportHintType.trim(), }); const parsed = (res && res.products) || []; if (!parsed.length) { setAiImportError('没有从文件里识别出任何产品,换一份更清晰的文件试试'); return; } setAiImportTruncatedWarning(!!(res && res.truncated)); const drafts = parsed.map((p, i) => ({ _localId: 'aidraft_' + i + '_' + Math.random().toString(36).slice(2, 6), include: true, name: p.name || '', brand: p.brand || '', category: p.category || '', type: p.type || '', machineVariant: p.machineVariant || '', powerOrCapacity: p.powerOrCapacity || '', voltage: p.voltage || '', ratedPower: p.ratedPower || '', ratedPowerUnit: p.ratedPowerUnit || 'VA', powerFactor: p.powerFactor || '', outputPortCount: p.outputPortCount || '', outputPortTypes: Array.isArray(p.outputPortTypes) ? p.outputPortTypes : [], outputPorts: Array.isArray(p.outputPorts) ? p.outputPorts : [], inputVoltage: p.inputVoltage || '', inputVoltageRange: p.inputVoltageRange || '', inputFrequency: p.inputFrequency || '', outputVoltage: p.outputVoltage || '', outputVoltageRange: p.outputVoltageRange || '', transferTime: p.transferTime || '', waveform: p.waveform || '', batteryVoltage: p.batteryVoltage || '', chargeCurrent: p.chargeCurrent || '', frequencyRangeBatteryMode: p.frequencyRangeBatteryMode || '', chargeTime: p.chargeTime || '', lcdDisplay: p.lcdDisplay || '', ledDisplay: p.ledDisplay || '', fullProtection: p.fullProtection || '', alarmInfo: p.alarmInfo || '', interfacePort: p.interfacePort || '', humidity: p.humidity || '', noiseLevel: p.noiseLevel || '', phase: p.phase || '', inputPowerFactor: p.inputPowerFactor || '', transferTimeAcToBattery: p.transferTimeAcToBattery || '', currentCrestRatio: p.currentCrestRatio || '', harmonicDistortion: p.harmonicDistortion || '', efficiencyAcMode: p.efficiencyAcMode || '', efficiencyBatteryMode: p.efficiencyBatteryMode || '', chargingVoltage: p.chargingVoltage || '', optionalSnmp: p.optionalSnmp || '', outputPowerFactor: p.outputPowerFactor || '', parallelUnits: p.parallelUnits || '', overload: p.overload || '', moduleType: p.moduleType || '', moduleCapacity: p.moduleCapacity || '', cellType: p.cellType || '', moduleVoltage: p.moduleVoltage || '', dischargeRate: p.dischargeRate || '', chargeRate: p.chargeRate || '', moduleMaxEnergy: p.moduleMaxEnergy || '', moduleOutputPower: p.moduleOutputPower || '', moduleDimensions: p.moduleDimensions || '', moduleWeight: p.moduleWeight || '', cabinetMaxEnergy: p.cabinetMaxEnergy || '', cabinetRatedVoltage: p.cabinetRatedVoltage || '', cycleLife: p.cycleLife || '', commInterface: p.commInterface || '', protectionFunctions: p.protectionFunctions || '', operatingTemp: p.operatingTemp || '', color: p.color || '', cabinetDimensions: p.cabinetDimensions || '', cabinetWeight: p.cabinetWeight || '', altitude: p.altitude || '', selfDischargeRate: p.selfDischargeRate || '', batteryType: p.batteryType || '', maxChargingVoltage: p.maxChargingVoltage || '', maxChargeDischargeCurrent: p.maxChargeDischargeCurrent || '', maxDcInputPower: p.maxDcInputPower || '', maxDcInputVoltage: p.maxDcInputVoltage || '', mpptVoltageRange: p.mpptVoltageRange || '', startingVoltage: p.startingVoltage || '', maxInputCurrent: p.maxInputCurrent || '', mpptNumber: p.mpptNumber || '', onGridMaxApparentPower: p.onGridMaxApparentPower || '', ratedOutputFrequency: p.ratedOutputFrequency || '', onGridMaxOutputCurrent: p.onGridMaxOutputCurrent || '', offGridRatedApparentPower: p.offGridRatedApparentPower || '', offGridMaxApparentPower: p.offGridMaxApparentPower || '', offGridMaxOutputCurrent: p.offGridMaxOutputCurrent || '', efficiencyMppt: p.efficiencyMppt || '', efficiencyMax: p.efficiencyMax || '', efficiencyEurope: p.efficiencyEurope || '', storageTemp: p.storageTemp || '', cooling: p.cooling || '', protectionClass: p.protectionClass || '', topology: p.topology || '', safetyStandard: p.safetyStandard || '', gridStandard: p.gridStandard || '', otherStandard: p.otherStandard || '', sellingPoints: p.sellingPoints || '', // AI如果在原文里认出了营销卖点/主要特点,会自动填这里 batterySpec: p.batterySpec || '', dimensions: p.dimensions || '', netWeight: p.netWeight || '', notes: p.notes || '', applicationScenarios: p.applicationScenarios || '', container20ft: p.container20ft || '', container40ft: p.container40ft || '', container40hq: p.container40hq || '', extraSpecs: Array.isArray(p.extraSpecs) ? p.extraSpecs.filter(x => x && x.label && x.value) : [], })); setAiImportDrafts(drafts); } catch (e) { setAiImportError(e.message || '解析失败,请重试'); } finally { setAiImportBusy(false); } } function updateAiImportDraft(localId, patch) { setAiImportDrafts(prev => prev.map(d => (d._localId === localId ? { ...d, ...patch } : d))); } function removeAiImportDraft(localId) { setAiImportDrafts(prev => prev.filter(d => d._localId !== localId)); } // 把预览确认过的草稿变成正式产品:大类/品牌/细分品类如果和现有taxonomy的名字不完全一致, // 就当成新增(自动建一个新的类目/品牌/品类),和手动在"产品分组"里新增是同一套逻辑 function resolveCategoriesForImport(categories, drafts) { let cats = categories.map(c => ({ ...c, brands: [...c.brands], types: [...c.types] })); const resolved = drafts.map((d) => { const catName = (d.category || '').trim(); let cat = catName ? cats.find(c => c.name === catName) : null; if (!cat && catName) { cat = { id: 'cat_' + Date.now().toString(36) + Math.random().toString(36).slice(2, 5), name: catName, brands: [], types: [] }; cats.push(cat); } if (cat) { if (d.brand && !cat.brands.includes(d.brand)) cat.brands.push(d.brand); if (d.type && !cat.types.includes(d.type)) cat.types.push(d.type); } return { ...d, categoryId: cat ? cat.id : '' }; }); return { categories: cats, resolved }; } function buildProductFromAiDraft(d, idx) { return { ...blankProduct(), id: 'p_' + Date.now() + '_' + idx + '_' + Math.random().toString(36).slice(2, 7), name: d.name.trim(), brand: d.brand || '', category: d.categoryId || '', type: d.type || '', machineVariant: d.machineVariant || '', powerOrCapacity: d.powerOrCapacity || '', voltage: d.voltage || '', ratedPower: d.ratedPower || '', ratedPowerUnit: d.ratedPowerUnit || 'VA', powerFactor: d.powerFactor || '', outputPortCount: d.outputPortCount || '', outputPortTypes: d.outputPortTypes || [], outputPorts: d.outputPorts || [], inputVoltage: d.inputVoltage || '', inputVoltageRange: d.inputVoltageRange || '', inputFrequency: d.inputFrequency || '', outputVoltage: d.outputVoltage || '', outputVoltageRange: d.outputVoltageRange || '', transferTime: d.transferTime || '', waveform: d.waveform || '', batteryVoltage: d.batteryVoltage || '', chargeCurrent: d.chargeCurrent || '', frequencyRangeBatteryMode: d.frequencyRangeBatteryMode || '', chargeTime: d.chargeTime || '', lcdDisplay: d.lcdDisplay || '', ledDisplay: d.ledDisplay || '', fullProtection: d.fullProtection || '', alarmInfo: d.alarmInfo || '', interfacePort: d.interfacePort || '', humidity: d.humidity || '', noiseLevel: d.noiseLevel || '', phase: d.phase || '', inputPowerFactor: d.inputPowerFactor || '', transferTimeAcToBattery: d.transferTimeAcToBattery || '', currentCrestRatio: d.currentCrestRatio || '', harmonicDistortion: d.harmonicDistortion || '', efficiencyAcMode: d.efficiencyAcMode || '', efficiencyBatteryMode: d.efficiencyBatteryMode || '', chargingVoltage: d.chargingVoltage || '', optionalSnmp: d.optionalSnmp || '', outputPowerFactor: d.outputPowerFactor || '', parallelUnits: d.parallelUnits || '', overload: d.overload || '', moduleType: d.moduleType || '', moduleCapacity: d.moduleCapacity || '', cellType: d.cellType || '', moduleVoltage: d.moduleVoltage || '', dischargeRate: d.dischargeRate || '', chargeRate: d.chargeRate || '', moduleMaxEnergy: d.moduleMaxEnergy || '', moduleOutputPower: d.moduleOutputPower || '', moduleDimensions: d.moduleDimensions || '', moduleWeight: d.moduleWeight || '', cabinetMaxEnergy: d.cabinetMaxEnergy || '', cabinetRatedVoltage: d.cabinetRatedVoltage || '', cycleLife: d.cycleLife || '', commInterface: d.commInterface || '', protectionFunctions: d.protectionFunctions || '', operatingTemp: d.operatingTemp || '', color: d.color || '', cabinetDimensions: d.cabinetDimensions || '', cabinetWeight: d.cabinetWeight || '', altitude: d.altitude || '', selfDischargeRate: d.selfDischargeRate || '', batteryType: d.batteryType || '', maxChargingVoltage: d.maxChargingVoltage || '', maxChargeDischargeCurrent: d.maxChargeDischargeCurrent || '', maxDcInputPower: d.maxDcInputPower || '', maxDcInputVoltage: d.maxDcInputVoltage || '', mpptVoltageRange: d.mpptVoltageRange || '', startingVoltage: d.startingVoltage || '', maxInputCurrent: d.maxInputCurrent || '', mpptNumber: d.mpptNumber || '', onGridMaxApparentPower: d.onGridMaxApparentPower || '', ratedOutputFrequency: d.ratedOutputFrequency || '', onGridMaxOutputCurrent: d.onGridMaxOutputCurrent || '', offGridRatedApparentPower: d.offGridRatedApparentPower || '', offGridMaxApparentPower: d.offGridMaxApparentPower || '', offGridMaxOutputCurrent: d.offGridMaxOutputCurrent || '', efficiencyMppt: d.efficiencyMppt || '', efficiencyMax: d.efficiencyMax || '', efficiencyEurope: d.efficiencyEurope || '', storageTemp: d.storageTemp || '', cooling: d.cooling || '', protectionClass: d.protectionClass || '', topology: d.topology || '', safetyStandard: d.safetyStandard || '', gridStandard: d.gridStandard || '', otherStandard: d.otherStandard || '', sellingPoints: d.sellingPoints || '', batterySpec: d.batterySpec || '', dimensions: d.dimensions || '', netWeight: d.netWeight || '', notes: d.notes || '', applicationScenarios: d.applicationScenarios || '', container20ft: d.container20ft || '', container40ft: d.container40ft || '', container40hq: d.container40hq || '', extraSpecs: Array.isArray(d.extraSpecs) ? d.extraSpecs.filter(x => x && x.label && x.value) : [], }; } function confirmAiImport() { const included = (aiImportDrafts || []).filter(d => d.include && d.name.trim()); if (!included.length) { notify('没有勾选任何要导入的产品'); return; } const { categories: newCats, resolved } = resolveCategoriesForImport(productCategories, included); let working = products; let newCount = 0; let collisionCount = 0; resolved.forEach((d, idx) => { const productData = buildProductFromAiDraft(d, idx); const res = upsertProductByName(working, productData); working = res.list; if (res.collision) collisionCount++; else if (res.isNew) newCount++; }); setProducts(working); setProductCategories(newCats); const parts = []; if (newCount) parts.push(`新建 ${newCount} 个`); if (collisionCount) parts.push(`型号已存在,覆盖更新为最新参数 ${collisionCount} 个`); notify(`导入完成:${parts.join(',')}`); closeAiImport(); } /* --------------------------- quotes / invoices --------------------------- */ function startNewQuote(type) { const draft = blankQuote(type); draft.number = suggestDocNumber(draft.date, quotes, type); if (type === 'invoice') { const seller = sellerProfiles.find(sp => sp.id === draft.sellerProfileId); if (seller && seller.bankInfo) draft.bankInfo = seller.bankInfo; } setQuoteDraft(draft); setQuoteSubView('editor'); } function startEditQuote(q) { setQuoteDraft({ ...q, lineItems: q.lineItems.map(li => ({ ...li })) }); setQuoteSubView('editor'); } function duplicateQuote(quote) { const copy = { ...quote, id: 'q_' + Date.now() + '_' + Math.random().toString(36).slice(2, 7), lineItems: quote.lineItems.map(li => ({ ...li, id: 'li_' + Date.now() + '_' + Math.random().toString(36).slice(2, 6) })), }; copy.number = suggestDocNumber(copy.date, quotes, copy.type); setQuoteDraft(copy); setQuoteSubView('editor'); notify('已复制为新草稿,请检查单号后保存'); } function convertQuoteToInvoice(quote) { const draft = blankQuote('invoice'); draft.sellerProfileId = quote.sellerProfileId; draft.customerId = quote.customerId; draft.billToName = quote.billToName; draft.currency = quote.currency; draft.lineItems = quote.lineItems.map(li => ({ ...li, id: 'li_' + Date.now() + '_' + Math.random().toString(36).slice(2, 6) })); draft.notes = quote.notes; draft.number = suggestDocNumber(draft.date, quotes, 'invoice'); const seller = sellerProfiles.find(sp => sp.id === draft.sellerProfileId); if (seller && seller.bankInfo) draft.bankInfo = seller.bankInfo; setQuoteDraft(draft); setQuoteSubView('editor'); notify('已基于该Quote创建Invoice草稿,补充Ship To / Payment Terms后保存'); } function backToQuoteList() { setQuoteDraft(null); setQuoteSubView('list'); } function updateQuoteDraft(patch) { setQuoteDraft(d => ({ ...d, ...patch })); } function handleLinkCustomer(customerId) { if (!customerId) { updateQuoteDraft({ customerId: '', billToName: '' }); return; } const cust = customers.find(c => c.id === customerId); if (!cust) return; updateQuoteDraft({ customerId, billToName: billPartyName(cust) }); } function addLineItem() { setQuoteDraft(d => ({ ...d, lineItems: [...d.lineItems, blankLineItem()] })); } function removeLineItem(liId) { setQuoteDraft(d => ({ ...d, lineItems: d.lineItems.filter(li => li.id !== liId) })); } function updateLineItem(liId, patch) { setQuoteDraft(d => ({ ...d, lineItems: d.lineItems.map(li => (li.id === liId ? { ...li, ...patch } : li)) })); } function handleSellerChange(sellerId) { const seller = sellerProfiles.find(sp => sp.id === sellerId); updateQuoteDraft({ sellerProfileId: sellerId, bankInfo: (seller && seller.bankInfo) || '', }); } function handleCurrencyChange(newCurrency) { if (!quoteDraft || newCurrency === quoteDraft.currency) return; const oldCurrency = quoteDraft.currency; const rateStr = window.prompt(`1 ${oldCurrency} = ? ${newCurrency}\n请输入汇率,所有产品单价会按这个汇率自动换算(不会改动数量)`, ''); if (rateStr === null) return; const rate = parseFloat(rateStr); if (!rate || rate <= 0) { notify('汇率输入无效,币种未切换'); return; } const newLineItems = quoteDraft.lineItems.map(li => ({ ...li, rate: li.rate !== '' && li.rate != null ? String(Math.round((parseFloat(li.rate) || 0) * rate * 100) / 100) : li.rate, })); updateQuoteDraft({ currency: newCurrency, lineItems: newLineItems }); notify(`已按 1 ${oldCurrency} = ${rate} ${newCurrency} 换算单价`); } function saveQuoteDraft() { if (!quoteDraft.number.trim()) { notify('请填写单号'); return; } setQuotes(prev => { const exists = prev.some(q => q.id === quoteDraft.id); return exists ? prev.map(q => (q.id === quoteDraft.id ? quoteDraft : q)) : [...prev, quoteDraft]; }); notify('已保存'); setQuoteDraft(null); setQuoteSubView('list'); } function deleteQuote(id) { if (!window.confirm('确定删除这份文档?此操作不可恢复。')) return; setQuotes(prev => prev.filter(q => q.id !== id)); notify('已删除'); } function handlePrint() { window.print(); } function toggleQuoteNoteLine(line) { const lines = quoteDraft.notes.split('\n').map(l => l.trim()).filter(Boolean); if (lines.includes(line)) { updateQuoteDraft({ notes: lines.filter(l => l !== line).join('\n') }); } else { updateQuoteDraft({ notes: [...lines, line].join('\n') }); } } async function handleExportPdf() { setPdfExporting(true); const el = document.querySelector('.doc-preview'); let originalBorder, originalBoxShadow; try { const mod = await import('html2pdf.js'); const html2pdf = mod.default || mod; if (!el) { notify('找不到预览内容'); return; } // html2canvas snapshots the on-screen styling as-is (it doesn't apply the // @media print override), so the card border/shadow that's nice on screen // would otherwise show up baked into the exported PDF — strip it first. originalBorder = el.style.border; originalBoxShadow = el.style.boxShadow; el.style.border = 'none'; el.style.boxShadow = 'none'; const filename = `${quoteDraft.type === 'invoice' ? 'Invoice' : 'Quote'}_${quoteDraft.number || 'draft'}.pdf`; await html2pdf().set({ margin: 10, filename, image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2 }, jsPDF: { unit: 'mm', format: 'a4', orientation: 'portrait' }, pagebreak: { mode: ['css'], avoid: ['tr', 'img'] }, }).from(el).save(); } catch (e) { notify('导出PDF失败,请重试'); } finally { if (el) { el.style.border = originalBorder || ''; el.style.boxShadow = originalBoxShadow || ''; } setPdfExporting(false); } } /* -------------------------------- packing lists -------------------------------- */ function startNewPackingList() { const draft = blankPackingList(); draft.number = suggestDocNumber(draft.date, packingLists, 'packing'); setPackingDraft(draft); setPackingSubView('editor'); } function startEditPackingList(pl) { setPackingDraft({ ...pl, lineItems: pl.lineItems.map(li => ({ ...li })) }); setPackingSubView('editor'); } function duplicatePackingList(pl) { const copy = { ...pl, id: 'pl_' + Date.now() + '_' + Math.random().toString(36).slice(2, 7), lineItems: pl.lineItems.map(li => ({ ...li, id: 'pli_' + Date.now() + '_' + Math.random().toString(36).slice(2, 6) })), }; copy.number = suggestDocNumber(copy.date, packingLists, 'packing'); setPackingDraft(copy); setPackingSubView('editor'); notify('已复制为新草稿,请检查单号后保存'); } function convertQuoteToPackingList(quote) { const draft = blankPackingList(); draft.sellerProfileId = quote.sellerProfileId; draft.customerId = quote.customerId; draft.billToName = quote.billToName; draft.lineItems = quote.lineItems.map(li => ({ id: 'pli_' + Date.now() + '_' + Math.random().toString(36).slice(2, 6), description: li.description, qty: li.quantity, cartons: '', grossWeight: '', netWeight: '', volume: '', })); draft.number = suggestDocNumber(draft.date, packingLists, 'packing'); setPackingDraft(draft); setPackingSubView('editor'); setView('packing'); notify('已基于该文档创建箱单草稿,补充箱数/重量/体积后保存'); } function backToPackingList() { setPackingDraft(null); setPackingSubView('list'); } function updatePackingDraft(patch) { setPackingDraft(d => ({ ...d, ...patch })); } function handleLinkPackingCustomer(customerId) { if (!customerId) { updatePackingDraft({ customerId: '', billToName: '' }); return; } const cust = customers.find(c => c.id === customerId); if (!cust) return; updatePackingDraft({ customerId, billToName: billPartyName(cust) }); } function addPackingLineItem() { setPackingDraft(d => ({ ...d, lineItems: [...d.lineItems, blankPackingLineItem()] })); } function removePackingLineItem(liId) { setPackingDraft(d => ({ ...d, lineItems: d.lineItems.filter(li => li.id !== liId) })); } function updatePackingLineItem(liId, patch) { setPackingDraft(d => ({ ...d, lineItems: d.lineItems.map(li => (li.id === liId ? { ...li, ...patch } : li)) })); } function savePackingDraft() { if (!packingDraft.number.trim()) { notify('请填写单号'); return; } setPackingLists(prev => { const exists = prev.some(p => p.id === packingDraft.id); return exists ? prev.map(p => (p.id === packingDraft.id ? packingDraft : p)) : [...prev, packingDraft]; }); notify('已保存'); setPackingDraft(null); setPackingSubView('list'); } function deletePackingList(id) { if (!window.confirm('确定删除这份箱单?此操作不可恢复。')) return; setPackingLists(prev => prev.filter(p => p.id !== id)); notify('已删除'); } async function handleExportPackingPdf() { setPackingPdfExporting(true); const el = document.querySelector('.doc-preview'); let originalBorder, originalBoxShadow; try { const mod = await import('html2pdf.js'); const html2pdf = mod.default || mod; if (!el) { notify('找不到预览内容'); return; } originalBorder = el.style.border; originalBoxShadow = el.style.boxShadow; el.style.border = 'none'; el.style.boxShadow = 'none'; const filename = `PackingList_${packingDraft.number || 'draft'}.pdf`; await html2pdf().set({ margin: 10, filename, image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2 }, jsPDF: { unit: 'mm', format: 'a4', orientation: 'portrait' }, pagebreak: { mode: ['css'], avoid: ['tr', 'img'] }, }).from(el).save(); } catch (e) { notify('导出PDF失败,请重试'); } finally { if (el) { el.style.border = originalBorder || ''; el.style.boxShadow = originalBoxShadow || ''; } setPackingPdfExporting(false); } } /* ------------------------------ seller profiles ----------------------------- */ function updateSellerProfile(id, patch) { setSellerProfiles(prev => prev.map(sp => (sp.id === id ? { ...sp, ...patch } : sp))); } function addSellerProfile() { const id = 'seller_' + Date.now().toString(36); setSellerProfiles(prev => [...prev, { id, name: '新公司名称', address: '', logoFileName: '', bankInfo: '' }]); } function deleteSellerProfile(id) { if (sellerProfiles.length <= 1) { notify('至少要保留一个卖方信息'); return; } if (!window.confirm('确定删除这个卖方信息?')) return; setSellerProfiles(prev => prev.filter(sp => sp.id !== id)); } async function handleSellerLogoPick(id, file) { if (!file) return; setSellerLogoUploading(true); try { const res = await uploadFile(id, file); updateSellerProfile(id, { logoFileName: res.fileName }); notify('Logo已上传'); } catch (e) { notify('上传失败'); } finally { setSellerLogoUploading(false); } } async function handleAddCertificationFile(file) { if (!file) return; setCertUploading(true); try { const id = 'cert_' + Date.now().toString(36) + Math.random().toString(36).slice(2, 6); const res = await uploadFile(id, file); const entry = { id, brand: '', fileName: res.fileName }; setCertifications(prev => [entry, ...prev]); setEditingCertId(id); setCertBrandDraft(''); } catch (e) { notify('上传失败,请重试'); } finally { setCertUploading(false); } } function handleCertFilesSelected(files) { Array.from(files || []).forEach(f => handleAddCertificationFile(f)); } function startEditCertBrand(cert) { setEditingCertId(cert.id); setCertBrandDraft(cert.brand || ''); } function saveCertBrand() { setCertifications(prev => prev.map(c => (c.id === editingCertId ? { ...c, brand: certBrandDraft.trim() } : c))); setEditingCertId(null); setCertBrandDraft(''); } async function deleteCertification(cert) { if (!window.confirm('确定删除这张授权证书?此操作不可恢复。')) return; try { await deleteFile(cert.id, cert.fileName); } catch (e) {} setCertifications(prev => prev.filter(c => c.id !== cert.id)); if (editingCertId === cert.id) setEditingCertId(null); } if (!loaded) { return (
加载中…
); } return (
{viewTitle(view)}
{mobileMenuOpen &&
setMobileMenuOpen(false)} />}
客户档案系统
Customer Console
{NAV_GROUPS.map(group => (
{group.label}
{group.items.map(item => { const Icon = item.icon; return (
{ setView(item.id); setMobileMenuOpen(false); }} > {item.label}
); })}
))}
{STANDALONE_NAV.map(item => { const Icon = item.icon; return (
{ setView(item.id); setMobileMenuOpen(false); }} > {item.label}
); })}
{username}
{view === 'monitor' && ( <>
VIP客户
拖动卡片可调整组内顺序
{ setDragCustomerIdx(idx); setDragCustomerVip(vipFlag); }} onDrop={handleCustomerDrop} onDragEnd={() => setDragCustomerIdx(null)} now={now} onView={(id) => { setView('manage'); setDraft(null); setSelectedId(id); }} />
全部客户
拖动卡片可调整组内顺序
{ setDragCustomerIdx(idx); setDragCustomerVip(vipFlag); }} onDrop={handleCustomerDrop} onDragEnd={() => setDragCustomerIdx(null)} now={now} onView={(id) => { setView('manage'); setDraft(null); setSelectedId(id); }} /> )} {view === 'manage' && (
setSearch(e.target.value)} />
{filteredCustomers.length === 0 ? (
暂无客户,点击上方按钮添加第一个
) : filteredCustomers.map(c => { const showCompanyInSub = customerTitleIsModel(c) && c.company; return (
{ setDraft(null); setSelectedId(c.id); }}>
{c.isVip && VIP} {c.hasOrdered && 已下单} {customerTitle(c)}
{showCompanyInSub && `${c.company} · `}{regionLabel(c.region)} · {c.country || '—'}{localTimeInfo(c.country, now) && ` · 当地 ${localTimeInfo(c.country, now).time}`}
); })}
{draft ? ( ) : selected ? ( startEditCustomer(selected)} onDelete={() => deleteCustomer(selected.id)} onTogglePreferred={(channel) => togglePreferredContact(selected.id, channel)} onToggleVip={() => toggleVip(selected.id)} onToggleOrdered={() => toggleOrdered(selected.id)} attachmentNote={attachmentNote} setAttachmentNote={setAttachmentNote} attachmentCategory={attachmentCategory} setAttachmentCategory={setAttachmentCategory} attachmentFileNames={attachmentFiles.map(f => f.name)} onPickAttachment={(files) => setAttachmentFiles(files)} uploading={uploading} fileInputKey={fileInputKey} onUploadAttachment={(folderId) => handleUploadAttachment(selected.id, folderId)} onDeleteAttachment={(fileName) => handleDeleteAttachment(selected.id, fileName)} onMoveAttachment={(fileName, folderId) => moveAttachmentToFolder(selected.id, fileName, folderId)} onCreateFolder={(parentId, name) => createFolder(selected.id, parentId, name)} onRenameFolder={(folderId, name) => renameFolder(selected.id, folderId, name)} onDeleteFolder={(folderId) => deleteFolder(selected.id, folderId)} fileDragActive={fileDragActive} onFileDragOver={handleFileDragOver} onFileDragLeave={handleFileDragLeave} onFileDrop={handleFileDrop} /> ) : (
选择左侧客户查看详情,或新建一个客户档案
)}
)} {view === 'jms' && ( )} {view === 'groups' && ( <>
按产品大类分组浏览;每个类目右上角管理品牌,类目内第二行管理类型;新建产品时先选类目,再从对应的品牌 / 类型里选。
{productCategories.map(cat => { const items = products.filter(p => p.category === cat.id); return (
{cat.name}({items.length})
{items.length === 0 ? (
暂无产品
) : items.map((p, idx) => (
setDragGroupState({ category: cat.id, index: idx })} onDragOver={(e) => e.preventDefault()} onDrop={() => handleGroupDrop(cat.id, idx)} onDragEnd={() => setDragGroupState(null)} >
{p.name || '(未命名)'}
{categoryBreadcrumb(p, productCategories)}{p.brand ? ` · ${p.brand}` : ''}
))}
); })} {addingPill && addingPill.kind === 'category' ? (
setAddingPillValue(e.target.value)} onBlur={confirmAddPill} onKeyDown={e => { if (e.key === 'Enter') e.currentTarget.blur(); if (e.key === 'Escape') cancelAddPill(); }} placeholder="新类目名称,如:精密空调" />
) : (
openAddPill(null, 'category')}> 新增类目
)} )} {view === 'products' && (
setProductSearch(e.target.value)} />
{filteredProducts.length === 0 ? (
暂无产品,点击上方按钮添加第一个
) : filteredProducts.map(p => (
{ setProductDraft(null); setSelectedProductId(p.id); }}>
{p.name || '(未命名)'}
{categoryBreadcrumb(p, productCategories)}{p.brand ? ` · ${p.brand}` : ''}
))}
{productDraft ? ( setTaxManageMode(mode)} onNotify={notify} backPanelTemplates={backPanelTemplates} /> ) : selectedProduct ? ( startEditProduct(selectedProduct)} onDelete={() => deleteProduct(selectedProduct.id)} categories={productCategories} exportLang={productExportLang} onExportLangChange={setProductExportLang} exportLabels={productExportLabels} exportLoading={productExportLoading} onExportPdf={handleExportProductPdf} exportPdfBusy={productExportPdfBusy} backPanelTemplates={backPanelTemplates} /> ) : (
选择左侧产品查看详情,或新建一个产品档案
)}
)} {view === 'backpanel' && ( )} {view === 'catalog' && (
{catalogDocs.length === 0 ? (
暂无产品目录,点击右上角"+"或把PDF拖到这里上传第一份样本
) : filteredCatalogDocs.length === 0 ? (
这个类别下还没有产品目录
) : (
{filteredCatalogDocs.map((doc, idx) => { const isEditing = editingCatalogId === doc.id; const activeCategoryId = isEditing ? catalogEditDraft.category : doc.category; const cat = productCategories.find(c => c.id === activeCategoryId); const brandOptions = cat ? cat.brands : []; const typeOptions = cat ? cat.types : []; return (
{ e.stopPropagation(); setDragCatalogDocIdx(idx); }} onDragOver={(e) => { e.preventDefault(); e.stopPropagation(); }} onDrop={(e) => { e.stopPropagation(); handleCatalogDocDrop(idx); }} onDragEnd={() => setDragCatalogDocIdx(null)} >
{doc.uploading ? (
正在上传…
{doc.originalName}
) : ( <>
{doc.originalName}
)}
{isEditing ? (
updateCatalogEditDraft({ title: e.target.value })} onKeyDown={e => { if (e.key === 'Enter') saveCatalogEdit(); }} placeholder="目录名称,如:SKE产品样本" /> {catalogEditDraft.category && ( <> )}
) : (
!doc.uploading && startEditCatalogDoc(doc)} style={{ cursor: doc.uploading ? 'default' : 'pointer' }}>
{doc.uploading ? '上传完成后可填写' : (doc.title || '点击填写目录名称')}
{(doc.category || doc.brand || doc.type) && (
{[cat && cat.name, doc.brand, doc.type].filter(Boolean).join(' · ')}
)}
)}
); })}
)}
)} {view === 'certs' && ( <>
{certifications.length === 0 ? (
暂无授权证书,点击右上角"+"上传第一张
) : (
{certifications.map(cert => (
{cert.brand
{editingCertId === cert.id ? ( setCertBrandDraft(e.target.value)} onBlur={saveCertBrand} onKeyDown={e => { if (e.key === 'Enter') e.currentTarget.blur(); }} placeholder="品牌名称" /> ) : (
startEditCertBrand(cert)} > {cert.brand || '点击填写品牌名'}
)}
))}
)} )} {view === 'suppliers' && (
setSupplierSearch(e.target.value)} />
{filteredSuppliers.length === 0 ? (
暂无供应商,点击上方按钮添加第一个
) : filteredSuppliers.map(s => (
{ setSupplierDraft(null); setSelectedSupplierId(s.id); }}>
{s.name || '(未命名)'}
{s.contact && `${s.contact} · `}{s.mainProducts || '—'}
))}
{supplierDraft ? ( ) : selectedSupplier ? ( startEditSupplier(selectedSupplier)} onDelete={() => deleteSupplier(selectedSupplier.id)} attachmentNote={supplierAttachmentNote} setAttachmentNote={setSupplierAttachmentNote} attachmentFileNames={supplierAttachmentFiles.map(f => f.name)} onPickAttachment={(files) => setSupplierAttachmentFiles(files)} uploading={supplierUploading} fileInputKey={supplierFileInputKey} onUploadAttachment={() => handleUploadSupplierAttachment(selectedSupplier.id)} onDeleteAttachment={(fileName) => handleDeleteSupplierAttachment(selectedSupplier.id, fileName)} fileDragActive={supplierFileDragActive} onFileDragOver={handleSupplierFileDragOver} onFileDragLeave={handleSupplierFileDragLeave} onFileDrop={handleSupplierFileDrop} /> ) : (
选择左侧供应商查看详情,或新建一个供应商档案
)}
)} {view === 'quotes' && quoteSubView === 'list' && ( <>
{quotes.filter(q => quoteTypeFilter === 'all' || q.type === quoteTypeFilter).length === 0 ? (
暂无文档,点击上方按钮新建一份
) : [...quotes].filter(q => quoteTypeFilter === 'all' || q.type === quoteTypeFilter).reverse().map(q => { const { total } = quoteTotals(q); return (
startEditQuote(q)}> {q.type === 'quote' ? 'Quote' : 'Invoice'}
{q.number || '(无单号)'} · {q.billToName || '(未填写客户)'}
{q.date} · {formatMoney(total, q.currency)}
{q.type === 'quote' && ( )}
); })}
)} {view === 'quotes' && quoteSubView === 'editor' && quoteDraft && ( setSellerManagerOpen(true)} onToggleNoteLine={toggleQuoteNoteLine} priceHistory={priceHistory} /> )} {view === 'packing' && packingSubView === 'list' && ( <>
{packingLists.length === 0 ? (
暂无箱单,点击上方按钮新建一份,也可以到"报价单"里把Quote/Invoice转成箱单
) : [...packingLists].reverse().map(pl => { const t = packingTotals(pl); return (
startEditPackingList(pl)}> P/L
{pl.number || '(无单号)'} · {pl.billToName || '(未填写客户)'}
{pl.date} · {t.cartons || 0} 箱 · {t.grossWeight || 0} kg 毛重
); })}
)} {view === 'packing' && packingSubView === 'editor' && packingDraft && ( updatePackingDraft({ sellerProfileId: sellerId })} onAddLineItem={addPackingLineItem} onRemoveLineItem={removePackingLineItem} onUpdateLineItem={updatePackingLineItem} onManageSellers={() => setSellerManagerOpen(true)} /> )} {view === 'settings' && ( <>
数据管理
说明:报价单制作正在开发中,下一轮会上线。
账号与密码
当前登录账号:{username}
当前密码 setPwCurrent(e.target.value)} />
新密码(至少4位) setPwNew(e.target.value)} />
这个系统现在挂在公网上,定期更换密码、不要把密码告诉别人。
AI 跟进文案(DeepSeek)
状态:{aiConfigHasKey ? 已配置 : 未配置}
DeepSeek API Key setAiKeyInput(e.target.value)} placeholder={aiConfigHasKey ? '已设置,重新填写可覆盖' : '在 platform.deepseek.com 申请'} />
{aiConfigHasKey && }
用于"产品管理"里的产品目录批量导入功能,调用DeepSeek官方API识别目录文档生成产品字段。成本很低(单次生成大概几分钱以内人民币,按你自己DeepSeek账户余额实际扣费),Key只会加密保存在服务器本地,不会显示给任何人。
)}
{exportOpen && (
setExportOpen(false)}>
e.stopPropagation()}>
数据备份(JSON)