mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-09 22:57:24 +00:00
removed allowed quantity and renamed tags
This commit is contained in:
@ -23,13 +23,10 @@ export class SpaceModelProductAllocationDto {
|
||||
@Type(() => ProductDto)
|
||||
product: ProductDto;
|
||||
|
||||
@IsInt()
|
||||
allowedQuantity: number;
|
||||
|
||||
@IsArray()
|
||||
@ValidateNested({ each: true })
|
||||
@Type(() => NewTagDto)
|
||||
allowedTags: NewTagDto[];
|
||||
tags: NewTagDto[];
|
||||
|
||||
@IsOptional()
|
||||
@IsArray()
|
||||
|
@ -16,11 +16,8 @@ export class SubspaceModelProductAllocationDto {
|
||||
@Type(() => ProductDto)
|
||||
product: ProductDto;
|
||||
|
||||
@IsInt()
|
||||
allowedQuantity: number;
|
||||
|
||||
@IsArray()
|
||||
@ValidateNested({ each: true })
|
||||
@Type(() => NewTagDto)
|
||||
allowedTags: NewTagDto[];
|
||||
tags: NewTagDto[];
|
||||
}
|
||||
|
@ -31,12 +31,9 @@ export class SpaceModelProductAllocationEntity extends AbstractEntity<SpaceModel
|
||||
@ManyToOne(() => ProductEntity, { nullable: false, onDelete: 'CASCADE' })
|
||||
public product: ProductEntity;
|
||||
|
||||
@Column({ type: 'int', default: 1 })
|
||||
public allowedQuantity: number;
|
||||
|
||||
@ManyToMany(() => NewTagEntity)
|
||||
@JoinTable({ name: 'space_model_product_tags' })
|
||||
public allowedTags: NewTagEntity[];
|
||||
public tags: NewTagEntity[];
|
||||
|
||||
@OneToMany(
|
||||
() => SpaceProductAllocationEntity,
|
||||
|
@ -27,12 +27,9 @@ export class SubspaceModelProductAllocationEntity extends AbstractEntity<Subspac
|
||||
@ManyToOne(() => ProductEntity, { nullable: false, onDelete: 'CASCADE' })
|
||||
public product: ProductEntity;
|
||||
|
||||
@Column({ type: 'int', default: 1 })
|
||||
public allowedQuantity: number;
|
||||
|
||||
@ManyToMany(() => NewTagEntity, (tag) => tag.subspaceModelAllocations)
|
||||
@JoinTable({ name: 'subspace_model_product_tags' })
|
||||
public allowedTags: NewTagEntity[];
|
||||
public tags: NewTagEntity[];
|
||||
|
||||
constructor(partial: Partial<SubspaceModelProductAllocationEntity>) {
|
||||
super();
|
||||
|
@ -33,7 +33,7 @@ export class SubspaceModelEntity extends AbstractEntity<SubSpaceModelDto> {
|
||||
@OneToMany(() => SubspaceEntity, (subspace) => subspace.subSpaceModel, {
|
||||
cascade: true,
|
||||
})
|
||||
public subspaceModel: SubspaceEntity[];
|
||||
public subspace: SubspaceEntity[];
|
||||
|
||||
@Column({
|
||||
nullable: false,
|
||||
|
@ -20,5 +20,5 @@ export class SpaceProductAllocationDto {
|
||||
@IsArray()
|
||||
@ValidateNested({ each: true })
|
||||
@Type(() => NewTagDto)
|
||||
allowedTags: NewTagDto[];
|
||||
tags: NewTagDto[];
|
||||
}
|
||||
|
@ -20,5 +20,5 @@ export class SubspaceProductAllocationDto {
|
||||
@IsArray()
|
||||
@ValidateNested({ each: true })
|
||||
@Type(() => NewTagDto)
|
||||
allowedTags: NewTagDto[];
|
||||
tags: NewTagDto[];
|
||||
}
|
||||
|
@ -30,12 +30,9 @@ export class SpaceProductAllocationEntity extends AbstractEntity<SpaceProductAll
|
||||
@ManyToOne(() => ProductEntity, { nullable: false, onDelete: 'CASCADE' })
|
||||
public product: ProductEntity;
|
||||
|
||||
@Column({ type: 'int', default: 1 })
|
||||
public allowedQuantity: number;
|
||||
|
||||
@ManyToMany(() => NewTagEntity)
|
||||
@JoinTable({ name: 'space_product_tags' })
|
||||
public allowedTags: NewTagEntity[];
|
||||
public tags: NewTagEntity[];
|
||||
|
||||
constructor(partial: Partial<SpaceProductAllocationEntity>) {
|
||||
super();
|
||||
|
@ -38,12 +38,9 @@ export class SubspaceProductAllocationEntity extends AbstractEntity<SubspaceProd
|
||||
@ManyToOne(() => ProductEntity, { nullable: false, onDelete: 'CASCADE' })
|
||||
public product: ProductEntity;
|
||||
|
||||
@Column({ type: 'int', default: 1 })
|
||||
public allowedQuantity: number;
|
||||
|
||||
@ManyToMany(() => NewTagEntity)
|
||||
@JoinTable({ name: 'subspace_product_tags' })
|
||||
public allowedTags: NewTagEntity[];
|
||||
public tags: NewTagEntity[];
|
||||
|
||||
constructor(partial: Partial<SubspaceProductAllocationEntity>) {
|
||||
super();
|
||||
|
@ -45,13 +45,13 @@ export class NewTagEntity extends AbstractEntity<NewTagDto> {
|
||||
|
||||
@ManyToMany(
|
||||
() => SpaceModelProductAllocationEntity,
|
||||
(allocation) => allocation.allowedTags,
|
||||
(allocation) => allocation.tags,
|
||||
)
|
||||
public spaceModelAllocations: SpaceModelProductAllocationEntity[];
|
||||
|
||||
@ManyToMany(
|
||||
() => SubspaceModelProductAllocationEntity,
|
||||
(allocation) => allocation.allowedTags,
|
||||
(allocation) => allocation.tags,
|
||||
)
|
||||
public subspaceModelAllocations: SubspaceModelProductAllocationEntity[];
|
||||
|
||||
|
Reference in New Issue
Block a user