Added foodcost and venue taxes in the get api
This commit is contained in:
@@ -1799,6 +1799,28 @@ export class HostService {
|
||||
sessionValidity: true,
|
||||
sessionValidityFrequency: true,
|
||||
sellPrice: true,
|
||||
ActivityPriceTaxes: {
|
||||
select: {
|
||||
id: true,
|
||||
taxXid: true,
|
||||
taxPer: true,
|
||||
taxes: {
|
||||
select: {
|
||||
id: true,
|
||||
countryXid: true,
|
||||
country: {
|
||||
select: {
|
||||
countryName: true,
|
||||
countryCode: true,
|
||||
countryFlag: true
|
||||
}
|
||||
},
|
||||
taxName: true,
|
||||
taxPer: true,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -1845,6 +1867,15 @@ export class HostService {
|
||||
},
|
||||
},
|
||||
},
|
||||
ActivityFoodCost: {
|
||||
where: {
|
||||
isActive: true
|
||||
},
|
||||
select: {
|
||||
id: true,
|
||||
totalAmount: true
|
||||
}
|
||||
},
|
||||
activityCuisines: {
|
||||
where: {
|
||||
isActive: true,
|
||||
|
||||
Reference in New Issue
Block a user