Closed eprueves closed 8 years ago
In client/core/checkin.py, price configs are processed by calling process_prices(self.conf, config_dict['prices']) (line 87)
process_prices(self.conf, config_dict['prices'])
However, the arguments does not comply with the ordering defined in client/core/billing.py (line 227) def process_prices(pricing_data, config_db):.
def process_prices(pricing_data, config_db):
As such, the endaga_config table does not get populated with the pricing data
Good catch. We can easily fix this, but PRs are always welcome.
resolved by PR #12, thank you
In client/core/checkin.py, price configs are processed by calling
process_prices(self.conf, config_dict['prices'])
(line 87)However, the arguments does not comply with the ordering defined in client/core/billing.py (line 227)
def process_prices(pricing_data, config_db):
.As such, the endaga_config table does not get populated with the pricing data