Commit 5357a4492d4c0a1376b2c383009ef6064415b6f2

Authored by Leits
1 parent c107f12f

Upd single lot bid

... ... @@ -143,8 +143,8 @@ Library openprocurement_client_helper.py
143 143 Подати цінову пропозицію
144 144 [Arguments] ${username} ${tender_uaid} ${bid}
145 145 ${tender}= openprocurement_client.Пошук тендера по ідентифікатору ${username} ${tender_uaid}
146   - ${lots}= Get Variable Value ${tender.data.lots}
147   - ${bid}= Run Keyword If ${lots} test_lots_bid_data
  146 + ${lots}= Run Keyword If "${mode}" == "single" Get Variable Value ${tender.data.lots}
  147 + ${bid}= Run Keyword If ${lots} test_bid_data multiLot
148 148 ... ELSE Set Variable ${bid}
149 149 Run Keyword If ${lots}
150 150 ... Run Keywords
... ... @@ -160,7 +160,7 @@ Library openprocurement_client_helper.py
160 160 Змінити цінову пропозицію
161 161 [Arguments] ${username} ${tender_uaid} ${fieldname} ${fieldvalue}
162 162 ${tender}= openprocurement_client.Пошук тендера по ідентифікатору ${username} ${tender_uaid}
163   - ${lots}= Get Variable Value ${tender.data.lots}
  163 + ${lots}= Run Keyword If "${mode}" == "single" Get Variable Value ${tender.data.lots}
164 164 ${fieldname}= Run Keyword If ${lots} Set Variable lotValues.0.${fieldname}
165 165 ... ELSE Set Variable ${fieldname}
166 166 ${bid}= openprocurement_client.Отримати пропозицію ${username} ${tender_uaid}
... ... @@ -238,7 +238,7 @@ Library openprocurement_client_helper.py
238 238 Отримати посилання на аукціон для глядача
239 239 [Arguments] ${username} ${tender_uaid}
240 240 ${tender}= openprocurement_client.Пошук тендера по ідентифікатору ${username} ${tender_uaid}
241   - ${lots}= Get Variable Value ${tender.data.lots}
  241 + ${lots}= Run Keyword If "${mode}" == "single" Get Variable Value ${tender.data.lots}
242 242 ${auctionUrl}= Run Keyword If ${lots} Set Variable ${tender.data.lots[0].auctionUrl}
243 243 ... ELSE Set Variable ${tender.data.auctionUrl}
244 244 [return] ${auctionUrl}
... ... @@ -247,7 +247,7 @@ Library openprocurement_client_helper.py
247 247 Отримати посилання на аукціон для учасника
248 248 [Arguments] ${username} ${tender_uaid}
249 249 ${bid}= openprocurement_client.Отримати пропозицію ${username} ${tender_uaid}
250   - ${lots}= Get Variable Value ${bid.data.lotValues}
  250 + ${lots}= Run Keyword If "${mode}" == "single" Get Variable Value ${bid.data.lotValues}
251 251 ${participationUrl}= Run Keyword If ${lots} Set Variable ${bid.data.lotValues[0].participationUrl}
252 252 ... ELSE Set Variable ${bid.data.participationUrl}
253 253 [return] ${participationUrl}
... ...
Please register or login to post a comment