เพิ่ม รายละเอียดอื่นๆ 70 จริง
This commit is contained in:
parent
f8e1f9ab9d
commit
3e686addec
2 changed files with 48 additions and 8 deletions
|
|
@ -1494,8 +1494,12 @@ export class DevelopmentController extends Controller {
|
||||||
projectDayBackActual: getDevelopment.projectDayBackActual,
|
projectDayBackActual: getDevelopment.projectDayBackActual,
|
||||||
projectDayHoldActual: getDevelopment.projectDayHoldActual,
|
projectDayHoldActual: getDevelopment.projectDayHoldActual,
|
||||||
projectNigthHoldActual: getDevelopment.projectNigthHoldActual,
|
projectNigthHoldActual: getDevelopment.projectNigthHoldActual,
|
||||||
reasonActual: getDevelopment.reasonActual,
|
reasonActual70: getDevelopment.reasonActual70,
|
||||||
reasonPlanned: getDevelopment.reasonPlanned,
|
reasonActual20: getDevelopment.reasonActual20,
|
||||||
|
reasonActual10: getDevelopment.reasonActual10,
|
||||||
|
reasonPlanned70: getDevelopment.reasonPlanned70,
|
||||||
|
reasonPlanned20: getDevelopment.reasonPlanned20,
|
||||||
|
reasonPlanned10: getDevelopment.reasonPlanned10,
|
||||||
developmentProjectTechniqueActuals: getDevelopment.developmentProjectTechniqueActuals
|
developmentProjectTechniqueActuals: getDevelopment.developmentProjectTechniqueActuals
|
||||||
.map((x) => x.name)
|
.map((x) => x.name)
|
||||||
.sort(),
|
.sort(),
|
||||||
|
|
|
||||||
|
|
@ -262,10 +262,24 @@ export class Development extends EntityBase {
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
comment: "รายละเอียดอื่นๆ แผน",
|
comment: "รายละเอียดอื่นๆ 70 แผน",
|
||||||
default: null,
|
default: null,
|
||||||
})
|
})
|
||||||
reasonPlanned: string;
|
reasonPlanned70: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
comment: "รายละเอียดอื่นๆ 20 แผน",
|
||||||
|
default: null,
|
||||||
|
})
|
||||||
|
reasonPlanned20: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
comment: "รายละเอียดอื่นๆ 10 แผน",
|
||||||
|
default: null,
|
||||||
|
})
|
||||||
|
reasonPlanned10: string;
|
||||||
|
|
||||||
@OneToMany(
|
@OneToMany(
|
||||||
() => DevelopmentProjectTechniquePlanned,
|
() => DevelopmentProjectTechniquePlanned,
|
||||||
|
|
@ -276,10 +290,24 @@ export class Development extends EntityBase {
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
comment: "รายละเอียดอื่นๆ จริง",
|
comment: "รายละเอียดอื่นๆ 70 จริง",
|
||||||
default: null,
|
default: null,
|
||||||
})
|
})
|
||||||
reasonActual: string;
|
reasonActual70: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
comment: "รายละเอียดอื่นๆ 20 จริง",
|
||||||
|
default: null,
|
||||||
|
})
|
||||||
|
reasonActual20: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
comment: "รายละเอียดอื่นๆ 10 จริง",
|
||||||
|
default: null,
|
||||||
|
})
|
||||||
|
reasonActual10: string;
|
||||||
|
|
||||||
@OneToMany(
|
@OneToMany(
|
||||||
() => DevelopmentProjectTechniqueActual,
|
() => DevelopmentProjectTechniqueActual,
|
||||||
|
|
@ -686,7 +714,11 @@ export class UpdateDevelopment3 {
|
||||||
@Column()
|
@Column()
|
||||||
developmentProjectTechniquePlanneds?: string[];
|
developmentProjectTechniquePlanneds?: string[];
|
||||||
@Column()
|
@Column()
|
||||||
reasonPlanned?: string;
|
reasonPlanned70?: string;
|
||||||
|
@Column()
|
||||||
|
reasonPlanned20?: string;
|
||||||
|
@Column()
|
||||||
|
reasonPlanned10?: string;
|
||||||
@Column()
|
@Column()
|
||||||
isBackActual?: boolean | null;
|
isBackActual?: boolean | null;
|
||||||
@Column()
|
@Column()
|
||||||
|
|
@ -700,7 +732,11 @@ export class UpdateDevelopment3 {
|
||||||
@Column()
|
@Column()
|
||||||
developmentProjectTechniqueActuals?: string[];
|
developmentProjectTechniqueActuals?: string[];
|
||||||
@Column()
|
@Column()
|
||||||
reasonActual?: string;
|
reasonActual70?: string;
|
||||||
|
@Column()
|
||||||
|
reasonActual20?: string;
|
||||||
|
@Column()
|
||||||
|
reasonActual10?: string;
|
||||||
@Column()
|
@Column()
|
||||||
strategyChildPlannedId?: string | null;
|
strategyChildPlannedId?: string | null;
|
||||||
@Column()
|
@Column()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue