废话不多说,直接贴代码
// 金额大写转化函数 add by zhangbg 2018-11-12 start
//money 数字
//currencyunit 金额单位
function changeMoneyToChinese(money,currencyunit) {
if(currencyunit == "万元" || currencyunit == "万元/亩"){
// 修改万元金额精度默认保留6位小数
money = (money * 10000).toFixed(6);
// end
}
var cnNums = new Array("零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"); // 汉字的数字
var cnIntRadice = new Array("", "拾", "佰", "仟"); // 基本单位
var cnIntUnits = new Array("", "万", "亿", "兆"); // 对应整数部分扩展单位
var cnDecUnits = new Array("角", "分", "毫", "厘"); // 对应小数部分单位
var cnInteger = "整"; // 整数金额时后面跟的字符
var cnIntLast = "元"; // 整型完以后的单位
var IntegerNum; // 金额整数部分
var DecimalNum; // 金额小数部分
// 新增金额小数部分字符串
var DecimalStr = ""; // 金额小数部分字符串
// end
var ChineseStr = ""; // 输出的中文金额字符串
var parts; // 分离金额后用的数组,预定义
if (money == "") {
return "";
}
money = parseFloat(money);
if (money == 0) {
ChineseStr = cnNums[0] + cnIntLast + cnInteger;
// ChineseStr = cnNums[0] + cnIntLast
//单位是万元每亩时在末尾添加每亩
if(currencyunit == "万元/亩"){
ChineseStr = ChineseStr + "每亩";
}
return ChineseStr;
}
money = money.toString(); // 转换为字符串
if (money.indexOf(".") == -1) {
IntegerNum = money;
DecimalNum = '';
} else {
parts = money.split(".");
IntegerNum = parts[0];
DecimalNum = parts[1].substr(0, 4);
}
if (parseInt(IntegerNum, 10) > 0) {// 获取整型部分转换
zeroCount = 0;
IntLen = IntegerNum.length;
for (i = 0; i < IntLen; i++) {
n = IntegerNum.substr(i, 1);
p = IntLen - i - 1;
q = p / 4;
m = p % 4;
if (n == "0") {
zeroCount++;
} else {
if (zeroCount > 0) {
ChineseStr += cnNums[0];
}
zeroCount = 0; // 归零
ChineseStr += cnNums[parseInt(n)] + cnIntRadice[m];
}
if (m == 0 && zeroCount < 4) {
ChineseStr += cnIntUnits[q];
}
}
ChineseStr += cnIntLast;
// 整型部分处理完毕
}
if (DecimalNum != '') {// 小数部分
// [start]
decLen = DecimalNum.length;
for (i = 0; i < decLen; i++) {
n = DecimalNum.substr(i, 1);
if (n != '0') {
DecimalStr += cnNums[Number(n)] + cnDecUnits[i];
}
}
}
// 无小数部分时显示xx元整
if (DecimalStr == '') {
ChineseStr += cnInteger;
} else {
ChineseStr += DecimalStr;
}
// end
if (ChineseStr == '') {
// 空字符串显示零元整
ChineseStr += cnNums[0] + cnIntLast + cnInteger;
// end
}
//单位是万元每亩时在末尾添加每亩
if(currencyunit == "万元/亩"){
ChineseStr = ChineseStr + "每亩";
}
return ChineseStr;
}
网友评论