{"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-05T23:59:58.022+00:00\",\"status\":500,\"error\":\"Internal Server Error\",\"message\":\"Orders are not cancelled: [8907808]\",\"path\":\"/stock-return/placement/complete\",\"localizedMessage\":\"Не удалось отменить заказы: [8907808]\"}; \n X-Aer-Trace-Id: 9d827091413b0ab04654c03923dfbb58", "trace": "self = <tests.wms.test_assembly.test_stock_return.TestStockReturn object at 0x71d634baa790>\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 0x71d62d196e90>)\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 0x71d62cbc67d0>\nresource_path = '/stock-return/placement/complete', method = 'POST'\npath_params = {}, query_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer e5008841-fc9e-40fd-82c9-fbd0fde0aa73', '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-05T23:59:58.022+00:00\",\"status\":500,\"error\":\"Internal Server Error\",\"message\":\"Orders are not cancelled: [8907808]\",\"path\":\"/stock-return/placement/complete\",\"localizedMessage\":\"Не удалось отменить заказы: [8907808]\"}; \nE            X-Aer-Trace-Id: 9d827091413b0ab04654c03923dfbb58\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": "3073078a-59bf-4f7d-9000-d4647cf7ad54-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "21e08aa6-210f-48c2-8cd2-adcfb1d1ce4e-attachment.json", "type": "application/json"}], "start": 1775433580989, "stop": 1775433580989}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "0655a211-d377-4bd9-9bcb-3d1ac551b4a5-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "094a76f9-88c6-4a15-bcd3-ef67eec2f98c-attachment.json", "type": "application/json"}], "start": 1775433580998, "stop": 1775433580998}], "start": 1775433580989, "stop": 1775433581002}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "4ab2f50e-2913-4f3e-a06b-4d3bcf6b57fa-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "abbd981d-4c21-4283-b021-b09d8054a6d7-attachment.json", "type": "application/json"}], "start": 1775433581012, "stop": 1775433581012}, {"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": "28cb8637-8737-4cbc-a034-e73590e9e111-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "eff492c4-3bae-4c83-86c1-b9da4a42ca8d-attachment.json", "type": "application/json"}], "start": 1775433581048, "stop": 1775433581048}, {"name": "Response → 200, trace_id: 87972f8ff860bbbe29646a4415723fbb", "status": "passed", "attachments": [{"name": "response.headers", "source": "b554185a-3006-4a44-8959-7c52e28fe9da-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "797d98b0-e5c8-4d8e-b9d6-5e25da04e855-attachment.json", "type": "application/json"}], "start": 1775433581048, "stop": 1775433581048}], "attachments": [{"name": "cURL", "source": "c2185c99-4081-4390-babe-4ced09fd99d3-attachment.txt", "type": "text/plain"}], "start": 1775433581048, "stop": 1775433581048}], "start": 1775433581013, "stop": 1775433581051}], "start": 1775433580973, "stop": 1775433581051}, {"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": "bf26a833-cece-493c-884c-a0f76edb9828-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "54c6e4f5-bfaf-4968-a79c-0cf682184ba3-attachment.json", "type": "application/json"}], "start": 1775433581083, "stop": 1775433581083}, {"name": "Response → 200, trace_id: 986830f3df5d905155fb537a47df009b", "status": "passed", "attachments": [{"name": "response.headers", "source": "d2e073ee-09e6-48e9-948c-35f549b10d2f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2a0cac32-e862-47e8-93c1-356217808f35-attachment.json", "type": "application/json"}], "start": 1775433581083, "stop": 1775433581084}], "attachments": [{"name": "cURL", "source": "39a9f65a-25ee-4336-b776-2ec9f1def17b-attachment.txt", "type": "text/plain"}], "start": 1775433581083, "stop": 1775433581084}], "start": 1775433581051, "stop": 1775433581086}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/ff/publish/order", "status": "passed", "attachments": [{"name": "Request", "source": "c219bf70-0dcd-4607-b34e-c7b0421a5ae2-attachment.json", "type": "application/json"}, {"name": "Response", "source": "842b9feb-e854-4309-b3d0-7f75463e2101-attachment.json", "type": "application/json"}], "start": 1775433581090, "stop": 1775433581109}, {"name": "Waiter function: wait_order_order", "status": "passed", "start": 1775433581110, "stop": 1775433584113}, {"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": "bb38a990-a1fd-44d7-b2c1-60acb558c5d3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ddddc726-9ede-4fa1-91c8-562b2de0ad17-attachment.json", "type": "application/json"}], "start": 1775433584167, "stop": 1775433584168}, {"name": "Response → 200, trace_id: 915f4dbbb205b660e1a58b76180e01f9", "status": "passed", "attachments": [{"name": "response.headers", "source": "4bc49360-7257-4825-8708-801c6b62a539-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3446f0fb-e02c-4dc6-9bc5-278f53eca00c-attachment.json", "type": "application/json"}], "start": 1775433584168, "stop": 1775433584168}], "attachments": [{"name": "cURL", "source": "57829e27-864a-46d2-b2b2-9f733d6f50c7-attachment.txt", "type": "text/plain"}], "start": 1775433584167, "stop": 1775433584168}, {"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": "3c316cd7-a190-4cb8-8bac-46a2ede1ad04-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "121c86a7-d1a3-4b8e-81cf-106a9ffd248e-attachment.json", "type": "application/json"}], "start": 1775433584212, "stop": 1775433584212}, {"name": "Response → 200, trace_id: d3ea47f40f7d849bba6f1a51d0de76c8", "status": "passed", "attachments": [{"name": "response.headers", "source": "222c55ba-ef57-4324-b538-a0cbe3636141-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "bf21abbd-7526-4fd8-b2b3-ed68f9a8d582-attachment.json", "type": "application/json"}], "start": 1775433584212, "stop": 1775433584212}], "attachments": [{"name": "cURL", "source": "1567f9c0-58ad-40bd-a53e-e55a6eb4943f-attachment.txt", "type": "text/plain"}], "start": 1775433584212, "stop": 1775433584212}, {"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": "a1a8b4d6-9f7b-463e-a160-db86e4fcb48a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "cdf7d755-404e-4b3f-a3b6-47b2cf180fd9-attachment.json", "type": "application/json"}], "start": 1775433584254, "stop": 1775433584254}, {"name": "Response → 200, trace_id: a9c5e8297a4a2033bac6d2f09013b8c0", "status": "passed", "attachments": [{"name": "response.headers", "source": "25838756-c367-4543-84fc-8fbab69112e3-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a330d39b-4cb5-4c9f-96fd-37505682da3e-attachment.json", "type": "application/json"}], "start": 1775433584254, "stop": 1775433584254}], "attachments": [{"name": "cURL", "source": "716a8948-e49a-4773-96c9-d1bb16579589-attachment.txt", "type": "text/plain"}], "start": 1775433584254, "stop": 1775433584254}, {"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": "e3b57eba-4ff9-4182-8809-c0cbd6873822-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "127653a9-bbf3-4d8f-9d7e-f5d8b55c841a-attachment.json", "type": "application/json"}], "start": 1775433584296, "stop": 1775433584296}, {"name": "Response → 200, trace_id: 15a15e89335a49214f5515ca6783370d", "status": "passed", "attachments": [{"name": "response.headers", "source": "e619ab64-8576-45e4-8ba2-8e1752aa70f9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "95aa4d6f-336d-4d8a-b18f-93a8362fa54d-attachment.json", "type": "application/json"}], "start": 1775433584296, "stop": 1775433584296}], "attachments": [{"name": "cURL", "source": "b2e600e9-0197-4533-8537-7743c65a4e85-attachment.txt", "type": "text/plain"}], "start": 1775433584296, "stop": 1775433584296}, {"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": "be68d59d-3954-4732-b60a-30f23d71c471-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "eeff3faf-9860-4f3b-9c94-5d2bd0f8fb11-attachment.json", "type": "application/json"}], "start": 1775433584334, "stop": 1775433584334}, {"name": "Response → 200, trace_id: 9b019f5da10ce8230a2493bb22541bdf", "status": "passed", "attachments": [{"name": "response.headers", "source": "d10fe696-a264-458a-8bc9-d0769943c928-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3023d9f0-c967-4433-9d27-f71d4185e5dc-attachment.json", "type": "application/json"}], "start": 1775433584334, "stop": 1775433584334}], "attachments": [{"name": "cURL", "source": "c499cdcc-bf69-4bec-a9ec-6d1bb8038e0d-attachment.txt", "type": "text/plain"}], "start": 1775433584334, "stop": 1775433584334}, {"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": "a9cb3f40-78a1-4a3d-8953-ad8c1f09e03e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9e4aa822-c6d6-43db-97ef-4f48bc7b0bca-attachment.json", "type": "application/json"}], "start": 1775433584365, "stop": 1775433584365}, {"name": "Response → 200, trace_id: 0939ae464cb113dfc1dc7834c78a1fd1", "status": "passed", "attachments": [{"name": "response.headers", "source": "03818956-38e1-42a9-a3ea-aefc6c31cee4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "91ccb2cb-958a-4bb0-9898-7dac2f5ef962-attachment.txt", "type": "text/plain"}], "start": 1775433584365, "stop": 1775433584365}], "attachments": [{"name": "cURL", "source": "99938028-7e78-49d1-86e0-91ff09666769-attachment.txt", "type": "text/plain"}], "start": 1775433584365, "stop": 1775433584365}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492899&pickingTaskKey=ef7a4d677363d69a873d31599fe3d75731c7804756476b357bd27fd00132842b", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "510eb6f0-6879-44ce-aa94-2effca6f37d5-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b2be3b02-2f4d-40a9-a90c-14f2a941cc62-attachment.json", "type": "application/json"}], "start": 1775433584394, "stop": 1775433584394}, {"name": "Response → 200, trace_id: 04a751a9d950ad85f4bc2bd987e44be8", "status": "passed", "attachments": [{"name": "response.headers", "source": "a3f75191-8bf8-426a-a7ca-3d90d43b710e-attachment.json", "type": "application/json"}], "start": 1775433584394, "stop": 1775433584394}], "attachments": [{"name": "cURL", "source": "908bb33f-63f1-4742-8cda-fe8d61b4196e-attachment.txt", "type": "text/plain"}], "start": 1775433584394, "stop": 1775433584394}, {"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": "e45f3e4d-b76f-4271-9e6b-74cbbe7ae68e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "44f3884d-7555-4868-82f3-31d5f3a07bff-attachment.json", "type": "application/json"}], "start": 1775433584422, "stop": 1775433584422}, {"name": "Response → 200, trace_id: aa782ffbb175229436c385488003855b", "status": "passed", "attachments": [{"name": "response.headers", "source": "8f918ac1-0fe0-42db-b852-01df2adc017e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2f46a47d-7e44-49ba-9a9a-93d57105a65f-attachment.json", "type": "application/json"}], "start": 1775433584422, "stop": 1775433584422}], "attachments": [{"name": "cURL", "source": "f6d8b893-a89c-48e9-88d2-dbb68c3fc7b6-attachment.txt", "type": "text/plain"}], "start": 1775433584422, "stop": 1775433584422}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=ef7a4d677363d69a873d31599fe3d75731c7804756476b357bd27fd00132842b&skuId=4100000000000053219&cellBarcode=QA-75433579770933504&cellId=488359", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "93c073a6-93a4-42c6-96c1-ff5287fc6930-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "7a14ba97-efcb-4467-b6ce-9df64385d103-attachment.json", "type": "application/json"}], "start": 1775433584475, "stop": 1775433584475}, {"name": "Response → 200, trace_id: e06c08d3b4c3d9808f5e34c1d0f553cb", "status": "passed", "attachments": [{"name": "response.headers", "source": "70c0e684-b176-46ed-b550-dac8a90afa20-attachment.json", "type": "application/json"}], "start": 1775433584475, "stop": 1775433584475}], "attachments": [{"name": "cURL", "source": "f32a4d69-3151-43fd-b3da-e55ef9d720a2-attachment.txt", "type": "text/plain"}], "start": 1775433584475, "stop": 1775433584475}, {"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": "28c80512-5e6e-47f5-8b9a-6ea7893df711-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "fbcb47c3-42dc-40eb-8937-3577cf525044-attachment.json", "type": "application/json"}], "start": 1775433584508, "stop": 1775433584509}, {"name": "Response → 200, trace_id: 945363108ee24b94a727aec094911c81", "status": "passed", "attachments": [{"name": "response.headers", "source": "e7c9b186-0496-4af8-b8fb-d1b386a574e3-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "dc094bac-80b5-425f-8967-655311a11d0e-attachment.json", "type": "application/json"}], "start": 1775433584509, "stop": 1775433584509}], "attachments": [{"name": "cURL", "source": "7eb5d99d-e55d-436e-9855-cb2be1b6eb52-attachment.txt", "type": "text/plain"}], "start": 1775433584508, "stop": 1775433584509}, {"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": "6ac6130e-ee3a-4e21-b823-5a29183fd657-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "951f8a7b-0a6a-479d-a70a-9dc16cfd436b-attachment.json", "type": "application/json"}], "start": 1775433584539, "stop": 1775433584539}, {"name": "Response → 200, trace_id: 710ec0367e217fc17b4dd083373d72e2", "status": "passed", "attachments": [{"name": "response.headers", "source": "de994759-da5f-4c60-8e78-9033e784be7e-attachment.json", "type": "application/json"}], "start": 1775433584539, "stop": 1775433584540}], "attachments": [{"name": "cURL", "source": "8f1c680b-750d-4c54-84f3-0e32a082e4e0-attachment.txt", "type": "text/plain"}], "start": 1775433584539, "stop": 1775433584540}, {"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": "0a5cdf07-94ca-4af5-8ad3-bbc64577aa8f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "663e0f1f-b7fe-4296-b71c-8f9fa1efb55b-attachment.json", "type": "application/json"}], "start": 1775433584613, "stop": 1775433584613}, {"name": "Response → 200, trace_id: e4cdff57f305fd018ca19b4458bf86b6", "status": "passed", "attachments": [{"name": "response.headers", "source": "64abc005-1eea-44bf-8b8a-5fa81f1fe202-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4dae9eb8-f2b7-4e45-a964-f015fceadd71-attachment.json", "type": "application/json"}], "start": 1775433584613, "stop": 1775433584613}], "attachments": [{"name": "cURL", "source": "8297b91c-b5b8-4f23-b904-c483eb174839-attachment.txt", "type": "text/plain"}], "start": 1775433584613, "stop": 1775433584613}], "start": 1775433584543, "stop": 1775433584617}, {"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": "7fbd4c4a-5fad-4520-8779-9e5a25424345-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "eba3cf7d-ce14-484b-958f-27ceff80d121-attachment.json", "type": "application/json"}], "start": 1775433584693, "stop": 1775433584693}, {"name": "Response → 200, trace_id: 77431cd165246459d09e95a6f43b08e6", "status": "passed", "attachments": [{"name": "response.headers", "source": "a266c91c-c5f7-4ff9-9bff-7ebbdb8554c7-attachment.json", "type": "application/json"}], "start": 1775433584693, "stop": 1775433584693}], "attachments": [{"name": "cURL", "source": "300d1951-1563-4f8f-be81-56efad0c3ca0-attachment.txt", "type": "text/plain"}], "start": 1775433584693, "stop": 1775433584693}, {"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": "49b8da5c-2031-4d08-80cc-811332243e3d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f3aa6d61-ad7e-4c5d-bd01-bfa9a6112e57-attachment.json", "type": "application/json"}], "start": 1775433584724, "stop": 1775433584724}, {"name": "Response → 200, trace_id: 4c89e83828b24916e9990ac0a5f2ccb6", "status": "passed", "attachments": [{"name": "response.headers", "source": "6de9a540-ecca-424d-806d-e169f716d36c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d7a296bb-c11d-4e0e-b2de-3bad599e3716-attachment.json", "type": "application/json"}], "start": 1775433584724, "stop": 1775433584724}], "attachments": [{"name": "cURL", "source": "2ec80e40-642c-421a-97ea-605e0df44c7a-attachment.txt", "type": "text/plain"}], "start": 1775433584724, "stop": 1775433584724}, {"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": "0fe6ef89-2fef-4793-891b-8156fdab6114-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "86147e48-7280-4fe7-bd5a-425eea1ca64e-attachment.json", "type": "application/json"}], "start": 1775433584774, "stop": 1775433584774}, {"name": "Response → 200, trace_id: bbf94cb81f56d440bb75975f1f8e7204", "status": "passed", "attachments": [{"name": "response.headers", "source": "063d2c75-3fad-4dd8-9c12-4b0440d20bae-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5e20f64e-3f09-464e-b7bc-f52244be26f6-attachment.json", "type": "application/json"}], "start": 1775433584774, "stop": 1775433584775}], "attachments": [{"name": "cURL", "source": "94c4e221-f7b2-4409-9840-3223332046b2-attachment.txt", "type": "text/plain"}], "start": 1775433584774, "stop": 1775433584775}, {"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": "082eb251-1252-4831-8106-32a1e45eb893-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d2e2ed21-8bbf-4c4c-9ec7-f21024e4610a-attachment.json", "type": "application/json"}], "start": 1775433584824, "stop": 1775433584824}, {"name": "Response → 200, trace_id: 14c78a076a73139069fea47b134e7bbc", "status": "passed", "attachments": [{"name": "response.headers", "source": "e077e41f-9261-469f-9fc1-79412bf87111-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e43d84a6-6466-4148-9ed3-a9a93e3773f5-attachment.json", "type": "application/json"}], "start": 1775433584824, "stop": 1775433584825}], "attachments": [{"name": "cURL", "source": "2d5f7d35-3a0f-407f-853f-54155c82e95d-attachment.txt", "type": "text/plain"}], "start": 1775433584824, "stop": 1775433584825}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/move-in-progress?sortingTaskId=161068", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bc5fbbae-3e88-4d60-8854-13e77f8cf88a-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "9a20e68a-de5a-4a62-b041-667803482af0-attachment.json", "type": "application/json"}], "start": 1775433584849, "stop": 1775433584849}, {"name": "Response → 200, trace_id: 9a4f76937fd7a952edf3494064f6f1b8", "status": "passed", "attachments": [{"name": "response.headers", "source": "87308260-481e-41ad-84b4-5ded5e152552-attachment.json", "type": "application/json"}], "start": 1775433584849, "stop": 1775433584849}], "attachments": [{"name": "cURL", "source": "d4d252aa-065d-4010-b63b-a71d6664e074-attachment.txt", "type": "text/plain"}], "start": 1775433584849, "stop": 1775433584849}, {"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": "379fd1a5-3797-4517-9832-d0f3e3998709-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "bf95043e-8ccf-4e8c-80af-26c8743e901a-attachment.json", "type": "application/json"}], "start": 1775433584886, "stop": 1775433584886}, {"name": "Response → 200, trace_id: d84c73eaeba8b9288fad0ed61082f169", "status": "passed", "attachments": [{"name": "response.headers", "source": "bda261d1-4a87-49c4-b857-20e71dd5cdf1-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "36d011e2-6301-4ee1-ab5e-882d29750ffc-attachment.json", "type": "application/json"}], "start": 1775433584886, "stop": 1775433584886}], "attachments": [{"name": "cURL", "source": "d418babc-24cf-4827-aada-a333d3f4ddda-attachment.txt", "type": "text/plain"}], "start": 1775433584886, "stop": 1775433584886}, {"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": "0579f0db-5490-4b14-aefc-617b3687abb1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "1d74a812-b4a3-43a5-ab88-faaf7014e349-attachment.json", "type": "application/json"}], "start": 1775433584955, "stop": 1775433584955}, {"name": "Response → 200, trace_id: 96ef6a6ff0f27840f4358bd72f417851", "status": "passed", "attachments": [{"name": "response.headers", "source": "ee3fac30-c2b8-4e02-abb9-7f5032f4b769-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "677ecf6a-1c18-4ef9-8b05-8065778c700f-attachment.json", "type": "application/json"}], "start": 1775433584955, "stop": 1775433584955}], "attachments": [{"name": "cURL", "source": "931cfb21-ef66-467c-8a62-3bcab290090a-attachment.txt", "type": "text/plain"}], "start": 1775433584955, "stop": 1775433584955}, {"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": "15a5d314-181b-43ee-9318-0834658e7027-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "41e8737f-6334-4c31-ba94-9be6f19108e6-attachment.json", "type": "application/json"}], "start": 1775433584993, "stop": 1775433584993}, {"name": "Response → 200, trace_id: bf19fc2f2664c68759e5b0347bb6044b", "status": "passed", "attachments": [{"name": "response.headers", "source": "635db70a-3270-464d-baf6-c73032b102ed-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5b70d30a-2874-4431-87cf-3c1790fc543f-attachment.json", "type": "application/json"}], "start": 1775433584993, "stop": 1775433584993}], "attachments": [{"name": "cURL", "source": "7c901c48-1101-436f-9208-b2743209dbae-attachment.txt", "type": "text/plain"}], "start": 1775433584993, "stop": 1775433584993}, {"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": "c29b6969-f55b-4928-94d0-7cd2dbbae977-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3a4ed122-cc92-4405-b8f4-b943020464a0-attachment.json", "type": "application/json"}], "start": 1775433585031, "stop": 1775433585031}, {"name": "Response → 200, trace_id: 0fbcde39405e1b5fc9290f0aa7d9e539", "status": "passed", "attachments": [{"name": "response.headers", "source": "9e18f7fb-c3bf-4473-a149-808dc46072f8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "050d72a9-e724-4d76-889f-aaa670f2b718-attachment.json", "type": "application/json"}], "start": 1775433585031, "stop": 1775433585031}], "attachments": [{"name": "cURL", "source": "59a1fae5-ca3c-4031-b41b-635e8a1e0740-attachment.txt", "type": "text/plain"}], "start": 1775433585031, "stop": 1775433585031}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "8a28a7c6-b5ce-4efe-9a18-0796ec176859-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "fd278d44-4f52-4b6c-8d1b-3241af30dcff-attachment.json", "type": "application/json"}], "start": 1775433585048, "stop": 1775433585048}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/assign/cell?orderId=8907808&wallCellBarcode=12.8.1.48", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0e9ab249-06a1-4801-8f29-bedaa52d82be-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "442be132-ebdb-4f2a-a21d-22aa86901d8d-attachment.json", "type": "application/json"}], "start": 1775433585077, "stop": 1775433585077}, {"name": "Response → 200, trace_id: 829a358e6f7906b2657ad97fce456015", "status": "passed", "attachments": [{"name": "response.headers", "source": "e157f9ce-ea54-4f89-a407-57ce32ac1227-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "47170ad2-d428-44bb-b55d-ada4255a1cc3-attachment.txt", "type": "text/plain"}], "start": 1775433585077, "stop": 1775433585077}], "attachments": [{"name": "cURL", "source": "d1874d9b-e1cb-4c4d-ab16-2c6ccb125f3a-attachment.txt", "type": "text/plain"}], "start": 1775433585077, "stop": 1775433585077}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "e27d28fd-9fb8-4ec2-b1fd-43f4841a602b-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "3d226f6a-e050-4a54-96ba-30899750b043-attachment.json", "type": "application/json"}], "start": 1775433585086, "stop": 1775433585086}, {"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": "6ac3b785-9cd4-42d2-a1bc-1d1a1035d4ed-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3d6bdbbe-1811-4902-8558-6dc49141965e-attachment.json", "type": "application/json"}], "start": 1775433586131, "stop": 1775433586132}, {"name": "Response → 200, trace_id: b45a6b3fba688401ecbc1e8bb8055c40", "status": "passed", "attachments": [{"name": "response.headers", "source": "c3cea9a8-03a8-4d97-aaa8-c33eaef441d2-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "db1a5c81-f316-4b07-9024-07d0e9591dd1-attachment.json", "type": "application/json"}], "start": 1775433586132, "stop": 1775433586132}], "attachments": [{"name": "cURL", "source": "7ebac544-7409-4b13-b940-84ba16cd5194-attachment.txt", "type": "text/plain"}], "start": 1775433586131, "stop": 1775433586132}, {"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": "94c4a151-0c19-4ead-8e21-2c395c587cc0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "2da87d2b-c257-4015-a67d-d6391c6c566a-attachment.json", "type": "application/json"}], "start": 1775433586158, "stop": 1775433586158}, {"name": "Response → 200, trace_id: bca8dc550080d9da061af6c7f2aa9d29", "status": "passed", "attachments": [{"name": "response.headers", "source": "cbb0c533-77d4-4c67-a615-5bb1db6d5e65-attachment.json", "type": "application/json"}], "start": 1775433586158, "stop": 1775433586158}], "attachments": [{"name": "cURL", "source": "b4491fb0-2937-4733-b1ec-846656453d79-attachment.txt", "type": "text/plain"}], "start": 1775433586158, "stop": 1775433586158}, {"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": "29570479-baee-498f-8237-2a65efae5876-attachment.json", "type": "application/json"}], "start": 1775433586180, "stop": 1775433586180}, {"name": "Response → 200, trace_id: 94deed4a1d1f926450b6059de0b050f1", "status": "passed", "attachments": [{"name": "response.headers", "source": "833fb3cc-5d2a-469f-82a6-ec28dcbd0633-attachment.json", "type": "application/json"}], "start": 1775433586180, "stop": 1775433586180}], "attachments": [{"name": "cURL", "source": "74292363-0876-434e-b480-6ed0e34b015f-attachment.txt", "type": "text/plain"}], "start": 1775433586180, "stop": 1775433586180}, {"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": "89fc87b4-7f38-4231-b1d9-85567fa5975c-attachment.json", "type": "application/json"}, {"name": "Response", "source": "1015206b-2d7e-4a3c-82a4-e312331629f7-attachment.json", "type": "application/json"}], "start": 1775433586182, "stop": 1775433586221}, {"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": "d12d3772-8545-47fb-8b3f-917bc7a82588-attachment.json", "type": "application/json"}, {"name": "Response", "source": "afd297da-d724-45af-b742-9e214ef2006d-attachment.json", "type": "application/json"}], "start": 1775433586222, "stop": 1775433586273}, {"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": "1125e85b-f4d7-4703-9a45-ab987faa68ff-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0b366704-a8e3-47b1-9ab8-b9ddc1742053-attachment.json", "type": "application/json"}], "start": 1775433586305, "stop": 1775433586306}, {"name": "Response → 200, trace_id: 4ba00e297e679638168f733883278225", "status": "passed", "attachments": [{"name": "response.headers", "source": "f449f2f9-153f-4bf1-bac2-72fa8e302c0b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "108c9c37-3d2b-4408-b766-2a58d0ff04ec-attachment.json", "type": "application/json"}], "start": 1775433586306, "stop": 1775433586306}], "attachments": [{"name": "cURL", "source": "ca04ab47-4050-4b8e-a2a1-c464c37a455e-attachment.txt", "type": "text/plain"}], "start": 1775433586305, "stop": 1775433586306}], "start": 1775433586274, "stop": 1775433586308}, {"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": "67d214ad-a976-47cd-b048-0213a5d9469f-attachment.json", "type": "application/json"}], "start": 1775433586327, "stop": 1775433586327}, {"name": "Response → 200, trace_id: 17e43f1f901e0a97ea13bf301ede19db", "status": "passed", "attachments": [{"name": "response.headers", "source": "39a75d32-8708-47b2-afa7-e4c577a77fea-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9a067196-ccdf-47e2-9c17-7acfd863f7df-attachment.json", "type": "application/json"}], "start": 1775433586327, "stop": 1775433586328}], "attachments": [{"name": "cURL", "source": "bc9f51d6-8201-4029-847c-6aa8ad5649dc-attachment.txt", "type": "text/plain"}], "start": 1775433586327, "stop": 1775433586328}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "126fa37c-4167-412c-9d4c-472ac450c084-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "7acf05cc-8ffb-4aa2-a85a-f0b0d81673c7-attachment.json", "type": "application/json"}], "start": 1775433586335, "stop": 1775433586336}, {"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "80ff06e2-c355-4a71-8125-4e272783dc4d-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "b3d9c4a8-2606-4f11-bd02-10e8a43dbd79-attachment.json", "type": "application/json"}], "start": 1775433586345, "stop": 1775433586345}, {"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": "cfa0cc23-549b-42f9-b161-6a0560daf83f-attachment.json", "type": "application/json"}], "start": 1775433586369, "stop": 1775433586369}, {"name": "Response → 200, trace_id: df0909a28832519b700cfe189e58e4ff", "status": "passed", "attachments": [{"name": "response.headers", "source": "6c34009d-69a0-45be-84de-8669991c48f4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "629e4437-c0e9-42b7-8a16-490dd34b2358-attachment.json", "type": "application/json"}], "start": 1775433586369, "stop": 1775433586370}], "attachments": [{"name": "cURL", "source": "31d5fd82-af4f-4165-9b26-94021795be66-attachment.txt", "type": "text/plain"}], "start": 1775433586369, "stop": 1775433586370}, {"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": "bd21715f-39e1-4392-9571-c8b669ce5452-attachment.json", "type": "application/json"}], "start": 1775433596411, "stop": 1775433596411}, {"name": "Response → 200, trace_id: 67411379ee47928a564decb7aad6edd1", "status": "passed", "attachments": [{"name": "response.headers", "source": "c6067702-f58b-427a-9011-69530c81da9a-attachment.json", "type": "application/json"}], "start": 1775433596412, "stop": 1775433596412}], "attachments": [{"name": "cURL", "source": "034f6178-a5a2-4add-b12a-cbbb9df3930f-attachment.txt", "type": "text/plain"}], "start": 1775433596411, "stop": 1775433596412}], "start": 1775433586373, "stop": 1775433596415}, {"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": "eacfcb5c-e60b-4bb2-abef-083b6b451a5a-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "fb0cfbf3-e83d-4c47-bb9c-29fe7d506b16-attachment.json", "type": "application/json"}], "start": 1775433596420, "stop": 1775433596421}], "start": 1775433596415, "stop": 1775433596421}, {"name": "Waiter function: wait_stock_return_task", "status": "passed", "start": 1775433596421, "stop": 1775433596422}], "start": 1775433586373, "stop": 1775433596422}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/box/BX-0000388682", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "cf6e2e66-22c8-4f15-90ea-21c5b8cd11ab-attachment.json", "type": "application/json"}], "start": 1775433596451, "stop": 1775433596451}, {"name": "Response → 200, trace_id: 6ab3c4431cae4af73062810a960cf779", "status": "passed", "attachments": [{"name": "response.headers", "source": "b4000363-0cae-409e-ab22-733b75bfe55e-attachment.json", "type": "application/json"}], "start": 1775433596451, "stop": 1775433596451}], "attachments": [{"name": "cURL", "source": "97175bb1-536e-4d6e-b75b-8e00ffe8b3f4-attachment.txt", "type": "text/plain"}], "start": 1775433596451, "stop": 1775433596451}, {"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": "6fdc93c9-7677-4a0e-b845-3d8e41c35d68-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "a3c0b7e9-3e10-48b2-baad-0a1501c08dea-attachment.json", "type": "application/json"}], "start": 1775433596487, "stop": 1775433596487}, {"name": "Response → 200, trace_id: 6644d7558b29dcdec1096c1756366bd8", "status": "passed", "attachments": [{"name": "response.headers", "source": "8660bcb4-a2c9-44ec-930f-82292b1f3f76-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "96ab2a85-1afc-456d-a5e8-e38217a5777e-attachment.json", "type": "application/json"}], "start": 1775433596487, "stop": 1775433596487}], "attachments": [{"name": "cURL", "source": "200eb5b5-d8ff-4f61-99f3-8014f3af0ea0-attachment.txt", "type": "text/plain"}], "start": 1775433596487, "stop": 1775433596487}, {"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": "8027fce4-9a53-4fe2-af56-638227d55742-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f16b8ef1-cf68-4452-99f1-c4eb213ad21a-attachment.json", "type": "application/json"}], "start": 1775433596542, "stop": 1775433596542}, {"name": "Response → 200, trace_id: c0bc5edddccfb749e4968630ced3e2df", "status": "passed", "attachments": [{"name": "response.headers", "source": "27b3a9ba-5bbb-4127-8987-f87bfac50a7a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9cf0e32a-e8e1-438d-8abb-5178e9c30d01-attachment.json", "type": "application/json"}], "start": 1775433596542, "stop": 1775433596542}], "attachments": [{"name": "cURL", "source": "84641e8f-8c8d-40ec-9342-c7b9746b7f59-attachment.txt", "type": "text/plain"}], "start": 1775433596542, "stop": 1775433596542}, {"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": "bddd65c7-f0b4-4268-9f15-662599d0f9d1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "bddb7017-85ee-421f-bb96-f19bef44a8da-attachment.json", "type": "application/json"}], "start": 1775433596587, "stop": 1775433596588}, {"name": "Response → 200, trace_id: d80ecb39b506d9d00fcf3c1ceda10bce", "status": "passed", "attachments": [{"name": "response.headers", "source": "86395c12-42ba-49c3-958e-37787a69c3f9-attachment.json", "type": "application/json"}], "start": 1775433596588, "stop": 1775433596588}], "attachments": [{"name": "cURL", "source": "7c2b35ef-9e6d-421c-8120-374e92257358-attachment.txt", "type": "text/plain"}], "start": 1775433596587, "stop": 1775433596588}, {"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": "9041ace7-33e8-4215-8a5c-e57dcebf7b8d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "94da63a7-0024-4f38-81a2-fa5b20a38e26-attachment.json", "type": "application/json"}], "start": 1775433596628, "stop": 1775433596628}, {"name": "Response → 200, trace_id: e29b59ee8185fdf6c954947bf8f895df", "status": "passed", "attachments": [{"name": "response.headers", "source": "8ace4c7c-78ea-4d5b-b613-a50cc5299716-attachment.json", "type": "application/json"}], "start": 1775433596628, "stop": 1775433596628}], "attachments": [{"name": "cURL", "source": "3bb3cc52-5b42-47dd-8cb5-dffddf467aee-attachment.txt", "type": "text/plain"}], "start": 1775433596628, "stop": 1775433596628}, {"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": "fce52eda-62d7-4b10-81db-373a853e57ca-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "28601b9e-e783-4e8d-a613-f6b30cdf119e-attachment.json", "type": "application/json"}], "start": 1775433596668, "stop": 1775433596668}, {"name": "Response → 200, trace_id: e0ba31fce820fa1b93ba7375704721b4", "status": "passed", "attachments": [{"name": "response.headers", "source": "92b3baf6-82ba-4e99-8886-afab7e70c665-attachment.json", "type": "application/json"}], "start": 1775433596668, "stop": 1775433596668}], "attachments": [{"name": "cURL", "source": "e0aec4e8-0c1d-401e-814d-475abe02484f-attachment.txt", "type": "text/plain"}], "start": 1775433596668, "stop": 1775433596668}, {"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": "be31f237-4346-4ae5-809a-732aad27c6a3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e44cf2f7-73f2-4917-9358-ff2e9fd8376c-attachment.json", "type": "application/json"}], "start": 1775433596711, "stop": 1775433596712}, {"name": "Response → 200, trace_id: 0f7bf200ef4f7b45e4e9f8335b95f02c", "status": "passed", "attachments": [{"name": "response.headers", "source": "d1677b72-aa97-47fb-a07a-9e47600fcf6b-attachment.json", "type": "application/json"}], "start": 1775433596712, "stop": 1775433596712}], "attachments": [{"name": "cURL", "source": "e6166fb7-954e-4373-ab5b-8f3dee570df6-attachment.txt", "type": "text/plain"}], "start": 1775433596711, "stop": 1775433596712}, {"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": "f858bfd7-c6e3-4f6b-a635-af3f33e52120-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fee4d001-e7cc-4184-b97f-eb7a8f532f96-attachment.json", "type": "application/json"}], "start": 1775433596754, "stop": 1775433596754}, {"name": "Response → 200, trace_id: 7f36cb2af984267fcb5120006cf8f362", "status": "passed", "attachments": [{"name": "response.headers", "source": "d268d50b-a20a-4192-ade1-0a7a40feb870-attachment.json", "type": "application/json"}], "start": 1775433596754, "stop": 1775433596755}], "attachments": [{"name": "cURL", "source": "e7d76e5e-3dad-46e1-ab0a-5482c3e28cc2-attachment.txt", "type": "text/plain"}], "start": 1775433596754, "stop": 1775433596755}, {"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": "29a28df0-50b0-4908-9335-dc01f264332b-attachment.json", "type": "application/json"}], "start": 1775433596778, "stop": 1775433596779}, {"name": "Response → 200, trace_id: b396d0a128630c8b965410ce714e3932", "status": "passed", "attachments": [{"name": "response.headers", "source": "62206a5d-aec1-4cba-bf05-dd2f1a9c4087-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "46c90416-6229-4cb8-be01-67119c062a4c-attachment.json", "type": "application/json"}], "start": 1775433596779, "stop": 1775433596779}], "attachments": [{"name": "cURL", "source": "bf6e1478-c322-4b62-b189-47f282e68f5d-attachment.txt", "type": "text/plain"}], "start": 1775433596778, "stop": 1775433596779}, {"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": "a2762c64-4963-411c-b3a6-90509a65337a-attachment.json", "type": "application/json"}], "start": 1775433597658, "stop": 1775433597658}, {"name": "Response → 200, trace_id: 7912277c4dd2ae268060ff43531a06b9", "status": "passed", "attachments": [{"name": "response.headers", "source": "91b8294e-9b5a-480d-990a-59a76876b3bd-attachment.json", "type": "application/json"}], "start": 1775433597658, "stop": 1775433597658}], "attachments": [{"name": "cURL", "source": "990904a0-71f0-4a69-8acb-f0c0a6146baa-attachment.txt", "type": "text/plain"}], "start": 1775433597658, "stop": 1775433597658}, {"name": "Waiter function: wait_stock_return_task", "status": "passed", "start": 1775433597663, "stop": 1775433597664}, {"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": "17594dd9-c1c0-41ff-8cd0-5a33d785922b-attachment.json", "type": "application/json"}], "start": 1775433597707, "stop": 1775433597707}, {"name": "Response → 200, trace_id: 2987a0a5be8fa5ffee75f35d1bedc9de", "status": "passed", "attachments": [{"name": "response.headers", "source": "4420bcbd-523f-45c1-9037-9fa82f8da900-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4b2778eb-69bd-46c6-a3ef-9fb861d44c46-attachment.json", "type": "application/json"}], "start": 1775433597707, "stop": 1775433597707}], "attachments": [{"name": "cURL", "source": "fe705dd0-1ad0-43f0-9249-9764e2488d97-attachment.txt", "type": "text/plain"}], "start": 1775433597707, "stop": 1775433597707}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/placement/box/BX-0000388682", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7b2dbf8f-f7f2-4aeb-9a67-d2f22093766a-attachment.json", "type": "application/json"}], "start": 1775433597774, "stop": 1775433597774}, {"name": "Response → 200, trace_id: 91eb096b741acf40cc5ffc4c71867f6c", "status": "passed", "attachments": [{"name": "response.headers", "source": "abae7028-0edb-452a-984d-1b2140d5e58d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2c31bc5a-85ff-4e97-b8c4-dca12fdad7e5-attachment.json", "type": "application/json"}], "start": 1775433597774, "stop": 1775433597775}], "attachments": [{"name": "cURL", "source": "57d8fa72-62ab-417d-b39e-08bddcde693a-attachment.txt", "type": "text/plain"}], "start": 1775433597774, "stop": 1775433597775}, {"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": "661508db-7886-407f-b389-ed53ff59da5f-attachment.json", "type": "application/json"}], "start": 1775433597824, "stop": 1775433597824}, {"name": "Response → 200, trace_id: 0955ed643450f0d97b44022f92bb5a41", "status": "passed", "attachments": [{"name": "response.headers", "source": "52771537-3b1a-4ace-9b7c-086c1a405a66-attachment.json", "type": "application/json"}], "start": 1775433597824, "stop": 1775433597824}], "attachments": [{"name": "cURL", "source": "23a6fc10-07a4-49ed-864e-3e715561f3c6-attachment.txt", "type": "text/plain"}], "start": 1775433597824, "stop": 1775433597824}, {"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": "04198b23-8bbd-4e7c-9b81-7edab8ad6bf5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "949b2f86-2572-463d-a631-722ae57b758a-attachment.json", "type": "application/json"}], "start": 1775433597862, "stop": 1775433597862}, {"name": "Response → 200, trace_id: e5b5a19e3be2d4b71b9e068f77beb8ee", "status": "passed", "attachments": [{"name": "response.headers", "source": "a68b8353-a1b3-489c-8b75-3e3b299616b3-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "417bce45-23eb-4955-90be-b22042881357-attachment.json", "type": "application/json"}], "start": 1775433597862, "stop": 1775433597862}], "attachments": [{"name": "cURL", "source": "d61568c5-97ae-4e5c-b226-f5055afa423a-attachment.txt", "type": "text/plain"}], "start": 1775433597861, "stop": 1775433597862}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/placement/cell/MA1-1-1-01/sku/104019/finish", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fa8411f9-3853-4733-a562-85acac00af7b-attachment.json", "type": "application/json"}], "start": 1775433597907, "stop": 1775433597907}, {"name": "Response → 200, trace_id: d005482f73d8278289f29dc6711757ac", "status": "passed", "attachments": [{"name": "response.headers", "source": "34773f37-b2f7-413d-9f1f-8562aec7a4b5-attachment.json", "type": "application/json"}], "start": 1775433597907, "stop": 1775433597907}], "attachments": [{"name": "cURL", "source": "88e6db4f-0739-400c-a935-f65d65a0b9d1-attachment.txt", "type": "text/plain"}], "start": 1775433597907, "stop": 1775433597908}, {"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": "68ec1038-9b80-4881-b73b-db9cd523f8f6-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "bfaa897f-a36d-4bbf-b333-558057fa2192-attachment.json", "type": "application/json"}], "start": 1775433597921, "stop": 1775433597921}], "start": 1775433597917, "stop": 1775433597921}, {"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": "929a5cc7-0c94-4483-a2a1-179482f9b376-attachment.json", "type": "application/json"}], "start": 1775433598023, "stop": 1775433598024}, {"name": "Response → 500, trace_id: 9d827091413b0ab04654c03923dfbb58", "status": "passed", "attachments": [{"name": "response.headers", "source": "ad3e1498-bfad-4ece-828a-879a5ab35236-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "aef3a831-52dd-44ff-a39b-1a389a0bbcfe-attachment.json", "type": "application/json"}], "start": 1775433598024, "stop": 1775433598024}], "attachments": [{"name": "cURL", "source": "9275bfe1-90c0-482d-b731-a6f65aed9f08-attachment.txt", "type": "text/plain"}], "start": 1775433598023, "stop": 1775433598024}], "attachments": [{"name": "log", "source": "1949d0b5-8e30-4e6d-a561-590e9d6b9c91-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": 1775433580973, "stop": 1775433598024, "uuid": "008aba92-6237-4c2e-9ad8-1641eea53898", "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-ruxi5d0x"}, {"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"]}