航天信息金税盘接口 js 调用

航天信息金税盘接口 js 调用航天信息金税盘接口js调用背景最近项目要求与单机版的金税盘接口进行对接,在这里简单记录一下自己的开发经验,希望可以帮助到有需要的人PS:接口使用js对接,仅支持ie浏览器。前置条件在进行开发时候需要有一些前置条件ie浏览器开启activeX控件设置–>Internet选项–>安全–>自定义级别把activeX…

大家好,又见面了,我是你们的朋友全栈君。

航天信息金税盘接口 js 调用

个人博客: https://blog.joden123.top
原文地址: https://blog.joden123.top/2018/12/02/essay/gold-tax-js/

背景

最近项目要求与单机版的金税盘接口进行对接,在这里简单记录一下自己的开发经验,希望可以帮助到有需要的人

PS:接口使用 js 对接,仅支持 ie 浏览器。

前置条件

在进行开发时候需要有一些前置条件

  1. ie 浏览器
  • 开启 activeX 控件

    设置 –> Internet 选项 –> 安全 –> 自定义级别

    activeX 相关设置勾上

    可参考:

  • 管理员身份运行调试

    如果开票软件安装到本地 C盘 需要使用管理员打开 ie 浏览器,然后再进行调试

  1. 金税盘安装

    • 要确保金税盘安装准确安装了TaxCardX.dll

通用 js代码

/** 航信金税盘相关function */
var goldTax = { 
   
	/** * 使用前先判断是否是ie浏览器 * @return true/false */
	isIE: function () { 
   
        if(!!window.ActiveXObject || "ActiveXObject" in window)
            return true;
        else
            return false;
    },
	/** * 开启金税盘 * @param certPassword 单机版为证书口令 服务器版为地址 留空则读取开票BIN文件下cert.txt * @return * <pre> * { * 'success': true/false, // 成功或者失败 * 'code': -1/其他, // 错误码,-1 为系统错误 * 'msg': 'xxx', // 错误信息 * 'data': {} // 接口返回相关数据 * } * </pre> */
	openCard: function (certPassword) { 
   
		var result = { 
   
			'success': false,
			'code': -1,
			'msg': '',
			'data': { 
   }
		};
        try { 
   
            goldTax.card = new ActiveXObject("TaxCardX.GoldTax");
            // 单机版为证书口令 服务器版为地址 留空则读取开票BIN文件下cert.txt
            if(typeof certPassword != 'undefined') { 
   
            	goldTax.card.CertPassword = certPassword;
            }
            // 开启金税盘
            goldTax.card.OpenCard();
            result.code = goldTax.card.RetCode;
            result.msg = goldTax.card.RetMsg;
            // 1011 开启成功
            if (result.code == 1011) { 
   
            	result.success = true;
            	result.data = { 
   
            		RetCode: goldTax.card.RetCode, /* RetCode - 状态码, 1011 开启成功 */
            		RetMsg: goldTax.card.RetMsg, /* RetMsg 状态信息 */
            		InvLimit: goldTax.card.InvLimit, /* InvLimit – 开票限额, 金税卡发票开具价税合计限额 */
            		TaxCode: goldTax.card.TaxCode, /* TaxCode 本单位税号 */
            		TaxClock: goldTax.card.TaxClock, /* TaxClock – 金税卡时钟 */
            		MachineNo: goldTax.card.MachineNo, /* MachineNo – 开票机号码,主开票机为 0 */
            		IsInvEmpty: goldTax.card.IsInvEmpty, /* IsInvEmpty – 有票标志,0为金税卡中无可开发票,1为有票 */
            		IsRepReached: goldTax.card.IsRepReached, /* IsRepReached – 抄税标志,0为未到抄税期,1为已到抄税期 */
            		IsLockReached: goldTax.card.IsLockReached, /* IsLockReached – 锁死标志,0为未到锁死期,1为已到锁死期 */
            	};
            } else { 
   
            	result.success = false;
            }
        } catch (e) { 
   
            result.success = false;
            result.code = -1;
            result.msg = 'ActiveX Error, ' + e.description;
        }
        return result;
    },
    /** * 关闭金税盘 * @return * <pre> * { * 'success': true/false, // 成功或者失败 * 'code': -1/其他, // 错误码,-1 为系统错误 * 'msg': 'xxx' // 错误信息 * } * </pre> */
    closeCard: function() { 
   
    	var result = { 
   
			'success': false,
			'code': -1,
			'msg': ''
		};
    	if (typeof goldTax.card != 'undefined') { 
   
    		try { 
   
    			goldTax.card.closeCard();
    			result.code = goldTax.card.RetCode;
	            result.msg = goldTax.card.RetMsg;
    			// RetCode 9000 调用成功,其他失败
    			if (result.code == 9000) { 
   
    				result.success = true;
    			} else { 
   
    				result.success = false;
    			}
    		} catch (e) { 
   
    			result.success = false;
	            result.code = -1;
	            result.msg = 'ActiveX Error, ' + e.description;
    		}
    		return result;
    	}
    },
    /** * 查询库存发票 * @param invKind 发票种类 * @return * <pre> * { * 'success': true/false, // 成功或者失败 * 'code': -1/其他, // 错误码,-1 为系统错误 * 'msg': 'xxx', // 错误信息 * 'data': {} // 接口返回相关数据 * } * </pre> */
    invoiceInventory: function(invKind) { 
   
    	var result = { 
   
			'success': false,
			'code': -1,
			'msg': '',
			'data': { 
   }
		};
    	try { 
   
    		if (typeof goldTax.card != 'undefined') { 
   
    			goldTax.card.InfoKind = invKind;
    			goldTax.card.GetInfo();
    			result.code = goldTax.card.RetCode;
	            result.msg = goldTax.card.RetMsg;
    			// RetCode 3011 读取成功,其他失败
    			if (result.code == 3011) { 
   
    				result.success = true;
    				result.data = { 
   
    					RetCode: goldTax.card.RetCode, /* RetCode - 状态码, 3011 读取成功,其他失败 */
            			RetMsg: goldTax.card.RetMsg, /* RetMsg 状态信息 */
            			InfoTypeCode: goldTax.card.InfoTypeCode, /* 要开具发票的十位代码。为空或全为0时,表示无可用发票 */
            			InfoNumber: goldTax.card.InfoNumber, /* 要开具发票的号码 */
            			InvStock: goldTax.card.InvStock, /* 剩余的可用发票份数 */
            			TaxClock: goldTax.card.TaxClock /* 金税盘时钟 */
    				};
    			} else { 
   
    				result.success = false;
    			}
    		} else { 
   
    			result.success = false;
	            result.code = -1;
	            result.msg = 'Please Open Card First';
    		}
		} catch (e) { 
   
			result.success = false;
            result.code = -1;
            result.msg = 'ActiveX Error, ' + e.description;
		}
		return result;
    },
    /** * 发票校验 * @param o 传入发票信息 * @return * <pre> * { * 'success': true/false, // 成功或者失败 * 'code': -1/其他, // 错误码,-1 为系统错误 * 'msg': 'xxx', // 错误信息 * 'data': {} // 接口返回相关数据 * } * </pre> */
    invoiceVeriferify: function(o) { 
   
    	return goldTax.inner.invoice(1, o);
    },
    /** * 发票开具 * @param o 传入发票信息 * @return * <pre> * { * 'success': true/false, // 成功或者失败 * 'code': -1/其他, // 错误码,-1 为系统错误 * 'msg': 'xxx', // 错误信息 * 'data': {} // 接口返回相关数据 * } * </pre> */
    invoicing: function(o) { 
   
    	return goldTax.inner.invoice(0, o);
    },
    /** * 发票打印 * @param o 传入发票信息 * @return * <pre> * { * 'success': true/false, // 成功或者失败 * 'code': -1/其他, // 错误码,-1 为系统错误 * 'msg': 'xxx' // 错误信息 * } * </pre> */
    printInv: function(o) { 
   
    	var result = { 
   
			'success': false,
			'code': -1,
			'msg': ''
		};
    	try { 
   
    		if (typeof goldTax.card != 'undefined') { 
   
    			goldTax.card.InfoKind = o.InfoKind; /* 发票种类(0:专用发票 2:普通发票 11:货物运输业增值税专用发票 12:机动车销售统一发票) */
    			goldTax.card.InfoTypeCode = o.InfoTypeCode; /* 要打印发票的十位代码 */
                goldTax.card.InfoNumber = o.InfoNumber; /* 要打印发票的号码 */
                goldTax.card.GoodsListFlag = o.GoodsListFlag; /* 销货清单标志,0 – 打印发票,1 – 打印销货清单 */
                goldTax.card.InfoShowPrtDlg = o.InfoShowPrtDlg; /* 打印时是否显示边距确认对话框,0 – 不出现,1 – 出现 */
                // 调用接口
    			goldTax.card.PrintInv();
    			result.code = goldTax.card.RetCode;
	            result.msg = goldTax.card.RetMsg;
    			// RetCode 5011 打印成功,5001 – 未找到发票或清单,5012 – 未打印,5013 – 打印失败
    			if (result.code == 5011) { 
   
    				result.success = true;
    			} else { 
   
    				result.success = false;
    			}
    		} else { 
   
    			result.success = false;
	            result.code = -1;
	            result.msg = 'Please Open Card First';
    		}
		}  catch (e) { 
   
            result.success = false;
            result.code = -1;
            result.msg = 'ActiveX Error, ' + e.description;
        }
		return result;
    },
    /** * 已开发票作废 * @param o 传入发票信息 * @return * <pre> * { * 'success': true/false, // 成功或者失败 * 'code': -1/其他, // 错误码,-1 为系统错误 * 'msg': 'xxx' // 错误信息 * } * </pre> */
    cancelInv: function(o) { 
   
    	var result = { 
   
			'success': false,
			'code': -1,
			'msg': ''
		};
    	try { 
   
    		if (typeof goldTax.card != 'undefined') { 
   
    			goldTax.card.InfoKind = o.InfoKind; /* 发票种类(0:专用发票 2:普通发票 11:货物运输业增值税专用发票 12:机动车销售统一发票) */
    			goldTax.card.InfoTypeCode = o.InfoTypeCode; /* 要作废发票的十位或十二位代码 */
                goldTax.card.InfoNumber = o.InfoNumber; /* 要作废发票的号码 */
                // 调用接口
    			goldTax.card.CancelInv();
    			result.code = goldTax.card.RetCode;
	            result.msg = goldTax.card.RetMsg;
    			// RetCode 6011 打印成功,6001 – 当月发票库未找到该发票,6002 – 该发票已经作废,6012 – 作废失败,6013 – 作废失败(异常)
    			if (result.code == 6011) { 
   
    				result.success = true;
    			} else { 
   
    				result.success = false;
    			}
    		} else { 
   
    			result.success = false;
	            result.code = -1;
	            result.msg = 'Please Open Card First';
    		}
		}  catch (e) { 
   
            result.success = false;
            result.code = -1;
            result.msg = 'ActiveX Error, ' + e.description;
        }
		return result;
    },
    // 内部方法
    inner: { 
   
    	/** * invoice 接口 * @param checkEWM 默认为0(0: 发票开具, 1: 发票校验, 2: 空白作废) * @param o 传入发票信息 * @return * <pre> * { * 'success': true/false, // 成功或者失败 * 'code': -1/其他, // 错误码,-1 为系统错误 * 'msg': 'xxx', // 错误信息 * 'data': {} // 接口返回相关数据 * } * </pre> */
    	invoice: function(checkEWM, o) { 
   
    		var result = { 
   
				'success': false,
				'code': -1,
				'msg': '',
				'data': { 
   }
			};
	    	try { 
   
	    		if (typeof goldTax.card != 'undefined') { 
   
	    			// CheckEWM值默认为0(为1时用于发票校验。
	    			// 注意:一旦CheckEWM值置1用于发票校验之后,
	    			//如果要再进行发票开具必须手动将CheckEWM值置为0,否则Invoice()方法的功能将一直处于发票校验状态)
	    			goldTax.card.CheckEWM = checkEWM; 
	    			goldTax.card.InvInfoInit(); /* 初始化发票抬头信息 */
	    			goldTax.card.InfoKind = o.InfoKind; /* 增值税普通发票2 专票0 */
	    			goldTax.card.InfoClientName = o.InfoClientName; /* 购方名称 */
	                goldTax.card.InfoClientTaxCode = o.InfoClientTaxCode; /* 购方税号 */
	                goldTax.card.InfoClientBankAccount = o.InfoClientBankAccount; /* 购方开户行及账号 */
	                goldTax.card.InfoClientAddressPhone = o.InfoClientAddressPhone; /* 购方地址电话 */
	                goldTax.card.InfoSellerBankAccount = o.InfoSellerBankAccount; /* 销方开户行及账号 */
	                goldTax.card.InfoSellerAddressPhone = o.InfoSellerAddressPhone; /* 销方地址电话 */
	                // 如果是多商品多税率 税率应该放到下面商品信息循环里
	                if (typeof o.InfoTaxRate != 'undefined' && o.InfoTaxRate) { 
    
	                	goldTax.card.InfoTaxRate = o.InfoTaxRate; /* 税率,(已授权的税率, 17% 传17) */
	                }
	                goldTax.card.InfoNotes = o.InfoNotes; /* 备注 */
	                goldTax.card.InfoInvoicer = o.InfoInvoicer; /* 开票人 */
	                // 复核人,可为空
	                if (typeof o.InfoChecker != 'undefined' && o.InfoChecker) { 
   
	                	goldTax.card.InfoChecker = o.InfoChecker;
	                }
	                // 收款人,可为空
	                if (typeof o.InfoCashier != 'undefined' && o.InfoCashier) { 
   
	                	goldTax.card.InfoCashier = o.InfoCashier;
	                }
	                // 如不为空,则开具销货清单,此为发票上商品名称栏的清单信息,应为“(详见销货清单)”字样
	                if (typeof o.InfoListName != 'undefined' && o.InfoListName) { 
    
	                	goldTax.card.InfoListName = o.InfoListName;
	                }
	                // 清空商品明细列表
	                goldTax.card.ClearInvList(); 
	                // 遍历行
	                $.each(o.InvList, function(i, v) { 
   
	                	goldTax.card.InvListInit(); /* 初始化发票明细信息各项属性 */
	                	goldTax.card.ListGoodsName = v.ListGoodsName; /* 商品或劳务名称 */
		                goldTax.card.ListTaxItem = v.ListTaxItem; /* 税目,4位数字,商品所属类别 */
		                goldTax.card.ListStandard = v.ListStandard; /* 规格型号 */
		                // 计量单位,如计量单位为空,则忽略数量和单价
		                if (typeof v.ListUnit != 'undefined' && v.ListUnit) { 
   
		                	goldTax.card.ListUnit = v.ListUnit;
		                }
		                // 建议传入数量和含税单价或含税金额 由接口计算带小数的税额 规避误差
		                goldTax.card.ListNumber = v.ListNumber; // 数量
		                goldTax.card.ListPrice = v.ListPrice; // 单价
		                // 金额,可以不传(为0),由接口软件计算,如传入则应符合计算关系
		                if (typeof v.ListAmount != 'undefined' && v.ListAmount ) { 
   
		                	goldTax.card.ListAmount = v.ListAmount;
		                }
		                goldTax.card.ListPriceKind = v.ListPriceKind; /* 含税价标志,单价和金额的种类, 0为不含税价,1为含税价 */
		                // 税额可以不传(为0),由接口软件计算,如传入则应符合计算关系
		                if (typeof v.ListTaxAmount != 'undefined' && v.ListTaxAmount) { 
   
		                	goldTax.card.ListTaxAmount = v.ListTaxAmount;
		                }
		                // 添加一行
		                goldTax.card.AddInvList();
	                });
	                // 调用接口
	    			goldTax.card.Invoice();
	    			result.code = goldTax.card.RetCode;
		            result.msg = goldTax.card.RetMsg;
	    			// RetCode 4011 开票成功,其他失败
	    			if (result.code == 4011) { 
   
	    				result.success = true;
	    				result.data = { 
   
	    					RetCode: goldTax.card.RetCode, /* RetCode - 状态码, 3011 读取成功,其他失败 */
	            			RetMsg: goldTax.card.RetMsg, /* RetMsg 状态信息 */
	            			InfoAmount: goldTax.card.InfoAmount , /* 合计不含税金额 */
	            			InfoTaxAmount: goldTax.card.InfoTaxAmount, /* 合计税额 */
	            			InfoInvDate: goldTax.card.InfoInvDate, /* 开票日期 */
	            			InfMonth: goldTax.card.InfMonth, /* 所属月份 */
	            			InfoTypeCode: goldTax.card.InfoTypeCode, /* 发票十位代码 */
	            			InfoNumber: goldTax.card.InfoNumber, /* 发票号码 */
	            			GoodsListFlag: goldTax.card.GoodsListFlag /* 销货清单标志,0 – 无销货清单,1 – 有销货清单 */
	    				};
	    			} else { 
   
	    				result.success = false;
	    			}
	    		} else { 
   
	    			result.success = false;
		            result.code = -1;
		            result.msg = 'Please Open Card First';
	    		}
			} catch (e) { 
   
	            result.success = false;
	            result.code = -1;
	            result.msg = 'ActiveX Error, ' + e.description;
	        }
			return result;
    	}
    }
};

