67 lines
1.6 KiB
Python
67 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
from math import ceil
|
|
|
|
from . import SolarMonth
|
|
|
|
|
|
class SolarSeason:
|
|
"""
|
|
阳历季度
|
|
"""
|
|
|
|
MONTH_COUNT = 3
|
|
|
|
def __init__(self, year, month):
|
|
self.__year = year
|
|
self.__month = month
|
|
|
|
@staticmethod
|
|
def fromDate(date):
|
|
return SolarSeason(date.year, date.month)
|
|
|
|
@staticmethod
|
|
def fromYm(year, month):
|
|
return SolarSeason(year, month)
|
|
|
|
def getYear(self):
|
|
return self.__year
|
|
|
|
def getMonth(self):
|
|
return self.__month
|
|
|
|
def toString(self):
|
|
return "%d.%d" % (self.__year, self.getIndex())
|
|
|
|
def toFullString(self):
|
|
return "%d年%d季度" % (self.__year, self.getIndex())
|
|
|
|
def __str__(self):
|
|
return self.toString()
|
|
|
|
def getIndex(self):
|
|
"""
|
|
获取当月是第几季度
|
|
:return: 季度序号,从1开始
|
|
"""
|
|
return int(ceil(self.__month * 1.0 / SolarSeason.MONTH_COUNT))
|
|
|
|
def getMonths(self):
|
|
"""
|
|
获取本季度的阳历月列表
|
|
:return: 阳历月列表
|
|
"""
|
|
months = []
|
|
index = self.getIndex() - 1
|
|
for i in range(0, SolarSeason.MONTH_COUNT):
|
|
months.append(SolarMonth.fromYm(self.__year, SolarSeason.MONTH_COUNT * index + i + 1))
|
|
return months
|
|
|
|
def next(self, seasons):
|
|
"""
|
|
季度推移
|
|
:param seasons: 推移的季度数,负数为倒推
|
|
:return: 推移后的季度
|
|
"""
|
|
m = SolarMonth.fromYm(self.__year, self.__month).next(SolarSeason.MONTH_COUNT * seasons)
|
|
return SolarSeason.fromYm(m.getYear(), m.getMonth())
|