进度管理产值管理
This commit is contained in:
@ -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
|
||||
});
|
||||
};
|
||||
|
@ -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;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
|
Reference in New Issue
Block a user