def getQuarterPeriodDict(self): resultList = FileDataDao().getQuarterPeriodList() return tools.convertListToDDDict(resultList=resultList, indexLabel=1, indexValue=0)
def getExpressionStatusDict(self): resultList = FileDataDao().getStatusList( statusAttr=ConstantStatus.EXPRESSION_STATUS) return tools.convertListToDDDict(resultList)
def getCalculateStatusDict(self): resultList = FileDataDao().getStatusList( statusAttr=ConstantStatus.CALCULATE_STATUS) return tools.convertListToDDDict(resultList)
def getCopyStatusDict(self): resultList = FileDataDao().getStatusList( statusAttr=ConstantStatus.COPY_STATUS) return tools.convertListToDDDict(resultList)
def getEntityFactStatusDict(self): resultList = FileDataDao().getStatusList( statusAttr=ConstantStatus.ENTITY_FACT_STATUS) return tools.convertListToDDDict(resultList)
def getPriceStatusDict(self): resultList = FileDataDao().getStatusList( statusAttr=ConstantStatus.PRICE_STATUS) return tools.convertListToDDDict(resultList)