Feat: add insert product history status at update product

This commit is contained in:
mfadiln2018 2022-08-27 13:42:11 +07:00
parent 2f0e191e5a
commit b13a38590c

View File

@ -513,6 +513,10 @@ export class ProductService {
updateProductDto.subCategoriesId,
);
await this.productHistoryStatus.update(id, {
status: updateProductDto.status,
});
const result = await this.productRepository.update(id, {
name: updateProductDto.name,
code: updateProductDto.code,