This commit is contained in:
yumoqing 2025-10-27 13:44:05 +08:00
parent 8e7d2bc604
commit 7381e2fd5a

View File

@ -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):