相关资料

CSDN 需要积分下载 金税 防伪税控 组件接口 开发文档 代码案例

没有积分的 戳这里

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/131639.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 模电基础知识点小结[通俗易懂]

    模电基础知识点小结[通俗易懂]第一章常用半导体器件在本征半导体中加入三价元素可形成P型半导体。(五价磷元素形成N型)当PN结加正向电压时,空间电荷区将(变窄)。PN结的单向导电性:在PN结两端加正向电压时,内电场被削弱,空间电荷区变窄,有利于多子扩散,不利于少子漂移,PN结处于导通状态;当在PN结两端加反向电压时,内电场增强,空间电荷区变宽,有利于少子漂移,不利于多子扩散,PN结处于反向截止状态。当二极管外加正向电压增大时,其动态电阻增大。(×)要使稳压管的稳压,其工作区为(反向击穿区)。稳压管与普通二极管的

  • ora00279解决办法_oracle物化视图日志表

    ora00279解决办法_oracle物化视图日志表某物化视图在增量刷新的时候报错ora-00920,尝试全量刷新的时候,报错ora-00904。BEGINDBMS_MVIEW.REFRESH(‘MV_ABCD_K_PPLLCJ’,’F’);END;ORA-12018:在创建”MYJUKKA”.”MV_ABCD_K_PPLLCJ”的代码时出现以下错误ORA-00920:无效的关系运算符ORA-06512:在”SYS.SNAPSHOT”,line…

  • 调用接口返回中文乱码_java请求接口返回乱码

    调用接口返回中文乱码_java请求接口返回乱码最近调用Webservice接口时,遇到接收乱码的问题最开始用soapUI测试看XML结果是正常的,返回结果大概是这样(只截取了json部分结果){“state”:0,”message”:”流程启动成功”,”seqno”:”202005020009″}后来在JAVA后台使用HttpURLConnection调用(全部代码在后面),发现返回来的中文部分全部乱码,如下{“state…

  • 3D实例分割「建议收藏」

    3D实例分割「建议收藏」13D实例分割-云+社区-腾讯云2提出“3D-BoNet”,比3D点云实例分割算法快10倍!

  • c++酒店管理系统课程设计_基于java的酒店管理系统源码

    c++酒店管理系统课程设计_基于java的酒店管理系统源码朋友们好呀,我是马保国。呸。我是一名大一刚过完一个学期的学生。————————————————————————在我忙碌的努力的在RushB并且备战期末考试的时候我想到了我还得学习!!!但是,临近期末课又少所以,我想到了我一直想要去做的,一个关于酒店的一些小东西,他能够做到酒店的一些鸡操(基本操作),像酒店的入住,退房,还有酒店员工的系统这些我认为比较牛(我认为比较厉害,别抬杠)的一个操作,所以在接近期末的时候疯狂肝,终于在考完试回到家的第一天写完了(前后20天左右了,浪费生命的臭玩意,啊。。。.

  • python 递归排序[通俗易懂]

    python 递归排序[通俗易懂]python递归    对序列排序,使用二分冒泡排序,将序列分割为两部分    第一步:首先,设定一个初始值,假设为序列的第一个值,    第二步:将序列中大于初始值的值,放置于初始值的左边    第三步: 将序列中小于初始值的值,放置于初始值的右边    第四步:将序列一分为二,存放小值的列表作为一个列表进入递归…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号