- fix order-prod and order-stg if suppliers have same code product
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
import { IsNotEmpty, IsOptional } from 'class-validator';
|
||||
|
||||
export class OrderTransactionDto {
|
||||
|
||||
@IsNotEmpty()
|
||||
productId: string;
|
||||
|
||||
@IsNotEmpty()
|
||||
productCode: string;
|
||||
|
||||
|
||||
@@ -335,14 +335,13 @@ export class TransactionService {
|
||||
currentUser.username,
|
||||
);
|
||||
|
||||
const supplierData = await this.supplierService.findByCode('IRS');
|
||||
// const supplierData = await this.supplierService.findByCode('IRS');
|
||||
|
||||
//GET PRODUCT
|
||||
const product = await this.productService.findOneActive(
|
||||
orderTransactionDto.productCode,
|
||||
'prepaid',
|
||||
userData.roles.name,
|
||||
supplierData.id
|
||||
orderTransactionDto.productId
|
||||
);
|
||||
|
||||
const product_price = await this.productHistoryPriceService.findOne(
|
||||
@@ -491,16 +490,13 @@ export class TransactionService {
|
||||
currentUser.username,
|
||||
);
|
||||
|
||||
const supplierData = await this.supplierService.findByCode('IRS');
|
||||
|
||||
|
||||
// const supplierData = await this.supplierService.findByCode('IRS');
|
||||
|
||||
//GET PRODUCT AND PRICE
|
||||
const product = await this.productService.findOneActive(
|
||||
orderTransactionDto.productCode,
|
||||
'prepaid',
|
||||
userData.roles.name,
|
||||
supplierData.id
|
||||
orderTransactionDto.productId
|
||||
);
|
||||
|
||||
const supplier = await this.supplierService.findByCode(
|
||||
|
||||
Reference in New Issue
Block a user