Commit 1b29306e1bf45d00f54c10f28deed66a6102b77f

Authored by Andrew Leitsius
Committed by mykhaly
1 parent 10e0c78d

Add caching for item and lot questions data (#196)

... ... @@ -232,7 +232,7 @@ Resource resource.robot
232 232 ${question_id}= get_id_from_object ${question.data}
233 233 ${question_data}= Create Dictionary question=${question} question_resp=${question_resp} question_id=${question_id}
234 234 ${question_data}= munch_dict arg=${question_data}
235   -
  235 + Set To Dictionary ${USERS.users['${username}']} question_data=${question_data}
236 236
237 237 Можливість задати запитання на ${item_index} предмет користувачем ${username}
238 238 ${item_id}= get_id_from_object ${USERS.users['${tender_owner}'].tender_data.data['items'][${item_index}]}
... ... @@ -243,7 +243,7 @@ Resource resource.robot
243 243 ${question_id}= get_id_from_object ${question.data}
244 244 ${question_data}= Create Dictionary question=${question} question_resp=${question_resp} question_id=${question_id}
245 245 ${question_data}= munch_dict arg=${question_data}
246   -
  246 + Set To Dictionary ${USERS.users['${username}']} question_data=${question_data}
247 247
248 248 Можливість відповісти на запитання
249 249 ${answer}= Підготувати дані для відповіді на запитання
... ...
Please register or login to post a comment