diff --git a/pricing/pricing.py b/pricing/pricing.py index 924b211..904f49f 100644 --- a/pricing/pricing.py +++ b/pricing/pricing.py @@ -19,11 +19,11 @@ class PricingProgram: {'id': ptid}) async def get_items(self): - recs = await self.sor.R('program_item', {'ppid': self.id}) + recs = await self.sor.R('pricing_item', {'ppid': self.id}) return recs async def get_spec(self, psid): - recs = await self.sor.R('program_spec', {'id', psid}) + recs = await self.sor.R('pricing_spec', {'id', psid}) return recs async def get_remote_pricing(sor, charge, data):