Fix SeLoger pagination
This commit is contained in:
parent
a7ee94653f
commit
7fc9077520
@ -72,7 +72,7 @@ class SearchResultsPage(HTMLPage):
|
|||||||
|
|
||||||
def next_page(self):
|
def next_page(self):
|
||||||
page_nb = Dict('navigation/pagination/page')(self)
|
page_nb = Dict('navigation/pagination/page')(self)
|
||||||
max_results = Dict('navigation/pagination/maxResults')(self)
|
max_results = Dict('navigation/counts/count')(self)
|
||||||
results_per_page = Dict('navigation/pagination/resultsPerPage')(self)
|
results_per_page = Dict('navigation/pagination/resultsPerPage')(self)
|
||||||
|
|
||||||
if int(max_results) / int(results_per_page) > int(page_nb):
|
if int(max_results) / int(results_per_page) > int(page_nb):
|
||||||
@ -85,7 +85,7 @@ class SearchResultsPage(HTMLPage):
|
|||||||
|
|
||||||
def condition(self):
|
def condition(self):
|
||||||
return (
|
return (
|
||||||
Dict('cardType')(self) not in ['advertising', 'localExpert']
|
Dict('cardType')(self) not in ['advertising', 'ali', 'localExpert']
|
||||||
and Dict('id', default=False)(self)
|
and Dict('id', default=False)(self)
|
||||||
and Dict('classifiedURL', default=False)(self)
|
and Dict('classifiedURL', default=False)(self)
|
||||||
)
|
)
|
||||||
@ -171,11 +171,14 @@ class HousingPage(HTMLPage):
|
|||||||
|
|
||||||
def obj_type(self):
|
def obj_type(self):
|
||||||
idType = Dict('idTransactionType')(self)
|
idType = Dict('idTransactionType')(self)
|
||||||
type = next(k for k, v in TYPES.items() if v == idType)
|
try:
|
||||||
if type == POSTS_TYPES.FURNISHED_RENT:
|
type = next(k for k, v in TYPES.items() if v == idType)
|
||||||
# SeLoger does not let us discriminate between furnished and not furnished.
|
if type == POSTS_TYPES.FURNISHED_RENT:
|
||||||
return POSTS_TYPES.RENT
|
# SeLoger does not let us discriminate between furnished and not furnished.
|
||||||
return type
|
return POSTS_TYPES.RENT
|
||||||
|
return type
|
||||||
|
except StopIteration:
|
||||||
|
return NotAvailable
|
||||||
|
|
||||||
def obj_advert_type(self):
|
def obj_advert_type(self):
|
||||||
if 'Agences' in self.agency_doc['type']:
|
if 'Agences' in self.agency_doc['type']:
|
||||||
|
Loading…
Reference in New Issue
Block a user