{"name": "test_stock_return_multy[Uzbekistan]", "status": "failed", "statusDetails": {"message": "AssertionError: Handler: POST https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/placement/complete; \n Expected status code: 200; \n Actual status code: 500; \n Response body: {\"timestamp\":\"2026-04-05T00:06:35.520+00:00\",\"status\":500,\"error\":\"Internal Server Error\",\"message\":\"Orders are not cancelled: [8907640]\",\"path\":\"/stock-return/placement/complete\",\"localizedMessage\":\"Не удалось отменить заказы: [8907640]\"}; \n X-Aer-Trace-Id: 5d35d4579c3099e8a67f0388b9922685", "trace": "self = <tests.wms.test_assembly.test_stock_return.TestStockReturn object at 0x76debddb2510>\nwms_warehouses_storage_cells = WMSProviderWarehouseStockDTO(warehouse=WMSWarehouse(id=1693627, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, ff...=None), provider=None, stocks=<src.framework.wms.builders.availability.stock.WMSStockBuilder object at 0x76deb6ad6c10>)\n\n    def test_stock_return_multy(self, wms_warehouses_storage_cells):\n        with allure.step(\"builder init\"):\n            order = WMSOrderBuilder(\n                warehouse=wms_warehouses_storage_cells.warehouse,\n                user=wms_warehouses_storage_cells.stocks.user,\n                items=wms_warehouses_storage_cells.stocks.items,\n                provider=wms_warehouses_storage_cells.warehouse.providers[0],\n                headers=wms_warehouses_storage_cells.stocks.headers,\n                clear=True,\n            ).login_or_refresh()\n        order.outbound_flow_with_packing().state_canceled()\n        stock_return = StockReturnBuilder(\n            order_id=order.order.order_id,\n            user=wms_warehouses_storage_cells.stocks.user,\n            wall_cell_barcode=order.sorting.data.orders[order.order.order_id].wall_cell_barcode,\n            warehouse=order.warehouse,\n            headers=order.headers,\n        ).login_or_refresh()\n        current_task = stock_return.get_worker_active_tasks()\n        assert not current_task.has_active_task, f\"user have current task {stock_return.data.task}\"\n        (\n            stock_return.add_wall_cell_to_task()\n            .emptying_cell()\n            .change_task_to_placing()\n            .place_sku_from_boxes()\n>           .change_task_to_complete()\n             ^^^^^^^^^^^^^^^^^^^^^^^^^\n        )\n\ntests/wms/test_assembly/test_stock_return.py:38: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \nsrc/framework/wms/builders/assembly/stock_return.py:196: in change_task_to_complete\n    StockReturnPlacementApi(headers=self.headers).stock_return_placement_complete_post()\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api/stock_return_placement_api.py:650: in stock_return_placement_complete_post\n    return self.stock_return_placement_complete_post_with_http_info(**kwargs)  # noqa: E501\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api/stock_return_placement_api.py:707: in stock_return_placement_complete_post_with_http_info\n    return self.api_client.call_api(\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api_client.py:339: in call_api\n    return self.__call_api(resource_path, method,\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = <qacl_dm_wms_be_service_assembly.api_client.ApiClient object at 0x76deb686c090>\nresource_path = '/stock-return/placement/complete', method = 'POST'\npath_params = {}, query_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer c55cd36e-d80b-4840-84e7-b2bb21b56682', 'Content-Type': 'application/json', 'User-Agent': 'Swagger-Codegen/1.0.231+develop/python', ...}\nbody = None, post_params = [], files = {}, response_type = None\nauth_settings = ['wms-authorization'], _return_http_data_only = False\ncollection_formats = {}, _preload_content = True, _request_timeout = None\nexpected_status_code = <HTTPStatus.OK: 200>\n\n    def __call_api(\n            self, resource_path, method, path_params=None,\n            query_params=None, header_params=None, body=None, post_params=None,\n            files=None, response_type=None, auth_settings=None,\n            _return_http_data_only=None, collection_formats=None,\n            _preload_content=True, _request_timeout=None,\n            expected_status_code=HTTPStatus.OK):\n    \n        config = self.configuration\n    \n        # header parameters\n        header_params = header_params or {}\n        header_params.update(self.default_headers)\n        if self.cookie:\n            header_params['Cookie'] = self.cookie\n        if header_params:\n            header_params = self.sanitize_for_serialization(header_params)\n            header_params = dict(self.parameters_to_tuples(header_params,\n                                                           collection_formats))\n    \n        # path parameters\n        if path_params:\n            path_params = self.sanitize_for_serialization(path_params)\n            path_params = self.parameters_to_tuples(path_params,\n                                                    collection_formats)\n            for k, v in path_params:\n                # specified safe chars, encode everything\n                resource_path = resource_path.replace(\n                    '{%s}' % k,\n                    quote(str(v), safe=config.safe_chars_for_path_param)\n                )\n    \n        # query parameters\n        if query_params:\n            query_params = self.sanitize_for_serialization(query_params)\n            query_params = self.parameters_to_tuples(query_params,\n                                                     collection_formats)\n    \n        # post parameters\n        if post_params or files:\n            post_params = self.prepare_post_parameters(post_params, files)\n            post_params = self.sanitize_for_serialization(post_params)\n            post_params = self.parameters_to_tuples(post_params,\n                                                    collection_formats)\n    \n        # auth setting\n        self.update_params_for_auth(header_params, query_params, auth_settings)\n    \n        # body\n        if body:\n            body = self.sanitize_for_serialization(body)\n    \n        # request url\n        url = self.configuration.host + resource_path\n    \n        # perform request and return response\n        response_data = self.request(\n            method, url, query_params=query_params, headers=header_params,\n            post_params=post_params, body=body,\n            _preload_content=_preload_content,\n            _request_timeout=_request_timeout)\n    \n        self.last_response = response_data\n    \n        return_data = response_data\n    \n        try:\n            response_data.data\n            trace_id = response_data.urllib3_response.headers.get('x-aer-trace-id', \"\")\n        except:\n            assert response_data.status == expected_status_code, \\\n                f'Handler: {method} {url}; \\n ' \\\n                f'Expected status code: {expected_status_code}; \\n ' \\\n                f'Actual status code: {response_data.status}'\n        else:\n>           assert response_data.status == expected_status_code, \\\n                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n                f'Handler: {method} {url}; \\n ' \\\n                f'Expected status code: {expected_status_code}; \\n ' \\\n                f'Actual status code: {response_data.status}; \\n ' \\\n                f'Response body: {response_data.data}; \\n ' \\\n                f'X-Aer-Trace-Id: {trace_id}'\nE           AssertionError: Handler: POST https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/placement/complete; \nE            Expected status code: 200; \nE            Actual status code: 500; \nE            Response body: {\"timestamp\":\"2026-04-05T00:06:35.520+00:00\",\"status\":500,\"error\":\"Internal Server Error\",\"message\":\"Orders are not cancelled: [8907640]\",\"path\":\"/stock-return/placement/complete\",\"localizedMessage\":\"Не удалось отменить заказы: [8907640]\"}; \nE            X-Aer-Trace-Id: 5d35d4579c3099e8a67f0388b9922685\n\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api_client.py:172: AssertionError"}, "steps": [{"name": "builder init", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "02d72ac9-8653-43b4-b83e-f254cb5f7625-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "8a7c0da9-c770-4143-8994-970b1a251e2d-attachment.json", "type": "application/json"}], "start": 1775347578257, "stop": 1775347578257}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "c9f28613-9bf6-4135-a222-a327ecf82aee-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "a3ffa8e7-83a1-4925-8a7e-e649fb853b8e-attachment.json", "type": "application/json"}], "start": 1775347578265, "stop": 1775347578265}], "start": 1775347578258, "stop": 1775347578268}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "aa0ad354-0746-4321-9d74-378450f42c8c-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "a1baad79-491e-4630-9289-b2b1256cc482-attachment.json", "type": "application/json"}], "start": 1775347578278, "stop": 1775347578278}, {"name": "Waiter function: login_or_refresh", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/oauth/custom/token", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e795ce94-a205-44f0-8e1e-2e3a76e550de-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f43710f1-8c63-4741-af09-20f496eb7e7e-attachment.json", "type": "application/json"}], "start": 1775347578313, "stop": 1775347578313}, {"name": "Response → 200, trace_id: 4fa5cbd4ab46686fad9339e390442ffe", "status": "passed", "attachments": [{"name": "response.headers", "source": "197b7f71-2251-4b0e-b11c-f3c9556dc207-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f4886578-5096-47b6-b877-07c7414af265-attachment.json", "type": "application/json"}], "start": 1775347578313, "stop": 1775347578313}], "attachments": [{"name": "cURL", "source": "5d55ff3a-4fee-468f-b7c0-130bc3b0e713-attachment.txt", "type": "text/plain"}], "start": 1775347578313, "stop": 1775347578313}], "start": 1775347578279, "stop": 1775347578316}], "start": 1775347578241, "stop": 1775347578316}, {"name": "Waiter function: login_or_refresh", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/oauth/custom/token", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "afc93524-478e-4ca0-98d4-edb50d37d004-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "87332a58-e007-429e-a827-a0ea4efdc5d8-attachment.json", "type": "application/json"}], "start": 1775347578346, "stop": 1775347578346}, {"name": "Response → 200, trace_id: 0693c03ba4804f7142d0f2a98f8e10af", "status": "passed", "attachments": [{"name": "response.headers", "source": "2613422d-2053-4118-8592-f827bd143739-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4d004898-19ce-48ff-8edb-8fbccc3e171d-attachment.json", "type": "application/json"}], "start": 1775347578346, "stop": 1775347578347}], "attachments": [{"name": "cURL", "source": "ca3605fa-d9c2-4020-94a0-f236e00956eb-attachment.txt", "type": "text/plain"}], "start": 1775347578346, "stop": 1775347578347}], "start": 1775347578316, "stop": 1775347578349}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/ff/publish/order", "status": "passed", "attachments": [{"name": "Request", "source": "8b086daf-67c8-4b0c-8e17-c6b8a8126405-attachment.json", "type": "application/json"}, {"name": "Response", "source": "7c2d7522-7254-436a-9ce1-3c6d48bcd2ac-attachment.json", "type": "application/json"}], "start": 1775347578353, "stop": 1775347578370}, {"name": "Waiter function: wait_order_order", "status": "passed", "start": 1775347578371, "stop": 1775347581374}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/create-wave/order", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f7f51f50-5684-4517-a033-99d868aa0a47-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a9671dd8-9777-4c6e-812e-644268a5d6d3-attachment.json", "type": "application/json"}], "start": 1775347581424, "stop": 1775347581425}, {"name": "Response → 200, trace_id: f57343cf5509549ccd7ea4bde08c59c8", "status": "passed", "attachments": [{"name": "response.headers", "source": "fd4abb4d-7760-4040-8d93-16fc03b66a8d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "477d97ec-1728-4f5c-8cef-9fcb8893c9f3-attachment.json", "type": "application/json"}], "start": 1775347581425, "stop": 1775347581426}], "attachments": [{"name": "cURL", "source": "3f8c3168-bcfd-445c-bd0c-af7d04cb9c67-attachment.txt", "type": "text/plain"}], "start": 1775347581424, "stop": 1775347581426}, {"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/api/v1/account/set-worker-location", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9219d5e0-3b24-4081-ae79-fd5981f29b8a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "bbe32173-5188-46c0-89ff-5ff9da92c800-attachment.json", "type": "application/json"}], "start": 1775347581469, "stop": 1775347581469}, {"name": "Response → 200, trace_id: 75dbaacbd278980dd675ab4ccde23f5c", "status": "passed", "attachments": [{"name": "response.headers", "source": "97ae5967-772e-4cf0-90a3-fc6f197ca383-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3ec04a51-2563-4135-8b0d-70347dd534b8-attachment.json", "type": "application/json"}], "start": 1775347581469, "stop": 1775347581470}], "attachments": [{"name": "cURL", "source": "9561a63c-92e6-4a0e-8ed9-4222178599e5-attachment.txt", "type": "text/plain"}], "start": 1775347581469, "stop": 1775347581470}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task-for-wave", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d4077ef0-343e-4a19-b7d1-58e7e966da50-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a0330453-3055-41a6-8612-dc9f74183e76-attachment.json", "type": "application/json"}], "start": 1775347581515, "stop": 1775347581515}, {"name": "Response → 200, trace_id: 68d6d0ce232dae6139aed7887ef47d09", "status": "passed", "attachments": [{"name": "response.headers", "source": "3435040d-5482-42b8-82c5-a20f876d8777-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "35bd2cab-a0a6-44f2-8c7c-dc5c14d63c8c-attachment.json", "type": "application/json"}], "start": 1775347581515, "stop": 1775347581516}], "attachments": [{"name": "cURL", "source": "04a30929-8972-43f7-96eb-4fec91db2c9a-attachment.txt", "type": "text/plain"}], "start": 1775347581515, "stop": 1775347581516}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6b49b099-d5e5-46cf-8780-fb305e614328-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "e509c59b-92e3-4780-b549-25f5e6d04310-attachment.json", "type": "application/json"}], "start": 1775347581562, "stop": 1775347581562}, {"name": "Response → 200, trace_id: 0172abea44cc4012a2976dc37a90165b", "status": "passed", "attachments": [{"name": "response.headers", "source": "5b872d1f-5a05-42b3-8dc6-f3afd55d7c07-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0af429c7-f7e1-4b61-bade-ef13fa2f2ffc-attachment.json", "type": "application/json"}], "start": 1775347581562, "stop": 1775347581562}], "attachments": [{"name": "cURL", "source": "09adedec-3438-4ced-84f5-324aa0147961-attachment.txt", "type": "text/plain"}], "start": 1775347581562, "stop": 1775347581562}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "eb49a745-f550-45e5-8273-10c69d359281-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "78f6a4e3-27a3-48ca-a796-6660c58cade9-attachment.json", "type": "application/json"}], "start": 1775347581603, "stop": 1775347581604}, {"name": "Response → 200, trace_id: 538278fe2ec0d35c3c2a2e616a70bb66", "status": "passed", "attachments": [{"name": "response.headers", "source": "c466f2a5-b36c-490d-b336-514c0012bf30-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f11a9a27-eab7-40b1-8d2f-c5033336e1d3-attachment.json", "type": "application/json"}], "start": 1775347581604, "stop": 1775347581604}], "attachments": [{"name": "cURL", "source": "5db9b572-7694-4756-a61d-10d5867dd75b-attachment.txt", "type": "text/plain"}], "start": 1775347581603, "stop": 1775347581604}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/{sortingType}/box/create", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "753f9c56-f62e-4616-93bc-5c06e5f309d2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3362347c-5753-4fb8-b669-1b8161b5f7b7-attachment.json", "type": "application/json"}], "start": 1775347581633, "stop": 1775347581633}, {"name": "Response → 200, trace_id: 921a032746c776fd4afc989a6621e786", "status": "passed", "attachments": [{"name": "response.headers", "source": "50a744fc-19cc-4731-acb0-22e36032845b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9ef36e55-c6b2-4e35-8584-f2a8bd280a0c-attachment.txt", "type": "text/plain"}], "start": 1775347581633, "stop": 1775347581633}], "attachments": [{"name": "cURL", "source": "022ac692-17b2-4c3c-97a0-9f3dc91602c0-attachment.txt", "type": "text/plain"}], "start": 1775347581633, "stop": 1775347581633}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492807&pickingTaskKey=7cab9329d13921538f616e7382ae6e91a7e531b83c074c8f0a28603a558ef9c7", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "05e52e46-c48b-4953-8629-dfb23d8145cc-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "562b1de3-1850-478b-9840-22e286d843bd-attachment.json", "type": "application/json"}], "start": 1775347581665, "stop": 1775347581665}, {"name": "Response → 200, trace_id: efd3bbd0f886fbe5e4690530cf51f0e6", "status": "passed", "attachments": [{"name": "response.headers", "source": "feaa3d52-ca84-4709-83e3-252d7858122c-attachment.json", "type": "application/json"}], "start": 1775347581665, "stop": 1775347581665}], "attachments": [{"name": "cURL", "source": "45819d60-882f-4a9e-95f4-1ecc982f0661-attachment.txt", "type": "text/plain"}], "start": 1775347581665, "stop": 1775347581666}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/sku-cell/inc-by-sku-barcode", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7ed7fd97-dcfb-4a82-83f4-fc73fc385a2c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8f737028-7801-4e70-aa56-3091a88123c8-attachment.json", "type": "application/json"}], "start": 1775347581694, "stop": 1775347581694}, {"name": "Response → 200, trace_id: 0e20b4447057527d4238746f04a0762d", "status": "passed", "attachments": [{"name": "response.headers", "source": "30c44285-2fe4-45da-b3ed-eb0620aee9ae-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "67606fbf-c56c-4cb6-b045-6875c06f8d7a-attachment.json", "type": "application/json"}], "start": 1775347581694, "stop": 1775347581694}], "attachments": [{"name": "cURL", "source": "ff58cbd3-c6ba-4ab6-8a4e-0166fdd2e443-attachment.txt", "type": "text/plain"}], "start": 1775347581694, "stop": 1775347581694}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=7cab9329d13921538f616e7382ae6e91a7e531b83c074c8f0a28603a558ef9c7&skuId=4100000000000052990&cellBarcode=QA-75347577045265152&cellId=488176", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "647693a8-3073-4a84-afd3-9175045ffb10-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "ecea8254-5fea-4d2f-bbde-ac85673b74b6-attachment.json", "type": "application/json"}], "start": 1775347581753, "stop": 1775347581754}, {"name": "Response → 200, trace_id: 278069edca8591de083974596e78a868", "status": "passed", "attachments": [{"name": "response.headers", "source": "6ddd37db-cb69-4dfe-9889-2f621f537366-attachment.json", "type": "application/json"}], "start": 1775347581754, "stop": 1775347581754}], "attachments": [{"name": "cURL", "source": "272ed5da-fe22-4113-9339-a959f27446ae-attachment.txt", "type": "text/plain"}], "start": 1775347581753, "stop": 1775347581754}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "dc937c7b-e411-4797-a185-15d0c4a9b94e-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "7ae98066-2673-489a-b4f5-5b625c9d135d-attachment.json", "type": "application/json"}], "start": 1775347581786, "stop": 1775347581787}, {"name": "Response → 200, trace_id: 232304e58a1d4d6c43165e5172805879", "status": "passed", "attachments": [{"name": "response.headers", "source": "8f5bb652-3313-4235-823a-c0eb9c198903-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "df8a75d5-915e-441d-8c5e-f8cae8d92c63-attachment.json", "type": "application/json"}], "start": 1775347581787, "stop": 1775347581787}], "attachments": [{"name": "cURL", "source": "761723c6-766e-471f-b8ad-a9445d5d8629-attachment.txt", "type": "text/plain"}], "start": 1775347581786, "stop": 1775347581787}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/consolidation/cell-pre/bind-task-boxes", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2f96e3d5-7dd2-4888-9bf5-1082fa6cd1a8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "35f95d57-f528-4888-8850-70b5908b196f-attachment.json", "type": "application/json"}], "start": 1775347581813, "stop": 1775347581813}, {"name": "Response → 200, trace_id: 335f987c002faba331f0e45757987a90", "status": "passed", "attachments": [{"name": "response.headers", "source": "009eb44c-4fb4-4d59-9181-9aa7ad86aa02-attachment.json", "type": "application/json"}], "start": 1775347581813, "stop": 1775347581813}], "attachments": [{"name": "cURL", "source": "6e1a419b-9e58-446d-b0f6-f72861ac1db4-attachment.txt", "type": "text/plain"}], "start": 1775347581813, "stop": 1775347581813}, {"name": "Waiter function: wait_consolidation_task_start", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/consolidation/tasks/start", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d5854917-8eb3-4833-9377-6f033a10bca8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d0080354-7a96-4db3-9791-1dac61dc5729-attachment.json", "type": "application/json"}], "start": 1775347581882, "stop": 1775347581882}, {"name": "Response → 200, trace_id: d2755e4c0178ea764b7912b8dfedae69", "status": "passed", "attachments": [{"name": "response.headers", "source": "f5e82122-19b7-496d-9cfd-d20eca374fb5-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8b8d5758-c8d6-47b9-a6c2-b102c2112a3b-attachment.json", "type": "application/json"}], "start": 1775347581882, "stop": 1775347581882}], "attachments": [{"name": "cURL", "source": "b6e9e19c-c7c2-4c42-97ca-b0ebd31b134c-attachment.txt", "type": "text/plain"}], "start": 1775347581882, "stop": 1775347581882}], "start": 1775347581817, "stop": 1775347581885}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/consolidation/tasks/finish", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "aa4f2ff8-768e-42e4-aaa7-7428dd663921-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4b15804a-88f1-4ab7-8eae-8a79734828ba-attachment.json", "type": "application/json"}], "start": 1775347581955, "stop": 1775347581955}, {"name": "Response → 200, trace_id: 13bd1d88f74582d713bd96fa3ee789ae", "status": "passed", "attachments": [{"name": "response.headers", "source": "636f0527-3dab-482f-bbac-84f3ed5aa7d3-attachment.json", "type": "application/json"}], "start": 1775347581955, "stop": 1775347581955}], "attachments": [{"name": "cURL", "source": "bb39c9b5-ef26-4059-b8c5-f5facac015f5-attachment.txt", "type": "text/plain"}], "start": 1775347581955, "stop": 1775347581955}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/create-task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c54f99af-f3b8-4d55-8bb2-df9cd59a1c5b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d77ddfd0-fe68-4789-928a-084f2e50adb5-attachment.json", "type": "application/json"}], "start": 1775347581984, "stop": 1775347581985}, {"name": "Response → 200, trace_id: 0839dd1425e8730260a4f47bcc7fdf44", "status": "passed", "attachments": [{"name": "response.headers", "source": "12c5daa7-7b9a-4cf2-9275-ccb00ea939d9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "12d0d12c-4482-4498-bbd8-3dd5c869037f-attachment.json", "type": "application/json"}], "start": 1775347581985, "stop": 1775347581985}], "attachments": [{"name": "cURL", "source": "55656bbb-acb8-49a5-ae77-e7359b9a3b61-attachment.txt", "type": "text/plain"}], "start": 1775347581984, "stop": 1775347581985}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/boxes", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b0bd5654-34d5-4db7-a4e3-d388d84d9f90-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "8d4a3fff-6e56-49d0-9704-570699c3b11a-attachment.json", "type": "application/json"}], "start": 1775347582034, "stop": 1775347582035}, {"name": "Response → 200, trace_id: ec7af8701cf70b112d15eae182df9a0e", "status": "passed", "attachments": [{"name": "response.headers", "source": "b5df16ac-433d-4c66-97f7-2e0a78b81937-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ba93c61b-676c-4299-8f92-5c2c98ed5d68-attachment.json", "type": "application/json"}], "start": 1775347582035, "stop": 1775347582035}], "attachments": [{"name": "cURL", "source": "3d48bc4e-3a9e-4893-ac06-21b66f5195f6-attachment.txt", "type": "text/plain"}], "start": 1775347582034, "stop": 1775347582035}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/add-box-to-task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "832b7c90-2a6e-44ae-9e8f-36270659d6bb-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fcdce8e1-9397-46cd-a0b9-9a9f110ce664-attachment.json", "type": "application/json"}], "start": 1775347582082, "stop": 1775347582082}, {"name": "Response → 200, trace_id: 799cc605e7523efa355bb1f1fea98844", "status": "passed", "attachments": [{"name": "response.headers", "source": "7e6be05c-14c9-4b81-92f7-b95d4278bb20-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "dfcd3a22-83d2-4b97-8b8c-110b12071f5a-attachment.json", "type": "application/json"}], "start": 1775347582082, "stop": 1775347582082}], "attachments": [{"name": "cURL", "source": "7dbc3943-bf88-4e55-bd92-59dd82d38570-attachment.txt", "type": "text/plain"}], "start": 1775347582082, "stop": 1775347582082}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/move-in-progress?sortingTaskId=161044", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3e5c4419-fc73-459a-a3d6-9da122dd27b1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b7803689-8faa-4c4d-83ed-8cf00ed7b002-attachment.json", "type": "application/json"}], "start": 1775347582110, "stop": 1775347582110}, {"name": "Response → 200, trace_id: 2a5a7428bdea90dafe5bd9dfd1d3628f", "status": "passed", "attachments": [{"name": "response.headers", "source": "6743012f-866c-4455-b6ca-747462804dc1-attachment.json", "type": "application/json"}], "start": 1775347582110, "stop": 1775347582110}], "attachments": [{"name": "cURL", "source": "bde8ff4c-3998-4dec-b843-fc15479b119b-attachment.txt", "type": "text/plain"}], "start": 1775347582110, "stop": 1775347582110}, {"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/api/v1/account/set-worker-location", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5604b7ce-28a9-438b-ab98-0e562dfb02ec-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "72548f18-d525-4edd-bbc4-da0fd4903402-attachment.json", "type": "application/json"}], "start": 1775347582151, "stop": 1775347582151}, {"name": "Response → 200, trace_id: e2c80a1610e9a40c499e722dbf6f1f65", "status": "passed", "attachments": [{"name": "response.headers", "source": "d4fff891-d928-44ed-b0c5-d80cf4b2d595-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f929b80e-f095-487a-b7ef-406ca6539ab4-attachment.json", "type": "application/json"}], "start": 1775347582151, "stop": 1775347582151}], "attachments": [{"name": "cURL", "source": "9822c911-a6e9-49c7-a1d2-0d069e5d2700-attachment.txt", "type": "text/plain"}], "start": 1775347582150, "stop": 1775347582151}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/ORDER/check-requirements", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "23c0251f-7186-48b1-9685-15a378a219c2-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "94c2cdf5-27f9-4478-99fd-3590192d972d-attachment.json", "type": "application/json"}], "start": 1775347582218, "stop": 1775347582218}, {"name": "Response → 200, trace_id: 93ec7aceecec6f7c267ad53ac87ae1e6", "status": "passed", "attachments": [{"name": "response.headers", "source": "bac8a9ed-ec2c-4771-8788-8c692412cc97-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fcf06998-edb8-4550-83df-3286f8ff7991-attachment.json", "type": "application/json"}], "start": 1775347582218, "stop": 1775347582219}], "attachments": [{"name": "cURL", "source": "d7feb07d-5834-4ebf-aa4e-74c2375b6176-attachment.txt", "type": "text/plain"}], "start": 1775347582218, "stop": 1775347582219}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/ORDER/box/complete", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5ee4a7cd-606b-4031-b50c-9e37de6ba7ac-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "22533a29-6ec5-4505-8634-003ec1b6871b-attachment.json", "type": "application/json"}], "start": 1775347582256, "stop": 1775347582257}, {"name": "Response → 200, trace_id: 32e45209db042847d9a41dc9c7aceb6d", "status": "passed", "attachments": [{"name": "response.headers", "source": "9de5e7f0-c239-4de6-9063-aa18d347e1f5-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "83980feb-2c07-4238-9d62-2a90c66b3c96-attachment.json", "type": "application/json"}], "start": 1775347582257, "stop": 1775347582257}], "attachments": [{"name": "cURL", "source": "1ebb3032-eb99-460f-822a-f6157a7c8d36-attachment.txt", "type": "text/plain"}], "start": 1775347582256, "stop": 1775347582257}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/multi-barcode/box", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9b77fc1b-357b-4d8a-8a42-a15f2fb03b6b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3ac7525d-4f61-4deb-a5d3-250113ab3352-attachment.json", "type": "application/json"}], "start": 1775347582300, "stop": 1775347582301}, {"name": "Response → 200, trace_id: d49c8f034b2de1834a9ef592c5bdc2de", "status": "passed", "attachments": [{"name": "response.headers", "source": "08002211-8406-4bc0-b84e-e0fb28c6dde9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "25f7e5ec-93d6-4e2c-9895-45696f5e48e8-attachment.json", "type": "application/json"}], "start": 1775347582301, "stop": 1775347582301}], "attachments": [{"name": "cURL", "source": "7e957bd3-189c-4184-8ee6-acf3457938b1-attachment.txt", "type": "text/plain"}], "start": 1775347582300, "stop": 1775347582301}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "da0304b2-271a-4590-bc6a-755bf8386c2a-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "91358c0b-a8ee-4730-948c-7c5473b5b970-attachment.json", "type": "application/json"}], "start": 1775347582318, "stop": 1775347582319}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/assign/cell?orderId=8907640&wallCellBarcode=12.8.1.48", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2609452d-64c2-46fd-a0ef-806a24b4ce11-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "d880af84-d314-4c72-89b4-b56fd4f62f60-attachment.json", "type": "application/json"}], "start": 1775347582349, "stop": 1775347582349}, {"name": "Response → 200, trace_id: 928e970e65b623a2f185fa077afca86a", "status": "passed", "attachments": [{"name": "response.headers", "source": "f53b2f66-7d3b-4868-8248-0e8cf28d18b3-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0a2b4298-a8c6-4244-96b0-04eebfb523c5-attachment.txt", "type": "text/plain"}], "start": 1775347582349, "stop": 1775347582349}], "attachments": [{"name": "cURL", "source": "2f8ef367-ef3e-4102-8228-ccd675b16ace-attachment.txt", "type": "text/plain"}], "start": 1775347582349, "stop": 1775347582349}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "0db764c2-7cf6-4d4a-9583-327915bb059a-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "fc128fbf-08ac-47fe-bba9-7238b262e47b-attachment.json", "type": "application/json"}], "start": 1775347582360, "stop": 1775347582360}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/wall/cell/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c9c18134-7af5-4fed-a531-1ed023f02119-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "08a26682-9aa1-4760-84f5-4ddfffc09c17-attachment.json", "type": "application/json"}], "start": 1775347583410, "stop": 1775347583410}, {"name": "Response → 200, trace_id: 051e61df857c266a238583c34df07ff2", "status": "passed", "attachments": [{"name": "response.headers", "source": "2dacc104-432c-4ac4-be5f-6c3a9bd4c34e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ebc32210-7909-4107-a416-ec90271fb8a1-attachment.json", "type": "application/json"}], "start": 1775347583410, "stop": 1775347583411}], "attachments": [{"name": "cURL", "source": "16bc93ec-5216-45ec-af85-6d003d8d4536-attachment.txt", "type": "text/plain"}], "start": 1775347583410, "stop": 1775347583411}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/ORDER/box/complete", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "41f0ea18-2f9d-48d8-96bd-aa0eafafb9c8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "79df804a-7287-45cf-bf69-704689f7d547-attachment.json", "type": "application/json"}], "start": 1775347583436, "stop": 1775347583436}, {"name": "Response → 200, trace_id: c4dc427f8bf151e6b0f5707e8d8f99df", "status": "passed", "attachments": [{"name": "response.headers", "source": "dc32d99b-323a-4988-ad3a-53ae9800cf21-attachment.json", "type": "application/json"}], "start": 1775347583436, "stop": 1775347583436}], "attachments": [{"name": "cURL", "source": "077ab5ef-88b2-464c-90d4-9366c3beedd2-attachment.txt", "type": "text/plain"}], "start": 1775347583436, "stop": 1775347583436}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/complete-task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3965f7a6-ffb5-4b29-83fa-9c34c9b7c79b-attachment.json", "type": "application/json"}], "start": 1775347583459, "stop": 1775347583460}, {"name": "Response → 200, trace_id: 0a00feef0618d04208f23e86aa3cb265", "status": "passed", "attachments": [{"name": "response.headers", "source": "d0eb8a2c-84c6-47cd-9e5d-8142c1657400-attachment.json", "type": "application/json"}], "start": 1775347583460, "stop": 1775347583460}], "attachments": [{"name": "cURL", "source": "031ea642-c505-460a-82fa-8364ddc3995a-attachment.txt", "type": "text/plain"}], "start": 1775347583459, "stop": 1775347583460}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/wms/order/internal/order/can-be-canceled", "status": "passed", "attachments": [{"name": "Request", "source": "884470cf-ac59-467f-976a-28299c928c00-attachment.json", "type": "application/json"}, {"name": "Response", "source": "20b4f4c4-0c7d-47c9-a735-d5624934548e-attachment.json", "type": "application/json"}], "start": 1775347583462, "stop": 1775347583511}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/wms/order/v2/internal/order/cancel", "status": "passed", "attachments": [{"name": "Request", "source": "e16667dd-623d-46c4-979f-4a91047e835a-attachment.json", "type": "application/json"}, {"name": "Response", "source": "d7354143-dec8-4035-a420-349bf98449fc-attachment.json", "type": "application/json"}], "start": 1775347583512, "stop": 1775347583566}, {"name": "Waiter function: login_or_refresh", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/oauth/custom/token", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f6a97688-ad17-40e2-85db-f6e14f0960ca-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "85292ec1-e87d-44ae-acc0-8c04efe0fba9-attachment.json", "type": "application/json"}], "start": 1775347583601, "stop": 1775347583601}, {"name": "Response → 200, trace_id: e2bf661f54ea20b534d61ee876f6e574", "status": "passed", "attachments": [{"name": "response.headers", "source": "82de1957-97b2-42e9-bfa7-1291295d93ed-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "715cb594-326f-40a7-96a1-7c14fb293d85-attachment.json", "type": "application/json"}], "start": 1775347583601, "stop": 1775347583601}], "attachments": [{"name": "cURL", "source": "309ce7ae-e1b3-4398-b9a5-60d0eb42f281-attachment.txt", "type": "text/plain"}], "start": 1775347583601, "stop": 1775347583601}], "start": 1775347583567, "stop": 1775347583604}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/task/restore-task-status", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bcb3ee23-3bae-4704-8b77-72b2acfb11f3-attachment.json", "type": "application/json"}], "start": 1775347583625, "stop": 1775347583625}, {"name": "Response → 200, trace_id: 981caece28880772a08b2d2026772f5d", "status": "passed", "attachments": [{"name": "response.headers", "source": "50d85711-61dd-499c-9d05-864a483bb71b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "477a62f3-4b1b-4238-892c-b98e57009c6f-attachment.json", "type": "application/json"}], "start": 1775347583625, "stop": 1775347583625}], "attachments": [{"name": "cURL", "source": "298add31-b031-4e78-ae94-1a6d4a0f351f-attachment.txt", "type": "text/plain"}], "start": 1775347583625, "stop": 1775347583625}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/task/restore-task-status", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "61aa3db3-53e1-4607-a690-7affe6f9c86f-attachment.json", "type": "application/json"}], "start": 1775347583646, "stop": 1775347583646}, {"name": "Response → 200, trace_id: 57ae5f5cacd05bda6d416679ed4e6058", "status": "passed", "attachments": [{"name": "response.headers", "source": "24659379-84fc-4b39-a1f3-e08c18e1ddcc-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b0b4cb43-7dc4-44fd-9078-0372715cacd3-attachment.json", "type": "application/json"}], "start": 1775347583646, "stop": 1775347583647}], "attachments": [{"name": "cURL", "source": "c7c4c35f-e9b9-4d88-89bd-bb39a7caeebe-attachment.txt", "type": "text/plain"}], "start": 1775347583646, "stop": 1775347583647}, {"name": "Waiter function: add_wall_cell_to_task", "status": "passed", "steps": [{"name": "Waiter function: wait_stock_return_wall_cell_barcode", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/wall-cell/12.8.1.48", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bc9dc03d-87f7-4b20-9db7-53993b99902e-attachment.json", "type": "application/json"}], "start": 1775347593692, "stop": 1775347593692}, {"name": "Response → 200, trace_id: cdd3a3f70b1e32259fa6a4afe109399a", "status": "passed", "attachments": [{"name": "response.headers", "source": "6d59bf56-89ec-4205-a8c6-563281b192bc-attachment.json", "type": "application/json"}], "start": 1775347593692, "stop": 1775347593692}], "attachments": [{"name": "cURL", "source": "f9ee3b2a-4607-48f0-99e4-227f44e7537c-attachment.txt", "type": "text/plain"}], "start": 1775347593692, "stop": 1775347593692}], "start": 1775347583649, "stop": 1775347593695}, {"name": "Waiter function: wait_return_task_for_wall_cell", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "b26f431c-b8d1-47f1-a60a-a7edab41d846-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0cc5858d-ea2d-4521-b18d-377ecb75d16c-attachment.json", "type": "application/json"}], "start": 1775347593701, "stop": 1775347593702}], "start": 1775347593695, "stop": 1775347593702}, {"name": "Waiter function: wait_stock_return_task", "status": "passed", "start": 1775347593702, "stop": 1775347593703}], "start": 1775347583649, "stop": 1775347593703}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/box/BX-0000396143", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7c9efdd5-3298-4afb-8057-7e1ddf3b960a-attachment.json", "type": "application/json"}], "start": 1775347593732, "stop": 1775347593732}, {"name": "Response → 200, trace_id: 4c2a7f987b5af8c55b16ac80051f31ed", "status": "passed", "attachments": [{"name": "response.headers", "source": "dfaecb31-a4ba-40f5-9bbb-4421a0c0d293-attachment.json", "type": "application/json"}], "start": 1775347593732, "stop": 1775347593732}], "attachments": [{"name": "cURL", "source": "70e52665-1166-4599-8420-b9d86cc565e3-attachment.txt", "type": "text/plain"}], "start": 1775347593732, "stop": 1775347593732}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/order", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "049c92ab-4c6d-4a91-b77b-af842759669b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "40b4e56c-caf2-4f1c-9799-a80433567bdb-attachment.json", "type": "application/json"}], "start": 1775347593772, "stop": 1775347593772}, {"name": "Response → 200, trace_id: ce7a3c00541a1fdb4c8e0f99f385a877", "status": "passed", "attachments": [{"name": "response.headers", "source": "13df028e-7eaf-4058-8ce1-61e46e4f209b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "585211b0-faf1-4448-99db-c50242639a27-attachment.json", "type": "application/json"}], "start": 1775347593772, "stop": 1775347593772}], "attachments": [{"name": "cURL", "source": "0a7404ea-32d4-493d-8c2e-4b4f4cc7760a-attachment.txt", "type": "text/plain"}], "start": 1775347593772, "stop": 1775347593772}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/sku/{skuBarcode}", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "448f4ee3-96f9-4a79-b5ba-b4630a71266c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "84ba4ff7-17ed-4ca6-9024-11158dfdf5bb-attachment.json", "type": "application/json"}], "start": 1775347593835, "stop": 1775347593835}, {"name": "Response → 200, trace_id: 8205f1ce4919fbe3447ea5cc70e1efac", "status": "passed", "attachments": [{"name": "response.headers", "source": "0bf98887-37f1-4d61-a10e-dabf44f28f6c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d475e3c9-6068-4eed-9d31-5e60f7a8a3c1-attachment.json", "type": "application/json"}], "start": 1775347593835, "stop": 1775347593836}], "attachments": [{"name": "cURL", "source": "3ba982b6-a434-4858-a1c3-a6d421ff11cc-attachment.txt", "type": "text/plain"}], "start": 1775347593835, "stop": 1775347593836}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "dca57a62-c6e0-462b-94b0-f99775f44166-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8d34a759-5b3d-4a45-a458-a65b3628e34b-attachment.json", "type": "application/json"}], "start": 1775347593883, "stop": 1775347593883}, {"name": "Response → 200, trace_id: 58a2d6c7767539bd00aff9d6404e863d", "status": "passed", "attachments": [{"name": "response.headers", "source": "2239163f-5d3d-4c93-86f3-c306e8fd8926-attachment.json", "type": "application/json"}], "start": 1775347593883, "stop": 1775347593883}], "attachments": [{"name": "cURL", "source": "216c9a46-6782-44ad-ab77-005e6f89593b-attachment.txt", "type": "text/plain"}], "start": 1775347593883, "stop": 1775347593883}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "78d0fc78-6980-4660-9a3c-f0554de4c3dd-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "212cd5fb-5d5c-48e9-a76f-c6963cb3c578-attachment.json", "type": "application/json"}], "start": 1775347593930, "stop": 1775347593930}, {"name": "Response → 200, trace_id: 5b555f540011be7afd71c69a31084104", "status": "passed", "attachments": [{"name": "response.headers", "source": "f07ea1e2-c508-441d-b0ce-3f083298d6b5-attachment.json", "type": "application/json"}], "start": 1775347593930, "stop": 1775347593931}], "attachments": [{"name": "cURL", "source": "c8671177-ca9e-4173-9b24-3b597a6d6b10-attachment.txt", "type": "text/plain"}], "start": 1775347593930, "stop": 1775347593931}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "92d2bead-4388-408c-95b8-209d417d7be1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4e53ba7e-5655-4bd2-ae3a-f976ba267dd8-attachment.json", "type": "application/json"}], "start": 1775347593975, "stop": 1775347593975}, {"name": "Response → 200, trace_id: 8800230c5123f26b508b10eac9d7dff5", "status": "passed", "attachments": [{"name": "response.headers", "source": "a357b994-0dfa-470d-a76f-e6e07b722ace-attachment.json", "type": "application/json"}], "start": 1775347593975, "stop": 1775347593975}], "attachments": [{"name": "cURL", "source": "d20dae9c-9017-408f-a17f-9573a2cefcb2-attachment.txt", "type": "text/plain"}], "start": 1775347593975, "stop": 1775347593975}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f1f6c585-eca0-4d37-a019-21c6f4196c26-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e25e1778-12af-4f65-bf05-fea9c0302ef8-attachment.json", "type": "application/json"}], "start": 1775347594018, "stop": 1775347594018}, {"name": "Response → 200, trace_id: 6529d8a5c983277e3a97b24de3abd7bd", "status": "passed", "attachments": [{"name": "response.headers", "source": "f5f15b3a-3d04-4334-b649-7203c23fe888-attachment.json", "type": "application/json"}], "start": 1775347594018, "stop": 1775347594018}], "attachments": [{"name": "cURL", "source": "62452079-79a8-4339-854f-e2acdf4a454e-attachment.txt", "type": "text/plain"}], "start": 1775347594018, "stop": 1775347594018}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "71c3cb52-5eea-4e7e-896e-48d645dbeff3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8b39ffe3-bec9-44a7-adc2-596469510a46-attachment.json", "type": "application/json"}], "start": 1775347594063, "stop": 1775347594064}, {"name": "Response → 200, trace_id: fbfd819e42b0779216b83b9081ceda6a", "status": "passed", "attachments": [{"name": "response.headers", "source": "26e9faa7-1a1c-4b72-9b1a-efc456a13536-attachment.json", "type": "application/json"}], "start": 1775347594064, "stop": 1775347594064}], "attachments": [{"name": "cURL", "source": "ba2048cf-a2a5-4b3a-b159-565ecc10d078-attachment.txt", "type": "text/plain"}], "start": 1775347594063, "stop": 1775347594064}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "842e6b7b-1986-42db-85b6-80d7fd25c991-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "29631cb1-40f3-42c1-a6c3-22ef3f410a14-attachment.json", "type": "application/json"}], "start": 1775347594111, "stop": 1775347594112}, {"name": "Response → 200, trace_id: d8590d68772a14901ad8fa28ed581c0f", "status": "passed", "attachments": [{"name": "response.headers", "source": "40fcd5fa-43ce-4cda-97c6-f8baaf1d764d-attachment.json", "type": "application/json"}], "start": 1775347594112, "stop": 1775347594112}], "attachments": [{"name": "cURL", "source": "e9ac3da2-6b51-4069-b526-56f71ce26a97-attachment.txt", "type": "text/plain"}], "start": 1775347594111, "stop": 1775347594112}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "06ab0198-4908-4f9d-83d4-856aca20de13-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "31ecb869-98c7-4648-881d-621ae5183fc7-attachment.json", "type": "application/json"}], "start": 1775347594154, "stop": 1775347594155}, {"name": "Response → 200, trace_id: 58c80b4dd4c4a2591c159651e6c022f1", "status": "passed", "attachments": [{"name": "response.headers", "source": "df076c39-4afd-4a09-b879-b1efc3c47c29-attachment.json", "type": "application/json"}], "start": 1775347594155, "stop": 1775347594155}], "attachments": [{"name": "cURL", "source": "b13bc972-1226-4a5a-9904-f5a64d54c778-attachment.txt", "type": "text/plain"}], "start": 1775347594154, "stop": 1775347594155}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "89386be2-7e36-4215-98ad-ef8b9f304c68-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "db1bbaee-1724-4565-97af-69c29959dea2-attachment.json", "type": "application/json"}], "start": 1775347594198, "stop": 1775347594198}, {"name": "Response → 200, trace_id: 65aa9af46ebd0a2737c0ce95ba6155cd", "status": "passed", "attachments": [{"name": "response.headers", "source": "9b339d30-31a9-44ce-a9de-a7cabfef533f-attachment.json", "type": "application/json"}], "start": 1775347594198, "stop": 1775347594198}], "attachments": [{"name": "cURL", "source": "5f013d6b-03fd-41ba-9730-f254ad2dffc5-attachment.txt", "type": "text/plain"}], "start": 1775347594198, "stop": 1775347594198}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "457d174b-843c-4768-bb1b-e3dceaca7f27-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "62641427-224f-4d89-ad0b-6d405b2734fd-attachment.json", "type": "application/json"}], "start": 1775347594240, "stop": 1775347594240}, {"name": "Response → 200, trace_id: f13fc6af7cebe76308fd2c9b8295afa4", "status": "passed", "attachments": [{"name": "response.headers", "source": "ab0ccb0c-aab9-47eb-ab53-ca496f4eae66-attachment.json", "type": "application/json"}], "start": 1775347594241, "stop": 1775347594241}], "attachments": [{"name": "cURL", "source": "bb68fea9-2132-43fd-b567-191300158fbf-attachment.txt", "type": "text/plain"}], "start": 1775347594240, "stop": 1775347594241}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d8dd4818-99d7-41d3-9631-eb9ed9b6ca4c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a8db6492-feae-4787-b281-d4e9fce459d0-attachment.json", "type": "application/json"}], "start": 1775347594287, "stop": 1775347594287}, {"name": "Response → 200, trace_id: f58693ddf53b8234fa3c2b139534a60c", "status": "passed", "attachments": [{"name": "response.headers", "source": "3d795699-a004-4f07-a2aa-ea9ee9b4c851-attachment.json", "type": "application/json"}], "start": 1775347594287, "stop": 1775347594287}], "attachments": [{"name": "cURL", "source": "d366d0ec-30e5-4d03-b948-7ae0272ca5d8-attachment.txt", "type": "text/plain"}], "start": 1775347594287, "stop": 1775347594287}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/can-cell-change", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d0e0d224-e3fc-4ea5-84c1-b3b2579ffeb7-attachment.json", "type": "application/json"}], "start": 1775347594311, "stop": 1775347594312}, {"name": "Response → 200, trace_id: 3ec5975f1ef5161b29bc83619110cf67", "status": "passed", "attachments": [{"name": "response.headers", "source": "fb061e33-e109-46fc-8a74-1faf3e844290-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0c6f5d1b-f617-4c3d-b52c-456c394c6666-attachment.json", "type": "application/json"}], "start": 1775347594312, "stop": 1775347594312}], "attachments": [{"name": "cURL", "source": "7e1dd07c-3e08-4a25-b0e6-22c76455a8b0-attachment.txt", "type": "text/plain"}], "start": 1775347594311, "stop": 1775347594312}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/place", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a1a84e07-0bdf-42e5-930a-962f318d39e7-attachment.json", "type": "application/json"}], "start": 1775347595149, "stop": 1775347595149}, {"name": "Response → 200, trace_id: 103c9b2a391cfea0430ed692e09d181f", "status": "passed", "attachments": [{"name": "response.headers", "source": "55f3942b-37ba-458a-bac7-714a60b2be60-attachment.json", "type": "application/json"}], "start": 1775347595149, "stop": 1775347595149}], "attachments": [{"name": "cURL", "source": "b5ab3f91-3ed0-44b1-b536-652877206585-attachment.txt", "type": "text/plain"}], "start": 1775347595149, "stop": 1775347595149}, {"name": "Waiter function: wait_stock_return_task", "status": "passed", "start": 1775347595154, "stop": 1775347595155}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/placement/box", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "dcd8b8aa-a776-4be2-9e84-f1eac1b95135-attachment.json", "type": "application/json"}], "start": 1775347595195, "stop": 1775347595195}, {"name": "Response → 200, trace_id: 17c230bb4d7afe581f3014c50afed350", "status": "passed", "attachments": [{"name": "response.headers", "source": "ba24b3cb-12b3-4803-ab6d-fcdb45ff91c5-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0a8445db-422f-432f-a416-0270733d70ba-attachment.json", "type": "application/json"}], "start": 1775347595195, "stop": 1775347595195}], "attachments": [{"name": "cURL", "source": "4260169b-3314-4dad-8675-d03bf16fd6b3-attachment.txt", "type": "text/plain"}], "start": 1775347595195, "stop": 1775347595195}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/placement/box/BX-0000396143", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "846456cb-ee62-4bee-ba0b-3786f2fae22d-attachment.json", "type": "application/json"}], "start": 1775347595264, "stop": 1775347595264}, {"name": "Response → 200, trace_id: f10be1e7df6410b275bb674ebe4cc52c", "status": "passed", "attachments": [{"name": "response.headers", "source": "17a5bd62-c3a9-416f-ba9c-9c458c8a8265-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e31e1e4e-65a4-4650-8ddb-b3abdbb01155-attachment.json", "type": "application/json"}], "start": 1775347595264, "stop": 1775347595264}], "attachments": [{"name": "cURL", "source": "e7e8e0fb-8965-4dd6-a560-d53c90d6f452-attachment.txt", "type": "text/plain"}], "start": 1775347595264, "stop": 1775347595264}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/placement/cell/MA1-1-1-01", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f9c38b35-1081-4ea0-ac78-e0728669c1c9-attachment.json", "type": "application/json"}], "start": 1775347595317, "stop": 1775347595317}, {"name": "Response → 200, trace_id: 75a3bb3f10ef6a4d9b67f64bb92162eb", "status": "passed", "attachments": [{"name": "response.headers", "source": "483c57c0-154a-48da-a971-cfccb6be0bff-attachment.json", "type": "application/json"}], "start": 1775347595317, "stop": 1775347595317}], "attachments": [{"name": "cURL", "source": "b514d4e4-bfa8-4bb8-891a-1988acde7d55-attachment.txt", "type": "text/plain"}], "start": 1775347595317, "stop": 1775347595317}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/placement/cell/MA1-1-1-01/sku", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a7228cdb-0c87-4a98-9b74-0b82545a98e2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a07481ac-ce81-427e-9850-ac49106c5327-attachment.json", "type": "application/json"}], "start": 1775347595357, "stop": 1775347595357}, {"name": "Response → 200, trace_id: e076a268eefb423500051b27d0481e4b", "status": "passed", "attachments": [{"name": "response.headers", "source": "70cffcb1-62ae-4b97-8890-5b218eaf60f9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "bbdef30f-dac6-4f8a-842f-bd6a40fd5c8a-attachment.json", "type": "application/json"}], "start": 1775347595357, "stop": 1775347595357}], "attachments": [{"name": "cURL", "source": "04420547-1188-452c-8e51-c9265c6c9ad4-attachment.txt", "type": "text/plain"}], "start": 1775347595357, "stop": 1775347595357}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/placement/cell/MA1-1-1-01/sku/104005/finish", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "db30ec6d-22b7-4292-8df5-17180ddd2609-attachment.json", "type": "application/json"}], "start": 1775347595398, "stop": 1775347595398}, {"name": "Response → 200, trace_id: 2c9e82648b230b614eb23572ec662b0b", "status": "passed", "attachments": [{"name": "response.headers", "source": "e653b287-5d69-46d4-92f7-2434a9a7f633-attachment.json", "type": "application/json"}], "start": 1775347595398, "stop": 1775347595398}], "attachments": [{"name": "cURL", "source": "d6e66288-a1c9-4a5f-8e2a-1a630c261ffe-attachment.txt", "type": "text/plain"}], "start": 1775347595398, "stop": 1775347595398}, {"name": "Waiter function: wait_box_status", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "716afdf3-2a6e-459e-9e8b-eb634008d1aa-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "8c36f9c7-12bd-450b-b627-e010aa5016d5-attachment.json", "type": "application/json"}], "start": 1775347595410, "stop": 1775347595411}], "start": 1775347595407, "stop": 1775347595411}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/placement/complete", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "413505f1-ddeb-4816-b360-6e0650dc8489-attachment.json", "type": "application/json"}], "start": 1775347595522, "stop": 1775347595522}, {"name": "Response → 500, trace_id: 5d35d4579c3099e8a67f0388b9922685", "status": "passed", "attachments": [{"name": "response.headers", "source": "c910ff8c-8425-4f2e-a7c8-497ada3af716-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ab21d09d-5e0f-4b4a-b61f-dbd63b0d6082-attachment.json", "type": "application/json"}], "start": 1775347595522, "stop": 1775347595522}], "attachments": [{"name": "cURL", "source": "b1f73788-916b-4c19-b18f-3b7e41a642dc-attachment.txt", "type": "text/plain"}], "start": 1775347595522, "stop": 1775347595522}], "attachments": [{"name": "log", "source": "783bfafe-6df2-4730-95d4-724bc72b30e1-attachment.txt", "type": "text/plain"}], "parameters": [{"name": "wms_warehouses", "value": "WMSWarehouse(id=1693627, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, ff_id='WH_TASHKENT', hub_last_mile_id=0, providers=[WMSProvider(last_mile=<DeliveryLastMile.TANAIS: 'TANAIS'>, city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.TANAIS: 13>, last_mile_id=<DeliveryLastMileId.TANAIS: 13>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.TANAIS: 13>, order_source=<OrderSource.GLOBAL: 'GLOBAL'>, provider_name=<DeliveryLastMile.TANAIS: 'TANAIS'>), WMSProvider(last_mile='YaMarket', city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.ALIEXPRESS_UZ: 12>, last_mile_id=<DeliveryLastMileId.ALIEXPRESS_UZ: 12>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.ALIEXPRESS_UZ: 12>, order_source=<OrderSource.YaMarket: 'YaMarket'>, provider_name='YaMarket')], name='Uzbekistan', description='Бонд Узбекистан', use_datamatrix=False, user=WMSAccount(wms_id=33349, phone='3335000010', role_wms_id=23, zone_id=None, patronymic=None, last_name='', password='1234', first_name='', token='', refresh_token=''), storage_cell=<StorageCells.MA1_1_1_01: 'MA1-1-1-01'>, defected_cell=<DefectedCells.BR_01_01_1_05: 'BR-01-01-1-05'>, overage_cell=<OverageCells.IZ_1_01_01_1_05: 'IZ-1-01-01-1-05'>, weighing_cell=<WeighingCells.WT_1_11_1: 'WT-1-01-1'>, packing_table=<PackingTable.UP_AUTOTEST_01: 'UP-AUTOTEST-01'>, packing_zone_id='', qa_zone=<WMSZoneIds.QA_UZ_ZONE: 31>, email=None, phone=None)"}], "start": 1775347578241, "stop": 1775347595523, "uuid": "cfe8c97b-78f3-4dda-bcb0-d49d399097c9", "historyId": "a3792afdc6313de0bc2aacbbe36a8ad7", "testCaseId": "bded1c0103c32246d6c84d5767a8abbb", "fullName": "tests.wms.test_assembly.test_stock_return.TestStockReturn#test_stock_return_multy", "labels": [{"name": "feature", "value": "stock-return"}, {"name": "tag", "value": "dm-wms-be-service-assembly"}, {"name": "parentSuite", "value": "tests.wms.test_assembly"}, {"name": "suite", "value": "test_stock_return"}, {"name": "subSuite", "value": "TestStockReturn"}, {"name": "host", "value": "runner-1rdl4o-mi-project-9-concurrent-3-immwplba"}, {"name": "thread", "value": "22-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "tests.wms.test_assembly.test_stock_return"}], "titlePath": ["tests", "wms", "test_assembly", "test_stock_return.py", "TestStockReturn"]}