Added foodcost and venue taxes in the get api

This commit is contained in:
2025-12-30 16:59:40 +05:30
parent 245af71705
commit 5ce3dd3780

View File

@@ -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,