|
发表于 2014-9-8 18:17:23
|
显示全部楼层
- /**
- * 本月会计开始日期
- *
- * @date Date类型
- */
- common.SysUtils.startOfAccMonth = function(date) {
- if (date.getDate() <= 25) {
- if (date.getMonth() == 0) {
- return new Date(date.getFullYear(), 0, 1);
- } else {
- return new Date(date.getFullYear(), date.getMonth() - 1, 26);
- }
- } else {
- return new Date(date.getFullYear(), date.getMonth(), 26);
- }
- };
- /**
- * 本月会计结束日期
- *
- * @date Date类型
- */
- common.SysUtils.endOfAccMonth = function(date) {
- if (date.getDate() <= 25) {
- return new Date(date.getFullYear(), date.getMonth(), 25);
- } else {
- if (date.getMonth() == 11) {
- return new Date(date.getFullYear(), 12, 31);
- } else {
- return new Date(date.getFullYear(), date.getMonth() + 1, 25);
- }
- }
- };
复制代码 |
评分
-
查看全部评分
|