在更新一版,更方便了
This commit is contained in:
parent
556f8d8020
commit
3414df5317
82
OCR订单处理系统.spec
Normal file
82
OCR订单处理系统.spec
Normal file
@ -0,0 +1,82 @@
|
||||
|
||||
# -*- mode: python ; coding: utf-8 -*-
|
||||
|
||||
block_cipher = None
|
||||
|
||||
# 需要包含的数据文件
|
||||
added_files = [
|
||||
('config.ini', '.'),
|
||||
('config/barcode_mappings.json', 'config/'),
|
||||
('config/config.ini', 'config/'),
|
||||
('templates/银豹-采购单模板.xls', 'templates/'),
|
||||
('app', 'app'),
|
||||
]
|
||||
|
||||
# 需要隐式导入的模块
|
||||
hidden_imports = [
|
||||
'tkinter',
|
||||
'tkinter.ttk',
|
||||
'tkinter.filedialog',
|
||||
'tkinter.messagebox',
|
||||
'tkinter.scrolledtext',
|
||||
'pandas',
|
||||
'numpy',
|
||||
'openpyxl',
|
||||
'xlrd',
|
||||
'xlwt',
|
||||
'xlutils',
|
||||
'requests',
|
||||
'configparser',
|
||||
'threading',
|
||||
'datetime',
|
||||
'json',
|
||||
're',
|
||||
'subprocess',
|
||||
'shutil',
|
||||
'app.config.settings',
|
||||
'app.services.ocr_service',
|
||||
'app.services.order_service',
|
||||
'app.services.tobacco_service',
|
||||
'app.core.utils.dialog_utils',
|
||||
'app.core.excel.converter',
|
||||
]
|
||||
|
||||
a = Analysis(
|
||||
['启动器.py'],
|
||||
pathex=[],
|
||||
binaries=[],
|
||||
datas=added_files,
|
||||
hiddenimports=hidden_imports,
|
||||
hookspath=[],
|
||||
hooksconfig={},
|
||||
runtime_hooks=[],
|
||||
excludes=[],
|
||||
win_no_prefer_redirects=False,
|
||||
win_private_assemblies=False,
|
||||
cipher=block_cipher,
|
||||
noarchive=False,
|
||||
)
|
||||
|
||||
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
|
||||
|
||||
exe = EXE(
|
||||
pyz,
|
||||
a.scripts,
|
||||
a.binaries,
|
||||
a.zipfiles,
|
||||
a.datas,
|
||||
[],
|
||||
name='OCR订单处理系统',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
runtime_tmpdir=None,
|
||||
console=False,
|
||||
disable_windowed_traceback=False,
|
||||
argv_emulation=False,
|
||||
target_arch=None,
|
||||
codesign_identity=None,
|
||||
entitlements_file=None,
|
||||
)
|
||||
@ -90,15 +90,20 @@ class PurchaseOrderMerger:
|
||||
|
||||
def get_purchase_orders(self) -> List[str]:
|
||||
"""
|
||||
获取output目录下的采购单Excel文件
|
||||
获取result目录下的采购单Excel文件
|
||||
|
||||
Returns:
|
||||
采购单文件路径列表
|
||||
"""
|
||||
logger.info(f"搜索目录 {self.output_dir} 中的采购单Excel文件")
|
||||
# 采购单文件保存在data/result目录
|
||||
result_dir = "data/result"
|
||||
logger.info(f"搜索目录 {result_dir} 中的采购单Excel文件")
|
||||
|
||||
# 确保目录存在
|
||||
os.makedirs(result_dir, exist_ok=True)
|
||||
|
||||
# 获取所有Excel文件
|
||||
all_files = get_files_by_extensions(self.output_dir, ['.xls', '.xlsx'])
|
||||
all_files = get_files_by_extensions(result_dir, ['.xls', '.xlsx'])
|
||||
|
||||
# 筛选采购单文件
|
||||
purchase_orders = [
|
||||
@ -107,7 +112,7 @@ class PurchaseOrderMerger:
|
||||
]
|
||||
|
||||
if not purchase_orders:
|
||||
logger.warning(f"未在 {self.output_dir} 目录下找到采购单Excel文件")
|
||||
logger.warning(f"未在 {result_dir} 目录下找到采购单Excel文件")
|
||||
return []
|
||||
|
||||
# 按修改时间排序,最新的在前
|
||||
@ -394,9 +399,11 @@ class PurchaseOrderMerger:
|
||||
# 采购单价(必填)- E列(4)
|
||||
output_sheet.write(r, price_col, float(row['采购单价']), price_style)
|
||||
|
||||
# 生成输出文件名
|
||||
# 生成输出文件名,保存到data/result目录
|
||||
timestamp = datetime.now().strftime("%Y%m%d%H%M%S")
|
||||
output_file = os.path.join(self.output_dir, f"合并采购单_{timestamp}.xls")
|
||||
result_dir = "data/result"
|
||||
os.makedirs(result_dir, exist_ok=True)
|
||||
output_file = os.path.join(result_dir, f"合并采购单_{timestamp}.xls")
|
||||
|
||||
# 保存文件
|
||||
output_workbook.save(output_file)
|
||||
@ -443,4 +450,4 @@ class PurchaseOrderMerger:
|
||||
self.merged_files[file_path] = output_file
|
||||
self._save_merged_files()
|
||||
|
||||
return output_file
|
||||
return output_file
|
||||
@ -671,9 +671,11 @@ class ExcelProcessor:
|
||||
logger.warning("未提取到有效商品信息")
|
||||
return None
|
||||
|
||||
# 生成输出文件名
|
||||
# 生成输出文件名,保存到data/result目录
|
||||
file_name = os.path.splitext(os.path.basename(file_path))[0]
|
||||
output_file = os.path.join(self.output_dir, f"采购单_{file_name}.xls")
|
||||
result_dir = "data/result"
|
||||
os.makedirs(result_dir, exist_ok=True)
|
||||
output_file = os.path.join(result_dir, f"采购单_{file_name}.xls")
|
||||
|
||||
# 填充模板并保存
|
||||
if self.fill_template(products, output_file):
|
||||
@ -944,4 +946,4 @@ class ExcelProcessor:
|
||||
except Exception as e:
|
||||
logger.warning(f"解析规格'{spec_str}'时出错: {e}")
|
||||
|
||||
return None
|
||||
return None
|
||||
@ -127,4 +127,67 @@ class OCRService:
|
||||
Returns:
|
||||
图片是否有效
|
||||
"""
|
||||
return self.ocr_processor.validate_image(image_path)
|
||||
return self.ocr_processor.validate_image(image_path)
|
||||
|
||||
def _is_valid_image(self, image_path: str) -> bool:
|
||||
"""
|
||||
检查文件是否为有效的图片格式
|
||||
|
||||
Args:
|
||||
image_path: 图片文件路径
|
||||
|
||||
Returns:
|
||||
是否为有效图片格式
|
||||
"""
|
||||
return self.validate_image(image_path)
|
||||
|
||||
def _get_excel_path(self, image_path: str) -> str:
|
||||
"""
|
||||
根据图片路径生成对应的Excel文件路径
|
||||
|
||||
Args:
|
||||
image_path: 图片文件路径
|
||||
|
||||
Returns:
|
||||
Excel文件路径
|
||||
"""
|
||||
# 获取文件名(不含扩展名)
|
||||
base_name = os.path.splitext(os.path.basename(image_path))[0]
|
||||
# 生成Excel文件路径
|
||||
output_dir = self.config.get('Paths', 'output_folder', fallback='data/output')
|
||||
excel_path = os.path.join(output_dir, f"{base_name}.xlsx")
|
||||
return excel_path
|
||||
|
||||
def _generate_excel(self, ocr_result: dict, image_path: str) -> Optional[str]:
|
||||
"""
|
||||
根据OCR结果生成Excel文件
|
||||
|
||||
Args:
|
||||
ocr_result: OCR识别结果
|
||||
image_path: 原始图片路径
|
||||
|
||||
Returns:
|
||||
生成的Excel文件路径,失败返回None
|
||||
"""
|
||||
try:
|
||||
excel_path = self._get_excel_path(image_path)
|
||||
|
||||
# 确保输出目录存在
|
||||
os.makedirs(os.path.dirname(excel_path), exist_ok=True)
|
||||
|
||||
# 调用OCR处理器的Excel生成功能
|
||||
if hasattr(self.ocr_processor, 'generate_excel'):
|
||||
success = self.ocr_processor.generate_excel(ocr_result, excel_path)
|
||||
if success:
|
||||
return excel_path
|
||||
else:
|
||||
# 如果OCR处理器没有generate_excel方法,直接返回路径
|
||||
# 假设OCR处理器已经生成了Excel文件
|
||||
if os.path.exists(excel_path):
|
||||
return excel_path
|
||||
|
||||
return None
|
||||
|
||||
except Exception as e:
|
||||
logger.error(f"生成Excel文件时发生错误: {e}", exc_info=True)
|
||||
return None
|
||||
@ -37,7 +37,10 @@ class TobaccoService:
|
||||
# 修复配置获取方式,使用fallback机制
|
||||
self.output_dir = config.get('Paths', 'output_folder', fallback='data/output')
|
||||
self.template_file = config.get('Paths', 'template_file', fallback='templates/银豹-采购单模板.xls')
|
||||
self.output_file = os.path.join(self.output_dir, '银豹采购单_烟草公司.xls')
|
||||
# 将烟草订单保存到result目录
|
||||
result_dir = "data/result"
|
||||
os.makedirs(result_dir, exist_ok=True)
|
||||
self.output_file = os.path.join(result_dir, '银豹采购单_烟草公司.xls')
|
||||
|
||||
def get_latest_tobacco_order(self) -> Optional[str]:
|
||||
"""
|
||||
@ -261,4 +264,4 @@ class TobaccoService:
|
||||
)
|
||||
|
||||
# 记录日志
|
||||
logger.info(f"烟草公司订单处理成功,订单时间: {order_time}, 总金额: {total_amount}, 处理条目: {total_count}")
|
||||
logger.info(f"烟草公司订单处理成功,订单时间: {order_time}, 总金额: {total_amount}, 处理条目: {total_count}")
|
||||
278
build_exe.py
Normal file
278
build_exe.py
Normal file
@ -0,0 +1,278 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
OCR订单处理系统 - EXE打包脚本
|
||||
============================
|
||||
自动化打包脚本,包含所有必要的资源文件和配置
|
||||
"""
|
||||
|
||||
import os
|
||||
import sys
|
||||
import shutil
|
||||
import subprocess
|
||||
from pathlib import Path
|
||||
|
||||
def clean_build():
|
||||
"""清理之前的构建文件"""
|
||||
print("清理构建目录...")
|
||||
dirs_to_clean = ['build', 'dist', '__pycache__']
|
||||
for dir_name in dirs_to_clean:
|
||||
if os.path.exists(dir_name):
|
||||
shutil.rmtree(dir_name)
|
||||
print(f"已删除: {dir_name}")
|
||||
|
||||
# 删除spec文件
|
||||
spec_files = [f for f in os.listdir('.') if f.endswith('.spec')]
|
||||
for spec_file in spec_files:
|
||||
os.remove(spec_file)
|
||||
print(f"已删除: {spec_file}")
|
||||
|
||||
def create_spec_file():
|
||||
"""创建PyInstaller spec文件"""
|
||||
spec_content = '''
|
||||
# -*- mode: python ; coding: utf-8 -*-
|
||||
|
||||
block_cipher = None
|
||||
|
||||
# 需要包含的数据文件
|
||||
added_files = [
|
||||
('config.ini', '.'),
|
||||
('config/barcode_mappings.json', 'config/'),
|
||||
('config/config.ini', 'config/'),
|
||||
('templates/银豹-采购单模板.xls', 'templates/'),
|
||||
('app', 'app'),
|
||||
]
|
||||
|
||||
# 需要隐式导入的模块
|
||||
hidden_imports = [
|
||||
'tkinter',
|
||||
'tkinter.ttk',
|
||||
'tkinter.filedialog',
|
||||
'tkinter.messagebox',
|
||||
'tkinter.scrolledtext',
|
||||
'pandas',
|
||||
'numpy',
|
||||
'openpyxl',
|
||||
'xlrd',
|
||||
'xlwt',
|
||||
'xlutils',
|
||||
'requests',
|
||||
'configparser',
|
||||
'threading',
|
||||
'datetime',
|
||||
'json',
|
||||
're',
|
||||
'subprocess',
|
||||
'shutil',
|
||||
'app.config.settings',
|
||||
'app.services.ocr_service',
|
||||
'app.services.order_service',
|
||||
'app.services.tobacco_service',
|
||||
'app.core.utils.dialog_utils',
|
||||
'app.core.excel.converter',
|
||||
]
|
||||
|
||||
a = Analysis(
|
||||
['启动器.py'],
|
||||
pathex=[],
|
||||
binaries=[],
|
||||
datas=added_files,
|
||||
hiddenimports=hidden_imports,
|
||||
hookspath=[],
|
||||
hooksconfig={},
|
||||
runtime_hooks=[],
|
||||
excludes=[],
|
||||
win_no_prefer_redirects=False,
|
||||
win_private_assemblies=False,
|
||||
cipher=block_cipher,
|
||||
noarchive=False,
|
||||
)
|
||||
|
||||
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
|
||||
|
||||
exe = EXE(
|
||||
pyz,
|
||||
a.scripts,
|
||||
a.binaries,
|
||||
a.zipfiles,
|
||||
a.datas,
|
||||
[],
|
||||
name='OCR订单处理系统',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
runtime_tmpdir=None,
|
||||
console=False,
|
||||
disable_windowed_traceback=False,
|
||||
argv_emulation=False,
|
||||
target_arch=None,
|
||||
codesign_identity=None,
|
||||
entitlements_file=None,
|
||||
)
|
||||
'''
|
||||
|
||||
with open('OCR订单处理系统.spec', 'w', encoding='utf-8') as f:
|
||||
f.write(spec_content)
|
||||
print("已创建spec文件: OCR订单处理系统.spec")
|
||||
|
||||
def build_exe():
|
||||
"""构建EXE文件"""
|
||||
print("开始构建EXE文件...")
|
||||
try:
|
||||
result = subprocess.run([
|
||||
'pyinstaller',
|
||||
'OCR订单处理系统.spec'
|
||||
], check=True, capture_output=True, text=True)
|
||||
print("构建成功!")
|
||||
print(result.stdout)
|
||||
|
||||
# 构建完成后,复制完整的配置文件到dist目录
|
||||
dist_dir = Path('dist')
|
||||
|
||||
# 复制包含API密钥的配置文件
|
||||
config_file = Path('config/config.ini')
|
||||
if config_file.exists():
|
||||
# 确保config目录存在
|
||||
(dist_dir / 'config').mkdir(exist_ok=True)
|
||||
shutil.copy2(config_file, dist_dir / 'config')
|
||||
print(f"已复制配置文件到dist: {config_file} -> {dist_dir / 'config'}")
|
||||
|
||||
# 复制完整的条码映射文件
|
||||
barcode_mapping_file = Path('config/barcode_mappings.json')
|
||||
if barcode_mapping_file.exists():
|
||||
shutil.copy2(barcode_mapping_file, dist_dir / 'config')
|
||||
print(f"已复制条码映射文件到dist: {barcode_mapping_file} -> {dist_dir / 'config'}")
|
||||
|
||||
# 复制根目录的config.ini文件(覆盖空的配置文件)
|
||||
root_config_file = Path('config.ini')
|
||||
if root_config_file.exists():
|
||||
shutil.copy2(root_config_file, dist_dir)
|
||||
print(f"已复制根配置文件到dist: {root_config_file} -> {dist_dir}")
|
||||
|
||||
except subprocess.CalledProcessError as e:
|
||||
print(f"构建失败: {e}")
|
||||
print(f"错误输出: {e.stderr}")
|
||||
return False
|
||||
return True
|
||||
|
||||
def create_portable_package():
|
||||
"""创建便携版打包"""
|
||||
print("创建便携版打包...")
|
||||
|
||||
# 创建发布目录
|
||||
release_dir = Path('release')
|
||||
if release_dir.exists():
|
||||
shutil.rmtree(release_dir)
|
||||
release_dir.mkdir()
|
||||
|
||||
# 复制exe文件
|
||||
exe_file = Path('dist/OCR订单处理系统.exe')
|
||||
if exe_file.exists():
|
||||
shutil.copy2(exe_file, release_dir)
|
||||
print(f"已复制: {exe_file} -> {release_dir}")
|
||||
|
||||
# 创建必要的目录结构
|
||||
dirs_to_create = ['data/input', 'data/output', 'logs', 'templates', 'config']
|
||||
for dir_path in dirs_to_create:
|
||||
(release_dir / dir_path).mkdir(parents=True, exist_ok=True)
|
||||
print(f"已创建目录: {dir_path}")
|
||||
|
||||
# 复制配置文件(包含API密钥)
|
||||
config_file = Path('config/config.ini')
|
||||
if config_file.exists():
|
||||
shutil.copy2(config_file, release_dir / 'config')
|
||||
print(f"已复制配置文件: {config_file} -> {release_dir / 'config'}")
|
||||
else:
|
||||
print(f"警告: 配置文件不存在: {config_file}")
|
||||
|
||||
# 复制完整的条码映射文件
|
||||
barcode_mapping_file = Path('config/barcode_mappings.json')
|
||||
if barcode_mapping_file.exists():
|
||||
shutil.copy2(barcode_mapping_file, release_dir / 'config')
|
||||
print(f"已复制条码映射文件: {barcode_mapping_file} -> {release_dir / 'config'}")
|
||||
else:
|
||||
print(f"警告: 条码映射文件不存在: {barcode_mapping_file}")
|
||||
|
||||
# 复制根目录的config.ini文件
|
||||
root_config_file = Path('config.ini')
|
||||
if root_config_file.exists():
|
||||
shutil.copy2(root_config_file, release_dir)
|
||||
print(f"已复制根配置文件: {root_config_file} -> {release_dir}")
|
||||
else:
|
||||
print(f"警告: 根配置文件不存在: {root_config_file}")
|
||||
|
||||
# 复制模板文件
|
||||
template_file = Path('templates/银豹-采购单模板.xls')
|
||||
if template_file.exists():
|
||||
shutil.copy2(template_file, release_dir / 'templates')
|
||||
print(f"已复制模板文件: {template_file} -> {release_dir / 'templates'}")
|
||||
else:
|
||||
print(f"警告: 模板文件不存在: {template_file}")
|
||||
|
||||
# 创建README文件
|
||||
readme_content = '''
|
||||
# OCR订单处理系统 - 便携版
|
||||
|
||||
## 使用说明
|
||||
1. 双击 "OCR订单处理系统.exe" 启动程序
|
||||
2. 将需要处理的图片文件放入 data/input 目录
|
||||
3. 处理结果将保存在 data/output 目录
|
||||
4. 日志文件保存在 logs 目录
|
||||
|
||||
## 注意事项
|
||||
- 首次运行时需要配置百度OCR API密钥
|
||||
- 支持的图片格式:jpg, jpeg, png, bmp
|
||||
- 单个文件大小不超过4MB
|
||||
|
||||
## 目录结构
|
||||
- OCR订单处理系统.exe - 主程序
|
||||
- data/input/ - 输入图片目录
|
||||
- data/output/ - 输出结果目录
|
||||
- logs/ - 日志目录
|
||||
'''
|
||||
|
||||
with open(release_dir / 'README.txt', 'w', encoding='utf-8') as f:
|
||||
f.write(readme_content)
|
||||
print("已创建README.txt")
|
||||
|
||||
print(f"便携版打包完成,位置: {release_dir.absolute()}")
|
||||
|
||||
def main():
|
||||
"""主函数"""
|
||||
print("=" * 50)
|
||||
print("OCR订单处理系统 - EXE打包工具")
|
||||
print("=" * 50)
|
||||
|
||||
# 检查是否安装了PyInstaller
|
||||
try:
|
||||
subprocess.run(['pyinstaller', '--version'], check=True, capture_output=True)
|
||||
except (subprocess.CalledProcessError, FileNotFoundError):
|
||||
print("错误: 未安装PyInstaller")
|
||||
print("请运行: pip install pyinstaller")
|
||||
return 1
|
||||
|
||||
# 清理构建目录
|
||||
clean_build()
|
||||
|
||||
# 创建spec文件
|
||||
create_spec_file()
|
||||
|
||||
# 构建EXE
|
||||
if not build_exe():
|
||||
return 1
|
||||
|
||||
# 创建便携版打包
|
||||
create_portable_package()
|
||||
|
||||
print("\n" + "=" * 50)
|
||||
print("打包完成!")
|
||||
print("EXE文件位置: dist/OCR订单处理系统.exe")
|
||||
print("便携版位置: release/")
|
||||
print("=" * 50)
|
||||
|
||||
return 0
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(main())
|
||||
@ -148,11 +148,36 @@
|
||||
"description": "条码映射:6901424334174 -> 6973730760015"
|
||||
},
|
||||
"6958620703716": {
|
||||
"multiplier": 14,
|
||||
"target_unit": "个",
|
||||
"specification": "1*14",
|
||||
"map_to": "6958620703907",
|
||||
"description": "友臣肉松棒:规格1*14,映射到6958620703907"
|
||||
"description": "条码映射:6958620703716 -> 6958620703907"
|
||||
},
|
||||
"6937003706322": {
|
||||
"map_to": "6937003703833",
|
||||
"description": "条码映射:6937003706322 -> 6937003703833"
|
||||
},
|
||||
"6950783203494": {
|
||||
"map_to": "6950873203494",
|
||||
"description": "条码映射:6950783203494 -> 6950873203494"
|
||||
},
|
||||
"6907992501871": {
|
||||
"map_to": "6907992500010",
|
||||
"description": "条码映射:6907992501871 -> 6907992500010"
|
||||
},
|
||||
"6907992501864": {
|
||||
"map_to": "6907992100012",
|
||||
"description": "条码映射:6907992501864 -> 6907992100012"
|
||||
},
|
||||
"6923644264192": {
|
||||
"map_to": "6923644264116",
|
||||
"description": "条码映射:6923644264192 -> 6923644264116"
|
||||
},
|
||||
"6923450667316": {
|
||||
"map_to": "69042386",
|
||||
"description": "条码映射:6923450667316 -> 69042386"
|
||||
},
|
||||
"6923450653012": {
|
||||
"map_to": "69021343",
|
||||
"description": "条码映射:6923450653012 -> 69021343"
|
||||
},
|
||||
"6925019900087": {
|
||||
"multiplier": 10,
|
||||
|
||||
BIN
data/input/7a3a78a02fcf6ccef5daad31bd50bdf2.jpg
Normal file
BIN
data/input/7a3a78a02fcf6ccef5daad31bd50bdf2.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 173 KiB |
BIN
data/output/7a3a78a02fcf6ccef5daad31bd50bdf2.xlsx
Normal file
BIN
data/output/7a3a78a02fcf6ccef5daad31bd50bdf2.xlsx
Normal file
Binary file not shown.
3
data/output/processed_files.json
Normal file
3
data/output/processed_files.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"data/output\\7a3a78a02fcf6ccef5daad31bd50bdf2.xlsx": "data/result\\采购单_7a3a78a02fcf6ccef5daad31bd50bdf2.xls"
|
||||
}
|
||||
BIN
data/result/采购单_7a3a78a02fcf6ccef5daad31bd50bdf2.xls
Normal file
BIN
data/result/采购单_7a3a78a02fcf6ccef5daad31bd50bdf2.xls
Normal file
Binary file not shown.
BIN
dist/OCR订单处理系统.exe
vendored
Normal file
BIN
dist/OCR订单处理系统.exe
vendored
Normal file
Binary file not shown.
28
dist/config.ini
vendored
Normal file
28
dist/config.ini
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
[API]
|
||||
api_key = O0Fgk3o69RWJ86eAX8BTHRaB
|
||||
secret_key = VyZD5lzcIMgsup1uuD6Cw0pfzS20IGPZ
|
||||
timeout = 30
|
||||
max_retries = 3
|
||||
retry_delay = 2
|
||||
api_url = https://aip.baidubce.com/rest/2.0/ocr/v1/table
|
||||
|
||||
[Paths]
|
||||
input_folder = data/input
|
||||
output_folder = data/output
|
||||
temp_folder = data/temp
|
||||
template_folder = templates
|
||||
processed_record = data/processed_files.json
|
||||
|
||||
[Performance]
|
||||
max_workers = 4
|
||||
batch_size = 5
|
||||
skip_existing = true
|
||||
|
||||
[File]
|
||||
allowed_extensions = .jpg,.jpeg,.png,.bmp
|
||||
excel_extension = .xlsx
|
||||
max_file_size_mb = 4
|
||||
|
||||
[Templates]
|
||||
purchase_order = 银豹-采购单模板.xls
|
||||
|
||||
205
dist/config/barcode_mappings.json
vendored
Normal file
205
dist/config/barcode_mappings.json
vendored
Normal file
@ -0,0 +1,205 @@
|
||||
{
|
||||
"6920584471055": {
|
||||
"map_to": "6920584471017",
|
||||
"description": "条码映射:6920584471055 -> 6920584471017"
|
||||
},
|
||||
"6925861571159": {
|
||||
"map_to": "69021824",
|
||||
"description": "条码映射:6925861571159 -> 69021824"
|
||||
},
|
||||
"6923644268923": {
|
||||
"map_to": "6923644268480",
|
||||
"description": "条码映射:6923644268923 -> 6923644268480"
|
||||
},
|
||||
"6925861571466": {
|
||||
"map_to": "6925861571459",
|
||||
"description": "条码映射:6925861571466 -> 6925861571459"
|
||||
},
|
||||
"6907992508344": {
|
||||
"map_to": "6907992508191",
|
||||
"description": "条码映射:6907992508344 -> 6907992508191"
|
||||
},
|
||||
"6903979000979": {
|
||||
"map_to": "6903979000962",
|
||||
"description": "条码映射:6903979000979 -> 6903979000962"
|
||||
},
|
||||
"6923644283582": {
|
||||
"map_to": "6923644283575",
|
||||
"description": "条码映射:6923644283582 -> 6923644283575"
|
||||
},
|
||||
"6923644268930": {
|
||||
"map_to": "6923644268497",
|
||||
"description": "条码映射:6923644268930 -> 6923644268497"
|
||||
},
|
||||
"6923644268916": {
|
||||
"map_to": "6923644268503",
|
||||
"description": "条码映射:6923644268916 -> 6923644268503"
|
||||
},
|
||||
"6923644268909": {
|
||||
"map_to": "6923644268510",
|
||||
"description": "条码映射:6923644268909 -> 6923644268510"
|
||||
},
|
||||
"6923644299804": {
|
||||
"map_to": "6923644299774",
|
||||
"description": "条码映射:6923644299804 -> 6923644299774"
|
||||
},
|
||||
"6923644266318": {
|
||||
"map_to": "6923644266066",
|
||||
"description": "条码映射:6923644266318 -> 6923644266066"
|
||||
},
|
||||
"6923644210151": {
|
||||
"map_to": "6923644223458",
|
||||
"description": "条码映射:6923644210151 -> 6923644223458"
|
||||
},
|
||||
"6907992501819": {
|
||||
"map_to": "6907992500133",
|
||||
"description": "条码映射:6907992501819 -> 6907992500133"
|
||||
},
|
||||
"6907992502052": {
|
||||
"map_to": "6907992100272",
|
||||
"description": "条码映射:6907992502052 -> 6907992100272"
|
||||
},
|
||||
"6907992507385": {
|
||||
"map_to": "6907992507095",
|
||||
"description": "条码映射:6907992507385 -> 6907992507095"
|
||||
},
|
||||
"6973726149671": {
|
||||
"map_to": "6973726149657",
|
||||
"description": "条码映射:6973726149671 -> 6973726149657"
|
||||
},
|
||||
"6977426410574": {
|
||||
"map_to": "6977426410567",
|
||||
"description": "条码映射:6977426410574 -> 6977426410567"
|
||||
},
|
||||
"6973726149688": {
|
||||
"map_to": "6973726149664",
|
||||
"description": "条码映射:6973726149688 -> 6973726149664"
|
||||
},
|
||||
"6935205322012": {
|
||||
"map_to": "6935205320018",
|
||||
"description": "条码映射:6935205322012 -> 6935205320018"
|
||||
},
|
||||
"6943497411024": {
|
||||
"map_to": "6943497411017",
|
||||
"description": "条码映射:6943497411024 -> 6943497411017"
|
||||
},
|
||||
"6921734968821": {
|
||||
"map_to": "6921734968814",
|
||||
"description": "条码映射:6921734968821 -> 6921734968814"
|
||||
},
|
||||
"6921734968258": {
|
||||
"map_to": "6921734968241",
|
||||
"description": "条码映射:6921734968258 -> 6921734968241"
|
||||
},
|
||||
"6921734968180": {
|
||||
"map_to": "6921734968173",
|
||||
"description": "条码映射:6921734968180 -> 6921734968173"
|
||||
},
|
||||
"6921734908735": {
|
||||
"map_to": "6935205372772",
|
||||
"description": "条码映射:6921734908735 -> 6935205372772"
|
||||
},
|
||||
"6923644248222": {
|
||||
"map_to": "6923644248208",
|
||||
"description": "条码映射:6923644248222 -> 6923644248208"
|
||||
},
|
||||
"6902083881122": {
|
||||
"map_to": "6902083881085",
|
||||
"description": "条码映射:6902083881122 -> 6902083881085"
|
||||
},
|
||||
"6907992501857": {
|
||||
"map_to": "6907992500010",
|
||||
"description": "条码映射:6907992501857 -> 6907992500010"
|
||||
},
|
||||
"6902083891015": {
|
||||
"map_to": "6902083890636",
|
||||
"description": "条码映射:6902083891015 -> 6902083890636"
|
||||
},
|
||||
"6923450605240": {
|
||||
"map_to": "6923450605226",
|
||||
"description": "条码映射:6923450605240 -> 6923450605226"
|
||||
},
|
||||
"6923450605196": {
|
||||
"map_to": "6923450614624",
|
||||
"description": "条码映射:6923450605196 -> 6923450614624"
|
||||
},
|
||||
"6923450665213": {
|
||||
"map_to": "6923450665206",
|
||||
"description": "条码映射:6923450665213 -> 6923450665206"
|
||||
},
|
||||
"6923450666821": {
|
||||
"map_to": "6923450666838",
|
||||
"description": "条码映射:6923450666821 -> 6923450666838"
|
||||
},
|
||||
"6923450661505": {
|
||||
"map_to": "6923450661499",
|
||||
"description": "条码映射:6923450661505 -> 6923450661499"
|
||||
},
|
||||
"6923450676103": {
|
||||
"map_to": "6923450676097",
|
||||
"description": "条码映射:6923450676103 -> 6923450676097"
|
||||
},
|
||||
"6923450614631": {
|
||||
"map_to": "6923450614624",
|
||||
"description": "条码映射:6923450614631 -> 6923450614624"
|
||||
},
|
||||
"6901424334174": {
|
||||
"map_to": "6973730760015",
|
||||
"description": "条码映射:6901424334174 -> 6973730760015"
|
||||
},
|
||||
"6958620703716": {
|
||||
"map_to": "6958620703907",
|
||||
"description": "条码映射:6958620703716 -> 6958620703907"
|
||||
},
|
||||
"6937003706322": {
|
||||
"map_to": "6937003703833",
|
||||
"description": "条码映射:6937003706322 -> 6937003703833"
|
||||
},
|
||||
"6950783203494": {
|
||||
"map_to": "6950873203494",
|
||||
"description": "条码映射:6950783203494 -> 6950873203494"
|
||||
},
|
||||
"6907992501871": {
|
||||
"map_to": "6907992500010",
|
||||
"description": "条码映射:6907992501871 -> 6907992500010"
|
||||
},
|
||||
"6907992501864": {
|
||||
"map_to": "6907992100012",
|
||||
"description": "条码映射:6907992501864 -> 6907992100012"
|
||||
},
|
||||
"6923644264192": {
|
||||
"map_to": "6923644264116",
|
||||
"description": "条码映射:6923644264192 -> 6923644264116"
|
||||
},
|
||||
"6923450667316": {
|
||||
"map_to": "69042386",
|
||||
"description": "条码映射:6923450667316 -> 69042386"
|
||||
},
|
||||
"6923450653012": {
|
||||
"map_to": "69021343",
|
||||
"description": "条码映射:6923450653012 -> 69021343"
|
||||
},
|
||||
"6925019900087": {
|
||||
"multiplier": 10,
|
||||
"target_unit": "瓶",
|
||||
"description": "特殊处理:数量*10,单位转换为瓶"
|
||||
},
|
||||
"6921168593804": {
|
||||
"multiplier": 30,
|
||||
"target_unit": "瓶",
|
||||
"description": "NFC产品特殊处理:每箱30瓶"
|
||||
},
|
||||
"6901826888138": {
|
||||
"multiplier": 30,
|
||||
"target_unit": "瓶",
|
||||
"fixed_price": 3.7333333333333334,
|
||||
"specification": "1*30",
|
||||
"description": "特殊处理: 规格1*30,数量*30,单价=112/30"
|
||||
},
|
||||
"6958620703907": {
|
||||
"multiplier": 14,
|
||||
"target_unit": "个",
|
||||
"specification": "1*14",
|
||||
"description": "友臣肉松,1盒14个"
|
||||
}
|
||||
}
|
||||
28
dist/config/config.ini
vendored
Normal file
28
dist/config/config.ini
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
[API]
|
||||
api_key = O0Fgk3o69RWJ86eAX8BTHRaB
|
||||
secret_key = VyZD5lzcIMgsup1uuD6Cw0pfzS20IGPZ
|
||||
timeout = 30
|
||||
max_retries = 3
|
||||
retry_delay = 2
|
||||
api_url = https://aip.baidubce.com/rest/2.0/ocr/v1/table
|
||||
|
||||
[Paths]
|
||||
input_folder = data/input
|
||||
output_folder = data/output
|
||||
temp_folder = data/temp
|
||||
template_folder = templates
|
||||
processed_record = data/processed_files.json
|
||||
|
||||
[Performance]
|
||||
max_workers = 4
|
||||
batch_size = 5
|
||||
skip_existing = true
|
||||
|
||||
[File]
|
||||
allowed_extensions = .jpg,.jpeg,.png,.bmp
|
||||
excel_extension = .xlsx
|
||||
max_file_size_mb = 4
|
||||
|
||||
[Templates]
|
||||
purchase_order = 银豹-采购单模板.xls
|
||||
|
||||
@ -1,474 +0,0 @@
|
||||
2025-05-02 16:10:30,807 - __main__ - INFO - 批量处理模式
|
||||
2025-05-02 16:10:30,814 - __main__ - WARNING - 没有找到需要处理的文件
|
||||
2025-05-02 16:11:05,083 - __main__ - INFO - 批量处理模式
|
||||
2025-05-02 16:11:05,090 - __main__ - INFO - 批量处理完成,总计: 1,成功: 0
|
||||
2025-05-02 16:15:14,543 - __main__ - INFO - 批量处理模式
|
||||
2025-05-02 16:15:17,347 - __main__ - INFO - 批量处理完成,总计: 1,成功: 0
|
||||
2025-05-02 16:24:57,651 - __main__ - INFO - 批量处理模式
|
||||
2025-05-02 16:25:00,387 - __main__ - INFO - 批量处理完成,总计: 1,成功: 0
|
||||
2025-05-02 16:34:26,014 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 16:34:26,014 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 16:34:28,701 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-02 16:34:28,702 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 16:34:28,703 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 16:34:29,401 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\output\采购单_微信图片_20250227193150(1)_20250502163429.xls
|
||||
2025-05-02 16:34:29,402 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-02 16:34:29,403 - __main__ - INFO - 合并所有采购单文件: 1 个
|
||||
2025-05-02 16:34:29,411 - __main__ - ERROR - 订单合并失败
|
||||
2025-05-02 16:55:26,481 - __main__ - INFO - 处理单个图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250227193150(1).jpg
|
||||
2025-05-02 16:55:29,254 - __main__ - INFO - OCR处理成功,输出文件: D:\My Documents\python\orc-order-v2\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:08:58,657 - __main__ - INFO - 处理单个图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250227193150(1).jpg
|
||||
2025-05-02 17:09:01,349 - __main__ - INFO - OCR处理成功,输出文件: D:\My Documents\python\orc-order-v2\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:10:09,224 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:10:09,825 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\output\采购单_微信图片_20250227193150(1)_20250502171009.xls
|
||||
2025-05-02 17:16:24,478 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:16:25,037 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250227193150(1)_20250502171625.xls
|
||||
2025-05-02 17:32:36,464 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:32:37,143 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250227193150(1).xls
|
||||
2025-05-02 17:40:07,689 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:40:08,402 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250227193150(1).xls
|
||||
2025-05-02 17:42:15,227 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:42:15,838 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250227193150(1).xls
|
||||
2025-05-02 17:57:41,817 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:57:42,390 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250227193150(1).xls
|
||||
2025-05-02 18:00:56,509 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:00:57,127 - __main__ - ERROR - Excel处理失败
|
||||
2025-05-02 18:01:27,765 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:01:28,275 - __main__ - ERROR - Excel处理失败
|
||||
2025-05-02 18:01:40,472 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:01:41,097 - __main__ - ERROR - Excel处理失败
|
||||
2025-05-02 18:16:10,314 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:16:10,959 - __main__ - ERROR - Excel处理失败
|
||||
2025-05-02 18:27:30,083 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:27:30,957 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250227193150(1).xls
|
||||
2025-05-02 18:31:29,329 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:31:31,503 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250227193150(1).xls
|
||||
2025-05-02 18:33:05,104 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:33:07,377 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250227193150(1).xls
|
||||
2025-05-02 18:38:52,881 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:38:56,890 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250227193150(1).xls
|
||||
2025-05-02 18:41:16,744 - __main__ - INFO - 处理Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:41:17,402 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250227193150(1).xls
|
||||
2025-05-02 19:15:17,472 - __main__ - INFO - 批量处理模式
|
||||
2025-05-02 19:15:19,393 - __main__ - INFO - 批量处理完成,总计: 1,成功: 1
|
||||
2025-05-02 19:15:43,270 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502191502.xlsx
|
||||
2025-05-02 19:15:51,442 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502191502.xls
|
||||
2025-05-02 19:33:54,964 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 19:33:54,964 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 19:33:54,965 - __main__ - WARNING - 没有找到需要处理的图片
|
||||
2025-05-02 19:33:54,966 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 19:33:54,967 - __main__ - WARNING - 未找到可处理的Excel文件
|
||||
2025-05-02 19:35:48,764 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 19:35:48,764 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 19:35:48,766 - __main__ - WARNING - 没有找到需要处理的图片
|
||||
2025-05-02 19:35:48,766 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 19:35:48,817 - __main__ - WARNING - 未找到可处理的Excel文件
|
||||
2025-05-02 19:36:15,986 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 19:36:15,986 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 19:36:15,987 - __main__ - WARNING - 没有找到需要处理的图片
|
||||
2025-05-02 19:36:15,988 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 19:36:15,989 - __main__ - WARNING - 未找到可处理的Excel文件
|
||||
2025-05-02 19:42:19,207 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 19:42:19,208 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 19:42:21,167 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-02 19:42:21,167 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 19:42:21,167 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502191502.xlsx
|
||||
2025-05-02 19:42:36,439 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502191502.xls
|
||||
2025-05-02 19:42:36,440 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-02 19:42:36,441 - __main__ - INFO - 合并所有采购单文件: 1 个
|
||||
2025-05-02 19:42:36,457 - __main__ - ERROR - 订单合并失败
|
||||
2025-05-02 19:53:27,942 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 19:53:27,942 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 19:53:29,683 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-02 19:53:29,683 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 19:53:29,684 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502191502.xlsx
|
||||
2025-05-02 19:53:47,770 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502191502.xls
|
||||
2025-05-02 19:53:47,770 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-02 19:53:47,771 - __main__ - INFO - 合并所有采购单文件: 1 个
|
||||
2025-05-02 19:53:47,786 - __main__ - ERROR - 订单合并失败
|
||||
2025-05-02 20:52:59,674 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 20:52:59,674 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 20:53:02,564 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-02 20:53:02,564 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 20:53:02,564 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502205251.xlsx
|
||||
2025-05-02 20:53:07,427 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502205251.xls
|
||||
2025-05-02 20:53:07,428 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-02 20:53:07,431 - __main__ - INFO - 合并所有采购单文件: 1 个
|
||||
2025-05-02 20:53:07,470 - __main__ - ERROR - 订单合并失败
|
||||
2025-05-02 21:02:57,317 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 21:02:57,317 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 21:02:57,318 - __main__ - WARNING - 没有找到需要处理的图片
|
||||
2025-05-02 21:02:57,319 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 21:02:57,320 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:02:58,040 - __main__ - ERROR - Excel处理失败
|
||||
2025-05-02 21:04:06,635 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:04:07,327 - __main__ - ERROR - Excel处理失败
|
||||
2025-05-02 21:07:29,007 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:07:29,708 - __main__ - ERROR - Excel处理失败
|
||||
2025-05-02 21:10:08,472 - __main__ - INFO - 处理Excel文件: data/output/微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:10:09,277 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502205251.xls
|
||||
2025-05-02 21:11:03,186 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:11:07,603 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502205251.xls
|
||||
2025-05-02 21:15:10,779 - __main__ - INFO - 处理Excel文件: data/output/微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:15:11,666 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502205251.xls
|
||||
2025-05-02 21:16:38,297 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:16:42,564 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502205251.xls
|
||||
2025-05-02 21:21:20,680 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 21:21:20,681 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 21:21:27,223 - __main__ - ERROR - OCR处理失败,没有成功处理的图片
|
||||
2025-05-02 21:22:23,299 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 21:22:23,299 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 21:22:26,468 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-02 21:22:26,468 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 21:22:26,469 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502212111.xlsx
|
||||
2025-05-02 21:22:31,696 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502212111.xls
|
||||
2025-05-02 21:22:31,696 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-02 21:22:31,715 - __main__ - INFO - 合并所有采购单文件: 1 个
|
||||
2025-05-02 21:22:31,741 - __main__ - ERROR - 订单合并失败
|
||||
2025-05-02 21:45:07,600 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 21:45:07,600 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 21:45:10,629 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-02 21:45:10,629 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 21:45:10,630 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-02 21:45:21,947 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502214456.xls
|
||||
2025-05-02 21:45:21,947 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-02 21:45:21,948 - __main__ - INFO - 合并所有采购单文件: 1 个
|
||||
2025-05-02 21:45:24,736 - __main__ - ERROR - 订单合并失败
|
||||
2025-05-02 21:54:51,329 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 21:54:51,329 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 21:54:51,331 - __main__ - WARNING - 没有找到需要处理的图片
|
||||
2025-05-02 21:54:51,331 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 21:54:51,332 - __main__ - WARNING - 未找到可处理的Excel文件
|
||||
2025-05-02 21:55:07,665 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 21:55:07,665 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 21:55:07,667 - __main__ - WARNING - 没有找到需要处理的图片
|
||||
2025-05-02 21:55:07,667 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 21:55:07,668 - __main__ - WARNING - 未找到可处理的Excel文件
|
||||
2025-05-02 21:56:33,286 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 21:56:33,286 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 21:56:33,287 - __main__ - WARNING - 没有找到需要处理的图片
|
||||
2025-05-02 21:56:33,287 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 21:56:33,289 - __main__ - WARNING - 未找到可处理的Excel文件
|
||||
2025-05-02 21:58:02,455 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 21:58:02,455 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 21:58:02,456 - __main__ - WARNING - 没有找到需要处理的图片
|
||||
2025-05-02 21:58:02,456 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 21:58:02,457 - __main__ - WARNING - 未找到可处理的Excel文件
|
||||
2025-05-02 22:07:10,382 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 22:07:10,382 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 22:07:10,383 - __main__ - WARNING - 没有找到需要处理的图片
|
||||
2025-05-02 22:07:10,383 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 22:07:10,383 - __main__ - WARNING - 未找到可处理的Excel文件
|
||||
2025-05-02 22:10:02,824 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 22:10:02,825 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 22:10:09,464 - __main__ - ERROR - OCR处理失败,没有成功处理的图片
|
||||
2025-05-02 22:11:55,061 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 22:11:55,061 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 22:11:57,703 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-02 22:11:57,703 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 22:11:57,705 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-02 22:12:08,754 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502214456.xls
|
||||
2025-05-02 22:12:08,754 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-02 22:12:08,755 - __main__ - INFO - 合并所有采购单文件: 1 个
|
||||
2025-05-02 22:12:11,606 - __main__ - ERROR - 订单合并失败
|
||||
2025-05-02 22:26:11,621 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 22:26:11,621 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 22:26:11,622 - __main__ - WARNING - 没有找到需要处理的图片
|
||||
2025-05-02 22:26:11,623 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 22:26:11,624 - __main__ - WARNING - 未找到可处理的Excel文件
|
||||
2025-05-02 22:26:42,571 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 22:26:42,571 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 22:26:49,227 - __main__ - ERROR - OCR处理失败,没有成功处理的图片
|
||||
2025-05-02 22:29:10,832 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 22:29:10,832 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 22:29:14,320 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-02 22:29:14,320 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 22:29:14,322 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-02 22:29:26,875 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502214456.xls
|
||||
2025-05-02 22:29:26,875 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-02 22:29:26,876 - __main__ - INFO - 合并所有采购单文件: 1 个
|
||||
2025-05-02 22:29:29,918 - __main__ - ERROR - 订单合并失败
|
||||
2025-05-02 22:40:41,147 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-02 22:40:41,147 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-02 22:40:43,846 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-02 22:40:43,846 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-02 22:40:43,849 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-02 22:40:56,995 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502214456.xls
|
||||
2025-05-02 22:40:56,995 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-02 22:40:56,996 - __main__ - INFO - 发现 1 个采购单文件
|
||||
2025-05-02 22:40:56,996 - __main__ - WARNING - 只有1个采购单文件 D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502214456.xls,无需合并
|
||||
2025-05-02 22:40:56,996 - __main__ - INFO - === 完整流程处理成功(只有一个文件,跳过合并)===
|
||||
2025-05-03 12:54:57,235 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-03 12:54:57,236 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-03 12:55:00,228 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-03 12:55:00,228 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-03 12:55:00,229 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-03 12:55:14,451 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502214456.xls
|
||||
2025-05-03 12:55:14,451 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-03 12:55:14,452 - __main__ - INFO - 发现 1 个采购单文件
|
||||
2025-05-03 12:55:14,452 - __main__ - WARNING - 只有1个采购单文件 D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502214456.xls,无需合并
|
||||
2025-05-03 12:55:14,452 - __main__ - INFO - === 完整流程处理成功(只有一个文件,跳过合并)===
|
||||
2025-05-03 14:44:17,320 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-03 14:44:17,320 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-03 14:44:19,916 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-03 14:44:19,917 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-03 14:44:19,921 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250503144404.xlsx
|
||||
2025-05-03 14:44:26,125 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250503144404.xls
|
||||
2025-05-03 14:44:26,125 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-03 14:44:26,125 - __main__ - INFO - 发现 2 个采购单文件
|
||||
2025-05-03 14:44:26,126 - __main__ - INFO - 合并所有采购单文件: 2 个
|
||||
2025-05-03 14:44:30,400 - __main__ - ERROR - 订单合并失败
|
||||
2025-05-03 14:45:44,522 - __main__ - INFO - 批量处理模式
|
||||
2025-05-03 14:45:47,101 - __main__ - INFO - 批量处理完成,总计: 1,成功: 1
|
||||
2025-05-03 14:45:58,809 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250503144404.xlsx
|
||||
2025-05-03 14:46:03,478 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250503144404.xls
|
||||
2025-05-03 14:53:52,353 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-03 14:53:52,354 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-03 14:53:54,304 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-03 14:53:54,304 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-03 14:53:54,305 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250503145328.xlsx
|
||||
2025-05-03 14:53:55,098 - __main__ - ERROR - Excel处理失败
|
||||
2025-05-03 15:43:36,733 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250503145328.xlsx
|
||||
2025-05-03 15:43:37,414 - __main__ - ERROR - Excel处理失败
|
||||
2025-05-05 18:55:02,303 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-05 18:55:02,304 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-05 18:55:04,011 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-05 18:55:04,012 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-05 18:55:04,014 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250505185454.xlsx
|
||||
2025-05-05 18:55:13,152 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185454.xls
|
||||
2025-05-05 18:55:13,152 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-05 18:55:13,153 - __main__ - INFO - 发现 1 个采购单文件
|
||||
2025-05-05 18:55:13,153 - __main__ - WARNING - 只有1个采购单文件 D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185454.xls,无需合并
|
||||
2025-05-05 18:55:13,153 - __main__ - INFO - === 完整流程处理成功(只有一个文件,跳过合并)===
|
||||
2025-05-05 18:59:17,853 - __main__ - INFO - 批量处理模式
|
||||
2025-05-05 18:59:23,223 - __main__ - INFO - 批量处理完成,总计: 2,成功: 2
|
||||
2025-05-05 19:00:26,075 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250505185842.xlsx
|
||||
2025-05-05 19:00:44,019 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185842.xls
|
||||
2025-05-05 19:02:32,169 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250505185908.xlsx
|
||||
2025-05-05 19:02:44,931 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185908.xls
|
||||
2025-05-05 19:02:54,875 - __main__ - INFO - 合并所有采购单文件: 2 个
|
||||
2025-05-05 19:02:54,901 - __main__ - ERROR - 订单合并失败
|
||||
2025-05-05 19:15:12,554 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250505185908.xlsx
|
||||
2025-05-05 19:15:22,303 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185908.xls
|
||||
2025-05-05 19:18:54,542 - __main__ - INFO - 合并所有采购单文件: 2 个
|
||||
2025-05-05 19:18:54,840 - __main__ - INFO - 订单合并成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\合并采购单_20250505191854.xls
|
||||
2025-05-05 19:19:59,315 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250505185908.xlsx
|
||||
2025-05-05 19:20:09,861 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185908.xls
|
||||
2025-05-05 19:22:18,533 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250505185908.xlsx
|
||||
2025-05-05 19:22:28,611 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185908.xls
|
||||
2025-05-05 19:22:37,226 - __main__ - INFO - 合并所有采购单文件: 2 个
|
||||
2025-05-05 19:22:37,407 - __main__ - INFO - 订单合并成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\合并采购单_20250505192237.xls
|
||||
2025-05-05 19:28:36,770 - __main__ - INFO - 合并所有采购单文件: 2 个
|
||||
2025-05-05 19:28:36,856 - __main__ - INFO - 订单合并成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\合并采购单_20250505192836.xls
|
||||
2025-05-05 19:29:16,917 - __main__ - INFO - 合并所有采购单文件: 2 个
|
||||
2025-05-05 19:29:17,073 - __main__ - INFO - 订单合并成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\合并采购单_20250505192917.xls
|
||||
2025-05-05 19:30:06,156 - __main__ - INFO - 合并所有采购单文件: 2 个
|
||||
2025-05-05 19:30:06,305 - __main__ - INFO - 订单合并成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\合并采购单_20250505193006.xls
|
||||
2025-05-05 19:30:28,309 - __main__ - INFO - 合并所有采购单文件: 2 个
|
||||
2025-05-05 19:30:28,426 - __main__ - INFO - 订单合并成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\合并采购单_20250505193028.xls
|
||||
2025-05-05 22:04:10,737 - __main__ - INFO - 批量处理模式
|
||||
2025-05-05 22:04:17,491 - __main__ - INFO - 批量处理完成,总计: 1,成功: 0
|
||||
2025-05-05 22:08:07,806 - __main__ - INFO - 批量处理模式
|
||||
2025-05-05 22:08:09,957 - __main__ - INFO - 批量处理完成,总计: 1,成功: 0
|
||||
2025-05-05 22:22:21,499 - __main__ - INFO - 批量处理模式
|
||||
2025-05-05 22:22:22,622 - __main__ - INFO - 批量处理完成,总计: 1,成功: 0
|
||||
2025-05-05 22:27:19,324 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/9527.xlsx
|
||||
2025-05-05 22:27:36,850 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_9527.xls
|
||||
2025-05-05 22:35:49,999 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/9527.xlsx
|
||||
2025-05-05 22:36:08,274 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_9527.xls
|
||||
2025-05-05 22:36:30,732 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/9527.xlsx
|
||||
2025-05-05 22:36:55,749 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_9527.xls
|
||||
2025-05-05 22:40:12,611 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/9527.xlsx
|
||||
2025-05-05 22:40:31,000 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_9527.xls
|
||||
2025-05-06 19:00:08,271 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/高新-益选便利店销售单2025-05-06.xlsx
|
||||
2025-05-06 19:00:11,518 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_高新-益选便利店销售单2025-05-06.xls
|
||||
2025-05-06 20:39:58,870 - __main__ - INFO - 批量处理模式
|
||||
2025-05-06 20:40:00,302 - __main__ - INFO - 批量处理完成,总计: 1,成功: 1
|
||||
2025-05-06 20:40:58,358 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250506203941.xlsx
|
||||
2025-05-06 20:40:59,240 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250506203941.xls
|
||||
2025-05-06 20:42:36,997 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250506203941.xlsx
|
||||
2025-05-06 20:42:37,658 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250506203941.xls
|
||||
2025-05-06 21:03:30,008 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250506203941.xlsx
|
||||
2025-05-06 21:03:30,684 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250506203941.xls
|
||||
2025-05-06 21:07:27,061 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250506203941.xlsx
|
||||
2025-05-06 21:07:27,777 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250506203941.xls
|
||||
2025-05-06 21:13:40,290 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250506203941.xlsx
|
||||
2025-05-06 21:13:40,983 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250506203941.xls
|
||||
2025-05-07 18:01:37,212 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-07 18:01:37,212 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-07 18:01:40,247 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-07 18:01:40,247 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-07 18:01:40,248 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507180130.xlsx
|
||||
2025-05-07 18:01:48,033 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507180130.xls
|
||||
2025-05-07 18:01:48,033 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-07 18:01:48,034 - __main__ - INFO - 发现 1 个采购单文件
|
||||
2025-05-07 18:01:48,034 - __main__ - WARNING - 只有1个采购单文件 D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507180130.xls,无需合并
|
||||
2025-05-07 18:01:48,034 - __main__ - INFO - === 完整流程处理成功(只有一个文件,跳过合并)===
|
||||
2025-05-07 18:32:13,629 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507180130.xlsx
|
||||
2025-05-07 18:32:20,587 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507180130.xls
|
||||
2025-05-07 18:36:46,628 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507180130.xlsx
|
||||
2025-05-07 18:36:53,755 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507180130.xls
|
||||
2025-05-07 18:46:29,610 - __main__ - WARNING - 未找到可处理的Excel文件
|
||||
2025-05-07 18:47:16,625 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507180130.xlsx
|
||||
2025-05-07 18:47:23,859 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507180130.xls
|
||||
2025-05-07 19:17:08,292 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-07 19:17:08,293 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-07 19:17:09,737 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-07 19:17:09,737 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-07 19:17:09,738 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507191231.xlsx
|
||||
2025-05-07 19:17:10,515 - __main__ - ERROR - Excel处理失败
|
||||
2025-05-07 19:21:56,953 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507191231.xlsx
|
||||
2025-05-07 19:22:08,043 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507191231.xls
|
||||
2025-05-07 19:42:51,439 - __main__ - INFO - 批量处理模式
|
||||
2025-05-07 19:42:58,427 - __main__ - INFO - 批量处理完成,总计: 2,成功: 1
|
||||
2025-05-07 19:44:06,197 - __main__ - INFO - 批量处理模式
|
||||
2025-05-07 19:44:11,221 - __main__ - INFO - 批量处理完成,总计: 1,成功: 1
|
||||
2025-05-07 19:49:23,214 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507194224_压缩后.xlsx
|
||||
2025-05-07 19:49:37,876 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507194224_压缩后.xls
|
||||
2025-05-07 20:53:53,692 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507194229.xlsx
|
||||
2025-05-07 20:54:01,924 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507194229.xls
|
||||
2025-05-07 21:08:33,155 - __main__ - INFO - 批量处理模式
|
||||
2025-05-07 21:08:33,156 - __main__ - WARNING - 没有找到需要处理的文件
|
||||
2025-05-07 21:08:42,987 - __main__ - INFO - 批量处理模式
|
||||
2025-05-07 21:08:50,188 - __main__ - INFO - 批量处理完成,总计: 1,成功: 1
|
||||
2025-05-07 21:08:57,856 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507210836.xlsx
|
||||
2025-05-07 21:08:58,494 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507210836.xls
|
||||
2025-05-07 21:13:10,729 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507210836.xlsx
|
||||
2025-05-07 21:13:11,590 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507210836.xls
|
||||
2025-05-07 21:22:01,716 - __main__ - INFO - 批量处理模式
|
||||
2025-05-07 21:22:06,388 - __main__ - INFO - 批量处理完成,总计: 2,成功: 2
|
||||
2025-05-07 21:26:07,926 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507212143.xlsx
|
||||
2025-05-07 21:26:36,280 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507212143.xls
|
||||
2025-05-07 21:29:23,569 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507212143.xlsx
|
||||
2025-05-07 21:29:52,470 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507212143.xls
|
||||
2025-05-07 21:54:55,233 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-07 21:54:55,233 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-07 21:54:58,502 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-07 21:54:58,503 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-07 21:54:58,505 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507215450.xlsx
|
||||
2025-05-07 21:55:16,420 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507215450.xls
|
||||
2025-05-07 21:55:16,420 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-07 21:55:16,421 - __main__ - INFO - 发现 1 个采购单文件
|
||||
2025-05-07 21:55:16,421 - __main__ - WARNING - 只有1个采购单文件 D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507215450.xls,无需合并
|
||||
2025-05-07 21:55:16,421 - __main__ - INFO - === 完整流程处理成功(只有一个文件,跳过合并)===
|
||||
2025-05-07 22:09:59,127 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507215450.xlsx
|
||||
2025-05-07 22:10:08,715 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507215450.xls
|
||||
2025-05-07 22:14:03,056 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507215450.xlsx
|
||||
2025-05-07 22:14:15,799 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507215450.xls
|
||||
2025-05-07 22:24:30,226 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507215450.xlsx
|
||||
2025-05-07 22:24:39,880 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507215450.xls
|
||||
2025-05-07 22:28:51,556 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-07 22:28:51,556 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-07 22:28:52,832 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-07 22:28:52,832 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-07 22:28:52,833 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507222846.xlsx
|
||||
2025-05-07 22:28:53,639 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507222846.xls
|
||||
2025-05-07 22:28:53,639 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-07 22:28:53,640 - __main__ - INFO - 发现 1 个采购单文件
|
||||
2025-05-07 22:28:53,640 - __main__ - WARNING - 只有1个采购单文件 D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250507222846.xls,无需合并
|
||||
2025-05-07 22:28:53,641 - __main__ - INFO - === 完整流程处理成功(只有一个文件,跳过合并)===
|
||||
2025-05-08 19:45:41,035 - __main__ - INFO - === 流程步骤 1: OCR识别 ===
|
||||
2025-05-08 19:45:41,036 - __main__ - INFO - 批量处理所有图片
|
||||
2025-05-08 19:45:48,795 - __main__ - INFO - OCR处理完成,总计: 1,成功: 1
|
||||
2025-05-08 19:45:48,795 - __main__ - INFO - === 流程步骤 2: Excel处理 ===
|
||||
2025-05-08 19:45:48,797 - __main__ - INFO - 处理最新的Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250508194532.xlsx
|
||||
2025-05-08 19:45:56,356 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250508194532.xls
|
||||
2025-05-08 19:45:56,357 - __main__ - INFO - === 流程步骤 3: 订单合并 ===
|
||||
2025-05-08 19:45:56,358 - __main__ - INFO - 发现 1 个采购单文件
|
||||
2025-05-08 19:45:56,358 - __main__ - WARNING - 只有1个采购单文件 D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250508194532.xls,无需合并
|
||||
2025-05-08 19:45:56,358 - __main__ - INFO - === 完整流程处理成功(只有一个文件,跳过合并)===
|
||||
2025-05-08 19:47:28,886 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250508194532.xlsx
|
||||
2025-05-08 19:47:34,495 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250508194532.xls
|
||||
2025-05-08 19:51:23,190 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250508194532.xlsx
|
||||
2025-05-08 19:51:27,459 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250508194532.xls
|
||||
2025-05-08 20:04:06,909 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250508194532.xlsx
|
||||
2025-05-08 20:04:14,985 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250508194532.xls
|
||||
2025-05-08 20:46:00,701 - __main__ - INFO - 处理Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250508194532.xlsx
|
||||
2025-05-08 20:46:07,564 - __main__ - INFO - Excel处理成功,输出文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250508194532.xls
|
||||
2025-05-09 11:55:03,576 - __main__ - INFO - 配置信息: <configparser.ConfigParser object at 0x000002AD48FC6310>
|
||||
2025-05-09 11:58:49,250 - __main__ - INFO - 配置信息: <configparser.ConfigParser object at 0x000002784E8172E0>
|
||||
2025-05-09 12:02:05,165 - __main__ - INFO - 配置信息: <configparser.ConfigParser object at 0x0000029382E282B0>
|
||||
2025-05-09 12:07:05,179 - __main__ - INFO - 配置信息: <configparser.ConfigParser object at 0x000001B1A2BE82E0>
|
||||
2025-05-09 12:07:54,655 - __main__ - INFO - 配置信息: <configparser.ConfigParser object at 0x0000014A9D9D8400>
|
||||
2025-05-09 12:12:42,101 - __main__ - INFO - 配置信息: <configparser.ConfigParser object at 0x00000263F3448400>
|
||||
2025-05-09 12:13:52,578 - __main__ - INFO - 配置信息: <configparser.ConfigParser object at 0x00000244BAAA73D0>
|
||||
2025-05-09 12:45:35,994 - __main__ - INFO - 配置信息: <configparser.ConfigParser object at 0x000001E499EA73A0>
|
||||
2025-05-09 12:45:35,999 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-09 12:45:36,000 - __main__ - INFO - 处理最新的烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 12:45:36,103 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:21:53,249 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:22:48,497 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:25:59,111 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:29:28,837 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:30:21,973 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:30:43,780 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:34:49,132 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-09 13:34:49,291 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:34:49,291 - __main__ - INFO - 烟草订单处理完成,绝对路径: D:\My Documents\python\orc-order-v2\data\output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:37:56,253 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-09 13:37:56,482 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:37:56,482 - __main__ - INFO - 烟草订单处理完成,绝对路径: D:\My Documents\python\orc-order-v2\data\output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:39:38,187 - __main__ - ERROR - 执行过程中发生错误: 'OrderService' object has no attribute 'merge_all_purchase_orders'
|
||||
Traceback (most recent call last):
|
||||
File "D:\My Documents\python\orc-order-v2\run.py", line 128, in main
|
||||
result = order_service.merge_all_purchase_orders()
|
||||
AttributeError: 'OrderService' object has no attribute 'merge_all_purchase_orders'
|
||||
2025-05-09 13:39:52,436 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-09 13:39:52,581 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:39:52,581 - __main__ - INFO - 烟草订单处理完成,绝对路径: D:\My Documents\python\orc-order-v2\data\output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:50:34,352 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-09 13:50:34,773 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:50:34,773 - __main__ - INFO - 烟草订单处理完成,绝对路径: D:\My Documents\python\orc-order-v2\data\output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:52:17,577 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-09 13:52:17,706 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:52:17,707 - __main__ - INFO - 烟草订单处理完成,绝对路径: D:\My Documents\python\orc-order-v2\data\output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 14:26:54,513 - __main__ - ERROR - 执行过程中发生错误: 'OrderService' object has no attribute 'process_latest_excel'
|
||||
Traceback (most recent call last):
|
||||
File "D:\My Documents\python\orc-order-v2\run.py", line 116, in main
|
||||
result = order_service.process_latest_excel()
|
||||
AttributeError: 'OrderService' object has no attribute 'process_latest_excel'
|
||||
2025-05-09 14:27:08,881 - __main__ - ERROR - 执行过程中发生错误: 'OCRService' object has no attribute 'batch_process'
|
||||
Traceback (most recent call last):
|
||||
File "D:\My Documents\python\orc-order-v2\run.py", line 98, in main
|
||||
total, success = ocr_service.batch_process(
|
||||
AttributeError: 'OCRService' object has no attribute 'batch_process'
|
||||
2025-05-09 14:27:31,662 - __main__ - ERROR - 执行过程中发生错误: 'OCRService' object has no attribute 'batch_process'
|
||||
Traceback (most recent call last):
|
||||
File "D:\My Documents\python\orc-order-v2\run.py", line 98, in main
|
||||
total, success = ocr_service.batch_process(
|
||||
AttributeError: 'OCRService' object has no attribute 'batch_process'
|
||||
2025-05-09 14:32:56,697 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-09 14:32:56,706 - __main__ - ERROR - 烟草订单处理失败
|
||||
2025-05-10 12:34:15,446 - __main__ - ERROR - OCR处理失败,没有成功处理任何文件
|
||||
2025-05-10 12:47:26,684 - __main__ - ERROR - 执行过程中发生错误: 'OrderService' object has no attribute 'process_latest_excel'
|
||||
Traceback (most recent call last):
|
||||
File "D:\My Documents\python\orc-order-v2\run.py", line 154, in main
|
||||
result = order_service.process_latest_excel()
|
||||
AttributeError: 'OrderService' object has no attribute 'process_latest_excel'
|
||||
2025-05-10 12:50:31,807 - __main__ - ERROR - OCR处理失败,没有成功处理任何文件
|
||||
2025-05-10 12:54:52,743 - __main__ - WARNING - 没有找到需要处理的图片
|
||||
2025-05-10 17:18:16,370 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-10 17:18:16,373 - __main__ - ERROR - 烟草订单处理失败
|
||||
2025-05-10 17:18:27,370 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-10 17:18:27,448 - __main__ - ERROR - 烟草订单处理失败
|
||||
2025-05-10 17:21:23,797 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-10 17:21:23,870 - __main__ - ERROR - 烟草订单处理失败
|
||||
2025-05-10 17:23:18,699 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-10 17:23:19,567 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-10 17:23:19,568 - __main__ - INFO - 烟草订单处理完成,绝对路径: D:\My Documents\python\orc-order-v2\data\output\银豹采购单_烟草公司.xls
|
||||
2025-05-25 12:26:45,362 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-25 12:26:45,715 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-25 12:26:45,715 - __main__ - INFO - 烟草订单处理完成,绝对路径: D:\My Documents\python\orc-order-v2\data\output\银豹采购单_烟草公司.xls
|
||||
2025-05-25 12:28:21,145 - __main__ - ERROR - 执行过程中发生错误: 'OrderService' object has no attribute 'merge_all_purchase_orders'
|
||||
Traceback (most recent call last):
|
||||
File "D:\My Documents\python\orc-order-v2\run.py", line 128, in main
|
||||
result = order_service.merge_all_purchase_orders()
|
||||
AttributeError: 'OrderService' object has no attribute 'merge_all_purchase_orders'
|
||||
2025-05-25 12:28:27,788 - __main__ - INFO - 开始烟草公司订单处理
|
||||
2025-05-25 12:28:28,022 - __main__ - INFO - 烟草订单处理成功,输出文件: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-25 12:28:28,022 - __main__ - INFO - 烟草订单处理完成,绝对路径: D:\My Documents\python\orc-order-v2\data\output\银豹采购单_烟草公司.xls
|
||||
2025-05-25 12:57:59,199 - __main__ - ERROR - 执行过程中发生错误: 'OrderService' object has no attribute 'merge_all_purchase_orders'
|
||||
Traceback (most recent call last):
|
||||
File "D:\My Documents\python\orc-order-v2\run.py", line 128, in main
|
||||
result = order_service.merge_all_purchase_orders()
|
||||
AttributeError: 'OrderService' object has no attribute 'merge_all_purchase_orders'
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,68 +1 @@
|
||||
2025-05-09 14:31:54,337 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644283582 -> 6923644283575
|
||||
2025-05-09 14:31:54,340 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644268930 -> 6923644268497
|
||||
2025-05-09 14:31:54,341 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644268916 -> 6923644268503
|
||||
2025-05-09 14:31:54,432 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6920584471055 -> 6920584471017
|
||||
2025-05-09 14:31:54,433 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6925861571159 -> 69021824
|
||||
2025-05-09 14:31:54,434 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644210151 -> 6923644223458
|
||||
2025-05-09 14:31:54,435 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6907992501819 -> 6907992500133
|
||||
2025-05-09 16:01:39,710 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6920584471055 -> 6920584471017
|
||||
2025-05-09 16:01:39,712 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6925861571159 -> 69021824
|
||||
2025-05-10 11:55:28,217 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6920584471055 -> 6920584471017
|
||||
2025-05-10 11:55:28,220 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6925861571159 -> 69021824
|
||||
2025-05-10 11:55:28,222 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6925861571466 -> 6925861571459
|
||||
2025-05-10 12:29:42,275 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6907992508344 -> 6907992508191
|
||||
2025-05-10 12:29:42,277 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6903979000979 -> 6903979000962
|
||||
2025-05-10 12:29:42,278 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644283582 -> 6923644283575
|
||||
2025-05-10 12:29:42,279 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644268909 -> 6923644268510
|
||||
2025-05-10 12:29:42,288 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644268930 -> 6923644268497
|
||||
2025-05-10 12:29:42,342 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644268916 -> 6923644268503
|
||||
2025-05-10 12:29:42,343 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644266318 -> 6923644266066
|
||||
2025-05-10 12:29:42,343 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6920584471055 -> 6920584471017
|
||||
2025-05-10 12:29:42,344 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6925861571159 -> 69021824
|
||||
2025-05-10 12:29:42,345 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6925861571466 -> 6925861571459
|
||||
2025-05-10 12:29:42,345 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644210151 -> 6923644223458
|
||||
2025-05-10 12:29:42,346 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6907992501819 -> 6907992500133
|
||||
2025-05-10 12:29:42,346 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6907992502052 -> 6907992100272
|
||||
2025-05-10 12:29:46,511 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6907992507385 -> 6907992507095
|
||||
2025-05-10 16:29:12,724 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6943497411024 -> 6943497411017
|
||||
2025-05-10 16:29:12,725 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6973726149671 -> 6973726149657
|
||||
2025-05-10 16:29:12,727 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6935205322012 -> 6935205320018
|
||||
2025-05-10 16:29:12,728 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6973726149688 -> 6973726149664
|
||||
2025-05-14 10:32:40,934 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644248222 -> 6923644248208
|
||||
2025-05-14 10:32:40,934 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6902083881122 -> 6902083881085
|
||||
2025-05-14 10:32:40,934 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6907992501857 -> 6907992500010
|
||||
2025-05-14 10:35:02,689 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644248222 -> 6923644248208
|
||||
2025-05-14 10:35:02,689 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6902083881122 -> 6902083881085
|
||||
2025-05-14 10:35:02,689 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6902083891015 -> 6902083890636
|
||||
2025-05-14 10:35:02,689 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6907992501857 -> 6907992500010
|
||||
2025-05-23 19:01:33,369 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6901424334174 -> 6973730760015
|
||||
2025-05-23 19:01:38,162 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923450614631 -> 6923450614624
|
||||
2025-05-23 19:01:38,162 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923450605196 -> 6923450614624
|
||||
2025-05-23 19:01:48,998 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923450676103 -> 6923450676097
|
||||
2025-05-23 19:01:48,999 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923450661505 -> 6923450661499
|
||||
2025-05-23 19:01:49,001 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923450666821 -> 6923450666838
|
||||
2025-05-23 19:01:54,154 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923450665213 -> 6923450665206
|
||||
2025-05-25 17:44:01,847 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码(6958620703716)使用固定规格: 1*14
|
||||
2025-05-25 17:44:01,847 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码处理: 6958620703716, 数量: 1.0 -> 14.0, 单价: 21.0 -> 1.5, 单位: 盒 -> 个
|
||||
2025-05-25 17:45:22,175 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码(6958620703716)使用固定规格: 1*14
|
||||
2025-05-25 17:45:22,175 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码处理: 6958620703716, 数量: 1.0 -> 14.0, 单价: 21.0 -> 1.5, 单位: 盒 -> 个
|
||||
2025-05-25 17:49:30,879 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码(6958620703716)使用固定规格: 1*14
|
||||
2025-05-25 17:49:30,879 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码处理: 6958620703716, 数量: 1.0 -> 14.0, 单价: 21.0 -> 1.5, 单位: 盒 -> 个
|
||||
2025-05-25 17:52:18,505 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码(6958620703716)使用固定规格: 1*14
|
||||
2025-05-25 17:52:18,505 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码处理: 6958620703716, 数量: 1.0 -> 14.0, 单价: 21.0 -> 1.5, 单位: 盒 -> 个
|
||||
2025-05-25 17:53:41,456 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码(6958620703716)使用固定规格: 1*14
|
||||
2025-05-25 17:53:41,456 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码处理: 6958620703716, 数量: 1.0 -> 14.0, 单价: 21.0 -> 1.5, 单位: 盒 -> 个
|
||||
2025-05-30 08:50:51,028 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6925861571466 -> 6925861571459
|
||||
2025-05-30 08:50:51,028 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644210151 -> 6923644223458
|
||||
2025-05-30 08:50:51,034 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6907992502052 -> 6907992100272
|
||||
2025-05-30 08:50:51,034 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6923644283582 -> 6923644283575
|
||||
2025-05-30 08:50:51,038 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6903979000979 -> 6903979000962
|
||||
2025-05-30 08:50:51,038 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6907992507385 -> 6907992507095
|
||||
2025-05-30 08:50:51,038 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6907992501819 -> 6907992500133
|
||||
2025-05-30 10:04:38,707 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码(6958620703716)使用固定规格: 1*14
|
||||
2025-05-30 10:04:38,707 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码处理: 6958620703716, 数量: 1.0 -> 14.0, 单价: 21.0 -> 1.5, 单位: 盒 -> 个
|
||||
2025-05-30 10:12:13,627 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码(6958620703716)使用固定规格: 1*14
|
||||
2025-05-30 10:12:13,627 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码处理: 6958620703716, 数量: 1.0 -> 14.0, 单价: 21.0 -> 1.5, 单位: 盒 -> 个
|
||||
2025-05-30 10:17:45,990 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码(6958620703716)使用固定规格: 1*14
|
||||
2025-05-30 10:17:45,990 - app.core.excel.handlers.barcode_mapper - INFO - 特殊条码处理: 6958620703716, 数量: 1.0 -> 14.0, 单价: 21.0 -> 1.5, 单位: 盒 -> 个
|
||||
2025-05-30 10:17:45,990 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6958620703716 -> 6958620703907
|
||||
2025-08-16 00:52:17,210 - app.core.excel.handlers.barcode_mapper - INFO - 条码映射: 6937003706322 -> 6937003703833
|
||||
|
||||
@ -1,559 +1,8 @@
|
||||
2025-05-08 19:45:49,639 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 0.0 -> 0.0, 单价: 56.0 -> 56.0, 单位: 件 -> 瓶
|
||||
2025-05-08 19:47:29,601 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 1.0, 单价: 56.0 -> 56.0, 单位: 件 -> 瓶
|
||||
2025-05-08 19:51:24,077 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-05-08 19:51:24,078 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-05-08 19:51:24,082 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-08 19:51:24,086 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-08 19:51:24,089 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-08 19:51:24,090 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 30.0 -> 2.0, 单位: 件 -> 瓶
|
||||
2025-05-08 19:51:24,105 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-08 19:51:24,106 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-08 19:51:24,106 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 2.0, 单价: 0, 单位: 瓶
|
||||
2025-05-08 19:51:24,107 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 1.0, 单价: 0, 单位: 瓶
|
||||
2025-05-08 19:51:24,108 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 9.0, 单价: 0, 单位: 瓶
|
||||
2025-05-08 20:04:07,791 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-05-08 20:04:07,793 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-05-08 20:04:07,794 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-08 20:04:07,798 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-08 20:04:07,799 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-08 20:04:07,822 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 30.0 -> 2.0, 单位: 件 -> 瓶
|
||||
2025-05-08 20:04:07,823 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-08 20:04:07,825 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-08 20:04:07,826 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 2.0, 单价: 0, 单位: 瓶
|
||||
2025-05-08 20:04:07,827 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 1.0, 单价: 0, 单位: 瓶
|
||||
2025-05-08 20:04:07,843 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 9.0, 单价: 0, 单位: 瓶
|
||||
2025-05-08 20:46:01,838 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-05-08 20:46:01,839 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-05-08 20:46:01,840 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-08 20:46:01,867 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-08 20:46:01,868 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-08 20:46:01,869 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 30.0 -> 2.0, 单位: 件 -> 瓶
|
||||
2025-05-08 20:46:01,870 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-08 20:46:01,870 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-08 20:46:01,871 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 2.0, 单价: 0, 单位: 瓶
|
||||
2025-05-08 20:46:01,872 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 1.0, 单价: 0, 单位: 瓶
|
||||
2025-05-08 20:46:03,157 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 9.0, 单价: 0, 单位: 瓶
|
||||
2025-05-09 14:31:54,333 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 52.0 -> 4.333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,334 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 50.0 -> 2.0833333333333335, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,338 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,340 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,341 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,342 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,432 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 4.0 -> 48.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,433 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 50.0 -> 4.166666666666667, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,433 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 72.0, 单价: 65.0 -> 1.8055555555555556, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,434 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,435 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 55.0 -> 2.2916666666666665, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,435 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 63.0 -> 2.625, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,436 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 54.0 -> 2.25, 单位: 件 -> 瓶
|
||||
2025-05-09 14:31:54,436 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:32:21,072 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 33.0 -> 2.2, 单位: 件 -> 瓶
|
||||
2025-05-09 14:32:21,077 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:32:21,081 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:32:21,082 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:32:21,084 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:32:21,086 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:32:21,214 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:32:21,215 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:32:21,217 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-09 14:32:21,218 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-09 14:32:21,219 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 1.0, 单价: 0, 单位: 瓶
|
||||
2025-05-09 16:01:39,480 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 52.0 -> 4.333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,481 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 50.0 -> 2.0833333333333335, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,482 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,483 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,484 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,485 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,485 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 4.0 -> 48.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,711 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 50.0 -> 4.166666666666667, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,712 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 72.0, 单价: 65.0 -> 1.8055555555555556, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,713 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,714 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 55.0 -> 2.2916666666666665, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,715 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 63.0 -> 2.625, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,716 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 54.0 -> 2.25, 单位: 件 -> 瓶
|
||||
2025-05-09 16:01:39,717 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,113 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 52.0 -> 4.333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,114 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 50.0 -> 2.0833333333333335, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,115 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,116 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,117 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,119 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,120 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 4.0 -> 48.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,218 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 50.0 -> 4.166666666666667, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,220 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 72.0, 单价: 65.0 -> 1.8055555555555556, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,222 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,223 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 55.0 -> 2.2916666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,225 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 63.0 -> 2.625, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,225 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 54.0 -> 2.25, 单位: 件 -> 瓶
|
||||
2025-05-10 11:55:28,226 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,276 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 52.0 -> 4.333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,278 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 50.0 -> 2.0833333333333335, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,279 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,280 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,288 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,342 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 30.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,343 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 4.0 -> 48.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,344 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 50.0 -> 4.166666666666667, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,344 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 72.0, 单价: 65.0 -> 1.8055555555555556, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,345 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,345 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 55.0 -> 2.2916666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,346 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 63.0 -> 2.625, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:42,346 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 54.0 -> 2.25, 单位: 件 -> 瓶
|
||||
2025-05-10 12:29:46,511 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:54:52,970 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 33.0 -> 2.2, 单位: 件 -> 瓶
|
||||
2025-05-10 12:54:52,975 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:54:52,978 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:54:52,984 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:54:52,987 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:54:52,988 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:54:53,019 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:54:53,020 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:54:53,021 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 12:54:53,022 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-10 12:54:53,023 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 1.0, 单价: 0, 单位: 瓶
|
||||
2025-05-10 13:09:43,052 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 16.0, 单价: 41.0 -> 5.125, 单位: 件 -> 瓶
|
||||
2025-05-10 13:09:43,053 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 52.0 -> 2.1666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 13:09:43,054 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 5.0 -> 120.0, 单价: 51.0 -> 2.125, 单位: 件 -> 瓶
|
||||
2025-05-10 13:09:43,055 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 45.0, 单价: 44.0 -> 2.933333333333333, 单位: 件 -> 瓶
|
||||
2025-05-10 13:09:43,056 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 5.0 -> 40.0, 单价: 20.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-10 13:09:43,065 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 4.0 -> 48.0, 单价: 26.0 -> 2.1666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 13:09:43,068 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 2.0, 单价: 26.0 -> 26.0, 单位: 件 -> 瓶
|
||||
2025-05-10 13:09:43,069 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 24.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-10 13:09:43,073 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品单位处理: 保持原样 数量: 0.0, 单价: 0, 单位:
|
||||
2025-05-10 14:17:11,015 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 16.0, 单价: 41.0 -> 5.125, 单位: 件 -> 瓶
|
||||
2025-05-10 14:17:11,017 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 52.0 -> 2.1666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 14:17:11,018 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 5.0 -> 120.0, 单价: 51.0 -> 2.125, 单位: 件 -> 瓶
|
||||
2025-05-10 14:17:11,019 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 4.0 -> 96.0, 单价: 53.0 -> 2.2083333333333335, 单位: 件 -> 瓶
|
||||
2025-05-10 14:17:11,019 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 45.0, 单价: 44.0 -> 2.933333333333333, 单位: 件 -> 瓶
|
||||
2025-05-10 14:17:11,020 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 5.0 -> 40.0, 单价: 20.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:17:11,085 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 4.0 -> 48.0, 单价: 26.0 -> 2.1666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 14:17:11,086 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 8.0, 单价: 26.0 -> 6.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:17:11,087 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 24.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:20:48,448 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 65.0 -> 4.333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-10 14:20:48,449 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 45.0, 单价: 55.0 -> 3.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 14:20:48,452 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 14:20:48,453 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 14:20:48,495 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 14:20:48,496 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 14:20:48,497 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 14:20:48,498 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 2.0 -> 30.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:10,448 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 7.0 -> 350.0, 单价: 30.0 -> 0.6, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:10,450 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 7.0 -> 280.0, 单价: 48.0 -> 1.2, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:10,451 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 40.0, 单价: 68.0 -> 1.7, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:10,453 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 40.0, 单价: 120.0 -> 3.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:10,456 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 40.0, 单价: 120.0 -> 3.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:10,459 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 7.0 -> 315.0, 单价: 42.0 -> 0.9333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:10,460 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 7.0 -> 126.0, 单价: 63.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:10,460 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 18.0, 单价: 63.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:10,461 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 7.0 -> 140.0, 单价: 42.0 -> 2.1, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:10,462 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 14.0, 单价: 98.0 -> 7.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:10,462 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 18.0, 单价: 63.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:12,184 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 50.0 -> 2.0833333333333335, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:12,185 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 14.0, 单价: 98.0 -> 7.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:12,185 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 84.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:12,186 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 84.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:12,187 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 20.0, 单价: 49.0 -> 2.45, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:12,188 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 20.0, 单价: 58.0 -> 2.9, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:12,190 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 21.0, 单价: 147.0 -> 7.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:16,321 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 21.0, 单价: 147.0 -> 7.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:16,321 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 21.0, 单价: 147.0 -> 7.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:16,322 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 84.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:16,323 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 84.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:16,323 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 7.0 -> 168.0, 单价: 94.0 -> 3.9166666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:16,324 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 30.0, 单价: 75.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:16,325 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 40.0, 单价: 24.0 -> 0.6, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:20,693 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 30.0, 单价: 55.0 -> 1.8333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-10 14:39:20,694 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 30.0, 单价: 54.0 -> 1.8, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:22,167 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 50.0, 单价: 30.0 -> 0.6, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:22,168 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 40.0, 单价: 48.0 -> 1.2, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:22,168 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 40.0, 单价: 68.0 -> 1.7, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:22,171 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 40.0, 单价: 120.0 -> 3.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:22,172 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 40.0, 单价: 120.0 -> 3.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:22,229 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 45.0, 单价: 42.0 -> 0.9333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:22,230 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 18.0, 单价: 63.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:22,231 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 18.0, 单价: 63.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:22,232 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 20.0, 单价: 42.0 -> 2.1, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:22,232 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 14.0, 单价: 98.0 -> 7.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:22,233 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 18.0, 单价: 63.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:22,234 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 50.0 -> 2.0833333333333335, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:25,393 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 14.0, 单价: 98.0 -> 7.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:25,395 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 84.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:25,396 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 84.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:25,397 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 20.0, 单价: 49.0 -> 2.45, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:25,398 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 20.0, 单价: 58.0 -> 2.9, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:25,399 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 21.0, 单价: 147.0 -> 7.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:25,400 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 21.0, 单价: 147.0 -> 7.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:30,891 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 21.0, 单价: 147.0 -> 7.0, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:30,892 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 84.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:30,893 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 84.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:30,894 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 94.0 -> 3.9166666666666665, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:30,896 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 30.0, 单价: 75.0 -> 2.5, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:30,897 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 40.0, 单价: 24.0 -> 0.6, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:30,898 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 30.0, 单价: 55.0 -> 1.8333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-10 14:43:36,447 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 30.0, 单价: 54.0 -> 1.8, 单位: 件 -> 瓶
|
||||
2025-05-10 16:28:52,436 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 5.0, 单价: 8.5, 单位: 提
|
||||
2025-05-10 16:28:52,437 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 8.5, 单位: 提
|
||||
2025-05-10 16:28:52,438 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 2.0, 单价: 11.89, 单位: 提
|
||||
2025-05-10 16:28:52,465 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 13.0, 单位: 提
|
||||
2025-05-10 16:28:52,467 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 18.5, 单位: 提
|
||||
2025-05-10 16:28:52,468 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 108.0 -> 9.0, 单位: 件 -> 瓶
|
||||
2025-05-10 16:29:02,039 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 3.3, 单位: 盒
|
||||
2025-05-10 16:29:05,469 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 18.0, 单价: 79.0 -> 4.388888888888889, 单位: 件 -> 瓶
|
||||
2025-05-10 16:29:05,470 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 14.0, 单价: 62.0 -> 4.428571428571429, 单位: 件 -> 瓶
|
||||
2025-05-10 16:29:08,616 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 20.0, 单位: 盒
|
||||
2025-05-10 16:29:12,725 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 6.0, 单位: 盒
|
||||
2025-05-10 16:29:12,726 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 1.0, 单价: 16.0, 单位: 盒
|
||||
2025-05-10 16:29:12,727 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 2.0, 单价: 16.0, 单位: 盒
|
||||
2025-05-10 16:29:12,728 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 1.0, 单价: 16.0, 单位: 盒
|
||||
2025-05-10 16:29:12,729 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 5.0, 单价: 4.5, 单位: 盒
|
||||
2025-05-10 16:29:12,731 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 9.0, 单位: 盒
|
||||
2025-05-10 16:29:12,732 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 5.0, 单价: 12.5, 单位: 盒
|
||||
2025-05-10 16:29:16,214 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 52.0, 单位: 盒
|
||||
2025-05-13 11:36:54,023 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 3.0 -> 36.0, 单价: 26.0 -> 2.1666666666666665, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:36:54,030 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:36:54,082 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 2.0 -> 30.0, 单价: 55.0 -> 3.6666666666666665, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:36:54,083 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 2.0 -> 30.0, 单价: 56.0 -> 3.7333333333333334, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:36:54,086 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:36:54,087 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:36:54,088 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 2.0 -> 30.0, 单价: 55.0 -> 3.6666666666666665, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:36:57,683 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:36:57,686 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 5.0 -> 60.0, 单价: 62.0 -> 5.166666666666667, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:36:57,687 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 6.0, 单价: 50.0 -> 8.333333333333334, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:36:57,690 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 15.0, 单价: 43.0 -> 2.8666666666666667, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:37:02,580 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品箱单位处理: 数量: 2.0 -> 30.0, 单价: 0, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:37:02,582 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 15.0, 单价: 43.0 -> 2.8666666666666667, 单位: 箱 -> 瓶
|
||||
2025-05-13 11:37:02,583 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品箱单位处理: 数量: 19.0 -> 456.0, 单价: 0, 单位: 箱 -> 瓶
|
||||
2025-05-13 12:29:18,412 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 8.0 -> 192.0, 单价: 23.0 -> 0.9583333333333334, 单位: 件 -> 瓶
|
||||
2025-05-13 12:29:18,414 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 75.0 -> 5.0, 单位: 件 -> 瓶
|
||||
2025-05-13 12:29:18,415 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 32.0 -> 2.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-13 12:29:18,416 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 62.1 -> 4.14, 单位: 件 -> 瓶
|
||||
2025-05-13 12:29:18,418 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 1.0, 单价: 0, 单位: 瓶
|
||||
2025-05-13 12:29:18,419 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 2.0, 单价: 0, 单位: 瓶
|
||||
2025-05-13 12:39:20,670 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 1.0, 单价: 14.0, 单位: 盒
|
||||
2025-05-13 12:39:20,796 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 8.0, 单价: 6.0, 单位: 盒
|
||||
2025-05-13 12:47:01,013 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 0.0 -> 0.0, 单价: 284.0 -> 71.0, 单位: 件 -> 瓶
|
||||
2025-05-13 12:47:08,819 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 0.0 -> 0.0, 单价: 62.0 -> 7.75, 单位: 件 -> 瓶
|
||||
2025-05-13 12:50:32,939 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 4.0, 单价: 284.0 -> 71.0, 单位: 件 -> 瓶
|
||||
2025-05-13 12:50:40,340 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 8.0, 单价: 62.0 -> 7.75, 单位: 件 -> 瓶
|
||||
2025-05-14 10:23:48,496 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 45.0 -> 3.0, 单位: 件 -> 瓶
|
||||
2025-05-14 10:23:48,496 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 45.0 -> 3.0, 单位: 件 -> 瓶
|
||||
2025-05-14 10:23:48,511 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 45.0 -> 3.0, 单位: 件 -> 瓶
|
||||
2025-05-14 10:23:48,511 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 50.0 -> 3.3333333333333335, 单位: 件 -> 瓶
|
||||
2025-05-14 10:23:48,558 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 50.0 -> 3.3333333333333335, 单位: 件 -> 瓶
|
||||
2025-05-14 10:23:48,558 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 5.0 -> 75.0, 单价: 43.0 -> 2.8666666666666667, 单位: 件 -> 瓶
|
||||
2025-05-14 10:23:48,558 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 5.0 -> 120.0, 单价: 22.0 -> 0.9166666666666666, 单位: 件 -> 瓶
|
||||
2025-05-14 10:23:48,558 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-14 10:29:16,607 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 32.0 -> 1.3333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-14 10:29:16,622 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 34.0 -> 1.4166666666666667, 单位: 件 -> 瓶
|
||||
2025-05-14 10:29:16,622 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 39.0 -> 1.625, 单位: 件 -> 瓶
|
||||
2025-05-14 10:29:16,622 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 32.0 -> 1.3333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-14 10:32:40,934 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 32.0 -> 1.3333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-14 10:32:40,934 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 34.0 -> 1.4166666666666667, 单位: 件 -> 瓶
|
||||
2025-05-14 10:32:40,934 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 39.0 -> 1.625, 单位: 件 -> 瓶
|
||||
2025-05-14 10:32:40,934 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 32.0 -> 1.3333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-14 10:35:02,689 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 32.0 -> 1.3333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-14 10:35:02,689 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 34.0 -> 1.4166666666666667, 单位: 件 -> 瓶
|
||||
2025-05-14 10:35:02,689 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 39.0 -> 1.625, 单位: 件 -> 瓶
|
||||
2025-05-14 10:35:02,689 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 32.0 -> 1.3333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-14 10:43:05,563 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 58.0 -> 4.833333333333333, 单位: 件 -> 瓶
|
||||
2025-05-14 10:43:05,563 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 53.0 -> 4.416666666666667, 单位: 件 -> 瓶
|
||||
2025-05-14 10:43:05,563 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 53.0 -> 4.416666666666667, 单位: 件 -> 瓶
|
||||
2025-05-14 10:43:05,563 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 49.0 -> 4.083333333333333, 单位: 件 -> 瓶
|
||||
2025-05-14 10:43:05,563 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 49.0 -> 4.083333333333333, 单位: 件 -> 瓶
|
||||
2025-05-14 10:43:05,735 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 49.0 -> 4.083333333333333, 单位: 件 -> 瓶
|
||||
2025-05-14 11:06:59,911 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 12.0, 单价: 7.8, 单位: 盒
|
||||
2025-05-14 11:06:59,911 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 12.0, 单价: 7.2, 单位: 盒
|
||||
2025-05-23 17:11:31,846 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 47.0 -> 4.7, 单位: 提 -> 瓶
|
||||
2025-05-23 17:11:31,848 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 6.0, 单价: 4.6, 单位: 盒
|
||||
2025-05-23 17:11:31,850 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 12.0, 单价: 39.0 -> 3.25, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:07,112 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 12.0, 单价: 30.25 -> 2.5208333333333335, 单位: 提 -> 瓶
|
||||
2025-05-23 19:01:07,114 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 12.0, 单价: 30.25 -> 2.5208333333333335, 单位: 提 -> 瓶
|
||||
2025-05-23 19:01:07,165 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 12.0, 单价: 30.25 -> 2.5208333333333335, 单位: 提 -> 瓶
|
||||
2025-05-23 19:01:07,167 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 12.0, 单价: 30.25 -> 2.5208333333333335, 单位: 提 -> 瓶
|
||||
2025-05-23 19:01:07,168 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 12.0, 单价: 30.25 -> 2.5208333333333335, 单位: 提 -> 瓶
|
||||
2025-05-23 19:01:07,170 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 25.6 -> 2.56, 单位: 提 -> 瓶
|
||||
2025-05-23 19:01:07,171 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 25.6 -> 2.56, 单位: 提 -> 瓶
|
||||
2025-05-23 19:01:07,173 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 25.6 -> 2.56, 单位: 提 -> 瓶
|
||||
2025-05-23 19:01:07,174 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 25.6 -> 2.56, 单位: 提 -> 瓶
|
||||
2025-05-23 19:01:07,175 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 25.6 -> 2.56, 单位: 提 -> 瓶
|
||||
2025-05-23 19:01:09,594 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 20.0, 单价: 13.5 -> 0.675, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:09,595 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 28.5 -> 2.85, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:09,596 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 28.5 -> 2.85, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:09,598 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 28.5 -> 2.85, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:09,599 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 28.5 -> 2.85, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:09,602 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 30.0, 单价: 22.5 -> 0.75, 单位: 提 -> 瓶
|
||||
2025-05-23 19:01:24,640 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 12.0, 单价: 24.0 -> 2.0, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:24,641 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 2.0 -> 40.0, 单价: 14.0 -> 0.7, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:24,642 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 2.0 -> 40.0, 单价: 14.0 -> 0.7, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:28,510 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 8.0, 单价: 5.42, 单位: 盒
|
||||
2025-05-23 19:01:28,511 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 6.0, 单价: 4.71, 单位: 盒
|
||||
2025-05-23 19:01:28,513 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 5.0, 单价: 6.05, 单位: 盒
|
||||
2025-05-23 19:01:28,515 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 2.0 -> 40.0, 单价: 14.0 -> 0.7, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:28,516 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 2.0 -> 40.0, 单价: 30.0 -> 1.5, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:33,367 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 20.0, 单价: 14.0 -> 0.7, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:33,368 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 2.0 -> 40.0, 单价: 14.0 -> 0.7, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:33,368 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 2.0 -> 40.0, 单价: 14.0 -> 0.7, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:33,369 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 2.0 -> 40.0, 单价: 14.0 -> 0.7, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:33,370 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 2.0 -> 16.0, 单价: 29.0 -> 3.625, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:33,371 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 9.0, 单价: 66.0 -> 7.333333333333333, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:33,372 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 9.0, 单价: 66.0 -> 7.333333333333333, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:33,372 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 9.0, 单价: 66.0 -> 7.333333333333333, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:38,159 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 6.0, 单价: 43.0 -> 7.166666666666667, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:38,160 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 6.0, 单价: 43.0 -> 7.166666666666667, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:38,161 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 6.0, 单价: 43.0 -> 7.166666666666667, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:38,162 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 6.0, 单价: 40.0 -> 6.666666666666667, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:38,163 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 42.0 -> 4.2, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:43,829 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 42.0 -> 4.2, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:43,830 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 42.0 -> 4.2, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:43,833 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 47.0 -> 4.7, 单位: 提 -> 瓶
|
||||
2025-05-23 19:01:43,834 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 8.0, 单价: 24.0 -> 3.0, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:43,835 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 8.0, 单价: 24.0 -> 3.0, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:48,993 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 8.0, 单价: 24.0 -> 3.0, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:48,995 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 8.0, 单价: 24.0 -> 3.0, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:48,996 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 8.0, 单价: 24.0 -> 3.0, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:48,997 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 7.0, 单价: 4.89, 单位: 盒
|
||||
2025-05-23 19:01:48,998 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 12.0, 单价: 39.0 -> 3.25, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:49,000 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 12.0, 单价: 39.0 -> 3.25, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:49,001 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 12.0, 单价: 39.0 -> 3.25, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:54,155 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 12.0, 单价: 39.0 -> 3.25, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:54,156 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 15.0, 单价: 93.0 -> 6.2, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:54,157 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 15.0, 单价: 93.0 -> 6.2, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:54,158 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 15.0, 单价: 93.0 -> 6.2, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:54,159 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 6.0, 单价: 50.0 -> 8.333333333333334, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:54,161 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 6.0, 单价: 50.0 -> 8.333333333333334, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:01:59,593 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 10.0, 单价: 2.58, 单位: 盒
|
||||
2025-05-23 19:01:59,594 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 10.0, 单价: 2.58, 单位: 盒
|
||||
2025-05-23 19:01:59,594 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 10.0, 单价: 2.58, 单位: 盒
|
||||
2025-05-23 19:01:59,595 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 8.0, 单价: 2.58, 单位: 盒
|
||||
2025-05-23 19:01:59,597 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 10.0, 单价: 2.58, 单位: 盒
|
||||
2025-05-23 19:02:15,128 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 30.0 -> 3.0, 单位: 提 -> 瓶
|
||||
2025-05-23 19:02:15,129 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 35.0 -> 3.5, 单位: 提 -> 瓶
|
||||
2025-05-23 19:02:15,132 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 8.0, 单价: 35.0 -> 4.375, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:02:15,133 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 8.0, 单价: 35.0 -> 4.375, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:02:15,134 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 8.0, 单价: 35.0 -> 4.375, 单位: 盒 -> 瓶
|
||||
2025-05-23 19:02:19,140 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 1.0 -> 10.0, 单价: 25.0 -> 2.5, 单位: 提 -> 瓶
|
||||
2025-05-25 12:56:35,814 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 10.0, 单位: 提
|
||||
2025-05-25 12:56:35,816 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 80.0, 单价: 8.5 -> 0.2125, 单位: 件 -> 瓶
|
||||
2025-05-25 12:56:35,831 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 4.0, 单价: 8.5, 单位: 提
|
||||
2025-05-25 12:56:35,833 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 10.5, 单位: 提
|
||||
2025-05-25 12:56:35,834 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 6.5, 单位: 提
|
||||
2025-05-25 12:56:35,835 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 8.5, 单位: 提
|
||||
2025-05-25 12:56:35,836 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 11.0, 单位: 提
|
||||
2025-05-25 12:56:35,837 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 13.0, 单位: 提
|
||||
2025-05-25 12:56:35,838 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 17.0, 单位: 提
|
||||
2025-05-25 12:56:35,838 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 12.8, 单位: 提
|
||||
2025-05-25 12:56:38,414 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 5.0 -> 120.0, 单价: 7.5 -> 0.3125, 单位: 件 -> 瓶
|
||||
2025-05-25 12:57:18,695 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 12.0, 单位: 盒
|
||||
2025-05-25 12:57:18,695 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 3.0, 单价: 8.0, 单位: 提
|
||||
2025-05-25 13:08:51,331 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 30.0, 单价: 33.0 -> 2.2, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,331 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 33.0 -> 2.2, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,331 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 33.0 -> 2.2, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,346 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 33.0 -> 2.2, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,349 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 36.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,349 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,361 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,361 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,361 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,361 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,361 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,361 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,376 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:51,376 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 10.0 -> 80.0, 单价: 35.0 -> 4.375, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:53,446 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-25 13:08:53,446 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 3.0 -> 45.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:48,981 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 30.0, 单价: 33.0 -> 2.2, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:48,981 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 33.0 -> 2.2, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:48,981 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 33.0 -> 2.2, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:48,981 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 33.0 -> 2.2, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:48,997 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 36.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:48,997 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:48,997 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:48,997 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:49,002 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:49,002 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:50,250 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:50,250 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:50,250 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:50,250 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 10.0 -> 80.0, 单价: 35.0 -> 4.375, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:50,250 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-25 13:09:50,250 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 3.0 -> 45.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-25 13:13:38,562 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 62.0 -> 4.133333333333334, 单位: 件 -> 瓶
|
||||
2025-05-25 13:13:38,562 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 62.0 -> 4.133333333333334, 单位: 件 -> 瓶
|
||||
2025-05-25 13:13:38,571 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 62.0 -> 4.133333333333334, 单位: 件 -> 瓶
|
||||
2025-05-25 13:13:38,571 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 62.0 -> 4.133333333333334, 单位: 件 -> 瓶
|
||||
2025-05-25 13:18:48,271 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 49.0 -> 4.083333333333333, 单位: 件 -> 瓶
|
||||
2025-05-25 13:18:48,271 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 49.0 -> 4.083333333333333, 单位: 件 -> 瓶
|
||||
2025-05-25 13:18:48,271 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 49.0 -> 4.083333333333333, 单位: 件 -> 瓶
|
||||
2025-05-25 13:18:48,271 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 40.0 -> 3.3333333333333335, 单位: 件 -> 瓶
|
||||
2025-05-25 13:18:48,302 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 40.0 -> 3.3333333333333335, 单位: 件 -> 瓶
|
||||
2025-05-25 13:18:48,302 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 40.0 -> 3.3333333333333335, 单位: 件 -> 瓶
|
||||
2025-05-25 13:22:50,129 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 33.0 -> 1.375, 单位: 件 -> 瓶
|
||||
2025-05-25 13:22:50,129 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 45.0 -> 3.0, 单位: 件 -> 瓶
|
||||
2025-05-25 13:22:50,135 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 57.0 -> 3.8, 单位: 件 -> 瓶
|
||||
2025-05-25 13:22:50,135 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 30.0, 单价: 50.0 -> 3.3333333333333335, 单位: 件 -> 瓶
|
||||
2025-05-25 13:22:50,204 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 50.0 -> 3.3333333333333335, 单位: 件 -> 瓶
|
||||
2025-05-25 13:23:57,623 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 5.0 -> 120.0, 单价: 43.0 -> 1.7916666666666667, 单位: 件 -> 瓶
|
||||
2025-05-25 13:23:57,623 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 33.0 -> 1.375, 单位: 件 -> 瓶
|
||||
2025-05-25 13:23:57,623 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 45.0 -> 3.0, 单位: 件 -> 瓶
|
||||
2025-05-25 13:23:57,623 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 57.0 -> 3.8, 单位: 件 -> 瓶
|
||||
2025-05-25 13:23:57,629 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 30.0, 单价: 50.0 -> 3.3333333333333335, 单位: 件 -> 瓶
|
||||
2025-05-25 13:23:57,630 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 50.0 -> 3.3333333333333335, 单位: 件 -> 瓶
|
||||
2025-05-25 17:40:35,683 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 1.0, 单价: 21.0, 单位: 盒
|
||||
2025-05-28 11:43:04,632 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-28 11:43:04,633 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 55.0 -> 4.583333333333333, 单位: 件 -> 瓶
|
||||
2025-05-28 11:43:04,633 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 55.0 -> 4.583333333333333, 单位: 件 -> 瓶
|
||||
2025-05-28 11:43:04,633 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 3.0, 单价: 0, 单位: 瓶
|
||||
2025-05-28 11:43:04,636 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 14.0, 单价: 0, 单位: 瓶
|
||||
2025-05-28 11:43:04,636 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 1.0, 单价: 0, 单位: 瓶
|
||||
2025-05-28 11:43:04,802 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 1.0, 单价: 0, 单位: 瓶
|
||||
2025-05-28 11:46:32,182 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 55.0 -> 4.583333333333333, 单位: 件 -> 瓶
|
||||
2025-05-28 11:46:32,182 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 55.0 -> 4.583333333333333, 单位: 件 -> 瓶
|
||||
2025-05-28 11:46:32,182 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 55.0 -> 4.583333333333333, 单位: 件 -> 瓶
|
||||
2025-05-28 11:46:32,182 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 3.0, 单价: 0, 单位: 瓶
|
||||
2025-05-28 11:46:32,182 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 14.0, 单价: 0, 单位: 瓶
|
||||
2025-05-28 11:46:32,182 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 1.0, 单价: 0, 单位: 瓶
|
||||
2025-05-28 11:46:32,182 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 1.0, 单价: 0, 单位: 瓶
|
||||
2025-05-28 11:51:11,447 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 55.0 -> 4.583333333333333, 单位: 件 -> 瓶
|
||||
2025-05-28 11:51:11,447 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 55.0 -> 4.583333333333333, 单位: 件 -> 瓶
|
||||
2025-05-28 11:51:11,452 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 55.0 -> 4.583333333333333, 单位: 件 -> 瓶
|
||||
2025-05-28 11:51:11,452 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 55.0 -> 4.583333333333333, 单位: 件 -> 瓶
|
||||
2025-05-28 11:51:11,455 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 3.0, 单价: 0, 单位: 瓶
|
||||
2025-05-28 11:51:11,455 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 14.0, 单价: 0, 单位: 瓶
|
||||
2025-05-28 11:51:11,459 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 1.0, 单价: 0, 单位: 瓶
|
||||
2025-05-28 11:51:11,459 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 1.0, 单价: 0, 单位: 瓶
|
||||
2025-05-29 10:34:23,338 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 12.0, 单价: 27.0 -> 6.75, 单位: 件 -> 瓶
|
||||
2025-05-29 10:34:23,342 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 23.0 -> 0.9583333333333334, 单位: 件 -> 瓶
|
||||
2025-05-29 10:34:23,344 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 10.0 -> 240.0, 单价: 23.0 -> 0.9583333333333334, 单位: 件 -> 瓶
|
||||
2025-05-29 10:34:23,344 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 5.0 -> 40.0, 单价: 21.0 -> 2.625, 单位: 件 -> 瓶
|
||||
2025-05-29 10:34:23,346 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 5.0 -> 60.0, 单价: 26.0 -> 2.1666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-29 10:34:23,346 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 78.0 -> 6.5, 单位: 件 -> 瓶
|
||||
2025-05-29 10:34:23,358 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 40.0 -> 1.6666666666666667, 单位: 件 -> 瓶
|
||||
2025-05-29 10:34:23,358 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 32.0 -> 2.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-29 10:34:23,366 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 340.05 -> 22.67, 单位: 件 -> 瓶
|
||||
2025-05-29 10:34:25,710 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 282.0 -> 11.75, 单位: 件 -> 瓶
|
||||
2025-05-29 10:34:25,710 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 24.0, 单价: 312.0 -> 13.0, 单位: 件 -> 瓶
|
||||
2025-05-29 10:34:25,714 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 4.0, 单价: 0, 单位: 瓶
|
||||
2025-05-29 10:44:15,387 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 10:44:15,392 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 10:44:15,393 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 10:44:15,393 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 15.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 10:44:15,393 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 15.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 10:44:15,396 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 10:44:15,396 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 10:44:15,396 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 3.0 -> 72.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 10:44:15,843 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 14.0, 单价: 0, 单位: 瓶
|
||||
2025-05-29 10:44:15,843 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 24.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:04:29,196 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:04:29,196 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:04:29,196 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:04:29,196 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 15.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:04:29,196 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 15.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:04:29,200 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:04:29,251 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:04:29,253 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 3.0 -> 72.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:04:29,253 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 14.0, 单价: 0, 单位: 瓶
|
||||
2025-05-29 11:04:29,253 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 24.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:11:26,691 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 37.0 -> 3.0833333333333335, 单位: 件 -> 瓶
|
||||
2025-05-29 11:11:26,693 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 37.0 -> 3.0833333333333335, 单位: 件 -> 瓶
|
||||
2025-05-29 11:11:26,693 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 48.0 -> 4.0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:11:26,693 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 48.0 -> 3.2, 单位: 件 -> 瓶
|
||||
2025-05-29 11:11:26,693 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 48.0 -> 3.2, 单位: 件 -> 瓶
|
||||
2025-05-29 11:11:26,695 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 48.0 -> 4.0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:11:26,696 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 48.0 -> 4.0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:11:26,697 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 120.0 -> 5.0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:11:26,697 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 14.0, 单价: 0, 单位: 瓶
|
||||
2025-05-29 11:11:26,698 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 24.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:16:59,612 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 33.0 -> 2.75, 单位: 件 -> 瓶
|
||||
2025-05-29 11:16:59,614 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 55.08 -> 4.59, 单位: 件 -> 瓶
|
||||
2025-05-29 11:16:59,614 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 52.0 -> 4.333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-29 11:16:59,614 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 52.0 -> 4.333333333333333, 单位: 件 -> 瓶
|
||||
2025-05-29 11:28:27,634 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 62.0 -> 5.166666666666667, 单位: 件 -> 瓶
|
||||
2025-05-29 11:28:27,636 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 62.0 -> 5.166666666666667, 单位: 件 -> 瓶
|
||||
2025-05-29 11:28:27,638 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-29 11:28:27,640 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-29 11:28:27,642 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-29 11:28:27,642 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 30.0, 单价: 55.0 -> 3.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-29 11:28:27,642 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 30.0, 单价: 55.0 -> 3.6666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-29 11:28:27,642 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 15.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:32:47,143 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 8.0, 单价: 352.0 -> 88.0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:32:47,143 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 1.0, 单价: 264.0 -> 264.0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:32:47,147 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 6.0, 单价: 58.0 -> 9.666666666666666, 单位: 件 -> 瓶
|
||||
2025-05-29 11:32:47,175 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 5.0 -> 50.0, 单价: 2.8 -> 0.27999999999999997, 单位: 盒 -> 瓶
|
||||
2025-05-29 11:37:29,695 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 8.0, 单价: 352.0 -> 88.0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:37:29,695 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 6.0, 单价: 264.0 -> 44.0, 单位: 件 -> 瓶
|
||||
2025-05-29 11:37:29,697 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 6.0, 单价: 58.0 -> 9.666666666666666, 单位: 件 -> 瓶
|
||||
2025-05-29 11:37:29,721 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(三级规格)处理: 数量: 5.0 -> 50.0, 单价: 2.8 -> 0.27999999999999997, 单位: 盒 -> 瓶
|
||||
2025-05-29 11:44:36,530 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 6.0, 单价: 4.8, 单位: 盒
|
||||
2025-05-29 11:44:38,545 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 6.0, 单价: 6.0, 单位: 盒
|
||||
2025-05-29 11:44:41,864 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 12.0, 单价: 12.5, 单位: 盒
|
||||
2025-05-29 11:44:41,867 - app.core.excel.handlers.unit_converter_handlers - INFO - 提/盒单位(二级规格)处理: 保持原样 数量: 1.0, 单价: 14.0, 单位: 盒
|
||||
2025-05-29 12:42:04,621 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-05-29 12:42:04,624 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-05-29 12:42:04,638 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-05-29 12:42:04,639 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-05-29 12:42:04,640 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-29 12:42:04,641 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-29 12:42:04,864 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-29 12:42:04,868 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 56.0 -> 3.7333333333333334, 单位: 件 -> 瓶
|
||||
2025-05-29 12:42:04,869 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 73.0 -> 6.083333333333333, 单位: 件 -> 瓶
|
||||
2025-05-29 12:42:04,871 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-29 12:42:04,871 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-05-29 12:42:04,873 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 10.0, 单价: 0, 单位: 瓶
|
||||
2025-05-30 08:50:51,028 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 30.0, 单价: 45.0 -> 3.0, 单位: 件 -> 瓶
|
||||
2025-05-30 08:50:51,028 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 52.0 -> 2.1666666666666665, 单位: 件 -> 瓶
|
||||
2025-05-30 08:50:51,028 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-05-30 08:50:51,028 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 55.0 -> 2.2916666666666665, 单位: 件 -> 瓶
|
||||
2025-05-30 08:50:51,034 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 4.0 -> 96.0, 单价: 54.0 -> 2.25, 单位: 件 -> 瓶
|
||||
2025-05-30 08:50:51,034 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 29.0 -> 2.4166666666666665, 单位: 件 -> 瓶
|
||||
2025-05-30 08:50:51,038 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 4.0 -> 96.0, 单价: 50.0 -> 2.0833333333333335, 单位: 件 -> 瓶
|
||||
2025-05-30 08:50:51,038 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 48.0, 单价: 55.0 -> 2.2916666666666665, 单位: 件 -> 瓶
|
||||
2025-05-30 08:50:51,038 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 4.0 -> 48.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 08:50:51,470 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 72.0, 单价: 62.0 -> 2.5833333333333335, 单位: 件 -> 瓶
|
||||
2025-05-30 08:54:24,138 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 1.0, 单价: 42.0 -> 42.0, 单位: 件 -> 瓶
|
||||
2025-05-30 08:54:24,138 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 08:54:24,138 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 08:54:24,138 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 08:54:24,153 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 08:54:24,153 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 08:54:24,158 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 08:54:24,158 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 08:54:24,158 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 08:54:24,158 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 24.0, 单价: 35.0 -> 4.375, 单位: 件 -> 瓶
|
||||
2025-05-30 08:54:24,165 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 15.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-30 09:01:02,714 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:01:02,714 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:01:02,714 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:01:02,714 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:01:02,714 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:01:02,714 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:01:02,739 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:01:02,739 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:01:02,739 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:01:02,745 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 24.0, 单价: 35.0 -> 4.375, 单位: 件 -> 瓶
|
||||
2025-05-30 09:01:02,745 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 15.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-30 09:10:06,546 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:10:06,547 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:10:06,548 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:10:06,548 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:10:06,549 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:10:06,549 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:10:06,659 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:10:06,660 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:10:06,661 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:10:06,662 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 42.0 -> 3.5, 单位: 件 -> 瓶
|
||||
2025-05-30 09:10:06,662 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 3.0 -> 24.0, 单价: 35.0 -> 4.375, 单位: 件 -> 瓶
|
||||
2025-05-30 09:10:06,662 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品件单位处理: 数量: 1.0 -> 15.0, 单价: 0, 单位: 件 -> 瓶
|
||||
2025-05-30 09:54:20,830 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 5.0 -> 60.0, 单价: 28.0 -> 2.3333333333333335, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:20,836 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品箱单位处理: 数量: 1.0 -> 12.0, 单价: 0, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:20,836 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品箱单位处理: 数量: 1.0 -> 24.0, 单价: 0, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:20,836 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:20,920 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 2.0 -> 30.0, 单价: 56.0 -> 3.7333333333333334, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:20,920 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 2.0 -> 30.0, 单价: 55.0 -> 3.6666666666666665, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:20,935 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:20,935 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 15.0, 单价: 55.0 -> 3.6666666666666665, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:24,537 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 2.0 -> 30.0, 单价: 55.0 -> 3.6666666666666665, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:24,537 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 2.0 -> 24.0, 单价: 62.0 -> 5.166666666666667, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:24,543 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 6.0, 单价: 50.0 -> 8.333333333333334, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:24,545 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 6.0, 单价: 50.0 -> 8.333333333333334, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:24,545 - app.core.excel.handlers.unit_converter_handlers - INFO - 箱单位处理: 数量: 1.0 -> 12.0, 单价: 62.0 -> 5.166666666666667, 单位: 箱 -> 瓶
|
||||
2025-05-30 09:54:29,680 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品箱单位处理: 数量: 1.0 -> 15.0, 单价: 0, 单位: 箱 -> 瓶
|
||||
2025-08-16 00:52:17,160 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-08-16 00:52:17,236 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-08-16 00:52:17,298 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 15.0, 单价: 68.0 -> 4.533333333333333, 单位: 件 -> 瓶
|
||||
2025-08-16 00:52:17,366 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-08-16 00:52:17,415 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 2.0 -> 24.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-08-16 00:52:17,477 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 45.0 -> 3.75, 单位: 件 -> 瓶
|
||||
2025-08-16 00:52:17,533 - app.core.excel.handlers.unit_converter_handlers - INFO - 件单位处理: 数量: 1.0 -> 12.0, 单价: 73.0 -> 6.083333333333333, 单位: 件 -> 瓶
|
||||
2025-08-16 00:52:17,594 - app.core.excel.handlers.unit_converter_handlers - INFO - 赠品瓶单位处理: 保持原样 数量: 5.0, 单价: 0, 单位: 瓶
|
||||
|
||||
@ -1,678 +1,2 @@
|
||||
2025-05-02 16:10:30,803 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 16:10:30,805 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 16:11:05,080 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 16:11:05,082 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 16:15:14,540 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 16:15:14,541 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 16:24:57,646 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 16:24:57,648 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 16:34:26,013 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 16:34:26,014 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 16:34:29,402 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\output 中的采购单Excel文件
|
||||
2025-05-02 16:34:29,403 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 16:34:29,403 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\output 中的采购单Excel文件
|
||||
2025-05-02 16:34:29,404 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 16:34:29,408 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\output\采购单_微信图片_20250227193150(1)_20250502163429.xls
|
||||
2025-05-02 16:34:29,410 - app.core.excel.merger - INFO - 列名映射结果: {'条码': '条码(必填)', '采购量': '采购量(必填)', '采购单价': '采购单价(必填)', '赠送量': '赠送量'}
|
||||
2025-05-02 16:34:29,410 - app.core.excel.merger - INFO - 开始合并 1 个采购单文件
|
||||
2025-05-02 16:34:29,411 - app.core.excel.merger - WARNING - 数据帧 0 缺少必要的列: ['条码', '采购量', '采购单价']
|
||||
2025-05-02 16:34:29,411 - app.core.excel.merger - WARNING - 没有有效的数据帧用于合并
|
||||
2025-05-02 16:34:29,411 - app.core.excel.merger - ERROR - 合并采购单失败
|
||||
2025-05-02 16:55:26,480 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 16:55:26,481 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 17:08:58,655 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 17:08:58,656 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 17:10:09,223 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 17:10:09,224 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 17:16:24,477 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 17:16:24,478 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 17:32:36,463 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 17:32:36,464 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 17:40:07,688 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 17:40:07,688 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 17:42:15,226 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 17:42:15,226 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 17:57:41,816 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 17:57:41,817 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 18:00:56,507 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 18:00:56,508 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 18:01:27,764 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 18:01:27,765 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 18:01:40,471 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 18:01:40,472 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 18:16:10,313 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 18:16:10,314 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 18:27:30,081 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 18:27:30,082 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 18:31:29,327 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 18:31:29,328 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 18:33:05,101 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 18:33:05,103 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 18:38:52,880 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 18:38:52,881 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 18:41:16,743 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 18:41:16,743 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 19:15:17,472 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 19:15:17,472 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 19:15:43,268 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 19:15:43,269 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 19:33:54,963 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 19:33:54,964 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 19:35:48,763 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 19:35:48,764 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 19:36:15,985 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 19:36:15,986 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 19:42:19,206 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 19:42:19,207 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 19:42:36,440 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 19:42:36,441 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 19:42:36,441 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 19:42:36,442 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 19:42:36,451 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502191502.xls
|
||||
2025-05-02 19:42:36,455 - app.core.excel.merger - INFO - 列名映射结果: {'条码': '条码(必填)', '采购量': '采购量(必填)', '采购单价': '采购单价(必填)', '赠送量': '赠送量'}
|
||||
2025-05-02 19:42:36,456 - app.core.excel.merger - INFO - 开始合并 1 个采购单文件
|
||||
2025-05-02 19:42:36,456 - app.core.excel.merger - WARNING - 数据帧 0 缺少必要的列: ['条码', '采购量', '采购单价']
|
||||
2025-05-02 19:42:36,456 - app.core.excel.merger - WARNING - 没有有效的数据帧用于合并
|
||||
2025-05-02 19:42:36,457 - app.core.excel.merger - ERROR - 合并采购单失败
|
||||
2025-05-02 19:53:27,941 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 19:53:27,941 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 19:53:47,770 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 19:53:47,771 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 19:53:47,771 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 19:53:47,772 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 19:53:47,780 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502191502.xls
|
||||
2025-05-02 19:53:47,784 - app.core.excel.merger - INFO - 列名映射结果: {'条码': '条码(必填)', '采购量': '采购量(必填)', '采购单价': '采购单价(必填)', '赠送量': '赠送量'}
|
||||
2025-05-02 19:53:47,784 - app.core.excel.merger - INFO - 开始合并 1 个采购单文件
|
||||
2025-05-02 19:53:47,785 - app.core.excel.merger - WARNING - 数据帧 0 缺少必要的列: ['条码', '采购量', '采购单价']
|
||||
2025-05-02 19:53:47,785 - app.core.excel.merger - WARNING - 没有有效的数据帧用于合并
|
||||
2025-05-02 19:53:47,785 - app.core.excel.merger - ERROR - 合并采购单失败
|
||||
2025-05-02 20:52:59,673 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 20:52:59,674 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 20:53:07,428 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 20:53:07,430 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 20:53:07,433 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 20:53:07,434 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 20:53:07,465 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502205251.xls
|
||||
2025-05-02 20:53:07,467 - app.core.excel.merger - INFO - 列名映射结果: {'条码': '条码(必填)', '采购量': '采购量(必填)', '采购单价': '采购单价(必填)', '赠送量': '赠送量'}
|
||||
2025-05-02 20:53:07,469 - app.core.excel.merger - INFO - 开始合并 1 个采购单文件
|
||||
2025-05-02 20:53:07,469 - app.core.excel.merger - WARNING - 数据帧 0 缺少必要的列: ['条码', '采购量', '采购单价']
|
||||
2025-05-02 20:53:07,470 - app.core.excel.merger - WARNING - 没有有效的数据帧用于合并
|
||||
2025-05-02 20:53:07,470 - app.core.excel.merger - ERROR - 合并采购单失败
|
||||
2025-05-02 21:02:57,317 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:02:57,317 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:04:06,634 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:04:06,635 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:07:29,006 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:07:29,007 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:10:08,470 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:10:08,471 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:11:03,185 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:11:03,186 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:15:10,777 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:15:10,778 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:16:38,296 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:16:38,296 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:21:20,679 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:21:20,680 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:22:23,297 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:22:23,298 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:22:31,697 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 21:22:31,702 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 21:22:31,715 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 21:22:31,724 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 21:22:31,735 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502212111.xls
|
||||
2025-05-02 21:22:31,737 - app.core.excel.merger - INFO - 列名映射结果: {'条码': '条码(必填)', '采购量': '采购量(必填)', '采购单价': '采购单价(必填)', '赠送量': '赠送量'}
|
||||
2025-05-02 21:22:31,738 - app.core.excel.merger - INFO - 开始合并 1 个采购单文件
|
||||
2025-05-02 21:22:31,739 - app.core.excel.merger - WARNING - 数据帧 0 缺少必要的列: ['条码', '采购量', '采购单价']
|
||||
2025-05-02 21:22:31,740 - app.core.excel.merger - WARNING - 没有有效的数据帧用于合并
|
||||
2025-05-02 21:22:31,741 - app.core.excel.merger - ERROR - 合并采购单失败
|
||||
2025-05-02 21:45:07,598 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:45:07,599 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:45:21,947 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 21:45:21,948 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 21:45:21,948 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 21:45:21,949 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 21:45:21,954 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502214456.xls
|
||||
2025-05-02 21:45:21,956 - app.core.excel.merger - INFO - 列名映射结果: {'条码': '条码(必填)', '采购量': '采购量(必填)', '采购单价': '采购单价(必填)', '赠送量': '赠送量'}
|
||||
2025-05-02 21:45:21,956 - app.core.excel.merger - INFO - 开始合并 1 个采购单文件
|
||||
2025-05-02 21:45:21,956 - app.core.excel.merger - WARNING - 数据帧 0 缺少必要的列: ['条码', '采购量', '采购单价']
|
||||
2025-05-02 21:45:24,735 - app.core.excel.merger - WARNING - 没有有效的数据帧用于合并
|
||||
2025-05-02 21:45:24,736 - app.core.excel.merger - ERROR - 合并采购单失败
|
||||
2025-05-02 21:54:51,328 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:54:51,329 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:55:07,664 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:55:07,664 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:56:33,285 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:56:33,286 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 21:58:02,455 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 21:58:02,455 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 22:07:10,381 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 22:07:10,382 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 22:10:02,823 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 22:10:02,824 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 22:11:55,061 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 22:11:55,061 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 22:12:08,754 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 22:12:08,755 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 22:12:08,755 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 22:12:08,755 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 22:12:08,758 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502214456.xls
|
||||
2025-05-02 22:12:08,760 - app.core.excel.merger - INFO - 列名映射结果: {'条码': '条码(必填)', '采购量': '采购量(必填)', '采购单价': '采购单价(必填)', '赠送量': '赠送量'}
|
||||
2025-05-02 22:12:11,605 - app.core.excel.merger - INFO - 开始合并 1 个采购单文件
|
||||
2025-05-02 22:12:11,605 - app.core.excel.merger - WARNING - 数据帧 0 缺少必要的列: ['条码', '采购量', '采购单价']
|
||||
2025-05-02 22:12:11,606 - app.core.excel.merger - WARNING - 没有有效的数据帧用于合并
|
||||
2025-05-02 22:12:11,606 - app.core.excel.merger - ERROR - 合并采购单失败
|
||||
2025-05-02 22:26:11,621 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 22:26:11,621 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 22:26:42,570 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 22:26:42,570 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 22:29:10,831 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 22:29:10,831 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 22:29:26,875 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 22:29:26,876 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 22:29:26,876 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 22:29:26,877 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-02 22:29:26,883 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502214456.xls
|
||||
2025-05-02 22:29:26,884 - app.core.excel.merger - INFO - 列名映射结果: {'条码': '条码(必填)', '采购量': '采购量(必填)', '采购单价': '采购单价(必填)', '赠送量': '赠送量'}
|
||||
2025-05-02 22:29:29,917 - app.core.excel.merger - INFO - 开始合并 1 个采购单文件
|
||||
2025-05-02 22:29:29,917 - app.core.excel.merger - WARNING - 数据帧 0 缺少必要的列: ['条码', '采购量', '采购单价']
|
||||
2025-05-02 22:29:29,918 - app.core.excel.merger - WARNING - 没有有效的数据帧用于合并
|
||||
2025-05-02 22:29:29,918 - app.core.excel.merger - ERROR - 合并采购单失败
|
||||
2025-05-02 22:40:41,146 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-02 22:40:41,147 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-02 22:40:56,995 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-02 22:40:56,996 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-03 12:54:57,233 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-03 12:54:57,235 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-03 12:55:14,451 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-03 12:55:14,452 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-03 14:44:17,319 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-03 14:44:17,319 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-03 14:44:26,125 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-03 14:44:26,125 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-03 14:44:26,126 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-03 14:44:26,126 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-03 14:44:26,131 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250503144404.xls
|
||||
2025-05-03 14:44:26,133 - app.core.excel.merger - INFO - 列名映射结果: {'条码': '条码(必填)', '采购量': '采购量(必填)', '采购单价': '采购单价(必填)', '赠送量': '赠送量'}
|
||||
2025-05-03 14:44:30,398 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250502214456.xls
|
||||
2025-05-03 14:44:30,399 - app.core.excel.merger - INFO - 列名映射结果: {'条码': '条码(必填)', '采购量': '采购量(必填)', '采购单价': '采购单价(必填)', '赠送量': '赠送量'}
|
||||
2025-05-03 14:44:30,399 - app.core.excel.merger - INFO - 开始合并 2 个采购单文件
|
||||
2025-05-03 14:44:30,399 - app.core.excel.merger - WARNING - 数据帧 0 缺少必要的列: ['条码', '采购量', '采购单价']
|
||||
2025-05-03 14:44:30,399 - app.core.excel.merger - WARNING - 数据帧 1 缺少必要的列: ['条码', '采购量', '采购单价']
|
||||
2025-05-03 14:44:30,399 - app.core.excel.merger - WARNING - 没有有效的数据帧用于合并
|
||||
2025-05-03 14:44:30,400 - app.core.excel.merger - ERROR - 合并采购单失败
|
||||
2025-05-03 14:45:44,521 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-03 14:45:44,521 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-03 14:45:58,808 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-03 14:45:58,809 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-03 14:53:52,352 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-03 14:53:52,353 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-03 15:43:36,732 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-03 15:43:36,733 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 18:55:02,301 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 18:55:02,303 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 18:55:13,152 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 18:55:13,153 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-05 18:59:17,851 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 18:59:17,851 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:00:26,074 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 19:00:26,075 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:02:32,167 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 19:02:32,168 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:02:54,873 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 19:02:54,873 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:02:54,874 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:02:54,874 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:02:54,875 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:02:54,878 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:02:54,888 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185908.xls
|
||||
2025-05-05 19:02:54,894 - app.core.excel.merger - INFO - 列名映射结果: {'条码': '条码(必填)', '采购量': '采购量(必填)', '采购单价': '采购单价(必填)', '赠送量': '赠送量'}
|
||||
2025-05-05 19:02:54,899 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185842.xls
|
||||
2025-05-05 19:02:54,900 - app.core.excel.merger - INFO - 列名映射结果: {'条码': '条码(必填)', '采购量': '采购量(必填)', '采购单价': '采购单价(必填)', '赠送量': '赠送量'}
|
||||
2025-05-05 19:02:54,900 - app.core.excel.merger - INFO - 开始合并 2 个采购单文件
|
||||
2025-05-05 19:02:54,901 - app.core.excel.merger - WARNING - 数据帧 0 缺少必要的列: ['条码', '采购量', '采购单价']
|
||||
2025-05-05 19:02:54,901 - app.core.excel.merger - WARNING - 数据帧 1 缺少必要的列: ['条码', '采购量', '采购单价']
|
||||
2025-05-05 19:02:54,901 - app.core.excel.merger - WARNING - 没有有效的数据帧用于合并
|
||||
2025-05-05 19:02:54,901 - app.core.excel.merger - ERROR - 合并采购单失败
|
||||
2025-05-05 19:15:12,553 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 19:15:12,554 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:18:54,516 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 19:18:54,519 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:18:54,538 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:18:54,540 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:18:54,548 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:18:54,551 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:18:54,617 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185908.xls
|
||||
2025-05-05 19:18:54,620 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-05 19:18:54,620 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-05 19:18:54,625 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-05 19:18:54,631 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-05 19:18:54,635 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-05 19:18:54,635 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-05 19:18:54,638 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-05 19:18:54,650 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185842.xls
|
||||
2025-05-05 19:18:54,655 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-05 19:18:54,655 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-05 19:18:54,656 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-05 19:18:54,658 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-05 19:18:54,668 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-05 19:18:54,669 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-05 19:18:54,679 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-05 19:18:54,681 - app.core.excel.merger - INFO - 开始合并 2 个采购单文件
|
||||
2025-05-05 19:18:54,758 - app.core.excel.merger - INFO - 合并完成,共 46 条商品记录
|
||||
2025-05-05 19:18:54,835 - app.core.excel.merger - INFO - 合并采购单已保存到: D:\My Documents\python\orc-order-v2\data\output\合并采购单_20250505191854.xls
|
||||
2025-05-05 19:19:59,314 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 19:19:59,314 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:22:18,527 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 19:22:18,530 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:22:37,220 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 19:22:37,221 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:22:37,223 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:22:37,226 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:22:37,227 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:22:37,234 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:22:37,242 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185908.xls
|
||||
2025-05-05 19:22:37,249 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-05 19:22:37,250 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-05 19:22:37,250 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-05 19:22:37,251 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-05 19:22:37,251 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-05 19:22:37,251 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-05 19:22:37,253 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-05 19:22:37,272 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185842.xls
|
||||
2025-05-05 19:22:37,284 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-05 19:22:37,284 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-05 19:22:37,284 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-05 19:22:37,285 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-05 19:22:37,285 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-05 19:22:37,286 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-05 19:22:37,287 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-05 19:22:37,287 - app.core.excel.merger - INFO - 开始合并 2 个采购单文件
|
||||
2025-05-05 19:22:37,338 - app.core.excel.merger - INFO - 合并完成,共 47 条商品记录
|
||||
2025-05-05 19:22:37,403 - app.core.excel.merger - INFO - 合并采购单已保存到: D:\My Documents\python\orc-order-v2\data\output\合并采购单_20250505192237.xls
|
||||
2025-05-05 19:28:36,767 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 19:28:36,768 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:28:36,769 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:28:36,770 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:28:36,771 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:28:36,773 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:28:36,781 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185908.xls
|
||||
2025-05-05 19:28:36,783 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-05 19:28:36,784 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-05 19:28:36,785 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-05 19:28:36,785 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-05 19:28:36,786 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-05 19:28:36,786 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-05 19:28:36,787 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-05 19:28:36,795 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185842.xls
|
||||
2025-05-05 19:28:36,797 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-05 19:28:36,797 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-05 19:28:36,797 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-05 19:28:36,798 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-05 19:28:36,798 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-05 19:28:36,798 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-05 19:28:36,799 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-05 19:28:36,800 - app.core.excel.merger - INFO - 开始合并 2 个采购单文件
|
||||
2025-05-05 19:28:36,807 - app.core.excel.merger - INFO - 处理文件 1: 有效记录 20 行
|
||||
2025-05-05 19:28:36,817 - app.core.excel.merger - INFO - 处理文件 2: 有效记录 27 行
|
||||
2025-05-05 19:28:36,830 - app.core.excel.merger - INFO - 合并完成,共 47 条商品记录
|
||||
2025-05-05 19:28:36,853 - app.core.excel.merger - INFO - 合并采购单已保存到: D:\My Documents\python\orc-order-v2\data\output\合并采购单_20250505192836.xls
|
||||
2025-05-05 19:29:16,909 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 19:29:16,912 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:29:16,913 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:29:16,916 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:29:16,918 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:29:16,922 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:29:16,941 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185908.xls
|
||||
2025-05-05 19:29:16,946 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-05 19:29:16,946 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-05 19:29:16,947 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-05 19:29:16,947 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-05 19:29:16,948 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-05 19:29:16,948 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-05 19:29:16,950 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-05 19:29:16,957 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185842.xls
|
||||
2025-05-05 19:29:16,961 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-05 19:29:16,962 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-05 19:29:16,963 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-05 19:29:16,964 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-05 19:29:16,964 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-05 19:29:16,971 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-05 19:29:16,975 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-05 19:29:16,976 - app.core.excel.merger - INFO - 开始合并 2 个采购单文件
|
||||
2025-05-05 19:29:16,988 - app.core.excel.merger - INFO - 处理文件 1: 有效记录 20 行
|
||||
2025-05-05 19:29:17,003 - app.core.excel.merger - INFO - 处理文件 2: 有效记录 27 行
|
||||
2025-05-05 19:29:17,020 - app.core.excel.merger - INFO - 合并完成,共 47 条商品记录
|
||||
2025-05-05 19:29:17,034 - app.core.excel.merger - INFO - 分析模板结构
|
||||
2025-05-05 19:29:17,068 - app.core.excel.merger - INFO - 合并采购单已保存到: D:\My Documents\python\orc-order-v2\data\output\合并采购单_20250505192917.xls,共47条记录
|
||||
2025-05-05 19:30:06,154 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 19:30:06,154 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:30:06,155 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:30:06,156 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:30:06,156 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:30:06,157 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:30:06,166 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185908.xls
|
||||
2025-05-05 19:30:06,173 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-05 19:30:06,178 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-05 19:30:06,179 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-05 19:30:06,180 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-05 19:30:06,180 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-05 19:30:06,182 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-05 19:30:06,183 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-05 19:30:06,198 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185842.xls
|
||||
2025-05-05 19:30:06,200 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-05 19:30:06,202 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-05 19:30:06,202 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-05 19:30:06,202 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-05 19:30:06,203 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-05 19:30:06,204 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-05 19:30:06,205 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-05 19:30:06,205 - app.core.excel.merger - INFO - 开始合并 2 个采购单文件
|
||||
2025-05-05 19:30:06,222 - app.core.excel.merger - INFO - 处理文件 1: 有效记录 20 行
|
||||
2025-05-05 19:30:06,236 - app.core.excel.merger - INFO - 处理文件 2: 有效记录 27 行
|
||||
2025-05-05 19:30:06,252 - app.core.excel.merger - INFO - 合并完成,共 47 条商品记录
|
||||
2025-05-05 19:30:06,268 - app.core.excel.merger - INFO - 分析模板结构
|
||||
2025-05-05 19:30:06,303 - app.core.excel.merger - INFO - 合并采购单已保存到: D:\My Documents\python\orc-order-v2\data\output\合并采购单_20250505193006.xls,共47条记录
|
||||
2025-05-05 19:30:28,307 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 19:30:28,308 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 19:30:28,308 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:30:28,308 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:30:28,309 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-05 19:30:28,311 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-05 19:30:28,320 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185908.xls
|
||||
2025-05-05 19:30:28,321 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-05 19:30:28,323 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-05 19:30:28,323 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-05 19:30:28,323 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-05 19:30:28,323 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-05 19:30:28,323 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-05 19:30:28,324 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-05 19:30:28,334 - app.core.excel.merger - INFO - 成功读取采购单文件: D:\My Documents\python\orc-order-v2\data\output\采购单_微信图片_20250505185842.xls
|
||||
2025-05-05 19:30:28,335 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-05 19:30:28,335 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-05 19:30:28,335 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-05 19:30:28,335 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-05 19:30:28,336 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-05 19:30:28,336 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-05 19:30:28,337 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-05 19:30:28,337 - app.core.excel.merger - INFO - 开始合并 2 个采购单文件
|
||||
2025-05-05 19:30:28,351 - app.core.excel.merger - INFO - 处理文件 1: 有效记录 20 行
|
||||
2025-05-05 19:30:28,358 - app.core.excel.merger - INFO - 处理文件 2: 有效记录 27 行
|
||||
2025-05-05 19:30:28,383 - app.core.excel.merger - INFO - 合并完成,共 47 条商品记录
|
||||
2025-05-05 19:30:28,391 - app.core.excel.merger - INFO - 分析模板结构
|
||||
2025-05-05 19:30:28,421 - app.core.excel.merger - INFO - 合并采购单已保存到: D:\My Documents\python\orc-order-v2\data\output\合并采购单_20250505193028.xls,共47条记录
|
||||
2025-05-05 22:04:10,737 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 22:04:10,737 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 22:08:07,805 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 22:08:07,806 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 22:22:21,498 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 22:22:21,499 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 22:27:19,323 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 22:27:19,324 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 22:35:49,998 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 22:35:49,999 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 22:36:30,731 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 22:36:30,731 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-05 22:40:12,609 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-05 22:40:12,610 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-06 19:00:08,270 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-06 19:00:08,270 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-06 20:39:58,869 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-06 20:39:58,870 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-06 20:40:58,356 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-06 20:40:58,357 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-06 20:42:36,996 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-06 20:42:36,997 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-06 21:03:30,007 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-06 21:03:30,007 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-06 21:07:27,060 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-06 21:07:27,061 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-06 21:13:40,289 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-06 21:13:40,290 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 18:01:37,211 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 18:01:37,212 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 18:01:48,033 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-07 18:01:48,034 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-07 18:32:13,626 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 18:32:13,627 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 18:36:46,627 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 18:36:46,627 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 18:46:29,608 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 18:46:29,609 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 18:47:16,624 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 18:47:16,624 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 19:17:08,291 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 19:17:08,292 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 19:21:56,952 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 19:21:56,952 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 19:42:51,438 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 19:42:51,438 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 19:44:06,196 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 19:44:06,197 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 19:49:23,213 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 19:49:23,213 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 20:53:53,691 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 20:53:53,691 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 21:08:33,152 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 21:08:33,154 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 21:08:42,985 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 21:08:42,986 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 21:08:57,855 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 21:08:57,856 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 21:13:10,726 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 21:13:10,727 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 21:22:01,715 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 21:22:01,715 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 21:26:07,925 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 21:26:07,926 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 21:29:23,568 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 21:29:23,569 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 21:54:55,230 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 21:54:55,232 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 21:55:16,420 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-07 21:55:16,421 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-07 22:09:59,126 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 22:09:59,127 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 22:14:03,055 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 22:14:03,055 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 22:24:30,226 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 22:24:30,226 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 22:28:51,554 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-07 22:28:51,556 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-07 22:28:53,639 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-07 22:28:53,640 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-08 19:45:41,034 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-08 19:45:41,035 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-08 19:45:56,357 - app.core.excel.merger - INFO - 搜索目录 D:\My Documents\python\orc-order-v2\data\output 中的采购单Excel文件
|
||||
2025-05-08 19:45:56,358 - app.core.excel.merger - INFO - 找到 1 个采购单Excel文件
|
||||
2025-05-08 19:47:28,885 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-08 19:47:28,886 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-08 19:51:23,189 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-08 19:51:23,189 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-08 20:04:06,909 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-08 20:04:06,909 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-08 20:46:00,700 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-08 20:46:00,701 - app.core.excel.merger - INFO - 初始化完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-09 12:12:42,109 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger
|
||||
2025-05-09 12:13:52,585 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 12:13:52,585 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-09 12:45:35,998 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 12:45:35,998 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-09 13:39:38,184 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 13:39:38,186 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-09 14:08:43,903 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 14:08:43,903 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-09 14:23:40,515 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 14:23:40,515 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-09 14:26:54,510 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 14:26:54,511 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-09 14:31:54,258 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 14:31:54,259 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-09 14:32:20,941 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 14:32:20,942 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-09 16:01:39,294 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 16:01:39,294 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 11:55:28,007 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 11:55:28,008 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 12:29:42,168 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 12:29:42,169 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 12:34:08,605 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 12:34:08,606 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 12:47:25,096 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 12:47:25,097 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 12:50:31,805 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 12:50:31,806 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 12:54:52,741 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 12:54:52,742 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 13:09:39,201 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 13:09:39,201 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 14:16:18,086 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 14:16:18,086 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 14:16:59,268 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 14:16:59,268 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 14:17:10,877 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 14:17:10,878 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 14:20:46,719 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 14:20:46,719 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 14:39:10,332 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 14:39:10,333 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 14:43:22,008 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 14:43:22,009 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-10 16:28:52,367 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 16:28:52,368 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-13 11:36:52,103 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-13 11:36:52,105 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-13 12:29:18,342 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-13 12:29:18,343 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-13 12:39:20,455 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-13 12:39:20,455 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-13 12:47:00,748 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-13 12:47:00,749 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-13 12:49:57,167 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-13 12:49:57,167 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-13 12:50:32,702 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-13 12:50:32,703 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-14 10:23:46,791 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-14 10:23:46,791 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-14 10:29:15,069 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-14 10:29:15,069 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-14 10:32:40,872 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-14 10:32:40,872 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-14 10:35:02,627 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-14 10:35:02,627 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-14 10:43:03,962 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-14 10:43:03,962 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-14 11:06:02,359 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-14 11:06:02,359 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-14 11:06:59,677 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-14 11:06:59,677 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-23 17:11:31,368 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-23 17:11:31,369 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-23 19:01:06,982 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-23 19:01:06,984 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 12:26:18,338 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 12:26:18,338 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 12:28:21,135 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 12:28:21,145 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 12:56:35,679 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 12:56:35,680 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 12:57:16,643 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 12:57:16,643 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 12:57:59,199 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 12:57:59,199 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 13:01:48,905 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 13:01:48,905 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 13:01:48,905 - app.core.excel.merger - INFO - 搜索目录 data/output 中的采购单Excel文件
|
||||
2025-05-25 13:01:48,905 - app.core.excel.merger - INFO - 找到 2 个采购单Excel文件
|
||||
2025-05-25 13:01:48,969 - app.core.excel.merger - INFO - 成功读取采购单文件: data/output\采购单_微信图片_20250525123637.xls
|
||||
2025-05-25 13:01:48,972 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-25 13:01:48,972 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-25 13:01:48,972 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-25 13:01:48,972 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-25 13:01:48,972 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-25 13:01:48,972 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-25 13:01:48,972 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-25 13:01:48,994 - app.core.excel.merger - INFO - 成功读取采购单文件: data/output\采购单_微信图片_20250525123319.xls
|
||||
2025-05-25 13:01:49,000 - app.core.excel.merger - INFO - 列名: ['商品名称', '条码(必填)', '采购量(必填)', '赠送量', '采购单价(必填)']
|
||||
2025-05-25 13:01:49,000 - app.core.excel.merger - INFO - 直接匹配列名: 条码(必填) -> 条码
|
||||
2025-05-25 13:01:49,000 - app.core.excel.merger - INFO - 直接匹配列名: 采购量(必填) -> 采购量
|
||||
2025-05-25 13:01:49,000 - app.core.excel.merger - INFO - 直接匹配列名: 采购单价(必填) -> 采购单价
|
||||
2025-05-25 13:01:49,000 - app.core.excel.merger - INFO - 直接匹配列名: 赠送量 -> 赠送量
|
||||
2025-05-25 13:01:49,000 - app.core.excel.merger - INFO - 列名重命名映射: {'条码(必填)': '条码', '采购量(必填)': '采购量', '采购单价(必填)': '采购单价', '赠送量': '赠送量'}
|
||||
2025-05-25 13:01:49,000 - app.core.excel.merger - INFO - 重命名后的列名: ['商品名称', '条码', '采购量', '赠送量', '采购单价']
|
||||
2025-05-25 13:01:49,000 - app.core.excel.merger - INFO - 开始合并 2 个采购单文件
|
||||
2025-05-25 13:01:49,005 - app.core.excel.merger - INFO - 处理文件 1: 有效记录 22 行
|
||||
2025-05-25 13:01:49,026 - app.core.excel.merger - INFO - 处理文件 2: 有效记录 27 行
|
||||
2025-05-25 13:01:49,038 - app.core.excel.merger - INFO - 合并完成,共 49 条商品记录
|
||||
2025-05-25 13:01:49,069 - app.core.excel.merger - INFO - 分析模板结构
|
||||
2025-05-25 13:01:49,104 - app.core.excel.merger - INFO - 合并采购单已保存到: data/output\合并采购单_20250525130149.xls,共49条记录
|
||||
2025-05-25 13:08:51,263 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 13:08:51,263 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 13:09:47,277 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 13:09:47,277 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 13:13:37,154 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 13:13:37,154 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 13:18:44,254 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 13:18:44,254 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 13:22:48,773 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 13:22:48,773 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 13:23:57,539 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 13:23:57,539 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 17:40:35,517 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 17:40:35,517 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 17:44:01,745 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 17:44:01,745 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 17:45:22,061 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 17:45:22,061 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 17:49:30,764 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 17:49:30,764 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 17:52:18,364 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 17:52:18,364 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-25 17:53:41,338 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 17:53:41,339 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-28 11:43:02,911 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-28 11:43:02,913 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-28 11:46:32,140 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-28 11:46:32,140 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-28 11:51:11,319 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-28 11:51:11,322 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-29 10:34:23,234 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-29 10:34:23,234 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-29 10:44:15,183 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-29 10:44:15,184 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-29 11:04:29,103 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-29 11:04:29,107 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-29 11:11:26,533 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-29 11:11:26,533 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-29 11:16:59,466 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-29 11:16:59,470 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-29 11:28:13,105 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-29 11:28:13,107 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-29 11:28:27,489 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-29 11:28:27,489 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-29 11:32:47,019 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-29 11:32:47,019 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-29 11:37:29,518 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-29 11:37:29,518 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-29 11:44:36,453 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-29 11:44:36,454 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-29 12:42:02,749 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-29 12:42:02,750 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-30 08:50:50,875 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-30 08:50:50,875 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-30 08:54:23,976 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-30 08:54:23,976 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-30 09:01:02,601 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-30 09:01:02,602 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-30 09:10:06,437 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-30 09:10:06,438 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-30 09:54:20,709 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-30 09:54:20,709 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-30 10:04:38,580 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-30 10:04:38,580 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-30 10:12:13,518 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-30 10:12:13,519 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-30 10:17:10,550 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-30 10:17:10,551 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-05-30 10:17:45,706 - app.core.excel.merger - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-30 10:17:45,707 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
2025-08-16 00:52:16,853 - app.core.excel.merger - INFO - 使用输出目录: E:\2025Code\python\orc-order-v2\data\output
|
||||
2025-08-16 00:52:16,861 - app.core.excel.merger - INFO - 初始化PurchaseOrderMerger完成,模板文件: templates\银豹-采购单模板.xls
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,68 +1,8 @@
|
||||
2025-05-08 19:45:49,628 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-08 19:45:49,629 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-08 19:45:49,638 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-08 19:45:49,639 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-08 19:45:49,640 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-08 19:45:49,641 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-08 19:45:49,641 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-08 19:45:49,878 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-08 19:45:49,881 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-10 13:09:43,071 - app.core.excel.validators - WARNING - 条码长度异常: 109300, 长度=6
|
||||
2025-05-10 13:09:43,072 - app.core.excel.validators - WARNING - 条码验证失败: 条码长度异常: 109300, 长度=6
|
||||
2025-05-10 13:09:43,072 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:00,919 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:00,920 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:00,923 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:01,005 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:01,006 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:01,008 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:01,009 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:01,012 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:04,400 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:04,402 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:04,403 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:04,403 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:04,405 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:04,408 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:08,812 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:08,816 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:08,818 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-13 12:47:08,819 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,422 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,423 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,426 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,426 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,426 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,426 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,426 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,426 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,426 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,426 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,440 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,446 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,446 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,447 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,447 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,448 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,448 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,449 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,449 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,450 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,450 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,451 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,451 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,451 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,451 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,455 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:18,455 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:20,702 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:20,702 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:20,703 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:20,704 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:20,705 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:20,705 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:20,706 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:20,706 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:20,708 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:20,708 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-05-25 12:26:20,709 - app.core.excel.validators - WARNING - 数量验证失败: 数量必须大于0,当前值: 0.0
|
||||
2025-08-16 00:52:17,127 - app.core.excel.validators - INFO - 修正条码长度: 从14位截断到13位
|
||||
2025-08-16 00:52:17,193 - app.core.excel.validators - INFO - 修正条码长度: 从14位截断到13位
|
||||
2025-08-16 00:52:17,268 - app.core.excel.validators - INFO - 修正条码长度: 从14位截断到13位
|
||||
2025-08-16 00:52:17,329 - app.core.excel.validators - INFO - 修正条码长度: 从14位截断到13位
|
||||
2025-08-16 00:52:17,381 - app.core.excel.validators - INFO - 修正条码长度: 从14位截断到13位
|
||||
2025-08-16 00:52:17,446 - app.core.excel.validators - INFO - 修正条码长度: 从14位截断到13位
|
||||
2025-08-16 00:52:17,508 - app.core.excel.validators - INFO - 修正条码长度: 从14位截断到13位
|
||||
2025-08-16 00:52:17,565 - app.core.excel.validators - INFO - 修正条码长度: 从14位截断到13位
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1,957 +0,0 @@
|
||||
2025-05-02 16:10:30,794 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\input, 输出目录: D:\My Documents\python\orc-order-v2\output
|
||||
2025-05-02 16:10:30,809 - app.core.ocr.table_ocr - INFO - 找到 0 个图片文件,其中 0 个未处理
|
||||
2025-05-02 16:10:30,810 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-02 16:11:05,075 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\input, 输出目录: D:\My Documents\python\orc-order-v2\output
|
||||
2025-05-02 16:11:05,085 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 16:11:05,086 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 16:11:05,088 - app.core.ocr.table_ocr - WARNING - 文件大小超过限制 (4.0MB): D:\My Documents\python\orc-order-v2\input\微信图片_20250227193150.jpg
|
||||
2025-05-02 16:11:05,089 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 0/1
|
||||
2025-05-02 16:11:05,089 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 0
|
||||
2025-05-02 16:15:14,536 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\input, 输出目录: D:\My Documents\python\orc-order-v2\output
|
||||
2025-05-02 16:15:14,547 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 16:15:14,548 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 16:15:14,550 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\input\微信图片_20250227193150(1).jpg
|
||||
2025-05-02 16:15:17,344 - app.core.ocr.table_ocr - ERROR - 无法获取请求ID: D:\My Documents\python\orc-order-v2\input\微信图片_20250227193150(1).jpg
|
||||
2025-05-02 16:15:17,345 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 0/1
|
||||
2025-05-02 16:15:17,346 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 0
|
||||
2025-05-02 16:24:57,641 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\input, 输出目录: D:\My Documents\python\orc-order-v2\output
|
||||
2025-05-02 16:24:57,653 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 16:24:57,653 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 16:24:57,655 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\input\微信图片_20250227193150(1).jpg
|
||||
2025-05-02 16:25:00,385 - app.core.ocr.table_ocr - ERROR - 获取Excel结果失败: D:\My Documents\python\orc-order-v2\input\微信图片_20250227193150(1).jpg
|
||||
2025-05-02 16:25:00,386 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 0/1
|
||||
2025-05-02 16:25:00,387 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 0
|
||||
2025-05-02 16:34:26,010 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\input
|
||||
2025-05-02 16:34:26,011 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\output
|
||||
2025-05-02 16:34:26,011 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\temp
|
||||
2025-05-02 16:34:26,011 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\input, 输出目录: D:\My Documents\python\orc-order-v2\output
|
||||
2025-05-02 16:34:26,015 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 16:34:26,015 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 16:34:26,016 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\input\微信图片_20250227193150(1).jpg
|
||||
2025-05-02 16:34:28,698 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\input\微信图片_20250227193150(1).jpg, 输出文件: D:\My Documents\python\orc-order-v2\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 16:34:28,701 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-02 16:34:28,701 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-02 16:55:26,477 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\input
|
||||
2025-05-02 16:55:26,478 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\output
|
||||
2025-05-02 16:55:26,478 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\temp
|
||||
2025-05-02 16:55:26,479 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\input, 输出目录: D:\My Documents\python\orc-order-v2\output
|
||||
2025-05-02 16:55:26,481 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250227193150(1).jpg
|
||||
2025-05-02 16:55:29,252 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250227193150(1).jpg, 输出文件: D:\My Documents\python\orc-order-v2\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:08:58,652 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\input
|
||||
2025-05-02 17:08:58,653 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\output
|
||||
2025-05-02 17:08:58,653 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\temp
|
||||
2025-05-02 17:08:58,653 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\input, 输出目录: D:\My Documents\python\orc-order-v2\output
|
||||
2025-05-02 17:08:58,657 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250227193150(1).jpg
|
||||
2025-05-02 17:09:01,343 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250227193150(1).jpg, 输出文件: D:\My Documents\python\orc-order-v2\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:10:09,220 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\input
|
||||
2025-05-02 17:10:09,221 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\output
|
||||
2025-05-02 17:10:09,221 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\temp
|
||||
2025-05-02 17:10:09,222 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\input, 输出目录: D:\My Documents\python\orc-order-v2\output
|
||||
2025-05-02 17:16:24,475 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 17:16:24,475 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 17:16:24,475 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 17:16:24,475 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 17:32:36,460 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 17:32:36,460 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 17:32:36,460 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 17:32:36,461 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 17:40:07,685 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 17:40:07,685 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 17:40:07,685 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 17:40:07,686 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 17:42:15,224 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 17:42:15,224 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 17:42:15,224 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 17:42:15,225 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 17:57:41,815 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 17:57:41,815 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 17:57:41,815 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 17:57:41,815 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:00:56,506 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 18:00:56,506 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:00:56,506 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 18:00:56,506 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:01:27,762 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 18:01:27,762 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:01:27,762 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 18:01:27,763 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:01:40,469 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 18:01:40,470 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:01:40,470 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 18:01:40,470 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:16:10,311 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 18:16:10,311 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:16:10,312 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 18:16:10,312 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:27:30,079 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 18:27:30,079 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:27:30,079 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 18:27:30,080 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:31:29,324 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 18:31:29,325 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:31:29,325 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 18:31:29,326 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:33:05,099 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 18:33:05,099 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:33:05,099 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 18:33:05,100 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:38:52,878 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 18:38:52,878 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:38:52,878 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 18:38:52,879 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:41:16,740 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 18:41:16,740 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 18:41:16,740 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 18:41:16,741 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:15:17,469 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 19:15:17,470 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:15:17,470 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 19:15:17,470 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:15:17,473 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 19:15:17,473 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 19:15:17,475 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502191502.jpg
|
||||
2025-05-02 19:15:19,390 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502191502.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502191502.xlsx
|
||||
2025-05-02 19:15:19,393 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-02 19:15:19,393 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-02 19:15:43,267 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 19:15:43,267 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:15:43,267 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 19:15:43,268 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:33:54,960 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 19:33:54,961 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:33:54,961 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 19:33:54,962 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:33:54,965 - app.core.ocr.table_ocr - INFO - 找到 0 个图片文件,其中 0 个未处理
|
||||
2025-05-02 19:33:54,965 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-02 19:35:48,760 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 19:35:48,761 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:35:48,761 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 19:35:48,761 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:35:48,765 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 0 个未处理
|
||||
2025-05-02 19:35:48,765 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-02 19:36:15,983 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 19:36:15,983 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:36:15,983 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 19:36:15,984 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:36:15,987 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 0 个未处理
|
||||
2025-05-02 19:36:15,987 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-02 19:42:19,204 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 19:42:19,204 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:42:19,204 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 19:42:19,205 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:42:19,208 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 19:42:19,209 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 19:42:19,210 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502191502.jpg
|
||||
2025-05-02 19:42:21,164 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502191502.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502191502.xlsx
|
||||
2025-05-02 19:42:21,166 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-02 19:42:21,166 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-02 19:53:27,939 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 19:53:27,940 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:53:27,940 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 19:53:27,940 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 19:53:27,942 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 19:53:27,942 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 19:53:27,944 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502191502.jpg
|
||||
2025-05-02 19:53:29,681 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502191502.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502191502.xlsx
|
||||
2025-05-02 19:53:29,683 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-02 19:53:29,683 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-02 20:52:59,672 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 20:52:59,672 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 20:52:59,672 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 20:52:59,672 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 20:52:59,675 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 20:52:59,675 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 20:52:59,676 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502205251.jpg
|
||||
2025-05-02 20:53:02,561 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502205251.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502205251.xlsx
|
||||
2025-05-02 20:53:02,563 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-02 20:53:02,564 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-02 21:02:57,314 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:02:57,314 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:02:57,314 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:02:57,315 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:02:57,318 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 0 个未处理
|
||||
2025-05-02 21:02:57,318 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-02 21:04:06,632 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:04:06,632 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:04:06,632 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:04:06,633 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:07:29,003 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:07:29,003 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:07:29,003 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:07:29,004 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:10:08,463 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:10:08,464 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:10:08,464 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:10:08,465 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:11:03,182 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:11:03,183 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:11:03,183 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:11:03,183 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:15:10,772 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:15:10,773 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:15:10,773 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:15:10,774 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:16:38,294 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:16:38,295 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:16:38,295 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:16:38,295 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:21:20,676 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:21:20,677 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:21:20,677 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:21:20,678 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:21:20,681 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 21:21:20,681 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 21:21:20,682 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502212111.jpg
|
||||
2025-05-02 21:21:27,220 - app.core.ocr.table_ocr - ERROR - OCR识别失败: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502212111.jpg
|
||||
2025-05-02 21:21:27,222 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 0/1
|
||||
2025-05-02 21:21:27,223 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 0
|
||||
2025-05-02 21:22:23,294 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:22:23,295 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:22:23,295 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:22:23,296 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:22:23,300 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 21:22:23,300 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 21:22:23,301 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502212111.jpg
|
||||
2025-05-02 21:22:26,463 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502212111.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502212111.xlsx
|
||||
2025-05-02 21:22:26,467 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-02 21:22:26,467 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-02 21:45:07,596 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:45:07,597 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:45:07,597 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:45:07,597 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:45:07,600 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 21:45:07,601 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 21:45:07,602 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg
|
||||
2025-05-02 21:45:10,623 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-02 21:45:10,628 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-02 21:45:10,629 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-02 21:54:51,324 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:54:51,325 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:54:51,325 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:54:51,326 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:54:51,330 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 0 个未处理
|
||||
2025-05-02 21:54:51,330 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-02 21:55:07,661 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:55:07,661 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:55:07,662 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:55:07,662 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:55:07,666 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 0 个未处理
|
||||
2025-05-02 21:55:07,667 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-02 21:56:33,283 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:56:33,283 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:56:33,283 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:56:33,284 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:56:33,287 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 0 个未处理
|
||||
2025-05-02 21:56:33,287 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-02 21:58:02,452 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 21:58:02,453 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:58:02,453 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 21:58:02,453 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 21:58:02,456 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 0 个未处理
|
||||
2025-05-02 21:58:02,456 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-02 22:07:10,379 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 22:07:10,379 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:07:10,379 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 22:07:10,380 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:07:10,383 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 0 个未处理
|
||||
2025-05-02 22:07:10,383 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-02 22:10:02,821 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 22:10:02,821 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:10:02,821 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 22:10:02,822 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:10:02,825 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 22:10:02,825 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 22:10:02,827 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg
|
||||
2025-05-02 22:10:09,462 - app.core.ocr.table_ocr - ERROR - OCR识别失败: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg
|
||||
2025-05-02 22:10:09,463 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 0/1
|
||||
2025-05-02 22:10:09,463 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 0
|
||||
2025-05-02 22:11:55,058 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 22:11:55,059 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:11:55,059 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 22:11:55,059 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:11:55,062 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 22:11:55,063 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 22:11:55,065 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg
|
||||
2025-05-02 22:11:57,699 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-02 22:11:57,702 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-02 22:11:57,703 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-02 22:26:11,618 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 22:26:11,618 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:26:11,619 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 22:26:11,619 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:26:11,622 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 0 个未处理
|
||||
2025-05-02 22:26:11,622 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-02 22:26:42,567 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 22:26:42,568 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:26:42,568 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 22:26:42,568 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:26:42,572 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 22:26:42,572 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 22:26:42,573 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg
|
||||
2025-05-02 22:26:49,226 - app.core.ocr.table_ocr - ERROR - OCR识别失败: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg
|
||||
2025-05-02 22:26:49,227 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 0/1
|
||||
2025-05-02 22:26:49,227 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 0
|
||||
2025-05-02 22:29:10,827 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 22:29:10,828 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:29:10,828 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 22:29:10,829 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:29:10,832 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 22:29:10,832 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 22:29:10,833 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg
|
||||
2025-05-02 22:29:14,309 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-02 22:29:14,319 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-02 22:29:14,320 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-02 22:40:41,143 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-02 22:40:41,143 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:40:41,143 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-02 22:40:41,144 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-02 22:40:41,148 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-02 22:40:41,148 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-02 22:40:41,149 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg
|
||||
2025-05-02 22:40:43,841 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-02 22:40:43,845 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-02 22:40:43,845 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-03 12:54:57,229 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-03 12:54:57,230 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-03 12:54:57,230 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-03 12:54:57,231 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-03 12:54:57,236 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-03 12:54:57,237 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-03 12:54:57,239 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg
|
||||
2025-05-03 12:55:00,226 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250502214456.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-03 12:55:00,228 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-03 12:55:00,228 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-03 14:44:17,316 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-03 14:44:17,316 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-03 14:44:17,317 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-03 14:44:17,317 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-03 14:44:17,320 - app.core.ocr.table_ocr - INFO - 找到 2 个图片文件,其中 1 个未处理
|
||||
2025-05-03 14:44:17,321 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-03 14:44:17,323 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250503144404.jpg
|
||||
2025-05-03 14:44:19,906 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250503144404.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250503144404.xlsx
|
||||
2025-05-03 14:44:19,914 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-03 14:44:19,916 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-03 14:45:44,518 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-03 14:45:44,519 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-03 14:45:44,519 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-03 14:45:44,520 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-03 14:45:44,523 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-03 14:45:44,523 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-03 14:45:44,525 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250503144404.jpg
|
||||
2025-05-03 14:45:47,099 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250503144404.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250503144404.xlsx
|
||||
2025-05-03 14:45:47,100 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-03 14:45:47,101 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-03 14:45:58,805 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-03 14:45:58,805 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-03 14:45:58,805 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-03 14:45:58,806 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-03 14:53:52,350 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-03 14:53:52,350 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-03 14:53:52,350 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-03 14:53:52,351 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-03 14:53:52,354 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-03 14:53:52,354 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-03 14:53:52,355 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250503145328.jpg
|
||||
2025-05-03 14:53:54,302 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250503145328.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250503145328.xlsx
|
||||
2025-05-03 14:53:54,304 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-03 14:53:54,304 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-03 15:43:36,730 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-03 15:43:36,730 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-03 15:43:36,730 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-03 15:43:36,731 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 18:55:02,297 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 18:55:02,298 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 18:55:02,298 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 18:55:02,298 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 18:55:02,305 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-05 18:55:02,305 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-05 18:55:02,313 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250505185454.jpg
|
||||
2025-05-05 18:55:04,006 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250505185454.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250505185454.xlsx
|
||||
2025-05-05 18:55:04,011 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-05 18:55:04,011 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-05 18:59:17,849 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 18:59:17,849 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 18:59:17,850 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 18:59:17,850 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 18:59:17,854 - app.core.ocr.table_ocr - INFO - 找到 2 个图片文件,其中 2 个未处理
|
||||
2025-05-05 18:59:17,854 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 2
|
||||
2025-05-05 18:59:17,856 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250505185842.jpg
|
||||
2025-05-05 18:59:17,856 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250505185908.jpg
|
||||
2025-05-05 18:59:21,953 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250505185908.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250505185908.xlsx
|
||||
2025-05-05 18:59:23,220 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250505185842.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250505185842.xlsx
|
||||
2025-05-05 18:59:23,222 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 2/2
|
||||
2025-05-05 18:59:23,222 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 2, 成功: 2
|
||||
2025-05-05 19:00:26,072 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 19:00:26,072 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:00:26,072 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 19:00:26,073 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:02:32,159 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 19:02:32,160 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:02:32,160 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 19:02:32,163 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:02:54,871 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 19:02:54,871 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:02:54,871 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 19:02:54,871 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:15:12,551 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 19:15:12,551 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:15:12,551 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 19:15:12,551 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:18:54,491 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 19:18:54,493 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:18:54,495 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 19:18:54,497 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:19:59,311 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 19:19:59,311 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:19:59,311 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 19:19:59,312 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:22:18,524 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 19:22:18,524 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:22:18,525 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 19:22:18,525 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:22:37,216 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 19:22:37,217 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:22:37,217 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 19:22:37,217 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:28:36,763 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 19:28:36,763 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:28:36,764 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 19:28:36,764 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:29:16,901 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 19:29:16,902 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:29:16,903 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 19:29:16,903 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:30:06,151 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 19:30:06,152 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:30:06,152 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 19:30:06,152 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:30:28,305 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 19:30:28,305 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 19:30:28,305 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 19:30:28,306 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:04:10,734 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 22:04:10,735 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:04:10,735 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 22:04:10,736 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:04:10,738 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-05 22:04:10,739 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-05 22:04:10,740 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250505220404.jpg
|
||||
2025-05-05 22:04:17,490 - app.core.ocr.table_ocr - ERROR - OCR识别失败: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250505220404.jpg
|
||||
2025-05-05 22:04:17,491 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 0/1
|
||||
2025-05-05 22:04:17,491 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 0
|
||||
2025-05-05 22:08:07,803 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 22:08:07,803 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:08:07,803 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 22:08:07,804 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:08:07,807 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-05 22:08:07,807 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-05 22:08:07,809 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250505220755.jpg
|
||||
2025-05-05 22:08:09,955 - app.core.ocr.table_ocr - ERROR - OCR识别失败: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250505220755.jpg
|
||||
2025-05-05 22:08:09,957 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 0/1
|
||||
2025-05-05 22:08:09,957 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 0
|
||||
2025-05-05 22:22:21,495 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 22:22:21,495 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:22:21,495 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 22:22:21,496 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:22:21,500 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-05 22:22:21,500 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-05 22:22:21,502 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250505222216.jpg
|
||||
2025-05-05 22:22:22,620 - app.core.ocr.table_ocr - ERROR - OCR识别失败: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250505222216.jpg
|
||||
2025-05-05 22:22:22,621 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 0/1
|
||||
2025-05-05 22:22:22,622 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 0
|
||||
2025-05-05 22:27:19,320 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 22:27:19,321 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:27:19,321 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 22:27:19,321 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:35:49,996 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 22:35:49,997 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:35:49,997 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 22:35:49,997 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:36:30,728 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 22:36:30,728 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:36:30,728 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 22:36:30,729 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:40:12,607 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-05 22:40:12,607 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-05 22:40:12,607 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-05 22:40:12,608 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 19:00:08,267 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-06 19:00:08,268 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 19:00:08,268 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-06 19:00:08,269 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 20:39:58,866 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-06 20:39:58,867 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 20:39:58,867 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-06 20:39:58,867 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 20:39:58,871 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-06 20:39:58,872 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-06 20:39:58,873 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250506203941.jpg
|
||||
2025-05-06 20:40:00,299 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250506203941.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250506203941.xlsx
|
||||
2025-05-06 20:40:00,302 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-06 20:40:00,302 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-06 20:40:58,354 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-06 20:40:58,354 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 20:40:58,355 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-06 20:40:58,355 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 20:42:36,994 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-06 20:42:36,994 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 20:42:36,994 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-06 20:42:36,994 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 21:03:30,005 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-06 21:03:30,005 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 21:03:30,005 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-06 21:03:30,006 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 21:07:27,058 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-06 21:07:27,058 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 21:07:27,058 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-06 21:07:27,059 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 21:13:40,286 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-06 21:13:40,286 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-06 21:13:40,286 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-06 21:13:40,287 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 18:01:37,206 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 18:01:37,208 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 18:01:37,208 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 18:01:37,208 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 18:01:37,213 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-07 18:01:37,213 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-07 18:01:37,214 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507180130.jpg
|
||||
2025-05-07 18:01:40,244 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507180130.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507180130.xlsx
|
||||
2025-05-07 18:01:40,246 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-07 18:01:40,247 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-07 18:32:13,623 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 18:32:13,624 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 18:32:13,624 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 18:32:13,625 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 18:36:46,624 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 18:36:46,624 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 18:36:46,624 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 18:36:46,625 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 18:46:29,606 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 18:46:29,606 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 18:46:29,606 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 18:46:29,606 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 18:47:16,622 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 18:47:16,622 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 18:47:16,622 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 18:47:16,623 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 19:17:08,290 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 19:17:08,290 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 19:17:08,290 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 19:17:08,290 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 19:17:08,293 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-07 19:17:08,293 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-07 19:17:08,296 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507191231.jpg
|
||||
2025-05-07 19:17:09,733 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507191231.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507191231.xlsx
|
||||
2025-05-07 19:17:09,736 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-07 19:17:09,736 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-07 19:21:56,949 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 19:21:56,949 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 19:21:56,949 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 19:21:56,950 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 19:42:51,435 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 19:42:51,435 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 19:42:51,435 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 19:42:51,436 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 19:42:51,440 - app.core.ocr.table_ocr - INFO - 找到 2 个图片文件,其中 2 个未处理
|
||||
2025-05-07 19:42:51,440 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 2
|
||||
2025-05-07 19:42:51,447 - app.core.ocr.table_ocr - WARNING - 文件大小超过限制 (4.0MB): D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507194224.jpg
|
||||
2025-05-07 19:42:51,448 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507194229.jpg
|
||||
2025-05-07 19:42:58,423 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507194229.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507194229.xlsx
|
||||
2025-05-07 19:42:58,426 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/2
|
||||
2025-05-07 19:42:58,427 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 2, 成功: 1
|
||||
2025-05-07 19:44:06,194 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 19:44:06,194 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 19:44:06,194 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 19:44:06,195 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 19:44:06,198 - app.core.ocr.table_ocr - INFO - 找到 2 个图片文件,其中 1 个未处理
|
||||
2025-05-07 19:44:06,198 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-07 19:44:06,199 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507194224_压缩后.jpg
|
||||
2025-05-07 19:44:11,215 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507194224_压缩后.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507194224_压缩后.xlsx
|
||||
2025-05-07 19:44:11,220 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-07 19:44:11,221 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-07 19:49:23,210 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 19:49:23,211 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 19:49:23,211 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 19:49:23,211 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 20:53:53,688 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 20:53:53,688 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 20:53:53,688 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 20:53:53,689 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:08:33,148 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 21:08:33,149 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:08:33,149 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 21:08:33,149 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:08:33,155 - app.core.ocr.table_ocr - INFO - 找到 0 个图片文件,其中 0 个未处理
|
||||
2025-05-07 21:08:33,156 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-07 21:08:42,982 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 21:08:42,982 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:08:42,983 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 21:08:42,983 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:08:42,988 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-07 21:08:42,988 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-07 21:08:42,989 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507210836.jpg
|
||||
2025-05-07 21:08:50,185 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507210836.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507210836.xlsx
|
||||
2025-05-07 21:08:50,188 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-07 21:08:50,188 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-07 21:08:57,853 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 21:08:57,854 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:08:57,854 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 21:08:57,854 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:13:10,724 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 21:13:10,724 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:13:10,724 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 21:13:10,724 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:22:01,713 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 21:22:01,713 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:22:01,713 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 21:22:01,713 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:22:01,717 - app.core.ocr.table_ocr - INFO - 找到 2 个图片文件,其中 2 个未处理
|
||||
2025-05-07 21:22:01,717 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 2
|
||||
2025-05-07 21:22:01,720 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507212143.jpg
|
||||
2025-05-07 21:22:01,720 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507212156.jpg
|
||||
2025-05-07 21:22:05,237 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507212156.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507212156.xlsx
|
||||
2025-05-07 21:22:06,380 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507212143.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507212143.xlsx
|
||||
2025-05-07 21:22:06,387 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 2/2
|
||||
2025-05-07 21:22:06,387 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 2, 成功: 2
|
||||
2025-05-07 21:26:07,922 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 21:26:07,923 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:26:07,923 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 21:26:07,923 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:29:23,564 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 21:29:23,564 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:29:23,565 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 21:29:23,565 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:54:55,226 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 21:54:55,227 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:54:55,227 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 21:54:55,228 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 21:54:55,234 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-07 21:54:55,234 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-07 21:54:55,244 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507215450.jpg
|
||||
2025-05-07 21:54:58,497 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507215450.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507215450.xlsx
|
||||
2025-05-07 21:54:58,502 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-07 21:54:58,502 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-07 22:09:59,124 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 22:09:59,125 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 22:09:59,125 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 22:09:59,125 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 22:14:03,053 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 22:14:03,053 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 22:14:03,053 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 22:14:03,054 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 22:24:30,223 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 22:24:30,224 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 22:24:30,224 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 22:24:30,224 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 22:28:51,546 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-07 22:28:51,547 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 22:28:51,547 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-07 22:28:51,547 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-07 22:28:51,558 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-07 22:28:51,559 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-07 22:28:51,564 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507222846.jpg
|
||||
2025-05-07 22:28:52,829 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250507222846.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507222846.xlsx
|
||||
2025-05-07 22:28:52,832 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-07 22:28:52,832 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-08 19:45:41,028 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-08 19:45:41,030 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-08 19:45:41,030 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-08 19:45:41,030 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-08 19:45:41,036 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-08 19:45:41,036 - app.core.ocr.table_ocr - INFO - 处理批次 1/1, 大小: 1
|
||||
2025-05-08 19:45:41,037 - app.core.ocr.table_ocr - INFO - 开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250508194532.jpg
|
||||
2025-05-08 19:45:48,792 - app.core.ocr.table_ocr - INFO - 图片处理成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250508194532.jpg, 输出文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250508194532.xlsx
|
||||
2025-05-08 19:45:48,794 - app.core.ocr.table_ocr - INFO - 批次处理完成, 成功: 1/1
|
||||
2025-05-08 19:45:48,795 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-08 19:47:28,883 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-08 19:47:28,883 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-08 19:47:28,883 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-08 19:47:28,884 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-08 19:51:23,177 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-08 19:51:23,177 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-08 19:51:23,177 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-08 19:51:23,178 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-08 20:04:06,906 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-08 20:04:06,907 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-08 20:04:06,907 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-08 20:04:06,907 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-08 20:46:00,693 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-08 20:46:00,694 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-08 20:46:00,694 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-08 20:46:00,695 - app.core.ocr.table_ocr - INFO - OCR处理器初始化完成,输入目录: D:\My Documents\python\orc-order-v2\data\input, 输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 12:02:05,168 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-09 12:02:05,169 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-09 12:02:05,169 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 12:02:05,170 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-09 12:07:05,181 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-09 12:07:05,181 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 12:07:05,181 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-09 12:07:05,181 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-09 12:07:05,182 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-09 12:07:54,657 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-09 12:07:54,657 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 12:07:54,657 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-09 12:07:54,657 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-09 12:07:54,657 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-09 12:12:42,103 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-09 12:12:42,104 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 12:12:42,104 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-09 12:12:42,104 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-09 12:12:42,104 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-09 12:13:52,580 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-09 12:13:52,581 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 12:13:52,581 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-09 12:13:52,581 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-09 12:13:52,581 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-09 12:45:35,996 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-09 12:45:35,996 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 12:45:35,996 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-09 12:45:35,996 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-09 12:45:35,996 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-09 14:27:08,879 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-09 14:27:08,880 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 14:27:08,880 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-09 14:27:08,880 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-09 14:27:08,880 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-09 14:27:31,661 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-09 14:27:31,661 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 14:27:31,661 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-09 14:27:31,662 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-09 14:27:31,662 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-09 14:31:02,077 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-09 14:31:02,077 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-09 14:31:02,078 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-09 14:31:02,078 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-09 14:31:02,078 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-09 14:31:02,079 - app.core.ocr.table_ocr - INFO - 找到 2 个图片文件,其中 2 个未处理
|
||||
2025-05-09 14:31:02,079 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 2 个文件
|
||||
2025-05-09 14:31:02,085 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250509142624.jpg
|
||||
2025-05-09 14:31:02,105 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250509142700.jpg
|
||||
2025-05-09 14:31:04,140 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250509142624.jpg, 输出文件: data/output\微信图片_20250509142624.xlsx
|
||||
2025-05-09 14:31:04,271 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250509142700.jpg, 输出文件: data/output\微信图片_20250509142700.xlsx
|
||||
2025-05-09 14:31:04,274 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 2, 成功: 2
|
||||
2025-05-10 11:55:16,268 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-10 11:55:16,270 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 11:55:16,271 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-10 11:55:16,271 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-10 11:55:16,272 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-10 11:55:16,272 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-10 11:55:16,273 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-10 11:55:16,274 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250509142624.jpg
|
||||
2025-05-10 11:55:18,016 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250509142624.jpg, 输出文件: data/output\微信图片_20250509142624.xlsx
|
||||
2025-05-10 11:55:18,045 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-10 12:34:08,595 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-10 12:34:08,595 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 12:34:08,596 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-10 12:34:08,596 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-10 12:34:08,596 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-10 12:34:08,620 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-10 12:34:08,621 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-10 12:34:08,628 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250509142700.jpg
|
||||
2025-05-10 12:34:15,445 - app.core.ocr.table_ocr - ERROR - OCR识别失败: data/input\微信图片_20250509142700.jpg
|
||||
2025-05-10 12:34:15,445 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 0
|
||||
2025-05-10 12:47:25,093 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-10 12:47:25,093 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 12:47:25,093 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-10 12:47:25,093 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-10 12:47:25,094 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-10 12:47:25,098 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-10 12:47:25,098 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-10 12:47:25,102 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250509142700.jpg
|
||||
2025-05-10 12:47:26,679 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250509142700.jpg, 输出文件: data/output\微信图片_20250509142700.xlsx
|
||||
2025-05-10 12:47:26,683 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-10 12:50:31,801 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-10 12:50:31,801 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 12:50:31,801 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-10 12:50:31,802 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-10 12:50:31,802 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-10 12:50:31,807 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 0 个未处理
|
||||
2025-05-10 12:50:31,807 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-10 12:54:52,735 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-10 12:54:52,735 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 12:54:52,735 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-10 12:54:52,736 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-10 12:54:52,737 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-10 12:54:52,743 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 0 个未处理
|
||||
2025-05-10 12:54:52,743 - app.core.ocr.table_ocr - WARNING - 没有需要处理的图片
|
||||
2025-05-10 13:09:39,196 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-10 13:09:39,196 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 13:09:39,197 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-10 13:09:39,197 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-10 13:09:39,198 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-10 13:09:39,202 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-10 13:09:39,202 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-10 13:09:39,204 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250510130835.jpg
|
||||
2025-05-10 13:09:42,978 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250510130835.jpg, 输出文件: data/output\微信图片_20250510130835.xlsx
|
||||
2025-05-10 13:09:42,984 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-10 14:20:46,714 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-10 14:20:46,714 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 14:20:46,715 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-10 14:20:46,715 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-10 14:20:46,715 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-10 14:20:46,721 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-10 14:20:46,721 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-10 14:20:46,722 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250510142041.jpg
|
||||
2025-05-10 14:20:48,367 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250510142041.jpg, 输出文件: data/output\微信图片_20250510142041.xlsx
|
||||
2025-05-10 14:20:48,379 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-10 14:32:23,650 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-10 14:32:23,650 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-10 14:32:23,650 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-10 14:32:23,650 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-10 14:32:23,650 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-10 14:32:23,651 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-10 14:32:23,651 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-10 14:32:23,652 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250510143205.jpg
|
||||
2025-05-10 14:32:25,931 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250510143205.jpg, 输出文件: data/output\微信图片_20250510143205.xlsx
|
||||
2025-05-10 14:32:25,934 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-13 11:36:52,096 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-13 11:36:52,097 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-13 11:36:52,097 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-13 11:36:52,098 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-13 11:36:52,098 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-13 11:36:52,107 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-13 11:36:52,108 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-13 11:36:52,113 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250513113638.jpg
|
||||
2025-05-13 11:36:53,967 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250513113638.jpg, 输出文件: data/output\微信图片_20250513113638.xlsx
|
||||
2025-05-13 11:36:53,969 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-13 12:28:27,326 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-13 12:28:27,327 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-13 12:28:27,327 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-13 12:28:27,328 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-13 12:28:27,328 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-13 12:28:27,328 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-13 12:28:27,329 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-13 12:28:27,329 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250513122819.jpg
|
||||
2025-05-13 12:28:28,897 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250513122819.jpg, 输出文件: data/output\微信图片_20250513122819.xlsx
|
||||
2025-05-13 12:28:28,931 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-13 12:46:46,651 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-13 12:46:46,651 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-13 12:46:46,652 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-13 12:46:46,652 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-13 12:46:46,652 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-13 12:46:46,653 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-13 12:46:46,653 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-13 12:46:46,655 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250513124501.jpg
|
||||
2025-05-13 12:46:50,595 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250513124501.jpg, 输出文件: data/output\微信图片_20250513124501.xlsx
|
||||
2025-05-13 12:46:50,602 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-14 10:23:46,788 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-14 10:23:46,791 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-14 10:23:46,791 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-14 10:23:46,791 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-14 10:23:46,791 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-14 10:23:46,791 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-14 10:23:46,791 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-14 10:23:46,791 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250514102338.jpg
|
||||
2025-05-14 10:23:48,411 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250514102338.jpg, 输出文件: data/output\微信图片_20250514102338.xlsx
|
||||
2025-05-14 10:23:48,418 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-14 10:29:15,069 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-14 10:29:15,069 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-14 10:29:15,069 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-14 10:29:15,069 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-14 10:29:15,069 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-14 10:29:15,069 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-14 10:29:15,069 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-14 10:29:15,069 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250514102858.jpg
|
||||
2025-05-14 10:29:16,529 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250514102858.jpg, 输出文件: data/output\微信图片_20250514102858.xlsx
|
||||
2025-05-14 10:29:16,534 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-14 10:43:03,962 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-14 10:43:03,962 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-14 10:43:03,962 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-14 10:43:03,962 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-14 10:43:03,962 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-14 10:43:03,962 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-14 10:43:03,962 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-14 10:43:03,977 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250514104154.jpg
|
||||
2025-05-14 10:43:05,464 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250514104154.jpg, 输出文件: data/output\微信图片_20250514104154.xlsx
|
||||
2025-05-14 10:43:05,464 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-25 12:33:45,371 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-25 12:33:45,371 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 12:33:45,371 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-25 12:33:45,371 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-25 12:33:45,371 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-25 12:33:45,371 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-25 12:33:45,371 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-25 12:33:45,376 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250525123319.jpg
|
||||
2025-05-25 12:33:47,715 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250525123319.jpg, 输出文件: data/output\微信图片_20250525123319.xlsx
|
||||
2025-05-25 12:33:47,721 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-25 12:36:48,507 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-25 12:36:48,507 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 12:36:48,507 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-25 12:36:48,507 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-25 12:36:48,513 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-25 12:36:48,513 - app.core.ocr.table_ocr - INFO - 找到 2 个图片文件,其中 1 个未处理
|
||||
2025-05-25 12:36:48,513 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-25 12:36:48,513 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250525123637.jpg
|
||||
2025-05-25 12:36:50,657 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250525123637.jpg, 输出文件: data/output\微信图片_20250525123637.xlsx
|
||||
2025-05-25 12:36:50,657 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-25 13:08:36,715 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-25 13:08:36,715 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 13:08:36,715 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-25 13:08:36,715 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-25 13:08:36,715 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-25 13:08:36,715 - app.core.ocr.table_ocr - INFO - 找到 3 个图片文件,其中 1 个未处理
|
||||
2025-05-25 13:08:36,715 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-25 13:08:36,715 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250525130830.jpg
|
||||
2025-05-25 13:08:38,508 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250525130830.jpg, 输出文件: data/output\微信图片_20250525130830.xlsx
|
||||
2025-05-25 13:08:38,508 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-25 13:09:47,277 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-25 13:09:47,277 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 13:09:47,277 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-25 13:09:47,277 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-25 13:09:47,277 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-25 13:09:47,277 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-25 13:09:47,277 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-25 13:09:47,277 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250525130830.jpg
|
||||
2025-05-25 13:09:48,920 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250525130830.jpg, 输出文件: data/output\微信图片_20250525130830.xlsx
|
||||
2025-05-25 13:09:48,920 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-25 13:13:37,152 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-25 13:13:37,152 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 13:13:37,152 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-25 13:13:37,152 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-25 13:13:37,152 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-25 13:13:37,154 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-25 13:13:37,154 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-25 13:13:37,154 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250525131321.jpg
|
||||
2025-05-25 13:13:38,505 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250525131321.jpg, 输出文件: data/output\微信图片_20250525131321.xlsx
|
||||
2025-05-25 13:13:38,505 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-25 13:18:44,243 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-25 13:18:44,243 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 13:18:44,243 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-25 13:18:44,243 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-25 13:18:44,243 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-25 13:18:44,257 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-25 13:18:44,257 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-25 13:18:44,257 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250525131712.jpg
|
||||
2025-05-25 13:18:48,226 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250525131712.jpg, 输出文件: data/output\微信图片_20250525131712.xlsx
|
||||
2025-05-25 13:18:48,226 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-25 13:22:48,768 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-25 13:22:48,768 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-25 13:22:48,768 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-25 13:22:48,768 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-25 13:22:48,768 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-25 13:22:48,773 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-25 13:22:48,773 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-25 13:22:48,773 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250525132243.jpg
|
||||
2025-05-25 13:22:50,089 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250525132243.jpg, 输出文件: data/output\微信图片_20250525132243.xlsx
|
||||
2025-05-25 13:22:50,089 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-28 11:43:02,903 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-28 11:43:02,903 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-28 11:43:02,903 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-28 11:43:02,903 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-28 11:43:02,903 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-28 11:43:02,913 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-28 11:43:02,913 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-28 11:43:02,913 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250528114254.jpg
|
||||
2025-05-28 11:43:04,553 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250528114254.jpg, 输出文件: data/output\微信图片_20250528114254.xlsx
|
||||
2025-05-28 11:43:04,553 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
2025-05-29 12:42:02,739 - app.core.ocr.table_ocr - INFO - 使用输入目录: D:\My Documents\python\orc-order-v2\data\input
|
||||
2025-05-29 12:42:02,739 - app.core.ocr.table_ocr - INFO - 使用输出目录: D:\My Documents\python\orc-order-v2\data\output
|
||||
2025-05-29 12:42:02,739 - app.core.ocr.table_ocr - INFO - 使用临时目录: D:\My Documents\python\orc-order-v2\data\temp
|
||||
2025-05-29 12:42:02,739 - app.core.ocr.table_ocr - INFO - 允许的文件类型: ['.jpg', '.jpeg', '.png', '.bmp']
|
||||
2025-05-29 12:42:02,741 - app.core.ocr.table_ocr - INFO - 初始化OCRProcessor完成:输入目录=data/input, 输出目录=data/output
|
||||
2025-05-29 12:42:02,753 - app.core.ocr.table_ocr - INFO - 找到 1 个图片文件,其中 1 个未处理
|
||||
2025-05-29 12:42:02,753 - app.core.ocr.table_ocr - INFO - 处理批次 1/1: 1 个文件
|
||||
2025-05-29 12:42:02,756 - app.core.ocr.table_ocr - INFO - 开始处理图片: data/input\微信图片_20250529124142.jpg
|
||||
2025-05-29 12:42:04,520 - app.core.ocr.table_ocr - INFO - 图片处理成功: data/input\微信图片_20250529124142.jpg, 输出文件: data/output\微信图片_20250529124142.xlsx
|
||||
2025-05-29 12:42:04,522 - app.core.ocr.table_ocr - INFO - 所有图片处理完成, 总计: 1, 成功: 1
|
||||
@ -1,13 +0,0 @@
|
||||
2025-05-02 16:34:28,699 - app.core.utils.file_utils - ERROR - 创建目录失败: , 错误: [WinError 3] 系统找不到指定的路径。: ''
|
||||
2025-05-02 16:55:29,252 - app.core.utils.file_utils - ERROR - 创建目录失败: , 错误: [WinError 3] 系统找不到指定的路径。: ''
|
||||
2025-05-02 17:09:01,344 - app.core.utils.file_utils - ERROR - 创建目录失败: , 错误: [WinError 3] 系统找不到指定的路径。: ''
|
||||
2025-05-02 19:33:54,966 - app.core.utils.file_utils - WARNING - 未在目录 D:\My Documents\python\orc-order-v2\data\output 中找到符合条件的文件
|
||||
2025-05-02 19:35:48,767 - app.core.utils.file_utils - WARNING - 未在目录 D:\My Documents\python\orc-order-v2\data\output 中找到符合条件的文件
|
||||
2025-05-02 19:36:15,988 - app.core.utils.file_utils - WARNING - 未在目录 D:\My Documents\python\orc-order-v2\data\output 中找到符合条件的文件
|
||||
2025-05-02 21:54:51,332 - app.core.utils.file_utils - WARNING - 未在目录 D:\My Documents\python\orc-order-v2\data\output 中找到符合条件的文件
|
||||
2025-05-02 21:55:07,667 - app.core.utils.file_utils - WARNING - 未在目录 D:\My Documents\python\orc-order-v2\data\output 中找到符合条件的文件
|
||||
2025-05-02 21:56:33,288 - app.core.utils.file_utils - WARNING - 未在目录 D:\My Documents\python\orc-order-v2\data\output 中找到符合条件的文件
|
||||
2025-05-02 21:58:02,456 - app.core.utils.file_utils - WARNING - 未在目录 D:\My Documents\python\orc-order-v2\data\output 中找到符合条件的文件
|
||||
2025-05-02 22:07:10,383 - app.core.utils.file_utils - WARNING - 未在目录 D:\My Documents\python\orc-order-v2\data\output 中找到符合条件的文件
|
||||
2025-05-02 22:26:11,623 - app.core.utils.file_utils - WARNING - 未在目录 D:\My Documents\python\orc-order-v2\data\output 中找到符合条件的文件
|
||||
2025-05-29 11:28:13,107 - app.core.utils.file_utils - WARNING - 未在目录 data/output 中找到符合条件的文件
|
||||
@ -1,390 +0,0 @@
|
||||
2025-05-02 16:10:30,792 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 16:10:30,795 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 16:10:30,808 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 16:11:05,074 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 16:11:05,076 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 16:11:05,084 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 16:15:14,534 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 16:15:14,537 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 16:15:14,543 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 16:24:57,640 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 16:24:57,641 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 16:24:57,651 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 16:34:26,008 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 16:34:26,011 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 16:34:26,015 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 16:55:26,474 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 16:55:26,479 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 16:55:26,481 - app.services.ocr_service - INFO - OCRService开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250227193150(1).jpg
|
||||
2025-05-02 16:55:29,254 - app.services.ocr_service - INFO - OCRService处理图片成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250227193150(1).jpg -> D:\My Documents\python\orc-order-v2\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:08:58,648 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 17:08:58,653 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 17:08:58,657 - app.services.ocr_service - INFO - OCRService开始处理图片: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250227193150(1).jpg
|
||||
2025-05-02 17:09:01,348 - app.services.ocr_service - INFO - OCRService处理图片成功: D:\My Documents\python\orc-order-v2\data\input\微信图片_20250227193150(1).jpg -> D:\My Documents\python\orc-order-v2\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:10:09,219 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 17:10:09,222 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 17:16:24,474 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 17:16:24,476 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 17:32:36,459 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 17:32:36,461 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 17:40:07,684 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 17:40:07,686 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 17:42:15,222 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 17:42:15,225 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 17:57:41,814 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 17:57:41,815 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 18:00:56,505 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 18:00:56,506 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 18:01:27,761 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 18:01:27,763 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 18:01:40,468 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 18:01:40,470 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 18:16:10,310 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 18:16:10,312 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 18:27:30,078 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 18:27:30,080 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 18:31:29,323 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 18:31:29,326 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 18:33:05,097 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 18:33:05,100 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 18:38:52,876 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 18:38:52,879 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 18:41:16,739 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 18:41:16,741 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 19:15:17,468 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 19:15:17,470 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 19:15:17,472 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 19:15:43,266 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 19:15:43,268 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 19:33:54,958 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 19:33:54,962 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 19:33:54,964 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 19:35:48,758 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 19:35:48,762 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 19:35:48,764 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 19:36:15,981 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 19:36:15,984 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 19:36:15,987 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 19:42:19,203 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 19:42:19,205 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 19:42:19,208 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 19:53:27,938 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 19:53:27,940 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 19:53:27,942 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 20:52:59,670 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 20:52:59,673 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 20:52:59,675 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 21:02:57,313 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:02:57,315 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:02:57,318 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 21:04:06,630 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:04:06,633 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:07:29,002 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:07:29,004 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:10:08,462 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:10:08,465 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:11:03,181 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:11:03,183 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:15:10,771 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:15:10,774 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:16:38,293 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:16:38,295 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:21:20,675 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:21:20,678 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:21:20,681 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 21:22:23,293 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:22:23,296 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:22:23,299 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 21:45:07,595 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:45:07,597 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:45:07,600 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 21:54:51,323 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:54:51,326 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:54:51,329 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 21:55:07,659 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:55:07,662 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:55:07,666 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 21:56:33,280 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:56:33,284 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:56:33,287 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 21:58:02,451 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 21:58:02,453 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 21:58:02,456 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 22:07:10,377 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 22:07:10,380 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 22:07:10,382 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 22:10:02,819 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 22:10:02,822 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 22:10:02,825 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 22:11:55,057 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 22:11:55,059 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 22:11:55,062 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 22:26:11,617 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 22:26:11,620 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 22:26:11,622 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 22:26:42,566 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 22:26:42,568 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 22:26:42,571 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 22:29:10,825 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 22:29:10,829 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 22:29:10,832 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-02 22:40:41,142 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-02 22:40:41,144 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-02 22:40:41,147 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-03 12:54:57,227 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-03 12:54:57,231 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-03 12:54:57,236 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-03 14:44:17,313 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-03 14:44:17,318 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-03 14:44:17,320 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-03 14:45:44,517 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-03 14:45:44,520 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-03 14:45:44,522 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-03 14:45:58,804 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-03 14:45:58,806 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-03 14:53:52,349 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-03 14:53:52,351 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-03 14:53:52,354 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-03 15:43:36,728 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-03 15:43:36,731 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 18:55:02,295 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 18:55:02,298 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 18:55:02,304 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-05 18:59:17,848 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 18:59:17,850 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 18:59:17,853 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-05 19:00:26,070 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 19:00:26,073 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 19:02:32,157 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 19:02:32,165 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 19:02:54,869 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 19:02:54,871 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 19:15:12,549 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 19:15:12,551 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 19:18:54,489 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 19:18:54,499 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 19:19:59,311 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 19:19:59,312 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 19:22:18,523 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 19:22:18,525 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 19:22:37,215 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 19:22:37,218 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 19:28:36,762 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 19:28:36,765 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 19:29:16,899 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 19:29:16,904 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 19:30:06,149 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 19:30:06,152 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 19:30:28,304 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 19:30:28,306 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 22:04:10,733 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 22:04:10,736 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 22:04:10,738 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-05 22:08:07,802 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 22:08:07,804 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 22:08:07,807 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-05 22:22:21,493 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 22:22:21,496 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 22:22:21,499 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-05 22:27:19,319 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 22:27:19,321 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 22:35:49,995 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 22:35:49,997 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 22:36:30,725 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 22:36:30,729 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-05 22:40:12,605 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-05 22:40:12,608 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-06 19:00:08,266 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-06 19:00:08,269 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-06 20:39:58,864 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-06 20:39:58,867 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-06 20:39:58,871 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-06 20:40:58,352 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-06 20:40:58,355 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-06 20:42:36,993 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-06 20:42:36,995 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-06 21:03:30,004 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-06 21:03:30,006 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-06 21:07:27,056 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-06 21:07:27,059 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-06 21:13:40,284 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-06 21:13:40,287 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 18:01:37,204 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 18:01:37,208 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 18:01:37,213 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-07 18:32:13,621 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 18:32:13,625 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 18:36:46,623 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 18:36:46,625 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 18:46:29,603 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 18:46:29,607 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 18:47:16,621 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 18:47:16,623 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 19:17:08,288 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 19:17:08,290 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 19:17:08,293 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-07 19:21:56,948 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 19:21:56,950 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 19:42:51,433 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 19:42:51,436 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 19:42:51,439 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-07 19:44:06,191 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 19:44:06,195 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 19:44:06,197 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-07 19:49:23,209 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 19:49:23,212 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 20:53:53,686 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 20:53:53,689 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 21:08:33,147 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 21:08:33,150 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 21:08:33,155 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-07 21:08:42,981 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 21:08:42,983 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 21:08:42,987 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-07 21:08:57,852 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 21:08:57,854 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 21:13:10,722 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 21:13:10,724 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 21:22:01,711 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 21:22:01,713 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 21:22:01,716 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-07 21:26:07,921 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 21:26:07,924 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 21:29:23,563 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 21:29:23,565 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 21:54:55,224 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 21:54:55,228 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 21:54:55,233 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-07 22:09:59,122 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 22:09:59,125 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 22:14:03,051 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 22:14:03,054 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 22:24:30,222 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 22:24:30,224 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 22:28:51,544 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-07 22:28:51,548 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-07 22:28:51,557 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-08 19:45:41,026 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-08 19:45:41,030 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-08 19:45:41,036 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-08 19:47:28,878 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-08 19:47:28,884 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-08 19:51:23,176 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-08 19:51:23,178 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-08 20:04:06,905 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-08 20:04:06,907 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-08 20:46:00,690 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-08 20:46:00,696 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-09 11:55:03,577 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-09 11:58:49,250 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-09 12:02:05,166 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-09 12:07:05,179 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-09 12:07:05,182 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-09 12:07:54,655 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-09 12:07:54,658 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-09 12:12:42,102 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-09 12:12:42,104 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-09 12:13:52,579 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-09 12:13:52,581 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-09 12:45:35,994 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-09 12:45:35,996 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-09 14:27:08,878 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-09 14:27:08,880 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-09 14:27:31,659 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-09 14:27:31,662 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-09 14:31:02,076 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-09 14:31:02,078 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-09 14:31:02,078 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-09 14:31:02,078 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=5, max_workers=4
|
||||
2025-05-10 11:55:16,265 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-10 11:55:16,272 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-10 11:55:16,272 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-10 11:55:16,272 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=5, max_workers=4
|
||||
2025-05-10 12:34:08,593 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-10 12:34:08,596 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-10 12:34:08,607 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-10 12:34:08,607 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-10 12:47:25,091 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-10 12:47:25,094 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-10 12:47:25,097 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-10 12:47:25,097 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-10 12:50:31,800 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-10 12:50:31,803 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-10 12:50:31,806 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-10 12:50:31,806 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-10 12:54:52,733 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-10 12:54:52,737 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-10 12:54:52,742 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-10 12:54:52,742 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-10 13:09:39,194 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-10 13:09:39,198 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-10 13:09:39,202 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-10 13:09:39,202 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-10 14:20:46,713 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-10 14:20:46,715 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-10 14:20:46,720 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-10 14:20:46,720 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-10 14:32:23,648 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-10 14:32:23,650 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-10 14:32:23,650 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-10 14:32:23,650 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=5, max_workers=4
|
||||
2025-05-13 11:36:52,093 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-13 11:36:52,098 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-13 11:36:52,105 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-13 11:36:52,105 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-13 12:28:27,324 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-13 12:28:27,328 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-13 12:28:27,328 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-13 12:28:27,328 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=5, max_workers=4
|
||||
2025-05-13 12:46:46,647 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-13 12:46:46,652 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-13 12:46:46,653 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-13 12:46:46,653 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=5, max_workers=4
|
||||
2025-05-14 10:23:46,787 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-14 10:23:46,791 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-14 10:23:46,791 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-14 10:23:46,791 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-14 10:29:15,069 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-14 10:29:15,069 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-14 10:29:15,069 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-14 10:29:15,069 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-14 10:43:03,946 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-14 10:43:03,962 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-14 10:43:03,962 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-14 10:43:03,962 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-25 12:33:45,356 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-25 12:33:45,371 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-25 12:33:45,371 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-25 12:33:45,371 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=5, max_workers=4
|
||||
2025-05-25 12:36:48,507 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-25 12:36:48,513 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-25 12:36:48,513 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-25 12:36:48,513 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=5, max_workers=4
|
||||
2025-05-25 13:08:36,713 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-25 13:08:36,715 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-25 13:08:36,715 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-25 13:08:36,715 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=5, max_workers=4
|
||||
2025-05-25 13:09:47,275 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-25 13:09:47,277 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-25 13:09:47,277 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-25 13:09:47,277 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-25 13:13:37,149 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-25 13:13:37,152 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-25 13:13:37,154 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-25 13:13:37,154 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-25 13:18:44,243 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-25 13:18:44,243 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-25 13:18:44,257 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-25 13:18:44,257 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-25 13:22:48,768 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-25 13:22:48,768 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-25 13:22:48,773 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-25 13:22:48,773 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-28 11:43:02,903 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-28 11:43:02,903 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-28 11:43:02,913 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-28 11:43:02,913 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
2025-05-29 12:42:02,736 - app.services.ocr_service - INFO - 初始化OCRService
|
||||
2025-05-29 12:42:02,741 - app.services.ocr_service - INFO - OCRService初始化完成
|
||||
2025-05-29 12:42:02,751 - app.services.ocr_service - INFO - OCRService.batch_process被调用,转发到process_images_batch
|
||||
2025-05-29 12:42:02,751 - app.services.ocr_service - INFO - OCRService开始批量处理图片, batch_size=None, max_workers=None
|
||||
@ -1,549 +1,3 @@
|
||||
2025-05-02 16:10:30,796 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 16:10:30,805 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 16:11:05,077 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 16:11:05,083 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 16:15:14,537 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 16:15:14,542 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 16:24:57,642 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 16:24:57,650 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 16:34:26,012 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 16:34:26,014 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 16:34:28,703 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 16:34:29,403 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-02 16:55:26,479 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 16:55:26,481 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 17:08:58,653 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 17:08:58,656 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 17:10:09,222 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 17:10:09,224 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 17:10:09,224 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:16:24,476 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 17:16:24,478 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 17:16:24,478 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:32:36,461 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 17:32:36,464 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 17:32:36,464 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:40:07,686 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 17:40:07,689 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 17:40:07,690 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:42:15,225 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 17:42:15,226 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 17:42:15,227 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 17:57:41,815 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 17:57:41,817 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 17:57:41,817 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:00:56,506 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 18:00:56,508 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 18:00:56,509 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:01:27,763 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 18:01:27,765 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 18:01:27,766 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:01:40,470 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 18:01:40,472 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 18:01:40,472 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:16:10,312 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 18:16:10,314 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 18:16:10,314 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:27:30,080 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 18:27:30,082 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 18:27:30,083 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:31:29,326 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 18:31:29,328 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 18:31:29,329 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:33:05,100 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 18:33:05,103 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 18:33:05,104 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:38:52,879 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 18:38:52,881 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 18:38:52,881 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 18:41:16,741 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 18:41:16,743 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 18:41:16,744 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250227193150(1).xlsx
|
||||
2025-05-02 19:15:17,470 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 19:15:17,472 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 19:15:43,268 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 19:15:43,269 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 19:15:43,270 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502191502.xlsx
|
||||
2025-05-02 19:33:54,962 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 19:33:54,964 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 19:35:48,762 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 19:35:48,764 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 19:36:15,984 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 19:36:15,986 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 19:42:19,205 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 19:42:19,207 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 19:42:21,167 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502191502.xlsx
|
||||
2025-05-02 19:42:36,441 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-02 19:53:27,940 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 19:53:27,942 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 19:53:29,684 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502191502.xlsx
|
||||
2025-05-02 19:53:47,771 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-02 20:52:59,673 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 20:52:59,674 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 20:53:02,565 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502205251.xlsx
|
||||
2025-05-02 20:53:07,431 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-02 21:02:57,316 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:02:57,317 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:02:57,320 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:04:06,633 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:04:06,635 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:04:06,636 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:07:29,004 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:07:29,007 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:07:29,007 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:10:08,467 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:10:08,471 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:10:08,472 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: data/output/微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:11:03,183 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:11:03,186 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:11:03,186 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:15:10,775 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:15:10,778 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:15:10,779 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: data/output/微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:16:38,295 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:16:38,297 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:16:38,297 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250502205251.xlsx
|
||||
2025-05-02 21:21:20,678 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:21:20,680 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:22:23,296 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:22:23,299 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:22:26,470 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502212111.xlsx
|
||||
2025-05-02 21:22:31,715 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-02 21:45:07,597 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:45:07,599 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:45:10,631 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-02 21:45:21,948 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-02 21:54:51,326 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:54:51,329 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:55:07,662 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:55:07,665 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:56:33,284 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:56:33,286 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 21:58:02,453 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 21:58:02,455 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 22:07:10,380 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 22:07:10,382 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 22:10:02,822 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 22:10:02,824 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 22:11:55,059 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 22:11:55,061 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 22:11:57,705 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-02 22:12:08,755 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-02 22:26:11,620 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 22:26:11,621 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 22:26:42,568 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 22:26:42,571 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 22:29:10,829 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 22:29:10,831 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 22:29:14,322 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-02 22:29:26,876 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-02 22:40:41,144 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-02 22:40:41,147 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-02 22:40:43,849 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-03 12:54:57,231 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-03 12:54:57,235 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-03 12:55:00,229 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250502214456.xlsx
|
||||
2025-05-03 14:44:17,318 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-03 14:44:17,319 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-03 14:44:19,922 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250503144404.xlsx
|
||||
2025-05-03 14:44:26,126 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-03 14:45:44,520 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-03 14:45:44,522 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-03 14:45:58,806 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-03 14:45:58,809 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-03 14:45:58,809 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250503144404.xlsx
|
||||
2025-05-03 14:53:52,351 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-03 14:53:52,353 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-03 14:53:54,305 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250503145328.xlsx
|
||||
2025-05-03 15:43:36,731 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-03 15:43:36,733 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-03 15:43:36,733 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250503145328.xlsx
|
||||
2025-05-05 18:55:02,299 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 18:55:02,303 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 18:55:04,016 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250505185454.xlsx
|
||||
2025-05-05 18:59:17,850 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 18:59:17,853 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:00:26,073 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 19:00:26,075 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:00:26,076 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250505185842.xlsx
|
||||
2025-05-05 19:02:32,165 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 19:02:32,169 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:02:32,169 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250505185908.xlsx
|
||||
2025-05-05 19:02:54,871 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 19:02:54,874 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:02:54,875 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-05 19:15:12,551 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 19:15:12,554 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:15:12,554 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250505185908.xlsx
|
||||
2025-05-05 19:18:54,500 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 19:18:54,536 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:18:54,546 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-05 19:19:59,313 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 19:19:59,314 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:19:59,315 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250505185908.xlsx
|
||||
2025-05-05 19:22:18,525 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 19:22:18,532 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:22:18,533 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250505185908.xlsx
|
||||
2025-05-05 19:22:37,218 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 19:22:37,221 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:22:37,227 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-05 19:28:36,765 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 19:28:36,768 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:28:36,770 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-05 19:29:16,905 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 19:29:16,912 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:29:16,918 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-05 19:30:06,152 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 19:30:06,155 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:30:06,156 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-05 19:30:28,306 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 19:30:28,308 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 19:30:28,309 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-05 22:04:10,736 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 22:04:10,737 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 22:08:07,804 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 22:08:07,806 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 22:22:21,496 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 22:22:21,499 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 22:27:19,322 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 22:27:19,324 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 22:27:19,324 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/9527.xlsx
|
||||
2025-05-05 22:35:49,997 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 22:35:49,999 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 22:35:49,999 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/9527.xlsx
|
||||
2025-05-05 22:36:30,729 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 22:36:30,731 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 22:36:30,732 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/9527.xlsx
|
||||
2025-05-05 22:40:12,608 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-05 22:40:12,610 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-05 22:40:12,611 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/9527.xlsx
|
||||
2025-05-06 19:00:08,269 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-06 19:00:08,271 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-06 19:00:08,271 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/高新-益选便利店销售单2025-05-06.xlsx
|
||||
2025-05-06 20:39:58,867 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-06 20:39:58,870 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-06 20:40:58,355 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-06 20:40:58,357 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-06 20:40:58,358 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250506203941.xlsx
|
||||
2025-05-06 20:42:36,995 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-06 20:42:36,997 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-06 20:42:36,997 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250506203941.xlsx
|
||||
2025-05-06 21:03:30,006 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-06 21:03:30,008 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-06 21:03:30,008 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250506203941.xlsx
|
||||
2025-05-06 21:07:27,059 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-06 21:07:27,061 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-06 21:07:27,063 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250506203941.xlsx
|
||||
2025-05-06 21:13:40,287 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-06 21:13:40,290 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-06 21:13:40,290 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250506203941.xlsx
|
||||
2025-05-07 18:01:37,209 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 18:01:37,212 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 18:01:40,248 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507180130.xlsx
|
||||
2025-05-07 18:32:13,625 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 18:32:13,627 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 18:32:13,630 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507180130.xlsx
|
||||
2025-05-07 18:36:46,625 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 18:36:46,628 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 18:36:46,628 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507180130.xlsx
|
||||
2025-05-07 18:46:29,607 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 18:46:29,609 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 18:47:16,623 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 18:47:16,625 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 18:47:16,625 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507180130.xlsx
|
||||
2025-05-07 19:17:08,290 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 19:17:08,292 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 19:17:09,738 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507191231.xlsx
|
||||
2025-05-07 19:21:56,950 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 19:21:56,953 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 19:21:56,954 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507191231.xlsx
|
||||
2025-05-07 19:42:51,436 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 19:42:51,439 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 19:44:06,195 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 19:44:06,197 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 19:49:23,212 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 19:49:23,214 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 19:49:23,214 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507194224_压缩后.xlsx
|
||||
2025-05-07 20:53:53,689 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 20:53:53,691 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 20:53:53,692 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507194229.xlsx
|
||||
2025-05-07 21:08:33,150 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 21:08:33,154 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 21:08:42,983 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 21:08:42,987 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 21:08:57,854 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 21:08:57,856 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 21:08:57,856 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507210836.xlsx
|
||||
2025-05-07 21:13:10,725 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 21:13:10,727 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 21:13:10,731 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507210836.xlsx
|
||||
2025-05-07 21:22:01,713 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 21:22:01,716 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 21:26:07,924 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 21:26:07,926 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 21:26:07,927 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507212143.xlsx
|
||||
2025-05-07 21:29:23,565 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 21:29:23,569 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 21:29:23,570 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507212143.xlsx
|
||||
2025-05-07 21:54:55,228 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 21:54:55,232 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 21:54:58,505 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507215450.xlsx
|
||||
2025-05-07 22:09:59,125 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 22:09:59,127 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 22:09:59,127 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507215450.xlsx
|
||||
2025-05-07 22:14:03,054 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 22:14:03,055 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 22:14:03,056 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507215450.xlsx
|
||||
2025-05-07 22:24:30,225 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 22:24:30,226 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 22:24:30,227 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250507215450.xlsx
|
||||
2025-05-07 22:28:51,548 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-07 22:28:51,556 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-07 22:28:52,834 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250507222846.xlsx
|
||||
2025-05-08 19:45:41,030 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-08 19:45:41,035 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-08 19:45:48,798 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:\My Documents\python\orc-order-v2\data\output\微信图片_20250508194532.xlsx
|
||||
2025-05-08 19:47:28,884 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-08 19:47:28,886 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-08 19:47:28,886 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250508194532.xlsx
|
||||
2025-05-08 19:51:23,178 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-08 19:51:23,190 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-08 19:51:23,190 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250508194532.xlsx
|
||||
2025-05-08 20:04:06,907 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-08 20:04:06,909 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-08 20:04:06,910 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250508194532.xlsx
|
||||
2025-05-08 20:46:00,697 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-08 20:46:00,701 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-08 20:46:00,750 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250508194532.xlsx
|
||||
2025-05-09 12:07:05,182 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-09 12:07:54,658 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-09 12:12:42,104 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-09 12:13:52,581 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-09 12:13:52,586 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-09 12:45:35,997 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-09 12:45:35,999 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-09 13:39:38,178 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-09 13:39:38,187 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-09 14:08:43,900 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-09 14:08:43,903 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-09 14:08:43,903 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/高新-益选便利店销售单2025-05-09.xlsx
|
||||
2025-05-09 14:23:40,512 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-09 14:23:40,516 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-09 14:23:40,516 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/高新-益选便利店销售单2025-05-09.xlsx
|
||||
2025-05-09 14:26:54,507 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-09 14:26:54,511 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-09 14:31:54,256 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-09 14:31:54,259 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-09 14:31:54,259 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250509142624.xlsx
|
||||
2025-05-09 14:32:20,936 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-09 14:32:20,942 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-09 14:32:20,954 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250509142700.xlsx
|
||||
2025-05-09 16:01:39,291 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-09 16:01:39,294 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-09 16:01:39,295 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250509142624.xlsx
|
||||
2025-05-10 11:55:28,003 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 11:55:28,008 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 11:55:28,008 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250509142624.xlsx
|
||||
2025-05-10 12:29:42,163 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 12:29:42,169 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 12:29:42,169 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250509142624.xlsx
|
||||
2025-05-10 12:34:08,597 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 12:34:08,606 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 12:47:25,094 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 12:47:25,097 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 12:50:31,803 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 12:50:31,806 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 12:54:52,737 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 12:54:52,742 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 12:54:52,744 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-10 13:09:39,198 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 13:09:39,201 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 13:09:42,986 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-10 14:16:18,081 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 14:16:18,087 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 14:16:18,087 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/采购单_微信图片_20250510130835.xls
|
||||
2025-05-10 14:16:59,264 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 14:16:59,269 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 14:16:59,269 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-10 14:17:10,874 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 14:17:10,878 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 14:17:10,878 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250510130835.xlsx
|
||||
2025-05-10 14:20:46,715 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 14:20:46,719 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 14:20:48,381 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-10 14:39:10,329 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 14:39:10,333 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 14:39:10,333 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250510143205.xlsx
|
||||
2025-05-10 14:43:22,004 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 14:43:22,009 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 14:43:22,009 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250510143205.xlsx
|
||||
2025-05-10 16:28:52,358 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-10 16:28:52,369 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-10 16:28:52,369 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/折扣销售-2025_05_10-15_26_26.xls
|
||||
2025-05-13 11:36:52,099 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-13 11:36:52,105 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-13 11:36:53,970 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-13 12:29:18,337 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-13 12:29:18,343 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-13 12:29:18,343 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250513122819.xlsx
|
||||
2025-05-13 12:39:20,449 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-13 12:39:20,456 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-13 12:39:20,456 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250513122819.xlsx
|
||||
2025-05-13 12:47:00,743 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-13 12:47:00,750 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-13 12:47:00,750 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-13 12:49:57,164 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-13 12:49:57,168 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-13 12:49:57,168 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/采购单_微信图片_20250513124501.xls
|
||||
2025-05-13 12:50:32,698 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-13 12:50:32,703 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-13 12:50:32,703 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250513124501.xlsx
|
||||
2025-05-14 10:23:46,791 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-14 10:23:46,791 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-14 10:23:48,418 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-14 10:29:15,069 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-14 10:29:15,069 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-14 10:29:16,534 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-14 10:32:40,872 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-14 10:32:40,872 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-14 10:32:40,872 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250514102858.xlsx
|
||||
2025-05-14 10:35:02,627 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-14 10:35:02,627 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-14 10:35:02,627 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250514102858.xlsx
|
||||
2025-05-14 10:43:03,962 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-14 10:43:03,962 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-14 10:43:05,464 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-14 11:06:02,343 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-14 11:06:02,359 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-14 11:06:02,359 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/工作簿1.xlsx
|
||||
2025-05-14 11:06:59,677 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-14 11:06:59,677 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-14 11:06:59,677 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/工作簿1.xlsx
|
||||
2025-05-23 17:11:31,364 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-23 17:11:31,369 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-23 17:11:31,369 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/武侯环球乐百惠便利店1064.xls
|
||||
2025-05-23 19:01:06,970 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-23 19:01:06,984 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-23 19:01:06,984 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/武侯环球乐百惠便利店5090.xls
|
||||
2025-05-25 12:26:18,323 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 12:26:18,338 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 12:26:18,338 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/订单明细20250525122452.xlsx
|
||||
2025-05-25 12:28:21,135 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 12:28:21,145 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 12:56:35,674 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 12:56:35,680 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 12:56:35,680 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250525123319.xlsx
|
||||
2025-05-25 12:57:16,640 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 12:57:16,643 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 12:57:16,643 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250525123637.xlsx
|
||||
2025-05-25 12:57:59,195 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 12:57:59,199 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 13:01:48,903 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 13:01:48,905 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 13:01:48,905 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-25 13:01:48,905 - app.services.order_service - INFO - OrderService开始合并所有采购单
|
||||
2025-05-25 13:08:51,263 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 13:08:51,263 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 13:08:51,263 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-25 13:09:47,277 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 13:09:47,277 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 13:09:48,920 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-25 13:13:37,152 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 13:13:37,154 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 13:13:38,517 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-25 13:18:44,243 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 13:18:44,257 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 13:18:48,226 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-25 13:22:48,768 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 13:22:48,773 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 13:22:50,089 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-25 13:23:57,539 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 13:23:57,539 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 13:23:57,539 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/微信图片_20250525132243.xlsx
|
||||
2025-05-25 17:40:35,517 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 17:40:35,517 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 17:40:35,530 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/工作簿1.xlsx
|
||||
2025-05-25 17:44:01,745 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 17:44:01,745 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 17:44:01,745 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/工作簿1.xlsx
|
||||
2025-05-25 17:45:22,056 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 17:45:22,061 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 17:45:22,061 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/工作簿1.xlsx
|
||||
2025-05-25 17:49:30,758 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 17:49:30,764 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 17:49:30,764 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/工作簿1.xlsx
|
||||
2025-05-25 17:52:18,364 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 17:52:18,364 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 17:52:18,364 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-25 17:53:41,332 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-25 17:53:41,340 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-25 17:53:41,340 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/工作簿1.xlsx
|
||||
2025-05-28 11:43:02,903 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-28 11:43:02,913 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-28 11:43:04,553 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-28 11:46:32,136 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-28 11:46:32,140 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-28 11:46:32,142 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/input/表格提取_20250528114543257.xlsx
|
||||
2025-05-28 11:51:11,316 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-28 11:51:11,322 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-28 11:51:11,322 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/input/表格提取_20250528114543257.xlsx
|
||||
2025-05-29 10:34:23,221 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-29 10:34:23,234 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-29 10:34:23,234 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250529102424619.xlsx
|
||||
2025-05-29 10:44:15,180 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-29 10:44:15,184 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-29 10:44:15,184 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250529103747391.xlsx
|
||||
2025-05-29 11:04:29,103 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-29 11:04:29,107 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-29 11:04:29,107 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250529103747391.xlsx
|
||||
2025-05-29 11:11:26,530 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-29 11:11:26,533 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-29 11:11:26,533 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250529103747391.xlsx
|
||||
2025-05-29 11:16:59,462 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-29 11:16:59,470 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-29 11:16:59,470 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250529111511378.xlsx
|
||||
2025-05-29 11:28:13,101 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-29 11:28:13,107 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-29 11:28:13,107 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-29 11:28:27,483 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-29 11:28:27,491 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-29 11:28:27,491 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250529112739197.xlsx
|
||||
2025-05-29 11:32:47,018 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-29 11:32:47,019 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-29 11:32:47,019 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250529112949229.xlsx
|
||||
2025-05-29 11:37:29,513 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-29 11:37:29,518 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-29 11:37:29,518 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250529112949229.xlsx
|
||||
2025-05-29 11:44:36,450 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-29 11:44:36,454 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-29 11:44:36,454 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/高新-益选便利店 销售单2025-05-26.xls
|
||||
2025-05-29 12:42:02,741 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-29 12:42:02,751 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-29 12:42:04,522 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-30 08:50:50,875 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-30 08:50:50,875 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-30 08:50:50,875 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250530084744899.xlsx
|
||||
2025-05-30 08:54:23,964 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-30 08:54:23,976 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-30 08:54:23,976 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250530085252919.xlsx
|
||||
2025-05-30 09:01:02,598 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-30 09:01:02,602 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-30 09:01:02,602 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250530085252919.xlsx
|
||||
2025-05-30 09:10:06,422 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-30 09:10:06,438 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-30 09:10:06,438 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250530085252919.xlsx
|
||||
2025-05-30 09:54:20,709 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-30 09:54:20,709 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-30 09:54:20,709 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/表格提取_20250530095123641.xlsx
|
||||
2025-05-30 10:04:38,580 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-30 10:04:38,580 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-30 10:04:38,580 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/工作簿1.xlsx
|
||||
2025-05-30 10:12:13,515 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-30 10:12:13,519 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-30 10:12:13,519 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/工作簿1.xlsx
|
||||
2025-05-30 10:17:10,546 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-30 10:17:10,551 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-30 10:17:10,551 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
2025-05-30 10:17:45,704 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-05-30 10:17:45,707 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-05-30 10:17:45,707 - app.services.order_service - INFO - OrderService开始处理指定Excel文件: D:/My Documents/python/orc-order-v2/data/output/工作簿1.xlsx
|
||||
2025-08-16 00:52:16,815 - app.services.order_service - INFO - 初始化OrderService
|
||||
2025-08-16 00:52:16,863 - app.services.order_service - INFO - OrderService初始化完成
|
||||
2025-08-16 00:52:16,867 - app.services.order_service - INFO - OrderService开始处理最新Excel文件
|
||||
|
||||
@ -1,139 +0,0 @@
|
||||
2025-05-09 12:45:35,999 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 12:45:36,000 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 12:45:36,102 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 12:45:36,103 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 12:45:36,103 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:11:06,843 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:11:06,844 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:11:06,923 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:11:06,924 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:11:06,925 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:11:53,142 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:11:53,143 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:11:53,195 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:11:53,196 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:11:53,196 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:13:30,197 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:13:30,197 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:13:30,253 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:13:30,256 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:13:30,256 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:16:20,406 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:16:20,407 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:16:20,583 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:16:20,584 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:16:20,596 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:18:16,271 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:18:16,271 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:18:16,334 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:18:16,335 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:18:16,336 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:19:40,681 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:19:40,681 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:19:40,735 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:19:40,736 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:19:40,736 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:21:06,878 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:21:06,879 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:21:06,918 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:21:06,919 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:21:06,920 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:21:53,150 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:21:53,150 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:21:53,248 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:21:53,248 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:21:53,249 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:22:48,435 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:22:48,435 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:22:48,496 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:22:48,497 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:22:48,497 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:25:59,038 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:25:59,038 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:25:59,110 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:25:59,110 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:25:59,110 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:29:28,788 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:29:28,788 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:29:28,834 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:29:28,835 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:29:28,836 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:30:21,809 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:30:21,809 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:30:21,940 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:30:21,966 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:30:21,972 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:30:43,719 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:30:43,719 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:30:43,779 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:30:43,779 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:30:43,780 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:34:49,133 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:34:49,136 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:34:49,289 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:34:49,290 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:34:49,291 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:37:56,254 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:37:56,254 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:37:56,481 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:37:56,481 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:37:56,481 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:39:52,438 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:39:52,438 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509114847.xlsx
|
||||
2025-05-09 13:39:52,580 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:39:52,581 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-06, 总金额: 12836.76, 处理条目: 36
|
||||
2025-05-09 13:39:52,581 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:50:34,355 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509134955.xlsx
|
||||
2025-05-09 13:50:34,355 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509134955.xlsx
|
||||
2025-05-09 13:50:34,766 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:50:34,766 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-04-27, 总金额: 10844.48, 处理条目: 34
|
||||
2025-05-09 13:50:34,772 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:52:17,578 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250509135149.xlsx
|
||||
2025-05-09 13:52:17,579 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250509135149.xlsx
|
||||
2025-05-09 13:52:17,705 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 13:52:17,705 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-04-21, 总金额: 9550.10, 处理条目: 30
|
||||
2025-05-09 13:52:17,706 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-09 14:32:56,705 - app.services.tobacco_service - WARNING - 未找到烟草公司订单明细文件
|
||||
2025-05-09 14:32:56,706 - app.services.tobacco_service - ERROR - 未找到可处理的烟草订单明细文件
|
||||
2025-05-10 17:18:16,371 - app.services.tobacco_service - WARNING - 未找到烟草公司订单明细文件
|
||||
2025-05-10 17:18:16,372 - app.services.tobacco_service - WARNING - 未找到烟草公司订单明细文件
|
||||
2025-05-10 17:18:16,373 - app.services.tobacco_service - ERROR - 未找到可处理的烟草订单明细文件
|
||||
2025-05-10 17:18:27,371 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250510171706.xlsx
|
||||
2025-05-10 17:18:27,371 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250510171706.xlsx
|
||||
2025-05-10 17:18:27,441 - app.services.tobacco_service - ERROR - 处理烟草公司订单时发生错误: The truth value of a DataFrame is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().
|
||||
Traceback (most recent call last):
|
||||
File "D:\My Documents\python\orc-order-v2\app\services\tobacco_service.py", line 105, in process_tobacco_order
|
||||
if not order_data:
|
||||
File "C:\Program Files\Python39\lib\site-packages\pandas\core\generic.py", line 1466, in __nonzero__
|
||||
raise ValueError(
|
||||
ValueError: The truth value of a DataFrame is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().
|
||||
2025-05-10 17:21:23,798 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250510171706.xlsx
|
||||
2025-05-10 17:21:23,798 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250510171706.xlsx
|
||||
2025-05-10 17:21:23,865 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-10 17:21:23,866 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-12, 总金额: 10540.44, 处理条目: 37
|
||||
2025-05-10 17:21:23,866 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-10 17:21:23,867 - app.services.tobacco_service - ERROR - 处理烟草公司订单时发生错误: Unknown format code 'f' for object of type 'str'
|
||||
Traceback (most recent call last):
|
||||
File "D:\My Documents\python\orc-order-v2\app\services\tobacco_service.py", line 123, in process_tobacco_order
|
||||
self.show_result_dialog(output_file, order_time, total_count, total_amount)
|
||||
File "D:\My Documents\python\orc-order-v2\app\services\tobacco_service.py", line 250, in show_result_dialog
|
||||
amount_info=f"¥{total_amount:.2f}",
|
||||
ValueError: Unknown format code 'f' for object of type 'str'
|
||||
2025-05-10 17:23:18,701 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250510171706.xlsx
|
||||
2025-05-10 17:23:18,701 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250510171706.xlsx
|
||||
2025-05-10 17:23:19,076 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-10 17:23:19,092 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-12, 总金额: 10540.44, 处理条目: 37
|
||||
2025-05-10 17:23:19,092 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-10 17:23:19,567 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-12, 总金额: 10540.44, 处理条目: 37
|
||||
2025-05-25 12:26:45,362 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250525122452.xlsx
|
||||
2025-05-25 12:26:45,362 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250525122452.xlsx
|
||||
2025-05-25 12:26:45,414 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-25 12:26:45,414 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-19, 总金额: 11656.92, 处理条目: 38
|
||||
2025-05-25 12:26:45,414 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-25 12:26:45,715 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-19, 总金额: 11656.92, 处理条目: 38
|
||||
2025-05-25 12:28:27,788 - app.services.tobacco_service - INFO - 找到最新烟草订单明细文件: data/output\订单明细20250525122508.xlsx
|
||||
2025-05-25 12:28:27,788 - app.services.tobacco_service - INFO - 开始处理烟草公司订单: data/output\订单明细20250525122508.xlsx
|
||||
2025-05-25 12:28:27,848 - app.services.tobacco_service - INFO - 采购单生成成功: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-25 12:28:27,848 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-26, 总金额: 13703.98, 处理条目: 45
|
||||
2025-05-25 12:28:27,858 - app.services.tobacco_service - INFO - 采购单已生成: data/output\银豹采购单_烟草公司.xls
|
||||
2025-05-25 12:28:28,022 - app.services.tobacco_service - INFO - 烟草公司订单处理成功,订单时间: 2025-05-26, 总金额: 13703.98, 处理条目: 45
|
||||
@ -1,8 +0,0 @@
|
||||
2025-05-02 15:58:36,151 - INFO - 开始百度表格OCR识别程序
|
||||
2025-05-02 15:58:36,165 - INFO - 已创建默认配置文件: config.ini
|
||||
2025-05-02 15:58:36,168 - INFO - 已加载配置文件: config.ini
|
||||
2025-05-02 15:58:36,170 - INFO - 已确保文件夹存在: input
|
||||
2025-05-02 15:58:36,172 - INFO - 已确保文件夹存在: output
|
||||
2025-05-02 15:58:36,172 - INFO - 已确保文件夹存在: temp
|
||||
2025-05-02 15:58:36,175 - INFO - 没有需要处理的图像文件
|
||||
2025-05-02 15:58:36,176 - INFO - 百度表格OCR识别程序已完成,耗时: 0.02秒
|
||||
BIN
release/OCR订单处理系统.exe
Normal file
BIN
release/OCR订单处理系统.exe
Normal file
Binary file not shown.
19
release/README.txt
Normal file
19
release/README.txt
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
# OCR订单处理系统 - 便携版
|
||||
|
||||
## 使用说明
|
||||
1. 双击 "OCR订单处理系统.exe" 启动程序
|
||||
2. 将需要处理的图片文件放入 data/input 目录
|
||||
3. 处理结果将保存在 data/output 目录
|
||||
4. 日志文件保存在 logs 目录
|
||||
|
||||
## 注意事项
|
||||
- 首次运行时需要配置百度OCR API密钥
|
||||
- 支持的图片格式:jpg, jpeg, png, bmp
|
||||
- 单个文件大小不超过4MB
|
||||
|
||||
## 目录结构
|
||||
- OCR订单处理系统.exe - 主程序
|
||||
- data/input/ - 输入图片目录
|
||||
- data/output/ - 输出结果目录
|
||||
- logs/ - 日志目录
|
||||
28
release/config.ini
Normal file
28
release/config.ini
Normal file
@ -0,0 +1,28 @@
|
||||
[API]
|
||||
api_key = O0Fgk3o69RWJ86eAX8BTHRaB
|
||||
secret_key = VyZD5lzcIMgsup1uuD6Cw0pfzS20IGPZ
|
||||
timeout = 30
|
||||
max_retries = 3
|
||||
retry_delay = 2
|
||||
api_url = https://aip.baidubce.com/rest/2.0/ocr/v1/table
|
||||
|
||||
[Paths]
|
||||
input_folder = data/input
|
||||
output_folder = data/output
|
||||
temp_folder = data/temp
|
||||
template_folder = templates
|
||||
processed_record = data/processed_files.json
|
||||
|
||||
[Performance]
|
||||
max_workers = 4
|
||||
batch_size = 5
|
||||
skip_existing = true
|
||||
|
||||
[File]
|
||||
allowed_extensions = .jpg,.jpeg,.png,.bmp
|
||||
excel_extension = .xlsx
|
||||
max_file_size_mb = 4
|
||||
|
||||
[Templates]
|
||||
purchase_order = 银豹-采购单模板.xls
|
||||
|
||||
205
release/config/barcode_mappings.json
Normal file
205
release/config/barcode_mappings.json
Normal file
@ -0,0 +1,205 @@
|
||||
{
|
||||
"6920584471055": {
|
||||
"map_to": "6920584471017",
|
||||
"description": "条码映射:6920584471055 -> 6920584471017"
|
||||
},
|
||||
"6925861571159": {
|
||||
"map_to": "69021824",
|
||||
"description": "条码映射:6925861571159 -> 69021824"
|
||||
},
|
||||
"6923644268923": {
|
||||
"map_to": "6923644268480",
|
||||
"description": "条码映射:6923644268923 -> 6923644268480"
|
||||
},
|
||||
"6925861571466": {
|
||||
"map_to": "6925861571459",
|
||||
"description": "条码映射:6925861571466 -> 6925861571459"
|
||||
},
|
||||
"6907992508344": {
|
||||
"map_to": "6907992508191",
|
||||
"description": "条码映射:6907992508344 -> 6907992508191"
|
||||
},
|
||||
"6903979000979": {
|
||||
"map_to": "6903979000962",
|
||||
"description": "条码映射:6903979000979 -> 6903979000962"
|
||||
},
|
||||
"6923644283582": {
|
||||
"map_to": "6923644283575",
|
||||
"description": "条码映射:6923644283582 -> 6923644283575"
|
||||
},
|
||||
"6923644268930": {
|
||||
"map_to": "6923644268497",
|
||||
"description": "条码映射:6923644268930 -> 6923644268497"
|
||||
},
|
||||
"6923644268916": {
|
||||
"map_to": "6923644268503",
|
||||
"description": "条码映射:6923644268916 -> 6923644268503"
|
||||
},
|
||||
"6923644268909": {
|
||||
"map_to": "6923644268510",
|
||||
"description": "条码映射:6923644268909 -> 6923644268510"
|
||||
},
|
||||
"6923644299804": {
|
||||
"map_to": "6923644299774",
|
||||
"description": "条码映射:6923644299804 -> 6923644299774"
|
||||
},
|
||||
"6923644266318": {
|
||||
"map_to": "6923644266066",
|
||||
"description": "条码映射:6923644266318 -> 6923644266066"
|
||||
},
|
||||
"6923644210151": {
|
||||
"map_to": "6923644223458",
|
||||
"description": "条码映射:6923644210151 -> 6923644223458"
|
||||
},
|
||||
"6907992501819": {
|
||||
"map_to": "6907992500133",
|
||||
"description": "条码映射:6907992501819 -> 6907992500133"
|
||||
},
|
||||
"6907992502052": {
|
||||
"map_to": "6907992100272",
|
||||
"description": "条码映射:6907992502052 -> 6907992100272"
|
||||
},
|
||||
"6907992507385": {
|
||||
"map_to": "6907992507095",
|
||||
"description": "条码映射:6907992507385 -> 6907992507095"
|
||||
},
|
||||
"6973726149671": {
|
||||
"map_to": "6973726149657",
|
||||
"description": "条码映射:6973726149671 -> 6973726149657"
|
||||
},
|
||||
"6977426410574": {
|
||||
"map_to": "6977426410567",
|
||||
"description": "条码映射:6977426410574 -> 6977426410567"
|
||||
},
|
||||
"6973726149688": {
|
||||
"map_to": "6973726149664",
|
||||
"description": "条码映射:6973726149688 -> 6973726149664"
|
||||
},
|
||||
"6935205322012": {
|
||||
"map_to": "6935205320018",
|
||||
"description": "条码映射:6935205322012 -> 6935205320018"
|
||||
},
|
||||
"6943497411024": {
|
||||
"map_to": "6943497411017",
|
||||
"description": "条码映射:6943497411024 -> 6943497411017"
|
||||
},
|
||||
"6921734968821": {
|
||||
"map_to": "6921734968814",
|
||||
"description": "条码映射:6921734968821 -> 6921734968814"
|
||||
},
|
||||
"6921734968258": {
|
||||
"map_to": "6921734968241",
|
||||
"description": "条码映射:6921734968258 -> 6921734968241"
|
||||
},
|
||||
"6921734968180": {
|
||||
"map_to": "6921734968173",
|
||||
"description": "条码映射:6921734968180 -> 6921734968173"
|
||||
},
|
||||
"6921734908735": {
|
||||
"map_to": "6935205372772",
|
||||
"description": "条码映射:6921734908735 -> 6935205372772"
|
||||
},
|
||||
"6923644248222": {
|
||||
"map_to": "6923644248208",
|
||||
"description": "条码映射:6923644248222 -> 6923644248208"
|
||||
},
|
||||
"6902083881122": {
|
||||
"map_to": "6902083881085",
|
||||
"description": "条码映射:6902083881122 -> 6902083881085"
|
||||
},
|
||||
"6907992501857": {
|
||||
"map_to": "6907992500010",
|
||||
"description": "条码映射:6907992501857 -> 6907992500010"
|
||||
},
|
||||
"6902083891015": {
|
||||
"map_to": "6902083890636",
|
||||
"description": "条码映射:6902083891015 -> 6902083890636"
|
||||
},
|
||||
"6923450605240": {
|
||||
"map_to": "6923450605226",
|
||||
"description": "条码映射:6923450605240 -> 6923450605226"
|
||||
},
|
||||
"6923450605196": {
|
||||
"map_to": "6923450614624",
|
||||
"description": "条码映射:6923450605196 -> 6923450614624"
|
||||
},
|
||||
"6923450665213": {
|
||||
"map_to": "6923450665206",
|
||||
"description": "条码映射:6923450665213 -> 6923450665206"
|
||||
},
|
||||
"6923450666821": {
|
||||
"map_to": "6923450666838",
|
||||
"description": "条码映射:6923450666821 -> 6923450666838"
|
||||
},
|
||||
"6923450661505": {
|
||||
"map_to": "6923450661499",
|
||||
"description": "条码映射:6923450661505 -> 6923450661499"
|
||||
},
|
||||
"6923450676103": {
|
||||
"map_to": "6923450676097",
|
||||
"description": "条码映射:6923450676103 -> 6923450676097"
|
||||
},
|
||||
"6923450614631": {
|
||||
"map_to": "6923450614624",
|
||||
"description": "条码映射:6923450614631 -> 6923450614624"
|
||||
},
|
||||
"6901424334174": {
|
||||
"map_to": "6973730760015",
|
||||
"description": "条码映射:6901424334174 -> 6973730760015"
|
||||
},
|
||||
"6958620703716": {
|
||||
"map_to": "6958620703907",
|
||||
"description": "条码映射:6958620703716 -> 6958620703907"
|
||||
},
|
||||
"6937003706322": {
|
||||
"map_to": "6937003703833",
|
||||
"description": "条码映射:6937003706322 -> 6937003703833"
|
||||
},
|
||||
"6950783203494": {
|
||||
"map_to": "6950873203494",
|
||||
"description": "条码映射:6950783203494 -> 6950873203494"
|
||||
},
|
||||
"6907992501871": {
|
||||
"map_to": "6907992500010",
|
||||
"description": "条码映射:6907992501871 -> 6907992500010"
|
||||
},
|
||||
"6907992501864": {
|
||||
"map_to": "6907992100012",
|
||||
"description": "条码映射:6907992501864 -> 6907992100012"
|
||||
},
|
||||
"6923644264192": {
|
||||
"map_to": "6923644264116",
|
||||
"description": "条码映射:6923644264192 -> 6923644264116"
|
||||
},
|
||||
"6923450667316": {
|
||||
"map_to": "69042386",
|
||||
"description": "条码映射:6923450667316 -> 69042386"
|
||||
},
|
||||
"6923450653012": {
|
||||
"map_to": "69021343",
|
||||
"description": "条码映射:6923450653012 -> 69021343"
|
||||
},
|
||||
"6925019900087": {
|
||||
"multiplier": 10,
|
||||
"target_unit": "瓶",
|
||||
"description": "特殊处理:数量*10,单位转换为瓶"
|
||||
},
|
||||
"6921168593804": {
|
||||
"multiplier": 30,
|
||||
"target_unit": "瓶",
|
||||
"description": "NFC产品特殊处理:每箱30瓶"
|
||||
},
|
||||
"6901826888138": {
|
||||
"multiplier": 30,
|
||||
"target_unit": "瓶",
|
||||
"fixed_price": 3.7333333333333334,
|
||||
"specification": "1*30",
|
||||
"description": "特殊处理: 规格1*30,数量*30,单价=112/30"
|
||||
},
|
||||
"6958620703907": {
|
||||
"multiplier": 14,
|
||||
"target_unit": "个",
|
||||
"specification": "1*14",
|
||||
"description": "友臣肉松,1盒14个"
|
||||
}
|
||||
}
|
||||
28
release/config/config.ini
Normal file
28
release/config/config.ini
Normal file
@ -0,0 +1,28 @@
|
||||
[API]
|
||||
api_key = O0Fgk3o69RWJ86eAX8BTHRaB
|
||||
secret_key = VyZD5lzcIMgsup1uuD6Cw0pfzS20IGPZ
|
||||
timeout = 30
|
||||
max_retries = 3
|
||||
retry_delay = 2
|
||||
api_url = https://aip.baidubce.com/rest/2.0/ocr/v1/table
|
||||
|
||||
[Paths]
|
||||
input_folder = data/input
|
||||
output_folder = data/output
|
||||
temp_folder = data/temp
|
||||
template_folder = templates
|
||||
processed_record = data/processed_files.json
|
||||
|
||||
[Performance]
|
||||
max_workers = 4
|
||||
batch_size = 5
|
||||
skip_existing = true
|
||||
|
||||
[File]
|
||||
allowed_extensions = .jpg,.jpeg,.png,.bmp
|
||||
excel_extension = .xlsx
|
||||
max_file_size_mb = 4
|
||||
|
||||
[Templates]
|
||||
purchase_order = 银豹-采购单模板.xls
|
||||
|
||||
BIN
release/templates/银豹-采购单模板.xls
Normal file
BIN
release/templates/银豹-采购单模板.xls
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user