税务局网站查询发票真伪,从TXT文件或粘贴文本导入数据,自动保存进度 需要先扫描二维码得到一串文本,
01,01,1440118001,00001010,20231001,100.00,,0000 01,01,1440118001,00001020,20231001,100.00,,0000 01,01,1440118001,00001030,20231001,100.00,,0000 01,01,1440118001,00001040,20231001,100.00,,0000
可以用微信小程序获取,比如我做的票盒子,或者批量从图片文件获取。
另外可以加一个辅助脚本,目前写的很简单
// @name 发票打印助手 (自动版)
// @namespace http://tampermonkey.net/
// @version 2025-05-01
// @description try to take over the world!
// @author 海上悬崖
// @match https://inv-veri.chinatax.gov.cn/jgbyz.html
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
// 1. 自动打印
const printfpBtn = document.getElementById('printfp');
if (printfpBtn) {
printfpBtn.click(); }
})();