yentsun / price_watch

An engine for price monitoring service (Pyramid + ZODB)
http://food-price.net/
1 stars 1 forks source link

wrong normal price @ rice #43

Closed yentsun closed 9 years ago

yentsun commented 9 years ago

http://food-price.net/reports/863f8edb-a903-43fb-ba82-0fd105261e0f/ probably package 1,5кг is recognized as 5кг

yentsun commented 9 years ago

The added test runs ok. product.get_package() shows 5 kg and product.get_package_key() shows 1.5 kg. That needs investigation

yentsun commented 9 years ago

another package confusion reports/2f15f7da-9167-4454-a3a0-cbe1e1e4b7a0

yentsun commented 9 years ago

fixed prices output:

Fixing package for Рис АГРОАЛЬЯНС краснодарский 1,5кг
Fixing normal price 24.994-->83.3133333333
Fixing package for Картофель мытый п/п СВЕЖИЙ СТАНДАРТ 1,5кг (15)
Fixing normal price 24.794-->82.6466666667
Fixing package for Картофель Египет, 2,3-2,5кг
Fixing normal price 48.5-->101.041666667
Fixing package for Апельсины (калибр 65+) 2,3-2,5кг
Fixing normal price 54.0-->112.5
Fixing package for Греча ПАССИМ 1,5кг
Fixing normal price 32.652-->108.84
Fixing normal price 24.85-->82.8333333333
Fixing normal price 42.5-->88.5416666667
Fixing package for Рис ПАССИМ круглый 1,5кг
Fixing normal price 32.504-->108.346666667
Fixing normal price 33.352-->111.173333333
Fixing normal price 32.652-->108.84
Fixing normal price 31.822-->106.073333333
Fixing package for Крупа АГРОМАСТЕР гречневая ядрица 1,5кг
Fixing normal price 23.0-->76.6666666667
Fixing normal price 54.0-->112.5
Fixing normal price 29.0-->60.4166666667
Fixing package for Рис АГРОАЛЬЯНС пропаренный 1,5кг
Fixing normal price 21.954-->73.18
Fixing package for Хлеб Геркулес зерновой половин.нар.0.25кг ХД
Fixing normal price 0.72-->72.0
Fixing normal price 23.6-->78.6666666667
Fixing normal price 32.652-->108.84
Fixing normal price 32.504-->108.346666667
Fixing normal price 48.5-->101.041666667
Fixing package for Рис АГРОМАСТЕР круглый 1,5кг
Fixing normal price 26.34-->87.8
Fixing normal price 42.5-->88.5416666667
Fixing normal price 31.822-->106.073333333
Fixing normal price 30.214-->100.713333333
Fixing normal price 31.822-->106.073333333
Fixing normal price 24.85-->82.8333333333
Fixing normal price 23.6-->78.6666666667
Fixing normal price 31.822-->106.073333333
Fixing normal price 30.214-->100.713333333
Fixing normal price 33.352-->111.173333333
Fixing normal price 54.0-->112.5
Fixing normal price 33.352-->111.173333333
Fixing normal price 24.794-->82.6466666667
Fixing normal price 23.6-->78.6666666667
Fixing normal price 23.6-->78.6666666667
Fixing normal price 33.352-->111.173333333
Fixing normal price 21.954-->73.18
Fixing normal price 32.504-->108.346666667
Fixing normal price 26.34-->87.8
Fixing normal price 24.994-->83.3133333333
Fixing normal price 27.028-->90.0933333333
Fixing normal price 54.0-->112.5
Fixing normal price 30.214-->100.713333333
Fixing normal price 0.72-->72.0
Fixing normal price 24.85-->82.8333333333
Fixing normal price 24.994-->83.3133333333
Fixing normal price 31.5-->65.625
Fixing normal price 27.028-->90.0933333333
Fixing normal price 26.34-->87.8
Fixing normal price 42.5-->88.5416666667
Fixing normal price 19.464-->64.88
Fixing normal price 27.028-->90.0933333333
Fixing package for Апельсины красные Моро, 2,3-2,5кг
Fixing normal price 128.0-->266.666666667
Fixing normal price 128.0-->266.666666667
Fixing normal price 19.464-->64.88
Fixing normal price 23.0-->76.6666666667
Fixing normal price 32.504-->108.346666667
Fixing normal price 30.214-->100.713333333
Fixing normal price 27.028-->90.0933333333
Fixing normal price 24.794-->82.6466666667
Fixing normal price 23.0-->76.6666666667
Fixing normal price 31.5-->65.625
Fixing normal price 21.954-->73.18
Fixing normal price 23.0-->76.6666666667
Fixing normal price 19.464-->64.88
Fixing normal price 26.34-->87.8
Fixing normal price 54.0-->112.5
Fixing normal price 19.464-->64.88
Fixing normal price 21.954-->73.18
Fixing normal price 31.5-->65.625
Fixing normal price 32.652-->108.84
Fixing normal price 24.794-->82.6466666667
Fixing normal price 117.0-->243.75
Fixing normal price 24.994-->83.3133333333
yentsun commented 9 years ago

another confusion Рис ПАССИМ длиннозёрный пропареный1,5кг. Guess its time for regexp

yentsun commented 9 years ago

one more reports/7d69c561-9e4d-4af1-9cf5-0a37b04e4b9f/

yentsun commented 9 years ago

Came up with the following look-behind:

u'(?<!\d(\.|,))' + synonym

But it doesn't work for Спагетти PASTA ZARA №4,500г

yentsun commented 9 years ago

Updated regexp:

u'(?<!\d(\.|,))500г|(?<=№\d\,)500г'