{"name": "test_stock_return_mono[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:52.546+00:00\",\"status\":500,\"error\":\"Internal Server Error\",\"message\":\"Orders are not cancelled: [8907642]\",\"path\":\"/stock-return/placement/complete\",\"localizedMessage\":\"Не удалось отменить заказы: [8907642]\"}; \n X-Aer-Trace-Id: f830048ef4f159165dc2a40cdf54d442", "trace": "self = <tests.wms.test_assembly.test_stock_return.TestStockReturn object at 0x76debddb3210>\nwms_warehouses_storage_mono_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 0x76deb677a250>)\n\n    def test_stock_return_mono(self, wms_warehouses_storage_mono_cells):\n        with allure.step(\"builder init\"):\n            order = WMSOrderBuilder(\n                warehouse=wms_warehouses_storage_mono_cells.warehouse,\n                user=wms_warehouses_storage_mono_cells.stocks.user,\n                provider=wms_warehouses_storage_mono_cells.warehouse.providers[0],\n                items=wms_warehouses_storage_mono_cells.stocks.items,\n                headers=wms_warehouses_storage_mono_cells.stocks.headers,\n                clear=True,\n            ).login_or_refresh()\n        order.outbound_flow_with_packing().state_canceled()\n        picked_barcode = order.extract_barcodes_from_picking_data()[0]\n        order.packing.bind_box_to_packing_table(\n            box_barcode=order.picking.data.task.box_barcodes[0],\n            consolidation_cell_barcode=order.consolidating[0].data.task.consolidation_cell_barcode,\n            packing_table_barcode=order.big_bag_workflow.packing_table_barcode,\n        )\n        order.packing.find_oldest_picked_order(\n            item_barcode=picked_barcode, expected_order_status=AssemblyOrderStatus.PROBLEMATIC\n        )\n        order.packing.bind_order_to_sorting_wall_cell_post(\n            box_barcode=order.picking.data.task.box_barcodes[0], sku_by_batch_barcode=picked_barcode\n        )\n    \n        # Return to stock\n        stock_return = StockReturnBuilder(\n            order_id=order.order.order_id,\n            user=wms_warehouses_storage_mono_cells.stocks.user,\n            wall_cell_barcode=order.packing.data.assembled_wall_cells[0].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:80: \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 0x76deb5f78150>\nresource_path = '/stock-return/placement/complete', method = 'POST'\npath_params = {}, query_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer 68724b63-cac0-47dc-bb0b-47e2bc9990d1', '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:52.546+00:00\",\"status\":500,\"error\":\"Internal Server Error\",\"message\":\"Orders are not cancelled: [8907642]\",\"path\":\"/stock-return/placement/complete\",\"localizedMessage\":\"Не удалось отменить заказы: [8907642]\"}; \nE            X-Aer-Trace-Id: f830048ef4f159165dc2a40cdf54d442\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": "8ead62ab-e3a7-4b69-8cf9-f48c2df9c247-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "59298ec1-429c-486f-b48f-8ada6d84759e-attachment.json", "type": "application/json"}], "start": 1775347597108, "stop": 1775347597108}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "803269e4-cec3-49be-b8d8-68780d0ab181-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "4a9d8033-6a4e-48ea-b821-6c2b0bfd481f-attachment.json", "type": "application/json"}], "start": 1775347597117, "stop": 1775347597117}], "start": 1775347597109, "stop": 1775347597121}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "45ba9230-2923-4240-bf59-7cc00a971d81-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "557595b6-41fa-41a7-a727-5e3384ad6dc6-attachment.json", "type": "application/json"}], "start": 1775347597130, "stop": 1775347597130}, {"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": "481bb480-f044-402e-ac34-a3b45b54daf5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "07e94b22-a7b8-4525-9042-2bbcffdc5d53-attachment.json", "type": "application/json"}], "start": 1775347597165, "stop": 1775347597165}, {"name": "Response → 200, trace_id: ce9280a2a26a0b3c4b41d5743c67e26a", "status": "passed", "attachments": [{"name": "response.headers", "source": "14aab8e8-963a-49a6-87d7-c89bd804fbed-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3da5428a-6456-4a3c-adeb-a19e38612626-attachment.json", "type": "application/json"}], "start": 1775347597165, "stop": 1775347597165}], "attachments": [{"name": "cURL", "source": "9ff7863e-f7d0-4459-915f-9217434d9b03-attachment.txt", "type": "text/plain"}], "start": 1775347597165, "stop": 1775347597165}], "start": 1775347597131, "stop": 1775347597168}], "start": 1775347597093, "stop": 1775347597168}, {"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": "b9253ba3-3684-4896-88d2-7384b1243dda-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7cd42d9c-3c56-405e-a5e9-8b173dc8c64a-attachment.json", "type": "application/json"}], "start": 1775347597198, "stop": 1775347597198}, {"name": "Response → 200, trace_id: 79ba2bff04a9dcca1b343ecda0b103e3", "status": "passed", "attachments": [{"name": "response.headers", "source": "d2660e31-3a4b-4e21-b360-3e5696109e64-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b45c2773-1815-43cd-b854-56bfb99a99a2-attachment.json", "type": "application/json"}], "start": 1775347597198, "stop": 1775347597199}], "attachments": [{"name": "cURL", "source": "1c3a39be-8ed6-4d0e-bdb9-deb83b99cc23-attachment.txt", "type": "text/plain"}], "start": 1775347597198, "stop": 1775347597199}], "start": 1775347597169, "stop": 1775347597201}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/ff/publish/order", "status": "passed", "attachments": [{"name": "Request", "source": "4db94a54-1f70-4a40-a9cd-d87b3549d42d-attachment.json", "type": "application/json"}, {"name": "Response", "source": "ba33d097-0730-45a7-834d-938b967bdf70-attachment.json", "type": "application/json"}], "start": 1775347597205, "stop": 1775347597220}, {"name": "Waiter function: wait_order_order", "status": "passed", "start": 1775347597220, "stop": 1775347600224}, {"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": "cca83186-391e-47fe-b1eb-e183e1e0d963-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6bccf1da-5966-47c9-afc3-d2732f8cd095-attachment.json", "type": "application/json"}], "start": 1775347600256, "stop": 1775347600256}, {"name": "Response → 200, trace_id: dff76f56d7ffe893bf4dd03ef17b3219", "status": "passed", "attachments": [{"name": "response.headers", "source": "e86f2426-4b6a-4236-8984-cec12d285cdc-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1b93206c-21ac-4ae7-bde5-b221fa273b95-attachment.json", "type": "application/json"}], "start": 1775347600257, "stop": 1775347600257}], "attachments": [{"name": "cURL", "source": "805fe761-95b5-485a-86e8-57ded5ed4379-attachment.txt", "type": "text/plain"}], "start": 1775347600256, "stop": 1775347600257}, {"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": "65388bb0-e8f5-4024-9ddd-b358da387040-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "81e9afae-c20d-4e23-9b23-ccdea89aaa8f-attachment.json", "type": "application/json"}], "start": 1775347600301, "stop": 1775347600301}, {"name": "Response → 200, trace_id: b55304425acb6911295dcef839e96cd1", "status": "passed", "attachments": [{"name": "response.headers", "source": "a68d4ede-f45b-491c-928e-110463884c07-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5acfc0de-e3e2-4056-8a4a-d0b6a152df94-attachment.json", "type": "application/json"}], "start": 1775347600301, "stop": 1775347600301}], "attachments": [{"name": "cURL", "source": "1d8ece58-d060-4c47-ba2a-9e1b1e65e668-attachment.txt", "type": "text/plain"}], "start": 1775347600301, "stop": 1775347600301}, {"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": "a325f913-63ed-4c45-bfde-6d999a945598-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "efa9ba24-5948-4e9e-8e2d-9c92c3b3b3e1-attachment.json", "type": "application/json"}], "start": 1775347600342, "stop": 1775347600342}, {"name": "Response → 200, trace_id: 3aab298d51f35b257cca9c9f484e9227", "status": "passed", "attachments": [{"name": "response.headers", "source": "ac3c0cfd-33f3-4677-8b1f-a8a558ab85e9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f5e7dfc1-ab30-4bd3-9a55-37fec97207fa-attachment.json", "type": "application/json"}], "start": 1775347600342, "stop": 1775347600343}], "attachments": [{"name": "cURL", "source": "5d4a598b-e861-4452-9027-50f7607ff3ae-attachment.txt", "type": "text/plain"}], "start": 1775347600342, "stop": 1775347600343}, {"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": "d494f4fa-6aa9-4e42-afca-453c8c3cc244-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "1b77f41c-5ce6-451e-99ba-6d17c5060e49-attachment.json", "type": "application/json"}], "start": 1775347600388, "stop": 1775347600388}, {"name": "Response → 200, trace_id: 18aa8cc783c48d0b8807669f964d8625", "status": "passed", "attachments": [{"name": "response.headers", "source": "b816b003-dcd8-4931-931f-789723ec34a4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0d30c46f-0ea6-459a-8a47-be5d1a981589-attachment.json", "type": "application/json"}], "start": 1775347600388, "stop": 1775347600388}], "attachments": [{"name": "cURL", "source": "3c15c57a-3126-4fb6-83f5-fdcf0535d8bc-attachment.txt", "type": "text/plain"}], "start": 1775347600388, "stop": 1775347600388}, {"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": "66e3fab9-ff8b-42db-bc14-f1d87266f11b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "13de04b4-bb10-4e21-aa2c-5ceae16044ac-attachment.json", "type": "application/json"}], "start": 1775347600430, "stop": 1775347600430}, {"name": "Response → 200, trace_id: 8d3444cdd7cd63dd91806bb4c9dd5629", "status": "passed", "attachments": [{"name": "response.headers", "source": "dd260bd5-2e84-401b-82c5-c1bef7cd4b1d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "13b24d11-0693-42cf-9a09-e516595de365-attachment.json", "type": "application/json"}], "start": 1775347600430, "stop": 1775347600430}], "attachments": [{"name": "cURL", "source": "321ba020-0f56-47c6-9b56-c33c01da3070-attachment.txt", "type": "text/plain"}], "start": 1775347600430, "stop": 1775347600430}, {"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": "2ab1422b-ca41-4ab9-89ee-3e896785a29a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "2862c382-3c3d-4fdf-999c-2aa95364df65-attachment.json", "type": "application/json"}], "start": 1775347600459, "stop": 1775347600459}, {"name": "Response → 200, trace_id: 8b3eb5ca8e07d91a6efd3d81639de2cf", "status": "passed", "attachments": [{"name": "response.headers", "source": "12540922-61dc-42c0-957e-6d00870768b6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a45d6c1a-3935-4c6f-9c97-b96b6d95cd8f-attachment.txt", "type": "text/plain"}], "start": 1775347600459, "stop": 1775347600459}], "attachments": [{"name": "cURL", "source": "c002283d-746b-48f7-8023-bcf00ada9b21-attachment.txt", "type": "text/plain"}], "start": 1775347600459, "stop": 1775347600459}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492808&pickingTaskKey=85d78e962526b27221c62875671af7e2b483a82e44811a78d2d8db6c53e92b4d", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "268f0684-b37e-42e4-bd9f-a7452f9dc50f-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "03a79e05-8805-402a-93bc-79c67d0d0fdf-attachment.json", "type": "application/json"}], "start": 1775347600487, "stop": 1775347600487}, {"name": "Response → 200, trace_id: 49e76473a5fb200e2f29b916ffbd83f6", "status": "passed", "attachments": [{"name": "response.headers", "source": "e05bdc9a-be26-4d84-8bd0-fdb25027e2f4-attachment.json", "type": "application/json"}], "start": 1775347600488, "stop": 1775347600488}], "attachments": [{"name": "cURL", "source": "602135c5-3051-4f2e-bba9-38dfb9999ade-attachment.txt", "type": "text/plain"}], "start": 1775347600487, "stop": 1775347600488}, {"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": "fe6c6615-cafe-41ec-a962-d6e7f1fb7bf6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f468782c-edd8-4ed5-8c38-3299024ef3cb-attachment.json", "type": "application/json"}], "start": 1775347600518, "stop": 1775347600518}, {"name": "Response → 200, trace_id: 7335bf612bfc5d4735944a9bb5a5bcd7", "status": "passed", "attachments": [{"name": "response.headers", "source": "bd515c97-388c-4446-85fd-41cdc254531d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e9eb1491-02fb-40b2-a604-9f073302a408-attachment.json", "type": "application/json"}], "start": 1775347600518, "stop": 1775347600519}], "attachments": [{"name": "cURL", "source": "4c136768-b416-4318-b126-f7b92d0b0f9d-attachment.txt", "type": "text/plain"}], "start": 1775347600518, "stop": 1775347600519}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=85d78e962526b27221c62875671af7e2b483a82e44811a78d2d8db6c53e92b4d&skuId=4100000000000052991&cellBarcode=QA-75347595559395328&cellId=488177", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "01e7e4d8-701e-4896-8bcf-15efeb4c90c1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "d5a6c92b-17a6-4672-9f1c-e27d25132d52-attachment.json", "type": "application/json"}], "start": 1775347600575, "stop": 1775347600575}, {"name": "Response → 200, trace_id: 4820e8f76b7cc36dd9662fb7cec1c28b", "status": "passed", "attachments": [{"name": "response.headers", "source": "3a4c9ac7-2e9f-4232-9523-645abd33d3b0-attachment.json", "type": "application/json"}], "start": 1775347600575, "stop": 1775347600575}], "attachments": [{"name": "cURL", "source": "29190213-d346-4f09-84fd-5a439bb462c6-attachment.txt", "type": "text/plain"}], "start": 1775347600575, "stop": 1775347600575}, {"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": "37b6df10-0074-40f9-9f63-c7ad2563327f-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "4de14c6d-f666-4833-9ea4-17bc5fc4e123-attachment.json", "type": "application/json"}], "start": 1775347600607, "stop": 1775347600607}, {"name": "Response → 200, trace_id: a29aab01fac4bba44a2d4bfb9a6b4f39", "status": "passed", "attachments": [{"name": "response.headers", "source": "793a6839-3aa2-4c0e-b2ab-0fd48af7be4c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ce0b4232-b050-4d3a-a44e-6072c1334e48-attachment.json", "type": "application/json"}], "start": 1775347600607, "stop": 1775347600607}], "attachments": [{"name": "cURL", "source": "cc67b31e-f50b-4486-9948-6500a20d6a7d-attachment.txt", "type": "text/plain"}], "start": 1775347600607, "stop": 1775347600608}, {"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": "0d10200b-c78d-4d4b-908e-6ba275826cd6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "480e2b8e-080c-4dfb-8206-ba971eedc1e3-attachment.json", "type": "application/json"}], "start": 1775347600635, "stop": 1775347600635}, {"name": "Response → 200, trace_id: 5c974735161e05468f02a811be63f15b", "status": "passed", "attachments": [{"name": "response.headers", "source": "590abc14-87fa-423e-91d0-ce467e560a63-attachment.json", "type": "application/json"}], "start": 1775347600635, "stop": 1775347600635}], "attachments": [{"name": "cURL", "source": "e412bfe4-7bc8-441f-895d-769e434b722a-attachment.txt", "type": "text/plain"}], "start": 1775347600635, "stop": 1775347600636}, {"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": "73b18642-5010-48ed-996e-ffa8bfe0b472-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "55890de6-220b-483d-bd98-d3501c3c1a73-attachment.json", "type": "application/json"}], "start": 1775347600700, "stop": 1775347600701}, {"name": "Response → 200, trace_id: e15426e2fab36abc9058bd50911c5f5a", "status": "passed", "attachments": [{"name": "response.headers", "source": "a23936f9-796e-47fb-80b9-8c2fec217118-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d3442c51-9301-4bb1-bff8-1ca231f6d65d-attachment.json", "type": "application/json"}], "start": 1775347600701, "stop": 1775347600701}], "attachments": [{"name": "cURL", "source": "afe7b874-f72d-4ca2-aad7-2f7a6fab93f1-attachment.txt", "type": "text/plain"}], "start": 1775347600700, "stop": 1775347600701}], "start": 1775347600640, "stop": 1775347600704}, {"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": "26ec1933-b6ed-484b-b3d7-dc10d28c6594-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0081479d-3409-41c2-9b3a-6d22711fb6f3-attachment.json", "type": "application/json"}], "start": 1775347600769, "stop": 1775347600770}, {"name": "Response → 200, trace_id: c3913e7317e510dc57e9a42b96606407", "status": "passed", "attachments": [{"name": "response.headers", "source": "92c122a7-ad8e-495e-8be4-f04584ad6dc3-attachment.json", "type": "application/json"}], "start": 1775347600770, "stop": 1775347600770}], "attachments": [{"name": "cURL", "source": "71c23ad9-d5bb-4620-a13a-c02bec990ef4-attachment.txt", "type": "text/plain"}], "start": 1775347600769, "stop": 1775347600770}, {"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": "0ec3eeca-bebf-4913-ba56-1f577459e40c-attachment.json", "type": "application/json"}, {"name": "Response", "source": "9e0635ec-c604-43bf-b71e-98902aed07f8-attachment.json", "type": "application/json"}], "start": 1775347600773, "stop": 1775347600815}, {"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": "6cb740f1-9385-4e71-b02c-19a6aee702e4-attachment.json", "type": "application/json"}, {"name": "Response", "source": "1f7fafe0-2296-4c76-9a07-55494c01385f-attachment.json", "type": "application/json"}], "start": 1775347600817, "stop": 1775347600863}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/mono-order-packing/bind-box-to-packing-table", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0def1af6-e869-4ee6-a058-aa33d0a8aa1e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9e73456b-e82d-4f7e-84b2-7d3b240190e6-attachment.json", "type": "application/json"}], "start": 1775347600916, "stop": 1775347600916}, {"name": "Response → 200, trace_id: ef40f1c0c9432fd8fa08e8099c6f2eb5", "status": "passed", "attachments": [{"name": "response.headers", "source": "8ff5f68d-c08e-48a6-b36a-f85c4817895c-attachment.json", "type": "application/json"}], "start": 1775347600916, "stop": 1775347600917}], "attachments": [{"name": "cURL", "source": "5b1427ad-a220-48f0-bad4-f697eb7c1a95-attachment.txt", "type": "text/plain"}], "start": 1775347600916, "stop": 1775347600917}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/mono-order-packing/find-oldest-picked-order", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "116d8fe1-5bc3-4b32-9505-15882504beb0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1b8b5f91-a14e-4b21-8d8d-bc7cf1246410-attachment.json", "type": "application/json"}], "start": 1775347600951, "stop": 1775347600952}, {"name": "Response → 200, trace_id: 6b43b86f5e8a6cf4d9a13eb3c295148a", "status": "passed", "attachments": [{"name": "response.headers", "source": "b93fb3fb-9df4-4fe4-a80f-64414829103c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8fdbc7c7-b4bb-41b0-8e13-ceb4c2ba48dd-attachment.json", "type": "application/json"}], "start": 1775347600952, "stop": 1775347600952}], "attachments": [{"name": "cURL", "source": "ef850caa-6160-4dc4-a933-0472d1182e16-attachment.txt", "type": "text/plain"}], "start": 1775347600951, "stop": 1775347600952}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/mono-order-packing/bind-order-to-sorting-wall-cell", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6011f83c-c602-4eea-b15a-f67075e1ee6f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "63d334d7-8d80-426e-8923-73ce0fc9aee8-attachment.json", "type": "application/json"}], "start": 1775347601014, "stop": 1775347601015}, {"name": "Response → 200, trace_id: 02b327b02a401a980173afb1469f4e56", "status": "passed", "attachments": [{"name": "response.headers", "source": "a36eba8b-a641-48e2-ab62-d3e190ddb43b-attachment.json", "type": "application/json"}], "start": 1775347601015, "stop": 1775347601015}], "attachments": [{"name": "cURL", "source": "08b93964-8a5c-4270-8b7b-31872c3a3e99-attachment.txt", "type": "text/plain"}], "start": 1775347601014, "stop": 1775347601015}, {"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": "c7a4abe6-7aad-49cf-a16a-27e5cc9b082f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "360f592c-3c30-42e5-8d10-31fd204e06e6-attachment.json", "type": "application/json"}], "start": 1775347601050, "stop": 1775347601050}, {"name": "Response → 200, trace_id: efe6a532302095804c697266054690d8", "status": "passed", "attachments": [{"name": "response.headers", "source": "0130ab28-4b68-4372-a841-54c6d2d021d7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f7c1230d-4a16-4280-81db-e134d0c09a8f-attachment.json", "type": "application/json"}], "start": 1775347601050, "stop": 1775347601050}], "attachments": [{"name": "cURL", "source": "48e865c9-d7c7-4793-8350-5c36728d2a80-attachment.txt", "type": "text/plain"}], "start": 1775347601050, "stop": 1775347601051}], "start": 1775347601018, "stop": 1775347601053}, {"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": "8eb7e1d8-3918-4318-abec-cad280514fab-attachment.json", "type": "application/json"}], "start": 1775347601073, "stop": 1775347601073}, {"name": "Response → 200, trace_id: 83dda7c3cc529466e7206a3f70657f49", "status": "passed", "attachments": [{"name": "response.headers", "source": "00f77897-1703-44a3-bf38-31f9062acc21-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "37aa9e3d-1c60-400d-83d9-179273836a93-attachment.json", "type": "application/json"}], "start": 1775347601073, "stop": 1775347601073}], "attachments": [{"name": "cURL", "source": "9971cca8-e37d-43a1-80ac-d34a01622510-attachment.txt", "type": "text/plain"}], "start": 1775347601073, "stop": 1775347601073}, {"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": "f1dffe9d-f3d5-4af9-8679-63e62077d015-attachment.json", "type": "application/json"}], "start": 1775347601097, "stop": 1775347601098}, {"name": "Response → 200, trace_id: 576ddf0629d0311caeb0a5441ca7487e", "status": "passed", "attachments": [{"name": "response.headers", "source": "2bb59a3b-1c3a-4240-990b-dbeb0480cc14-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "af2a9813-8949-47c0-8191-e2d3f9937c1e-attachment.json", "type": "application/json"}], "start": 1775347601098, "stop": 1775347601098}], "attachments": [{"name": "cURL", "source": "46ec35d1-d945-46a1-aee7-dba7e817d1ef-attachment.txt", "type": "text/plain"}], "start": 1775347601097, "stop": 1775347601098}, {"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.44", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4185944f-4964-4124-bc57-7a99e2c2cccd-attachment.json", "type": "application/json"}], "start": 1775347611146, "stop": 1775347611146}, {"name": "Response → 200, trace_id: 83dde1ea807f4a5b505f0ceed19e8ea2", "status": "passed", "attachments": [{"name": "response.headers", "source": "a31d67e0-9133-47f3-a4aa-febf52b1b752-attachment.json", "type": "application/json"}], "start": 1775347611146, "stop": 1775347611146}], "attachments": [{"name": "cURL", "source": "33b0b341-45b1-4907-8892-047cddf3a0e0-attachment.txt", "type": "text/plain"}], "start": 1775347611146, "stop": 1775347611146}], "start": 1775347601101, "stop": 1775347611150}, {"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": "86bf0066-950e-4655-a02c-9a6ef7a43e8d-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "41e54b41-1c42-4a66-8a27-9ec0ab1a2a5f-attachment.json", "type": "application/json"}], "start": 1775347611165, "stop": 1775347611165}], "start": 1775347611150, "stop": 1775347611165}, {"name": "Waiter function: wait_stock_return_task", "status": "passed", "start": 1775347611165, "stop": 1775347611167}], "start": 1775347601101, "stop": 1775347611167}, {"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": "683b2e8c-3b51-4cbb-b912-f923ff3d0959-attachment.json", "type": "application/json"}], "start": 1775347611199, "stop": 1775347611199}, {"name": "Response → 200, trace_id: 0dff19ee278f25cbcfa3a2e9c42c04af", "status": "passed", "attachments": [{"name": "response.headers", "source": "6e1c7ac5-f285-4b24-a0a8-0e19ae4098e0-attachment.json", "type": "application/json"}], "start": 1775347611199, "stop": 1775347611199}], "attachments": [{"name": "cURL", "source": "b9ddd7b0-2844-437c-ac33-eb90a7f94841-attachment.txt", "type": "text/plain"}], "start": 1775347611199, "stop": 1775347611199}, {"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": "aae8c85c-3418-4f02-903d-095894361aa9-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "e29aa99b-4a45-48e8-be30-4da41bdb17ab-attachment.json", "type": "application/json"}], "start": 1775347611236, "stop": 1775347611236}, {"name": "Response → 200, trace_id: d887ad47b4d6a5d7268cb9cd4be3e6fe", "status": "passed", "attachments": [{"name": "response.headers", "source": "d60a520a-a48c-433a-9735-b0fec4b67ade-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "99d5c2f8-03d9-41ec-ac8b-c334eeed512d-attachment.json", "type": "application/json"}], "start": 1775347611236, "stop": 1775347611236}], "attachments": [{"name": "cURL", "source": "3fad014a-74de-4cc3-94ce-3a115ecd0b93-attachment.txt", "type": "text/plain"}], "start": 1775347611236, "stop": 1775347611236}, {"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": "34268d89-37c8-4687-87ac-89c1ad44f2f5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "51d2e0bc-6cb2-461c-95f0-8e15f7af7fa8-attachment.json", "type": "application/json"}], "start": 1775347611299, "stop": 1775347611299}, {"name": "Response → 200, trace_id: 7c2964c8d932242281d0299b353ba7c9", "status": "passed", "attachments": [{"name": "response.headers", "source": "734f4881-77ab-420b-9f39-bc15534b8d9b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7e0875ef-47b4-4212-96b6-ba0fb298cb99-attachment.json", "type": "application/json"}], "start": 1775347611299, "stop": 1775347611299}], "attachments": [{"name": "cURL", "source": "415cf80c-9c13-48f2-a8c2-d2a8e0e0ce9c-attachment.txt", "type": "text/plain"}], "start": 1775347611299, "stop": 1775347611299}, {"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": "87fef0b1-e7dc-46ed-b571-d850a9884723-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "adf4975f-95ef-49c7-9416-fef82bcc3330-attachment.json", "type": "application/json"}], "start": 1775347611347, "stop": 1775347611347}, {"name": "Response → 200, trace_id: f2fb71b6abcb397b8382bfaa3715dd9c", "status": "passed", "attachments": [{"name": "response.headers", "source": "688efd13-3bd2-4df6-bbbc-1d94382951a8-attachment.json", "type": "application/json"}], "start": 1775347611347, "stop": 1775347611347}], "attachments": [{"name": "cURL", "source": "dd4444a9-4c3b-454f-95b1-ac753ad25f5b-attachment.txt", "type": "text/plain"}], "start": 1775347611347, "stop": 1775347611347}, {"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": "3d9bc46e-b963-4a80-ad6c-96977907ead3-attachment.json", "type": "application/json"}], "start": 1775347611371, "stop": 1775347611371}, {"name": "Response → 200, trace_id: a5e5ac621cd04c36d8d0a4b7b7a89c4b", "status": "passed", "attachments": [{"name": "response.headers", "source": "45fd3ad2-d090-4fdc-9068-cbc443c01588-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9a9d7f7c-a4de-4cc1-ba7a-a972005716b2-attachment.json", "type": "application/json"}], "start": 1775347611371, "stop": 1775347611372}], "attachments": [{"name": "cURL", "source": "4264e024-4cc2-4c22-8a1e-d6a71afd604b-attachment.txt", "type": "text/plain"}], "start": 1775347611371, "stop": 1775347611372}, {"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": "9e4badb8-756c-4785-8b22-dc4ae910e933-attachment.json", "type": "application/json"}], "start": 1775347612166, "stop": 1775347612166}, {"name": "Response → 200, trace_id: 78e43edb388a5129855feed4ec9d3e6b", "status": "passed", "attachments": [{"name": "response.headers", "source": "0f7799a0-fe87-4d50-ae08-22c61d9961f8-attachment.json", "type": "application/json"}], "start": 1775347612166, "stop": 1775347612166}], "attachments": [{"name": "cURL", "source": "ff8c6aae-1db4-4e85-8f28-a74e7082bd66-attachment.txt", "type": "text/plain"}], "start": 1775347612166, "stop": 1775347612166}, {"name": "Waiter function: wait_stock_return_task", "status": "passed", "start": 1775347612171, "stop": 1775347612172}, {"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": "8fddaa6b-ebd1-4ccd-b10c-1cdc0384bab6-attachment.json", "type": "application/json"}], "start": 1775347612215, "stop": 1775347612216}, {"name": "Response → 200, trace_id: d5201d3bc2fa4b902834b3de6328a7a6", "status": "passed", "attachments": [{"name": "response.headers", "source": "69d35b29-c759-4115-b5f4-362fcb833a41-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8c6ab107-aee0-455b-91f4-09edb15234a8-attachment.json", "type": "application/json"}], "start": 1775347612216, "stop": 1775347612216}], "attachments": [{"name": "cURL", "source": "23492ee1-0eae-4890-8df9-53d39f0c13bb-attachment.txt", "type": "text/plain"}], "start": 1775347612215, "stop": 1775347612216}, {"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": "0145fc9a-37e6-4423-b2e2-9bec475e4088-attachment.json", "type": "application/json"}], "start": 1775347612286, "stop": 1775347612287}, {"name": "Response → 200, trace_id: c6b3f9f8ded8f1a4ff4766a4ea7387ee", "status": "passed", "attachments": [{"name": "response.headers", "source": "5574ee12-98b7-4bc7-a307-9fe53e8b5252-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "87ab0a83-4ac8-46ea-8425-f21c44dc3c41-attachment.json", "type": "application/json"}], "start": 1775347612287, "stop": 1775347612287}], "attachments": [{"name": "cURL", "source": "ce1a8f87-aa2d-4ee2-9f72-7573057175e2-attachment.txt", "type": "text/plain"}], "start": 1775347612286, "stop": 1775347612287}, {"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": "6c2ae675-26bc-445f-8e94-800bc0f79b24-attachment.json", "type": "application/json"}], "start": 1775347612340, "stop": 1775347612340}, {"name": "Response → 200, trace_id: 84aa66bedf5ccf3c732da9e0ebf652cf", "status": "passed", "attachments": [{"name": "response.headers", "source": "f4988fe9-ea8a-455b-b8f5-15776ab013a4-attachment.json", "type": "application/json"}], "start": 1775347612340, "stop": 1775347612340}], "attachments": [{"name": "cURL", "source": "7529cc65-64f2-45af-87d5-f01a26d991e2-attachment.txt", "type": "text/plain"}], "start": 1775347612340, "stop": 1775347612341}, {"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": "5b2a4024-0e48-44a8-ba9a-00bab5a322ff-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "875e814f-0f0a-454b-8ff8-e1d716043f6b-attachment.json", "type": "application/json"}], "start": 1775347612380, "stop": 1775347612380}, {"name": "Response → 200, trace_id: 24391095edd8cd803a3801412ff50a71", "status": "passed", "attachments": [{"name": "response.headers", "source": "23509e89-278b-4560-b414-5a7c57df2695-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "49000221-1230-427c-9108-9acbc530d88b-attachment.json", "type": "application/json"}], "start": 1775347612380, "stop": 1775347612380}], "attachments": [{"name": "cURL", "source": "9a60d526-9319-4ce0-b901-903b500b533f-attachment.txt", "type": "text/plain"}], "start": 1775347612380, "stop": 1775347612380}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/placement/cell/MA1-1-1-01/sku/104006/finish", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e9c987ca-0a6b-4d5d-a24f-14ad652cd839-attachment.json", "type": "application/json"}], "start": 1775347612426, "stop": 1775347612426}, {"name": "Response → 200, trace_id: 7c16ee724ec989fe699bf36f5682c2ae", "status": "passed", "attachments": [{"name": "response.headers", "source": "d8495ff8-618b-4451-9cd4-d45e409e970a-attachment.json", "type": "application/json"}], "start": 1775347612426, "stop": 1775347612426}], "attachments": [{"name": "cURL", "source": "bc9eee2f-bf15-46e0-962b-a5d833b7305c-attachment.txt", "type": "text/plain"}], "start": 1775347612426, "stop": 1775347612426}, {"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": "b4c46a07-7859-4bfc-8c0e-d5353500db6e-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "48ec4b58-c866-4dc9-bbd5-dec2181e3771-attachment.json", "type": "application/json"}], "start": 1775347612440, "stop": 1775347612440}], "start": 1775347612435, "stop": 1775347612440}, {"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": "d0a0950c-d969-40f4-849c-cf88eac8aa65-attachment.json", "type": "application/json"}], "start": 1775347612548, "stop": 1775347612548}, {"name": "Response → 500, trace_id: f830048ef4f159165dc2a40cdf54d442", "status": "passed", "attachments": [{"name": "response.headers", "source": "c0723de5-32b6-4270-a922-21510c5ac12f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6517dbc7-dddd-4a85-908b-e6437b02631b-attachment.json", "type": "application/json"}], "start": 1775347612548, "stop": 1775347612548}], "attachments": [{"name": "cURL", "source": "bded4424-7377-49a6-9f9f-c7230279dd18-attachment.txt", "type": "text/plain"}], "start": 1775347612548, "stop": 1775347612548}], "attachments": [{"name": "log", "source": "16158f24-2fb5-49ae-9217-41d59215d68a-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": 1775347597093, "stop": 1775347612549, "uuid": "802095be-2bb7-473d-a353-ed9c58327ca9", "historyId": "8fa4766cfbaa0e7e6b6a2eea5c84d767", "testCaseId": "580c2c7f97a46487501cb0a1002d22d3", "fullName": "tests.wms.test_assembly.test_stock_return.TestStockReturn#test_stock_return_mono", "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"]}