• 00
  • :
  • 00
  • :
  • 00
摘要: /// /// public static string ToUpper(decimal d):小写金额转换为大写金额,其他条件:金额小于一万亿, /// 最多两位小数,如123.45的转换结果为:壹百贰拾叁元肆角伍分 /// /// 源金额,d 《 1000000000000.00(一万亿),且最多两位小数 /// 结果,大写金额 public static string ToUpper(decimal d) { if (d == 0) ... 阅读全文
posted @ 2013-07-13 15:17 Garson_Zhang 阅读(387) 评论(0) 推荐(0) 编辑
摘要: -- =============================================-- Author: 苟安廷-- Create date: 2008-8-13-- Description: 将人民币转换为大写格式-- SELECT [dbo].[fL2U](1058.69,0) -- =============================================ALTER FUNCTION [dbo].[fL2U](@n_LowerMoney numeric(15,2),@v_TransType int) RETURNS VARCHAR(200)... 阅读全文
posted @ 2013-07-13 15:15 Garson_Zhang 阅读(576) 评论(0) 推荐(0) 编辑
摘要: /// /// public static string ToUpper(decimal d):小写金额转换为大写金额,其他条件:金额小于一万亿, /// 最多两位小数,如123.45的转换结果为:壹百贰拾叁元肆角伍分 /// /... 阅读全文
posted @ 2013-07-13 15:14 Garson_Zhang 阅读(452) 评论(0) 推荐(0) 编辑