462 lines
17 KiB
TypeScript
462 lines
17 KiB
TypeScript
import path from 'path'
|
|
import fs from 'fs/promises'
|
|
import { ExtractorCore } from './extractor-core'
|
|
import { ErpAuthService } from './erp-auth'
|
|
import { ExcelParser } from '../excel/excel-parser'
|
|
import type {
|
|
ExtractorInput,
|
|
ExtractorResult,
|
|
ImportResult,
|
|
LogLevel
|
|
} from '../../types/extractor.types'
|
|
import { DataImportService } from '../database/data-importer'
|
|
import { createLogger, withRequestContext, getRequestId } from '../logger'
|
|
import { trackDuration } from '../logger/performance-monitor'
|
|
|
|
const log = createLogger('ExtractorService')
|
|
|
|
/**
|
|
* ERP Data Extractor Service
|
|
* Downloads material plan data for given order numbers
|
|
*
|
|
* This service orchestrates the extraction process:
|
|
* - Uses ExtractorCore for web page operations
|
|
* - Handles file merging and cleanup
|
|
*
|
|
* Reference: playwrite/utils/discrete_material_plan_extractor.py
|
|
*/
|
|
export class ExtractorService {
|
|
private authService: ErpAuthService
|
|
private downloadDir: string
|
|
|
|
constructor(authService: ErpAuthService, downloadDir = './downloads') {
|
|
this.authService = authService
|
|
this.downloadDir = downloadDir
|
|
|
|
// Ensure download directory exists
|
|
fs.mkdir(downloadDir, { recursive: true }).catch(() => {})
|
|
}
|
|
|
|
/**
|
|
* Extract data for given order numbers
|
|
* Orchestrates the extraction process by delegating web operations to ExtractorCore
|
|
* and handling file merging/cleanup
|
|
*/
|
|
async extract(input: ExtractorInput): Promise<ExtractorResult> {
|
|
const result: ExtractorResult = {
|
|
downloadedFiles: [],
|
|
mergedFile: null,
|
|
recordCount: 0,
|
|
errors: [],
|
|
orderRecordCounts: []
|
|
}
|
|
|
|
// Wrap entire extraction in request context for unified logging
|
|
return withRequestContext(
|
|
async () => {
|
|
const requestId = getRequestId()
|
|
log.info('Starting extraction', {
|
|
orderCount: input.orderNumbers.length,
|
|
batchSize: input.batchSize || 100,
|
|
downloadDir: this.downloadDir,
|
|
requestId
|
|
})
|
|
|
|
try {
|
|
const session = this.authService.getSession()
|
|
|
|
// Call ExtractorCore to execute web page operations with timing
|
|
const core = new ExtractorCore()
|
|
const coreResult = await trackDuration(
|
|
async () =>
|
|
core.downloadAllBatches({
|
|
session,
|
|
orderNumbers: input.orderNumbers,
|
|
downloadDir: this.downloadDir,
|
|
batchSize: input.batchSize || 100,
|
|
onProgress: input.onProgress
|
|
}),
|
|
{
|
|
operationName: 'Batch Download',
|
|
context: {
|
|
orderCount: input.orderNumbers.length,
|
|
batchSize: input.batchSize || 100
|
|
}
|
|
}
|
|
)
|
|
|
|
result.downloadedFiles = coreResult.result.downloadedFiles
|
|
result.errors = coreResult.result.errors
|
|
|
|
// Merge downloaded files (original logic preserved)
|
|
if (result.downloadedFiles.length > 0) {
|
|
const totalBatches = result.downloadedFiles.length
|
|
const totalPoints = 1 + totalBatches + 2
|
|
const progressPerPoint = 100 / totalPoints
|
|
const mergeProgress = (1 + totalBatches) * progressPerPoint
|
|
|
|
input.onProgress?.('正在合并文件...', mergeProgress, {
|
|
phase: 'merging',
|
|
totalBatches
|
|
})
|
|
const mergeResult = await this.mergeFiles(result.downloadedFiles, input.orderNumbers)
|
|
result.mergedFile = mergeResult.mergedFile
|
|
result.recordCount = mergeResult.recordCount
|
|
result.orderRecordCounts = mergeResult.orderRecordCounts
|
|
|
|
// Add merge error to result if any
|
|
if (mergeResult.error) {
|
|
result.errors.push(mergeResult.error)
|
|
}
|
|
|
|
// Always clean up temporary files regardless of merge success
|
|
await this.cleanupTempFiles(result.downloadedFiles, input.orderNumbers)
|
|
|
|
// Auto-import to database if merge was successful
|
|
if (result.mergedFile) {
|
|
const importProgress = (1 + totalBatches + 1) * progressPerPoint
|
|
input.onProgress?.('正在写入数据库...', importProgress, {
|
|
phase: 'importing',
|
|
totalBatches
|
|
})
|
|
const importResult = await this.importToDatabaseWithLogging(
|
|
result.mergedFile,
|
|
input.onLog
|
|
)
|
|
result.importResult = importResult
|
|
|
|
if (!importResult.success && importResult.errors.length > 0) {
|
|
result.errors.push(...importResult.errors)
|
|
}
|
|
}
|
|
}
|
|
|
|
log.info('Extraction completed successfully', {
|
|
recordCount: result.recordCount,
|
|
fileCount: result.downloadedFiles.length
|
|
})
|
|
} catch (error) {
|
|
const message = error instanceof Error ? error.message : 'Unknown error'
|
|
log.error('Extraction failed', {
|
|
error: message,
|
|
orderNumbers: input.orderNumbers,
|
|
downloadDir: this.downloadDir,
|
|
requestId: getRequestId()
|
|
})
|
|
result.errors.push(`Extraction failed: ${message}`)
|
|
}
|
|
|
|
return result
|
|
},
|
|
{ operation: 'extract' }
|
|
)
|
|
}
|
|
|
|
/**
|
|
* Merge downloaded Excel files into a single file
|
|
* Uses ExcelParser to parse and combine all material plans
|
|
*
|
|
* @param filePaths - Array of downloaded Excel file paths
|
|
* @param orderNumbers - Order numbers for context logging
|
|
* @returns Merged file path, total record count, and optional error message
|
|
*/
|
|
private async mergeFiles(
|
|
filePaths: string[],
|
|
orderNumbers: string[]
|
|
): Promise<{
|
|
mergedFile: string | null
|
|
recordCount: number
|
|
error?: string
|
|
orderRecordCounts: Array<{ orderNumber: string; recordCount: number }>
|
|
}> {
|
|
if (filePaths.length === 0) {
|
|
return { mergedFile: null, recordCount: 0, orderRecordCounts: [] }
|
|
}
|
|
|
|
log.info('Starting merge', { fileCount: filePaths.length, orderCount: orderNumbers.length })
|
|
|
|
// Track merge operation duration and unwrap result
|
|
const trackedResult = await trackDuration(
|
|
async () => {
|
|
const parser = new ExcelParser()
|
|
|
|
// Collect all orders with full order info and materials
|
|
// Each order has: { orderInfo: OrderHeader, materials: MaterialRow[] }
|
|
const allOrders: Array<{ orderInfo: any; materials: any[] }> = []
|
|
|
|
// Parse each downloaded file and collect orders
|
|
for (const filePath of filePaths) {
|
|
try {
|
|
log.debug('Parsing file', { filePath })
|
|
await parser.parse(filePath)
|
|
// After parse(), the parser store orders internally as lastOrders
|
|
const orders = (parser as any).lastOrders
|
|
log.debug('File parsed', { filePath, orderCount: orders?.length || 0 })
|
|
if (orders && Array.isArray(orders)) {
|
|
allOrders.push(...orders)
|
|
}
|
|
} catch (error) {
|
|
const errorMsg = error instanceof Error ? error.message : String(error)
|
|
log.error('Failed to parse file', {
|
|
filePath,
|
|
error: errorMsg,
|
|
orderNumbers,
|
|
batchId: filePaths.indexOf(filePath)
|
|
})
|
|
}
|
|
}
|
|
|
|
// Calculate total record count (total material rows)
|
|
let recordCount = 0
|
|
const orderRecordCounts: Array<{ orderNumber: string; recordCount: number }> = []
|
|
for (const order of allOrders) {
|
|
const count = order.materials.length
|
|
recordCount += count
|
|
orderRecordCounts.push({
|
|
orderNumber: order.orderInfo.productionOrder || '',
|
|
recordCount: count
|
|
})
|
|
}
|
|
|
|
log.info('Merge summary', { orderCount: allOrders.length, recordCount })
|
|
|
|
if (recordCount === 0) {
|
|
log.warn('No records found in any downloaded files', { orderNumbers })
|
|
return { mergedFile: null, recordCount: 0, orderRecordCounts }
|
|
}
|
|
|
|
// Generate output filename with timestamp
|
|
const timestamp = new Date()
|
|
.toISOString()
|
|
.replace(/[-:T]/g, '')
|
|
.replace(/\..+/, '')
|
|
.slice(0, 14)
|
|
const outputPath = path.join(this.downloadDir, `merged_${timestamp}.xlsx`)
|
|
|
|
// Save with error handling
|
|
try {
|
|
log.info('Saving merged file', { outputPath })
|
|
await this.saveMergedOrders(allOrders, outputPath)
|
|
log.info('Merged file saved successfully', { recordCount })
|
|
return { mergedFile: outputPath, recordCount, orderRecordCounts }
|
|
} catch (error) {
|
|
const errorMsg = error instanceof Error ? error.message : String(error)
|
|
const errorStack = error instanceof Error ? error.stack : ''
|
|
log.error('Failed to save merged file', {
|
|
error: errorMsg,
|
|
stack: errorStack,
|
|
orderNumbers,
|
|
downloadDir: this.downloadDir
|
|
})
|
|
// Return parsed record count and error info even if save fails
|
|
return {
|
|
mergedFile: null,
|
|
recordCount,
|
|
orderRecordCounts,
|
|
error: `保存合并文件失败:${errorMsg}`
|
|
}
|
|
}
|
|
},
|
|
{
|
|
operationName: 'File Merge',
|
|
context: {
|
|
fileCount: filePaths.length,
|
|
orderCount: orderNumbers.length,
|
|
orderNumbers
|
|
}
|
|
}
|
|
)
|
|
|
|
return trackedResult.result
|
|
}
|
|
|
|
/**
|
|
* Save merged orders to a new Excel file with full 31 columns
|
|
* Matches the output format of ExcelParser.saveAsExcel()
|
|
*/
|
|
private async saveMergedOrders(
|
|
orders: Array<{ orderInfo: any; materials: any[] }>,
|
|
outputPath: string
|
|
): Promise<void> {
|
|
log.debug('Loading ExcelJS')
|
|
const ExcelJSModule = await import('exceljs')
|
|
// Handle both ESM and CommonJS module formats
|
|
const ExcelJS = ExcelJSModule.default || ExcelJSModule
|
|
log.debug('ExcelJS loaded, creating workbook')
|
|
|
|
const workbook = new ExcelJS.Workbook()
|
|
const worksheet = workbook.addWorksheet('Data')
|
|
|
|
// Define all 31 columns matching ExcelParser.saveAsExcel output format
|
|
worksheet.columns = [
|
|
{ header: '工厂', key: 'factory', width: 25 },
|
|
{ header: '备料状态', key: 'materialStatus', width: 15 },
|
|
{ header: '备料计划单号', key: 'planNumber', width: 25 },
|
|
{ header: '来源单号', key: 'productionOrder', width: 20 },
|
|
{ header: '备料类型', key: 'materialType', width: 15 },
|
|
{ header: '产品编码', key: 'productCode', width: 15 },
|
|
{ header: '产品名称', key: 'productName', width: 30 },
|
|
{ header: '产品计划数量', key: 'productPlannedQuantity', width: 15 },
|
|
{ header: '产品单位', key: 'productUnit', width: 10 },
|
|
{ header: '用料部门', key: 'department', width: 15 },
|
|
{ header: '备注', key: 'remark', width: 20 },
|
|
{ header: '制单人', key: 'creator', width: 15 },
|
|
{ header: '制单日期', key: 'createDate', width: 15 },
|
|
{ header: '审批人', key: 'approver', width: 15 },
|
|
{ header: '审批日期', key: 'approveDate', width: 15 },
|
|
{ header: '序号', key: 'sequence', width: 10 },
|
|
{ header: '材料编码', key: 'materialCode', width: 15 },
|
|
{ header: '材料名称', key: 'materialName', width: 30 },
|
|
{ header: '规格', key: 'specification', width: 30 },
|
|
{ header: '型号', key: 'model', width: 20 },
|
|
{ header: '图号', key: 'drawingNumber', width: 20 },
|
|
{ header: '物料材质', key: 'material', width: 15 },
|
|
{ header: '计划数量', key: 'quantity', width: 12 },
|
|
{ header: '单位', key: 'unit', width: 10 },
|
|
{ header: '需用日期', key: 'requiredDate', width: 15 },
|
|
{ header: '发料仓库', key: 'warehouse', width: 15 },
|
|
{ header: '单位用量', key: 'unitUsage', width: 12 },
|
|
{ header: '累计出库数量', key: 'cumulativeOutboundQty', width: 15 },
|
|
{ header: '打印人', key: 'printer', width: 15 },
|
|
{ header: '打印日期', key: 'printDate', width: 20 }
|
|
]
|
|
|
|
log.debug('Adding orders to worksheet', { orderCount: orders.length })
|
|
// Add data rows - merge orderInfo with each material
|
|
for (const order of orders) {
|
|
const { orderInfo, materials } = order
|
|
|
|
for (const material of materials) {
|
|
worksheet.addRow({
|
|
// Order info (first 15 columns)
|
|
factory: orderInfo.factory || '',
|
|
materialStatus: orderInfo.materialStatus || '',
|
|
planNumber: orderInfo.planNumber || '',
|
|
productionOrder: orderInfo.productionOrder || '',
|
|
materialType: orderInfo.materialType || '',
|
|
productCode: orderInfo.productCode || '',
|
|
productName: orderInfo.productName || '',
|
|
productPlannedQuantity: orderInfo.plannedQuantity || '',
|
|
productUnit: orderInfo.unit || '',
|
|
department: orderInfo.department || '',
|
|
remark: orderInfo.remark || '',
|
|
creator: orderInfo.creator || '',
|
|
createDate: orderInfo.createDate || '',
|
|
approver: orderInfo.approver || '',
|
|
approveDate: orderInfo.approveDate || '',
|
|
// Material data (columns 16-28)
|
|
sequence: material.sequence || '',
|
|
materialCode: material.materialCode || '',
|
|
materialName: material.materialName || '',
|
|
specification: material.specification || '',
|
|
model: material.model || '',
|
|
drawingNumber: material.drawingNumber || '',
|
|
material: material.material || '',
|
|
quantity: material.quantity || 0,
|
|
unit: material.unit || '',
|
|
requiredDate: material.requiredDate || '',
|
|
warehouse: material.warehouse || '',
|
|
unitUsage: material.unitUsage || 0,
|
|
cumulativeOutboundQty: material.cumulativeOutboundQty || 0,
|
|
// Footer info (last 2 columns)
|
|
printer: orderInfo.printer || '',
|
|
printDate: orderInfo.printDate || ''
|
|
})
|
|
}
|
|
}
|
|
|
|
log.debug('Writing file', { outputPath })
|
|
await workbook.xlsx.writeFile(outputPath)
|
|
log.debug('File saved successfully', { outputPath })
|
|
}
|
|
|
|
/**
|
|
* Clean up temporary batch files after merging
|
|
* @param filePaths - Array of temporary file paths to delete
|
|
*/
|
|
private async cleanupTempFiles(filePaths: string[], orderNumbers?: string[]): Promise<void> {
|
|
for (const filePath of filePaths) {
|
|
try {
|
|
await fs.unlink(filePath)
|
|
log.debug('Deleted temporary file', { filePath })
|
|
} catch (error) {
|
|
// Log error but don't fail the main process
|
|
log.error('Failed to delete temporary file', {
|
|
filePath,
|
|
error,
|
|
orderNumbers,
|
|
downloadDir: this.downloadDir
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Import merged Excel data to database with logging
|
|
* @param filePath - Path to the merged Excel file
|
|
* @param onLog - Optional log callback
|
|
* @returns Import result with statistics
|
|
*/
|
|
private async importToDatabaseWithLogging(
|
|
filePath: string,
|
|
onLog?: (level: LogLevel, message: string) => void
|
|
): Promise<ImportResult> {
|
|
log.info('Starting database import', { filePath })
|
|
onLog?.('info', `开始导入数据到数据库...`)
|
|
|
|
// Track import operation duration and unwrap result
|
|
const trackedResult = await trackDuration(
|
|
async () => {
|
|
const importService = new DataImportService()
|
|
|
|
try {
|
|
const result = await importService.importFromExcel(filePath, 1000)
|
|
|
|
log.info('Import completed', {
|
|
success: result.success,
|
|
recordsRead: result.recordsRead,
|
|
recordsDeleted: result.recordsDeleted,
|
|
recordsImported: result.recordsImported
|
|
})
|
|
|
|
if (result.success) {
|
|
onLog?.(
|
|
'success',
|
|
`导入完成:读取 ${result.recordsRead} 条,删除 ${result.recordsDeleted} 条,导入 ${result.recordsImported} 条`
|
|
)
|
|
} else if (result.errors.length > 0) {
|
|
result.errors.forEach((err) => onLog?.('error', err))
|
|
}
|
|
|
|
return result
|
|
} catch (error) {
|
|
const errorMsg = error instanceof Error ? error.message : String(error)
|
|
log.error('Import failed', {
|
|
error: errorMsg,
|
|
filePath,
|
|
downloadDir: this.downloadDir
|
|
})
|
|
onLog?.('error', `导入失败:${errorMsg}`)
|
|
|
|
return {
|
|
success: false,
|
|
recordsRead: 0,
|
|
recordsDeleted: 0,
|
|
recordsImported: 0,
|
|
uniqueSourceNumbers: 0,
|
|
errors: [errorMsg]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
operationName: 'Database Import',
|
|
context: {
|
|
filePath
|
|
}
|
|
}
|
|
)
|
|
|
|
return trackedResult.result
|
|
}
|
|
}
|