进度管理产值管理

This commit is contained in:
Teo
2025-08-01 20:09:57 +08:00
parent bbc927edba
commit 4a5856f614
21 changed files with 2748 additions and 211 deletions

View File

@ -61,3 +61,16 @@ export const delMonthPlan = (id: string | number | Array<string | number>) => {
method: 'delete'
});
};
/**
* 获取月度产值计划
* @param query
* @returns {*}
*/
export const getMonth = (query: any): AxiosPromise => {
return request({
url: '/out/monthPlan/info',
method: 'get',
params: query
});
};

View File

@ -10,24 +10,19 @@ export interface MonthPlanVO {
projectId: string | number;
/**
* 计产值
* 计产值
*/
designValue: number;
planValue: number;
/**
* 采购产值
* 完成产值
*/
procurementValue: number;
completeValue: number;
/**
* 施工产值
* 差额
*/
constructionValue: number;
/**
* 总产值
*/
totalValue: number;
differenceValue: number;
/**
* 计划月份YYYY-MM
@ -35,9 +30,19 @@ export interface MonthPlanVO {
planMonth: string;
/**
* 审核状态
* 1-设计 2-采购 3-施工
*/
auditStatus: string;
valueType: string;
/**
* 计划审核状态
*/
planAuditStatus: string;
/**
* 完成审核状态
*/
completeAuditStatus: string;
}
@ -53,24 +58,19 @@ export interface MonthPlanForm extends BaseEntity {
projectId?: string | number;
/**
* 计产值
* 计产值
*/
designValue?: number;
planValue?: number;
/**
* 采购产值
* 完成产值
*/
procurementValue?: number;
completeValue?: number;
/**
* 施工产值
* 差额
*/
constructionValue?: number;
/**
* 总产值
*/
totalValue?: number;
differenceValue?: number;
/**
* 计划月份YYYY-MM
@ -78,9 +78,19 @@ export interface MonthPlanForm extends BaseEntity {
planMonth?: string;
/**
* 审核状态
* 1-设计 2-采购 3-施工
*/
auditStatus?: string;
valueType?: string;
/**
* 计划审核状态
*/
planAuditStatus?: string;
/**
* 完成审核状态
*/
completeAuditStatus?: string;
}
@ -92,24 +102,19 @@ export interface MonthPlanQuery extends PageQuery {
projectId?: string | number;
/**
* 计产值
* 计产值
*/
designValue?: number;
planValue?: number;
/**
* 采购产值
* 完成产值
*/
procurementValue?: number;
completeValue?: number;
/**
* 施工产值
* 差额
*/
constructionValue?: number;
/**
* 总产值
*/
totalValue?: number;
differenceValue?: number;
/**
* 计划月份YYYY-MM
@ -117,9 +122,19 @@ export interface MonthPlanQuery extends PageQuery {
planMonth?: string;
/**
* 审核状态
* 1-设计 2-采购 3-施工
*/
auditStatus?: string;
valueType?: string;
/**
* 计划审核状态
*/
planAuditStatus?: string;
/**
* 完成审核状态
*/
completeAuditStatus?: string;
/**
* 日期范围参数