Commit b6cbafba by lixinming

no message

parent 90c802e7
...@@ -12,6 +12,7 @@ import moment = require("moment"); ...@@ -12,6 +12,7 @@ import moment = require("moment");
* 新添加孵化器月度填报 * 新添加孵化器月度填报
* @param uscc 孵化器的统一信用代码 * @param uscc 孵化器的统一信用代码
* @param occupancyRate 本月出租率 * @param occupancyRate 本月出租率
* @returns {isSuccess:true/false}
*/ */
export async function createReport(uscc:string, occupancyRate:number) { export async function createReport(uscc:string, occupancyRate:number) {
//不允许有重复的 //不允许有重复的
...@@ -24,5 +25,5 @@ export async function createReport(uscc:string, occupancyRate:number) { ...@@ -24,5 +25,5 @@ export async function createReport(uscc:string, occupancyRate:number) {
const MonthTableName = `${MonthNumber}月孵化器月度填报`; const MonthTableName = `${MonthNumber}月孵化器月度填报`;
await monthData.addOnceReport(MonthTableName, uscc, occupancyRate); await monthData.addOnceReport(MonthTableName, uscc, occupancyRate);
return; return {isSuccess:true};
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment