|
发表于 2023-5-24 06:03
来自手机
|
显示全部楼层
limcse 发表于 2023-5-23 08:46
员工基本都下载的PDF版全电发票 打印出来到财务报销。我公司财务需要 提取全电发票的 相关内容 记录到Excel ...
http://e.anyoupin.cn/EData/?p=tools.ceshi.index/downloadFile&file=pdfToText
下载提取工具
create temp table aa as
select *,iif(RowPosition=129 and wordX=170,Word,'') 发票号码,(select group_concat(Word,'') from 正则表达式数据清洗之全电发票数据提取 b where b.RowPosition=123 and b.Path=a.Path and wordX=170) 开票日期,iif(RowPosition=106 and WordX=20 ,word,'') 购买方名称名称,iif(RowPosition=96 and WordX=54 ,word,'') 统一社会信用代码 from 正则表达式数据清洗之全电发票数据提取 a where RowIdx!='';
select group_concat(发票号码,''),开票日期,group_concat(购买方名称名称,''),group_concat(统一社会信用代码,'') from aa group by Path;
//select * from aa;
|
评分
-
1
查看全部评分
-
|