{"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-06T00:00:14.995+00:00\",\"status\":500,\"error\":\"Internal Server Error\",\"message\":\"Orders are not cancelled: [8907810]\",\"path\":\"/stock-return/placement/complete\",\"localizedMessage\":\"Не удалось отменить заказы: [8907810]\"}; \n X-Aer-Trace-Id: 75a8194383e6d6bbddce83183b65a66b", "trace": "self = <tests.wms.test_assembly.test_stock_return.TestStockReturn object at 0x71d634bab490>\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 0x71d62cc7a910>)\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 0x71d62cbcfc10>\nresource_path = '/stock-return/placement/complete', method = 'POST'\npath_params = {}, query_params = []\nheader_params = {'Accept': 'application/json', 'Authorization': 'Bearer 4a27e4ee-44ae-4403-adcb-b7ad20a6f6fe', '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-06T00:00:14.995+00:00\",\"status\":500,\"error\":\"Internal Server Error\",\"message\":\"Orders are not cancelled: [8907810]\",\"path\":\"/stock-return/placement/complete\",\"localizedMessage\":\"Не удалось отменить заказы: [8907810]\"}; \nE            X-Aer-Trace-Id: 75a8194383e6d6bbddce83183b65a66b\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": "478cb21f-fc76-4a7b-8273-ba79f6ee3805-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "78821a00-da79-47ae-a7ab-0b1276dcc667-attachment.json", "type": "application/json"}], "start": 1775433599598, "stop": 1775433599598}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "5cb09541-9228-4b55-ab4d-4450f563a858-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "15e6f0cd-b263-4445-8f8f-bea913652eeb-attachment.json", "type": "application/json"}], "start": 1775433599606, "stop": 1775433599606}], "start": 1775433599598, "stop": 1775433599610}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "c5466e59-fc83-40b7-bbd3-8648b2023eaa-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "8fe5ec09-f54d-419c-8059-40a8c8a949ab-attachment.json", "type": "application/json"}], "start": 1775433599617, "stop": 1775433599617}, {"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": "5f5d8e35-5870-41a6-885d-eec30a7bdaaf-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "124c7d2c-eb63-4e1b-8b5d-ce4039919967-attachment.json", "type": "application/json"}], "start": 1775433599650, "stop": 1775433599650}, {"name": "Response → 200, trace_id: 4b433bd4636280a8c6359343aacccfb0", "status": "passed", "attachments": [{"name": "response.headers", "source": "99ff4ccb-41cb-423d-a75e-75d8f2aa024f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f488c8b6-e688-4822-aacf-0f3be66862dc-attachment.json", "type": "application/json"}], "start": 1775433599650, "stop": 1775433599651}], "attachments": [{"name": "cURL", "source": "dd429282-4620-4c8f-aabc-d45c9f88bab3-attachment.txt", "type": "text/plain"}], "start": 1775433599650, "stop": 1775433599651}], "start": 1775433599618, "stop": 1775433599653}], "start": 1775433599583, "stop": 1775433599653}, {"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": "28b537c6-b8be-4f66-bc01-58ed882d754e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7bd8dfee-43dc-4bc8-9a5d-c4d6f45fe551-attachment.json", "type": "application/json"}], "start": 1775433599683, "stop": 1775433599683}, {"name": "Response → 200, trace_id: 125c76528cdd300fff35f4c5e7b3ae64", "status": "passed", "attachments": [{"name": "response.headers", "source": "0e41c658-3db3-49a6-b0a4-e3e4ef00ad2b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "02afe402-7cc9-41bc-a10a-5ff68be38b36-attachment.json", "type": "application/json"}], "start": 1775433599683, "stop": 1775433599683}], "attachments": [{"name": "cURL", "source": "c1ebb9f5-e44b-4fb3-88f0-213adb9eb3a1-attachment.txt", "type": "text/plain"}], "start": 1775433599683, "stop": 1775433599683}], "start": 1775433599653, "stop": 1775433599686}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/ff/publish/order", "status": "passed", "attachments": [{"name": "Request", "source": "b667c521-25e1-4b9e-991a-cfd70eb42576-attachment.json", "type": "application/json"}, {"name": "Response", "source": "0b19c146-5776-41be-8385-1e2fbb9a9bf4-attachment.json", "type": "application/json"}], "start": 1775433599690, "stop": 1775433599704}, {"name": "Waiter function: wait_order_order", "status": "passed", "start": 1775433599704, "stop": 1775433602707}, {"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": "9ee43ac5-3769-4c8a-960f-8797f229a1d3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5ae9c61f-f927-4ed1-933a-a09e665effcf-attachment.json", "type": "application/json"}], "start": 1775433602742, "stop": 1775433602742}, {"name": "Response → 200, trace_id: a31629be0219c244c16d3e2032350e0a", "status": "passed", "attachments": [{"name": "response.headers", "source": "e8489b54-84f8-4064-8336-e0c81dc7cacf-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a79ebc09-37cd-4b8d-a7d8-170cfc299b36-attachment.json", "type": "application/json"}], "start": 1775433602742, "stop": 1775433602742}], "attachments": [{"name": "cURL", "source": "7c080e87-dc37-4b22-a9ba-4b7f549260b8-attachment.txt", "type": "text/plain"}], "start": 1775433602742, "stop": 1775433602742}, {"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": "47bb18e0-ee7e-4f5e-8dcd-2c564d531a8b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7f79649f-c00d-4fa3-8567-30e5d042fad2-attachment.json", "type": "application/json"}], "start": 1775433602787, "stop": 1775433602787}, {"name": "Response → 200, trace_id: 33a5783263ba4e78cd021a8c8b1e5031", "status": "passed", "attachments": [{"name": "response.headers", "source": "e6976077-5988-4c09-91c4-48f645a74753-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b4eb78b2-c414-418c-8599-ed2c809d9ae9-attachment.json", "type": "application/json"}], "start": 1775433602787, "stop": 1775433602787}], "attachments": [{"name": "cURL", "source": "4f2ca435-b367-4a6c-b3ec-33cb9ea41271-attachment.txt", "type": "text/plain"}], "start": 1775433602786, "stop": 1775433602787}, {"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": "befb1de7-1f41-405b-8cc2-89590bce86d8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f7d615a8-9829-4524-be0d-75a74fd6ef92-attachment.json", "type": "application/json"}], "start": 1775433602832, "stop": 1775433602833}, {"name": "Response → 200, trace_id: f20d41f596367e90f20d1588af17564f", "status": "passed", "attachments": [{"name": "response.headers", "source": "4a409803-fae2-427f-b292-538c5cea9b45-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c4476912-ab64-4954-a34a-a3cd0e28c8ac-attachment.json", "type": "application/json"}], "start": 1775433602833, "stop": 1775433602833}], "attachments": [{"name": "cURL", "source": "024f538e-d86e-4a9e-a682-6b9ead752231-attachment.txt", "type": "text/plain"}], "start": 1775433602832, "stop": 1775433602833}, {"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": "b4f04689-b659-49d2-92cf-5aab7e40cd75-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "251f155b-3eba-475e-a1a4-184453a0da34-attachment.json", "type": "application/json"}], "start": 1775433602878, "stop": 1775433602878}, {"name": "Response → 200, trace_id: dd78c97b7d73a27364d643fc23107d00", "status": "passed", "attachments": [{"name": "response.headers", "source": "f1787eda-358a-4492-ab69-7ec7ec41e0b6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fe9f2442-e91d-4f51-840e-949c506f6c10-attachment.json", "type": "application/json"}], "start": 1775433602878, "stop": 1775433602878}], "attachments": [{"name": "cURL", "source": "84efacdc-5037-4ca1-b73e-9e80993b8421-attachment.txt", "type": "text/plain"}], "start": 1775433602878, "stop": 1775433602878}, {"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": "dc2b80a3-3e1f-4e9b-8215-ab61637a45fa-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "af0fe4c6-7224-4f70-a42d-1e6e96976cb1-attachment.json", "type": "application/json"}], "start": 1775433602918, "stop": 1775433602918}, {"name": "Response → 200, trace_id: d58ee0bad69440a521e041ab255afe1d", "status": "passed", "attachments": [{"name": "response.headers", "source": "44c04b83-152c-4f0e-b65b-825d6625a349-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1aaacbf1-9dfb-4df5-b42b-6505886f442a-attachment.json", "type": "application/json"}], "start": 1775433602918, "stop": 1775433602919}], "attachments": [{"name": "cURL", "source": "e612cb40-ebb5-471b-bf4e-652f2acf651d-attachment.txt", "type": "text/plain"}], "start": 1775433602918, "stop": 1775433602919}, {"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": "48003742-dfc7-49b7-867a-23a82c409239-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f9a14599-f936-459f-853e-6ecafe1a52ea-attachment.json", "type": "application/json"}], "start": 1775433602949, "stop": 1775433602949}, {"name": "Response → 200, trace_id: c2fe87192b162f2bb64ef8c36c3ef595", "status": "passed", "attachments": [{"name": "response.headers", "source": "0e67d853-cb9a-4d58-ac88-6f6bbdd27097-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "851c9a3e-24ce-435b-be52-c89fde6ad7cf-attachment.txt", "type": "text/plain"}], "start": 1775433602950, "stop": 1775433602950}], "attachments": [{"name": "cURL", "source": "6538b819-abb8-4b0c-bfdc-400150ec23f9-attachment.txt", "type": "text/plain"}], "start": 1775433602949, "stop": 1775433602950}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492900&pickingTaskKey=d05740a7f8d4860c5aa661d542cc1071a664433ca56e2eca3c9a932db973daef", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "64f57aea-be3c-4165-ae3e-91ff9b3c7d39-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "fd7b6a6d-2b5e-4d85-b2d7-2619e6a59d15-attachment.json", "type": "application/json"}], "start": 1775433602980, "stop": 1775433602980}, {"name": "Response → 200, trace_id: 36cf75713af0e06efd6966e7a23676e9", "status": "passed", "attachments": [{"name": "response.headers", "source": "778a43cd-532f-4139-82f4-bdf241d8f0ec-attachment.json", "type": "application/json"}], "start": 1775433602980, "stop": 1775433602980}], "attachments": [{"name": "cURL", "source": "e682441b-7a1e-4fd1-8b88-5fea84e30d44-attachment.txt", "type": "text/plain"}], "start": 1775433602980, "stop": 1775433602980}, {"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": "831e2389-626b-4614-b6f0-731de75c8740-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "981cf75c-ffeb-4758-84c8-00e0a1d7357b-attachment.json", "type": "application/json"}], "start": 1775433603014, "stop": 1775433603014}, {"name": "Response → 200, trace_id: 3b7fb536e8f1d5b24352d17a5e161ee3", "status": "passed", "attachments": [{"name": "response.headers", "source": "35a36b1c-2a4d-4b08-a027-3ca42cdec41f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "dcd12876-45b9-4750-9475-a6317f52cf0e-attachment.json", "type": "application/json"}], "start": 1775433603014, "stop": 1775433603014}], "attachments": [{"name": "cURL", "source": "274ffa97-792c-4009-b82e-35347c9c40c5-attachment.txt", "type": "text/plain"}], "start": 1775433603014, "stop": 1775433603014}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=d05740a7f8d4860c5aa661d542cc1071a664433ca56e2eca3c9a932db973daef&skuId=4100000000000053220&cellBarcode=QA-75433598060154368&cellId=488360", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5f8db7e4-29a5-4686-8762-9cd8e48ecf6a-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "913fbd7e-c85d-4d65-a3dd-189811f1a44d-attachment.json", "type": "application/json"}], "start": 1775433603072, "stop": 1775433603072}, {"name": "Response → 200, trace_id: b609813fc521a6117259fc17a248dfdc", "status": "passed", "attachments": [{"name": "response.headers", "source": "9b3d3225-d52a-40e9-b645-3aa612a01155-attachment.json", "type": "application/json"}], "start": 1775433603072, "stop": 1775433603073}], "attachments": [{"name": "cURL", "source": "eb6eced8-4ae6-4a00-b88b-0134090c4b27-attachment.txt", "type": "text/plain"}], "start": 1775433603072, "stop": 1775433603073}, {"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": "2d1f49ca-4bc2-45e7-bf89-e5d623115419-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "2813d70f-f46d-47d9-adcb-ef545e1c1fc3-attachment.json", "type": "application/json"}], "start": 1775433603104, "stop": 1775433603104}, {"name": "Response → 200, trace_id: dac85dcb33cb691a65fc1c2125cd0306", "status": "passed", "attachments": [{"name": "response.headers", "source": "7747310d-b280-4d19-b7cd-6c3cc2dfef94-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "bccbfd97-d545-4fe6-aea5-b2eadc681ad6-attachment.json", "type": "application/json"}], "start": 1775433603104, "stop": 1775433603104}], "attachments": [{"name": "cURL", "source": "99896bfb-e328-47f7-baa9-a8af656ab531-attachment.txt", "type": "text/plain"}], "start": 1775433603104, "stop": 1775433603104}, {"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": "5850f461-bf29-4978-859b-760b3d73f980-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3e8ddca8-d1bc-418c-8805-ab53fd50e451-attachment.json", "type": "application/json"}], "start": 1775433603132, "stop": 1775433603132}, {"name": "Response → 200, trace_id: 1e774c9a0976a45323c5c1a7b9951777", "status": "passed", "attachments": [{"name": "response.headers", "source": "08a942aa-e611-4853-9da0-dbb975987288-attachment.json", "type": "application/json"}], "start": 1775433603132, "stop": 1775433603132}], "attachments": [{"name": "cURL", "source": "3ba63954-1dfb-42c3-a5c8-bba3927d07ac-attachment.txt", "type": "text/plain"}], "start": 1775433603132, "stop": 1775433603133}, {"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": "75e84669-e80e-4488-9d30-4bd5c03e3c51-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "97150bfb-ad93-483b-b888-37bb0e05b385-attachment.json", "type": "application/json"}], "start": 1775433603198, "stop": 1775433603198}, {"name": "Response → 200, trace_id: 87862856b1d02a6093e35adec3b9a6aa", "status": "passed", "attachments": [{"name": "response.headers", "source": "d53431bb-14af-4add-b192-3b6babf24b94-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "57bc6aca-ee09-4911-a6e6-b05a6bfa74b9-attachment.json", "type": "application/json"}], "start": 1775433603198, "stop": 1775433603198}], "attachments": [{"name": "cURL", "source": "1f6a2188-2ce4-40e8-a87f-393a0723f029-attachment.txt", "type": "text/plain"}], "start": 1775433603198, "stop": 1775433603198}], "start": 1775433603137, "stop": 1775433603201}, {"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": "07ebda9d-ef33-4e11-8a9f-2d58b6ede812-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "76a0f0bc-4083-4be2-a763-6410ee793fce-attachment.json", "type": "application/json"}], "start": 1775433603264, "stop": 1775433603264}, {"name": "Response → 200, trace_id: 53ce3e7cf379a8965dae69009e32e6ec", "status": "passed", "attachments": [{"name": "response.headers", "source": "1dc191d4-a345-43f7-8b8d-787ddb2aef6c-attachment.json", "type": "application/json"}], "start": 1775433603264, "stop": 1775433603264}], "attachments": [{"name": "cURL", "source": "2f996752-2e59-4382-9e7b-016c66f44d24-attachment.txt", "type": "text/plain"}], "start": 1775433603264, "stop": 1775433603264}, {"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": "821c4a9e-8e16-49f6-8807-b4a186199c10-attachment.json", "type": "application/json"}, {"name": "Response", "source": "543ef511-243a-4590-b57a-aa3e3c9f235b-attachment.json", "type": "application/json"}], "start": 1775433603267, "stop": 1775433603303}, {"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": "07e10c4b-2ea5-4f45-b254-7a7387d9e7d5-attachment.json", "type": "application/json"}, {"name": "Response", "source": "d081855a-8b3d-4f7c-a3b8-8d569a133e5b-attachment.json", "type": "application/json"}], "start": 1775433603304, "stop": 1775433603349}, {"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": "27b97b0e-4f7a-4f13-bae6-d0c61989bd9b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "39599085-ea91-4832-9fc3-bed8ecd80bd9-attachment.json", "type": "application/json"}], "start": 1775433603397, "stop": 1775433603397}, {"name": "Response → 200, trace_id: e07ee7125a56f0135ee0da2331cedb1a", "status": "passed", "attachments": [{"name": "response.headers", "source": "f8399f36-6f3d-4c10-9f11-683dc2d7d411-attachment.json", "type": "application/json"}], "start": 1775433603397, "stop": 1775433603397}], "attachments": [{"name": "cURL", "source": "5b5da968-2c6f-4c06-84ef-8c9f2823b45b-attachment.txt", "type": "text/plain"}], "start": 1775433603397, "stop": 1775433603397}, {"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": "0958766b-cbe3-476d-b6cf-d45df206621f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3becfb5e-a095-43f6-be5a-2bc6c19390bf-attachment.json", "type": "application/json"}], "start": 1775433603425, "stop": 1775433603425}, {"name": "Response → 200, trace_id: 93f618892d90b1170693e2b365417b44", "status": "passed", "attachments": [{"name": "response.headers", "source": "0927ff6d-966c-4167-a76b-405ac297c6cc-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2a1d3c67-25fd-47ed-9403-e2e6af232b13-attachment.json", "type": "application/json"}], "start": 1775433603426, "stop": 1775433603426}], "attachments": [{"name": "cURL", "source": "591b1ca8-dabc-454b-a21a-61adf196b982-attachment.txt", "type": "text/plain"}], "start": 1775433603425, "stop": 1775433603426}, {"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": "bc610067-5b95-4aa3-b612-d3eff265533f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "15124b78-6239-4339-8be8-5a9674b6368b-attachment.json", "type": "application/json"}], "start": 1775433603478, "stop": 1775433603478}, {"name": "Response → 200, trace_id: b08f430bcbd249224b4e249a8aace5e1", "status": "passed", "attachments": [{"name": "response.headers", "source": "5e7120f8-ea66-4ef3-bb06-7a56c7273e89-attachment.json", "type": "application/json"}], "start": 1775433603478, "stop": 1775433603478}], "attachments": [{"name": "cURL", "source": "3d8a523e-32c7-4add-b57d-73518a600200-attachment.txt", "type": "text/plain"}], "start": 1775433603478, "stop": 1775433603478}, {"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": "b008b19a-c32b-4ada-89ae-2b9fa3d9e8ee-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e3119e88-67dd-4003-a474-41fe28b096c6-attachment.json", "type": "application/json"}], "start": 1775433603512, "stop": 1775433603512}, {"name": "Response → 200, trace_id: ad4c1833365487bd2901096a3e6f0e6c", "status": "passed", "attachments": [{"name": "response.headers", "source": "f15bb9cc-884f-429f-a343-3d991c2c3fe2-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "98dbcacd-ffb3-4b5b-a57f-6e60e892c050-attachment.json", "type": "application/json"}], "start": 1775433603512, "stop": 1775433603512}], "attachments": [{"name": "cURL", "source": "0ad5d8f6-b679-44c8-979d-7e5603216beb-attachment.txt", "type": "text/plain"}], "start": 1775433603512, "stop": 1775433603512}], "start": 1775433603481, "stop": 1775433603515}, {"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": "47a8e729-c3e9-4bd2-8e1f-bf8692cdb179-attachment.json", "type": "application/json"}], "start": 1775433603533, "stop": 1775433603533}, {"name": "Response → 200, trace_id: 34355a1f30a3c148fa86217c7ead76ad", "status": "passed", "attachments": [{"name": "response.headers", "source": "2fa0b2e9-24b2-4f18-983e-38ab4e0c7a19-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7018edb0-e368-4f9b-8a2f-25a57d9c1354-attachment.json", "type": "application/json"}], "start": 1775433603533, "stop": 1775433603534}], "attachments": [{"name": "cURL", "source": "47feb90e-083b-4849-a1ac-84367cb7fffd-attachment.txt", "type": "text/plain"}], "start": 1775433603533, "stop": 1775433603534}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "bb502660-d9b5-4197-9037-ff310878f154-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "867942c9-5fd5-48a9-94bf-e577bfa2ce64-attachment.json", "type": "application/json"}], "start": 1775433603549, "stop": 1775433603549}, {"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "b5d961b0-d61b-4921-a018-ee9a2daf7b07-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "7a134be2-7687-46dc-a798-b3d3ed2e363b-attachment.json", "type": "application/json"}], "start": 1775433603557, "stop": 1775433603557}, {"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": "b78b78a1-869e-404d-b584-82d1574e8b46-attachment.json", "type": "application/json"}], "start": 1775433603581, "stop": 1775433603581}, {"name": "Response → 200, trace_id: bcaca1cc4a5ed1eab26daa5b489a5c3a", "status": "passed", "attachments": [{"name": "response.headers", "source": "84bad725-7282-4195-b797-26788da337b6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "17c8efd5-d6d8-4604-9904-91f286eac955-attachment.json", "type": "application/json"}], "start": 1775433603581, "stop": 1775433603581}], "attachments": [{"name": "cURL", "source": "9833c160-0c63-46f1-9cdb-e63c26cb2240-attachment.txt", "type": "text/plain"}], "start": 1775433603581, "stop": 1775433603581}, {"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": "7108031e-00c4-4dc9-b35d-9981919d31f5-attachment.json", "type": "application/json"}], "start": 1775433613622, "stop": 1775433613622}, {"name": "Response → 200, trace_id: 2507236662716848c7db424f8ce42526", "status": "passed", "attachments": [{"name": "response.headers", "source": "ac6280d1-ef61-4736-ab80-c09dc259f1b8-attachment.json", "type": "application/json"}], "start": 1775433613622, "stop": 1775433613622}], "attachments": [{"name": "cURL", "source": "8efca253-dde5-4415-a69e-49535c6b330c-attachment.txt", "type": "text/plain"}], "start": 1775433613622, "stop": 1775433613623}], "start": 1775433603583, "stop": 1775433613626}, {"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": "996d42bf-063a-43ed-9156-e1d357c24029-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "dcc22ac3-000f-4f37-b49a-7d5208433aeb-attachment.json", "type": "application/json"}], "start": 1775433613632, "stop": 1775433613632}], "start": 1775433613626, "stop": 1775433613632}, {"name": "Waiter function: wait_stock_return_task", "status": "passed", "start": 1775433613632, "stop": 1775433613634}], "start": 1775433603583, "stop": 1775433613634}, {"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": "b6e074ba-43f7-4e26-961b-3fc8d4126a31-attachment.json", "type": "application/json"}], "start": 1775433613665, "stop": 1775433613666}, {"name": "Response → 200, trace_id: b139dbc78714dbfda56fe3f624b15bbb", "status": "passed", "attachments": [{"name": "response.headers", "source": "e869e7d8-8849-46ee-a500-37447d209117-attachment.json", "type": "application/json"}], "start": 1775433613666, "stop": 1775433613666}], "attachments": [{"name": "cURL", "source": "42f22d62-e0b5-47da-a4c5-b90cc72f2697-attachment.txt", "type": "text/plain"}], "start": 1775433613665, "stop": 1775433613666}, {"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": "df0397d2-b595-43b2-a009-4bd0085f520b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "dd247901-f891-407d-8650-081189ae48e5-attachment.json", "type": "application/json"}], "start": 1775433613700, "stop": 1775433613700}, {"name": "Response → 200, trace_id: 9c578690ec62d15071e4710002926272", "status": "passed", "attachments": [{"name": "response.headers", "source": "f2634974-ecfc-4c56-8397-f5951d23173a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "cf8f943a-677c-4cbe-b39c-35da37823bb7-attachment.json", "type": "application/json"}], "start": 1775433613700, "stop": 1775433613701}], "attachments": [{"name": "cURL", "source": "c52e24e8-6605-4ccd-a864-77e0ec847261-attachment.txt", "type": "text/plain"}], "start": 1775433613700, "stop": 1775433613701}, {"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": "c8d3a8c8-4bae-40a1-af53-6726c48da700-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "53354091-ed84-4a3c-af3c-d7c10861dd85-attachment.json", "type": "application/json"}], "start": 1775433613756, "stop": 1775433613757}, {"name": "Response → 200, trace_id: d2b32eff039144d57a5b8bad9d412562", "status": "passed", "attachments": [{"name": "response.headers", "source": "e7cd9bc8-0039-4343-8022-930e540a2fa5-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "38eb33c4-2ac8-470e-966d-8c058877c061-attachment.json", "type": "application/json"}], "start": 1775433613757, "stop": 1775433613757}], "attachments": [{"name": "cURL", "source": "78f953ea-d3b2-414f-bf0a-5a15055f02a6-attachment.txt", "type": "text/plain"}], "start": 1775433613756, "stop": 1775433613757}, {"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": "c21b3941-5ace-4060-8376-0b73d8a75fea-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "af51ddb4-66b7-4f91-8cac-68d20aad60d1-attachment.json", "type": "application/json"}], "start": 1775433613807, "stop": 1775433613808}, {"name": "Response → 200, trace_id: c72cfcabcf869dd6a40c443ed2b6aaad", "status": "passed", "attachments": [{"name": "response.headers", "source": "0d645a08-d24f-4484-a93c-28e7702ca866-attachment.json", "type": "application/json"}], "start": 1775433613808, "stop": 1775433613808}], "attachments": [{"name": "cURL", "source": "c107cde9-4a7f-4da8-951d-836565ce3327-attachment.txt", "type": "text/plain"}], "start": 1775433613807, "stop": 1775433613808}, {"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": "6a788215-42b1-454e-a203-d4a899cfbc5b-attachment.json", "type": "application/json"}], "start": 1775433613831, "stop": 1775433613832}, {"name": "Response → 200, trace_id: 1a6580c72386e84749d21915aeaa7594", "status": "passed", "attachments": [{"name": "response.headers", "source": "f2c7937a-d13a-424d-a682-3dcc881da0cf-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c0e75ced-9f1e-4e9b-944c-0d73b48f529c-attachment.json", "type": "application/json"}], "start": 1775433613832, "stop": 1775433613832}], "attachments": [{"name": "cURL", "source": "a6222d74-b62e-4ed4-9d7c-bada386d69d5-attachment.txt", "type": "text/plain"}], "start": 1775433613831, "stop": 1775433613832}, {"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": "27c1bd60-dc41-478f-aac2-7a332d6a2020-attachment.json", "type": "application/json"}], "start": 1775433614638, "stop": 1775433614638}, {"name": "Response → 200, trace_id: 29de0614c66c11b01d37f5fb3b3a15f9", "status": "passed", "attachments": [{"name": "response.headers", "source": "49229021-92a3-465f-a70c-e70a27a68abb-attachment.json", "type": "application/json"}], "start": 1775433614638, "stop": 1775433614638}], "attachments": [{"name": "cURL", "source": "dada2e1d-9dd5-46c5-8218-47caa2aec984-attachment.txt", "type": "text/plain"}], "start": 1775433614638, "stop": 1775433614638}, {"name": "Waiter function: wait_stock_return_task", "status": "passed", "start": 1775433614643, "stop": 1775433614643}, {"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": "821c02ea-87fa-4c5b-8d6d-514c442c8514-attachment.json", "type": "application/json"}], "start": 1775433614684, "stop": 1775433614685}, {"name": "Response → 200, trace_id: 7878a522afcf71b41da178acd7bac1d2", "status": "passed", "attachments": [{"name": "response.headers", "source": "a54f3363-9339-49e3-9fd3-b349960ec137-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "830d9572-df01-416e-8490-ce5e780c9f89-attachment.json", "type": "application/json"}], "start": 1775433614685, "stop": 1775433614685}], "attachments": [{"name": "cURL", "source": "8e117c86-694b-49f4-b98e-816b68cdd0f4-attachment.txt", "type": "text/plain"}], "start": 1775433614684, "stop": 1775433614685}, {"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": "fe95e088-7dad-4784-9ae8-35cfb56c4fc4-attachment.json", "type": "application/json"}], "start": 1775433614755, "stop": 1775433614755}, {"name": "Response → 200, trace_id: 1c14ea373ee2e69d4f6f4bfea9e26825", "status": "passed", "attachments": [{"name": "response.headers", "source": "eb93bbc2-68d3-475b-9ef2-61a985c66c99-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1f4b7ba7-a67b-4917-b93b-948c3151ba7a-attachment.json", "type": "application/json"}], "start": 1775433614755, "stop": 1775433614756}], "attachments": [{"name": "cURL", "source": "a21b1e39-dfcc-4db4-9d04-aa015bac93bd-attachment.txt", "type": "text/plain"}], "start": 1775433614755, "stop": 1775433614756}, {"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": "477c1190-55bd-4a3e-a04b-b32ccd0ae39d-attachment.json", "type": "application/json"}], "start": 1775433614805, "stop": 1775433614806}, {"name": "Response → 200, trace_id: 64d62b844578e498de3e74d3e62aff19", "status": "passed", "attachments": [{"name": "response.headers", "source": "138e31a8-8631-465c-a720-5da89cdba06f-attachment.json", "type": "application/json"}], "start": 1775433614806, "stop": 1775433614806}], "attachments": [{"name": "cURL", "source": "b24815b6-320d-4090-a29a-c6069bc890cd-attachment.txt", "type": "text/plain"}], "start": 1775433614805, "stop": 1775433614806}, {"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": "7af43719-4d02-4ac4-ac5a-08df624ea089-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "448c424c-330e-41ca-ad97-e7c9d5a5f8e9-attachment.json", "type": "application/json"}], "start": 1775433614842, "stop": 1775433614842}, {"name": "Response → 200, trace_id: 04f7a10f4af54438ef2eac1d23202c22", "status": "passed", "attachments": [{"name": "response.headers", "source": "88cc565a-11b0-4362-b050-253e821e4814-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "34ac4a9b-deb2-4ed9-ba79-0594a114a9ec-attachment.json", "type": "application/json"}], "start": 1775433614842, "stop": 1775433614842}], "attachments": [{"name": "cURL", "source": "3cde23ed-0efb-4f0e-97bf-f60b94a5ca64-attachment.txt", "type": "text/plain"}], "start": 1775433614842, "stop": 1775433614842}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/placement/cell/MA1-1-1-01/sku/104020/finish", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "22f3ae88-a709-47bc-94bf-d0834e03973f-attachment.json", "type": "application/json"}], "start": 1775433614884, "stop": 1775433614885}, {"name": "Response → 200, trace_id: 65be63ebb7ac66a12a356219260cc29f", "status": "passed", "attachments": [{"name": "response.headers", "source": "315e42fc-a50f-44cb-bc41-af697bff75d9-attachment.json", "type": "application/json"}], "start": 1775433614885, "stop": 1775433614885}], "attachments": [{"name": "cURL", "source": "328936cc-a0ce-4408-b2df-87daced8173e-attachment.txt", "type": "text/plain"}], "start": 1775433614884, "stop": 1775433614885}, {"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": "a4048c32-f9e4-4d26-a24d-556deb176621-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "37080225-05df-4b31-b50a-17c68505de28-attachment.json", "type": "application/json"}], "start": 1775433614896, "stop": 1775433614896}], "start": 1775433614892, "stop": 1775433614896}, {"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": "6d3c99fd-dd69-431b-8ae8-cd46408ad564-attachment.json", "type": "application/json"}], "start": 1775433614997, "stop": 1775433614997}, {"name": "Response → 500, trace_id: 75a8194383e6d6bbddce83183b65a66b", "status": "passed", "attachments": [{"name": "response.headers", "source": "4fedb4bf-2ca5-4986-91df-2b661b51ec77-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8d985d81-5e6e-47ec-ac1c-1aa17946f186-attachment.json", "type": "application/json"}], "start": 1775433614997, "stop": 1775433614997}], "attachments": [{"name": "cURL", "source": "469416ba-0e7b-4fb2-a843-873a038732f6-attachment.txt", "type": "text/plain"}], "start": 1775433614997, "stop": 1775433614997}], "attachments": [{"name": "log", "source": "2c51c89e-beb7-40a3-a17b-fe10a3197483-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": 1775433599583, "stop": 1775433614998, "uuid": "ee7fd3e1-8e6c-4649-9133-f0fbf82f0aa4", "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-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"]}