{"name": "test_e2e_inbound[wms_inbound_e2e3-params0]", "status": "failed", "statusDetails": {"message": "AssertionError: invoice 7543283650 not in status: INVOICE_DOC_REQUESTED, actual status: READY_FOR_DECLARATION\nassert 'READY_FOR_DECLARATION' == <WMSInvoiceSt...OC_REQUESTED'>\n  \n  - INVOICE_DOC_REQUESTED\n  + READY_FOR_DECLARATION", "trace": "self = <tests.wms.test_e2e_inbound.test_inbound.TestE2EInbound object at 0x757ee06e9e50>\nparams = {'barcode_count': 3, 'quantity': 9, 'sku_amount': 1}\nwms_inbound_e2e = {'cell': <src.framework.wms.builders.db.cell.AvailableCell object at 0x757edb524490>, 'count_types': {'defected': Fals...01: 'UP-AUTOTEST-01'>, packing_zone_id='', qa_zone=<WMSZoneIds.QA_UZ_ZONE: 31>, email=None, phone=None), 'zone_id': 31}\n\n    @pytest.mark.parametrize(\n        \"params\", [{\"sku_amount\": randint(1, 3), \"barcode_count\": randint(2, 5), \"quantity\": randint(3, 10)}]\n    )\n    @pytest.mark.parametrize(\n        \"wms_inbound_e2e\",\n        [\n            {\n                \"warehouse\": WMSWarehouses.Troitsk.value,\n                \"zone_id\": WMSWarehouses.Troitsk.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": True,\n                    \"defected\": False,\n                    \"overage\": False,\n                    \"zero\": False,\n                },\n            },\n            {\n                \"warehouse\": WMSWarehouses.Troitsk.value,\n                \"zone_id\": WMSWarehouses.Troitsk.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": True,\n                    \"defected\": True,\n                    \"overage\": True,\n                    \"zero\": False,\n                },\n            },\n            {\n                \"warehouse\": WMSWarehouses.Troitsk.value,\n                \"zone_id\": WMSWarehouses.Troitsk.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": False,\n                    \"defected\": False,\n                    \"overage\": False,\n                    \"zero\": True,\n                },\n            },\n            # Uzbekistan proper\n            {\n                \"warehouse\": WMSWarehouses.Uzbekistan.value,\n                \"zone_id\": WMSWarehouses.Uzbekistan.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": True,\n                    \"defected\": False,\n                    \"overage\": False,\n                    \"zero\": False,\n                },\n            },\n            {\n                \"warehouse\": WMSWarehouses.Uzbekistan.value,\n                \"zone_id\": WMSWarehouses.Uzbekistan.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": True,\n                    \"defected\": True,\n                    \"overage\": True,\n                    \"zero\": False,\n                },\n            },\n            {\n                \"warehouse\": WMSWarehouses.Uzbekistan.value,\n                \"zone_id\": WMSWarehouses.Uzbekistan.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": False,\n                    \"defected\": False,\n                    \"overage\": False,\n                    \"zero\": True,\n                },\n            },\n        ],\n        indirect=True,\n    )\n    def test_e2e_inbound(self, params, wms_inbound_e2e):\n        invoice = WMSInvoiceBuilder(\n            warehouse=wms_inbound_e2e[\"warehouse\"],\n            proper_cell=wms_inbound_e2e[\"cell\"].key,\n        ).set_user_auth(wms_inbound_e2e[\"warehouse\"].user.token)\n        with allure.step(\"clear tasks\"):\n            AcceptanceQueries().clear_worker_tasks(worker_id=wms_inbound_e2e[\"warehouse\"].user.wms_id)\n        invoice.supply.list_with_random_items(\n            items_count=params[\"sku_amount\"],\n            sku_amount=params[\"quantity\"],\n            barcode_count=params[\"barcode_count\"],\n        )\n>       invoice.set_count_types(**wms_inbound_e2e[\"count_types\"]).full_acceptance()\n\ntests/wms/test_e2e_inbound/test_inbound.py:117: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \nsrc/framework/wms/builders/acceptance/invoice/invoice.py:791: in full_acceptance\n    (self.state_awaiting_doc().state_invoice_doc_waiting().state_invoice_doc_requested())\n     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nsrc/framework/wms/builders/acceptance/invoice/invoice.py:613: in state_invoice_doc_waiting\n    wait_invoice(self.invoice_id, status=wait_state)\nsrc/framework/common/utils/utils.py:218: in wrapped_f\n    return Retrying(\n/usr/local/lib/python3.11/site-packages/retrying.py:289: in call\n    raise attempt.get()\n          ^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/retrying.py:326: in get\n    raise exc.with_traceback(tb)\n/usr/local/lib/python3.11/site-packages/retrying.py:273: in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nsupply_id = 7543283650\nstatus = <WMSInvoiceStatus.INVOICE_DOC_REQUESTED: 'INVOICE_DOC_REQUESTED'>\n\n    @retry_on_assertion(stop_max_attempt_number=15, wait_fixed=20 * 1000)\n    def wait_invoice(\n        supply_id,\n        status: WMSInvoiceStatus = None,\n    ) -> Invoice:\n        invoice: Invoice = AcceptanceQueries().tx_query(Invoice).filter(Invoice.id == supply_id).first()\n        assert invoice, f\"No invoice created for ID: {supply_id}\"\n        if status is not None:\n>           assert invoice.status == status, f\"invoice {supply_id} not in status: {status}, actual status: {invoice.status}\"\nE           AssertionError: invoice 7543283650 not in status: INVOICE_DOC_REQUESTED, actual status: READY_FOR_DECLARATION\nE           assert 'READY_FOR_DECLARATION' == <WMSInvoiceSt...OC_REQUESTED'>\nE             \nE             - INVOICE_DOC_REQUESTED\nE             + READY_FOR_DECLARATION\n\nsrc/framework/wms/validation/waiters/acceptance.py:40: AssertionError"}, "steps": [{"name": "clear tasks", "status": "passed", "steps": [{"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "498dd48b-0ba2-4583-9875-54467fc0e69e-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "eea05205-3ff3-4842-8f87-c464a960dbc7-attachment.json", "type": "application/json"}], "start": 1775432835636, "stop": 1775432835636}, {"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "dc8d21a1-a29b-49f1-8424-b599169f1894-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "816c6047-b400-4394-9152-f5cbf52614f5-attachment.json", "type": "application/json"}], "start": 1775432835638, "stop": 1775432835639}, {"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "6a9bb56f-64d6-4dbe-acbc-4a676fc471af-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "44b07e32-31c5-47f0-b859-46d63775c9b3-attachment.json", "type": "application/json"}], "start": 1775432835639, "stop": 1775432835640}], "start": 1775432835619, "stop": 1775432835640}, {"name": "invoice creation", "status": "passed", "steps": [{"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/wms/acceptance/invoices/chunked", "status": "passed", "attachments": [{"name": "Request", "source": "b0388a96-2783-47bf-b130-830b7a4f9804-attachment.json", "type": "application/json"}, {"name": "Response", "source": "6d8ec7ff-f64d-4f77-a314-ca3db50b7b1b-attachment.json", "type": "application/json"}], "start": 1775432835644, "stop": 1775432835677}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "bfc31d82-854d-48e7-9e70-93f4d32ec480-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "c71a1e0c-9bea-494f-8271-f715c27ec9ce-attachment.json", "type": "application/json"}], "start": 1775432835683, "stop": 1775432835683}], "start": 1775432835678, "stop": 1775432835683}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "29719953-f581-4f5c-994e-80ea1d317b67-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "cb8b0bf4-b943-45e3-8058-0a1071733d26-attachment.json", "type": "application/json"}], "start": 1775432835696, "stop": 1775432835697}], "start": 1775432835683, "stop": 1775432835697}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/ff/publish/invoice/chunk", "status": "passed", "attachments": [{"name": "Request", "source": "aba1b231-8701-4b36-a198-fbda1fcc29b0-attachment.json", "type": "application/json"}, {"name": "Response", "source": "16ee60ad-e0e5-4c20-b931-c0c72ff70c92-attachment.json", "type": "application/json"}], "start": 1775432835698, "stop": 1775432835711}, {"name": "Waiter function: wait_sku_info", "status": "passed", "start": 1775432835712, "stop": 1775432837723}, {"name": "Waiter function: wait_availability_sku", "status": "passed", "start": 1775432837724, "stop": 1775432837725}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "84fec17d-7c39-431a-ad49-1dba3f0a56ac-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0ab05dd2-406c-4348-aaa2-afdc8ff5bc01-attachment.json", "type": "application/json"}], "start": 1775432837729, "stop": 1775432837729}], "start": 1775432837725, "stop": 1775432837730}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "34d6ec15-a6e6-493c-b3f9-0afb40e8a756-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "d9456ac0-0346-472d-b513-f152acb6c174-attachment.json", "type": "application/json"}], "start": 1775432837741, "stop": 1775432837741}], "start": 1775432837730, "stop": 1775432837742}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/search-invoices", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5733159c-d2cd-4d35-9849-520b756f8c2d-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "fe70c66d-3203-476e-a185-204a8965728d-attachment.json", "type": "application/json"}], "start": 1775432837822, "stop": 1775432837822}, {"name": "Response → 200, trace_id: 04879b4992dfc6eff33c55492d6e22ca", "status": "passed", "attachments": [{"name": "response.headers", "source": "6b3057dd-3a1f-4a31-930f-4b2639956622-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fd8ee9f6-5be9-429d-99ae-abe2398740fa-attachment.json", "type": "application/json"}], "start": 1775432837822, "stop": 1775432837822}], "attachments": [{"name": "cURL", "source": "0623dfee-bff4-492a-a787-44505a754733-attachment.txt", "type": "text/plain"}], "start": 1775432837822, "stop": 1775432837822}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/invoices/get-pallets", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fb89e72f-4a0d-4062-8339-f27bfbf0fe83-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "ae913fe7-d793-4ea6-b9d7-48ce357e74fb-attachment.json", "type": "application/json"}], "start": 1775432837845, "stop": 1775432837845}, {"name": "Response → 200, trace_id: 25a8325a288703be8fc6d8d23638e0aa", "status": "passed", "attachments": [{"name": "response.headers", "source": "3435444b-4ee1-484d-8f63-954c637d9809-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c69f8715-4b27-4bb4-b2d3-b44ea82ef987-attachment.json", "type": "application/json"}], "start": 1775432837845, "stop": 1775432837845}], "attachments": [{"name": "cURL", "source": "661b8f10-3e40-43d9-901b-d58be3462bb6-attachment.txt", "type": "text/plain"}], "start": 1775432837845, "stop": 1775432837845}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/arrival-invoice?invoiceBarcode=WMS7543283650", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "67b911ad-e0b8-496d-a28a-86ad8ed47aa3-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "57686a13-e689-4d11-98e0-1dc30aa323fb-attachment.json", "type": "application/json"}], "start": 1775432837933, "stop": 1775432837933}, {"name": "Response → 200, trace_id: 6e1535aaad17611db41b47aa47c0a096", "status": "passed", "attachments": [{"name": "response.headers", "source": "0bf1704b-3fa9-42f5-96d4-0db4e0228f6b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0902eb5e-947c-4be9-8dab-cb18696a32b7-attachment.json", "type": "application/json"}], "start": 1775432837933, "stop": 1775432837934}], "attachments": [{"name": "cURL", "source": "1f33ecbe-f9d9-4a48-96d6-07a9c68570ca-attachment.txt", "type": "text/plain"}], "start": 1775432837933, "stop": 1775432837934}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-pallet-to-process", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "65efc951-1806-4072-aeb4-9456ef8a33a7-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c55dc181-3a04-4a18-87e0-173cabda8cf3-attachment.json", "type": "application/json"}], "start": 1775432837986, "stop": 1775432837986}, {"name": "Response → 200, trace_id: 292246ea2e27a0575efff080d4475ac0", "status": "passed", "attachments": [{"name": "response.headers", "source": "9e9357a5-b918-4526-8e7a-46474ea6f960-attachment.json", "type": "application/json"}], "start": 1775432837986, "stop": 1775432837986}], "attachments": [{"name": "cURL", "source": "04b0c847-fab0-4bca-a107-e68c205e2c82-attachment.txt", "type": "text/plain"}], "start": 1775432837986, "stop": 1775432837986}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/link-pallet-to-zone", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ff0fd1ba-de35-4322-b36b-e7e30e22581c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "168a5642-bd0a-465b-8bf8-d8b942fc6a0e-attachment.json", "type": "application/json"}], "start": 1775432838052, "stop": 1775432838053}, {"name": "Response → 200, trace_id: 9b3d700c973c2544003503687ad20701", "status": "passed", "attachments": [{"name": "response.headers", "source": "0494879a-8c6d-4bfe-b90a-a7468c0df2d1-attachment.json", "type": "application/json"}], "start": 1775432838053, "stop": 1775432838053}], "attachments": [{"name": "cURL", "source": "d650e7ee-6b4f-43b1-b5b7-7fd4ea561c3c-attachment.txt", "type": "text/plain"}], "start": 1775432838052, "stop": 1775432838053}, {"name": "PUT → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/update-pallet-weight?palletId=12575468&weight=3025", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f8d43a19-da87-4840-9fbf-70068082c9f5-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "2600d6e1-9ec5-4c41-aece-b0edd23de321-attachment.json", "type": "application/json"}], "start": 1775432838109, "stop": 1775432838109}, {"name": "Response → 200, trace_id: c05bcfef8cd3cde912ae865570c94986", "status": "passed", "attachments": [{"name": "response.headers", "source": "794bdb9e-41cd-48ac-a68b-d63351802336-attachment.json", "type": "application/json"}], "start": 1775432838109, "stop": 1775432838110}], "attachments": [{"name": "cURL", "source": "e2ce31d7-7a3e-4f34-868b-aa72b70e13c2-attachment.txt", "type": "text/plain"}], "start": 1775432838109, "stop": 1775432838110}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/move-process-to-inspection", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "22fa5518-ce57-4736-89a6-e44923fda328-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4ede4818-2d4e-4953-9ca4-78182cfb2e4f-attachment.json", "type": "application/json"}], "start": 1775432838138, "stop": 1775432838138}, {"name": "Response → 200, trace_id: 74862004954141cecea065f03825b7f4", "status": "passed", "attachments": [{"name": "response.headers", "source": "8cda8bb0-1cbf-4bac-a55b-3c2401aff7a4-attachment.json", "type": "application/json"}], "start": 1775432838138, "stop": 1775432838138}], "attachments": [{"name": "cURL", "source": "4e048ce4-158f-49e7-870f-3d4426c00a96-attachment.txt", "type": "text/plain"}], "start": 1775432838138, "stop": 1775432838138}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/search-invoices", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5d7c23fe-c50f-4e4e-878c-c02293876e45-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "ccc18eab-c0b3-4c16-a3c9-7d20d74a40a3-attachment.json", "type": "application/json"}], "start": 1775432838226, "stop": 1775432838226}, {"name": "Response → 200, trace_id: bb728d01a63222f04483fb4a60bc85fb", "status": "passed", "attachments": [{"name": "response.headers", "source": "ae9e8fbb-aa50-4dfa-8ccf-c5afa9f7c7df-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "be53d6c6-9e07-4a7d-a379-f1f933a4b746-attachment.json", "type": "application/json"}], "start": 1775432838226, "stop": 1775432838226}], "attachments": [{"name": "cURL", "source": "0608e0f8-ac39-41cd-be42-1e659b954064-attachment.txt", "type": "text/plain"}], "start": 1775432838226, "stop": 1775432838226}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/invoices/get-pallets", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b0c3cad8-e5f8-49db-92a3-cb9d11c9e69b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "4709a18c-8902-446d-96eb-57990d606069-attachment.json", "type": "application/json"}], "start": 1775432838249, "stop": 1775432838249}, {"name": "Response → 200, trace_id: c367e4d6cb2f0c62c3e12b49459ff062", "status": "passed", "attachments": [{"name": "response.headers", "source": "626f28d2-116b-41ce-be81-41f28777090b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "afbd128d-f551-46b5-a25b-1de226cfa1f2-attachment.json", "type": "application/json"}], "start": 1775432838249, "stop": 1775432838249}], "attachments": [{"name": "cURL", "source": "d8362377-fb6f-44af-bcd9-8585abd25ab9-attachment.txt", "type": "text/plain"}], "start": 1775432838249, "stop": 1775432838249}, {"name": "Waiter function: wait_pallet", "status": "passed", "start": 1775432838252, "stop": 1775432838255}], "start": 1775432835642, "stop": 1775432838255}, {"name": "invoice acceptance", "status": "passed", "steps": [{"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "0570fa8c-8477-4812-aa48-f80a7405e167-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "3ec32761-85bc-47ef-b911-31040f20be24-attachment.json", "type": "application/json"}], "start": 1775432838259, "stop": 1775432838259}], "start": 1775432838255, "stop": 1775432838259}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/search-invoices", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6fa976ea-8a06-472f-97d1-e2a95e4fcdd3-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "0ec99ada-1d74-449f-8421-0ed098a4c14f-attachment.json", "type": "application/json"}], "start": 1775432838337, "stop": 1775432838338}, {"name": "Response → 200, trace_id: 1b782833ad0859281882c724e5c4f8c1", "status": "passed", "attachments": [{"name": "response.headers", "source": "f5404e7c-2be0-4fbb-9978-1a2271e6d665-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "40a685b1-1cd8-4d32-a616-e8c863fa955c-attachment.json", "type": "application/json"}], "start": 1775432838338, "stop": 1775432838338}], "attachments": [{"name": "cURL", "source": "5a24b0f8-7c3b-46b2-9a2d-5e86a9d8e268-attachment.txt", "type": "text/plain"}], "start": 1775432838337, "stop": 1775432838338}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/invoices/get-pallets", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1ad960d0-b6f5-490e-b737-5b48ce013d23-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "67a1162e-0368-4872-8a1a-71462efb9ee1-attachment.json", "type": "application/json"}], "start": 1775432838361, "stop": 1775432838361}, {"name": "Response → 200, trace_id: 89d583ad892dd0c5d6781302febd42c9", "status": "passed", "attachments": [{"name": "response.headers", "source": "9c22f6d6-ade8-449a-bf68-664ba6bfe5dc-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fdb7731d-d762-4aa9-abf4-4949a9d18126-attachment.json", "type": "application/json"}], "start": 1775432838361, "stop": 1775432838362}], "attachments": [{"name": "cURL", "source": "0b305df9-893d-4021-a193-6e2208b7a29e-attachment.txt", "type": "text/plain"}], "start": 1775432838361, "stop": 1775432838362}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-pallet-to-table", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bb4a84f7-e8d5-410d-8342-3155a7fbb736-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "41056587-7cc0-44e9-8500-82e4d3699c7e-attachment.json", "type": "application/json"}], "start": 1775432838465, "stop": 1775432838466}, {"name": "Response → 200, trace_id: 8d92872ecbe5db99ab60d08e157765d2", "status": "passed", "attachments": [{"name": "response.headers", "source": "66e79c97-8c78-4968-b2be-6895544b838e-attachment.json", "type": "application/json"}], "start": 1775432838466, "stop": 1775432838466}], "attachments": [{"name": "cURL", "source": "c896785a-d571-494b-98cb-3fc4fa4195ab-attachment.txt", "type": "text/plain"}], "start": 1775432838465, "stop": 1775432838466}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "7dd85da6-e9b0-45a1-9fb1-0a043095d6b6-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "496f6174-9cb4-4ff4-a298-fd505ff30bec-attachment.json", "type": "application/json"}], "start": 1775432838473, "stop": 1775432838473}], "start": 1775432838469, "stop": 1775432838473}], "start": 1775432838255, "stop": 1775432838473}, {"name": "counting", "status": "passed", "steps": [{"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "8402fc7d-0b3c-433f-9c81-d3ed7e0ad8d0-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "7f5b9822-e602-4fa0-ad0e-727eea1eff35-attachment.json", "type": "application/json"}], "start": 1775432838486, "stop": 1775432838486}], "start": 1775432838473, "stop": 1775432838486}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/search-invoices", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6b961294-238a-4803-a92b-48abd26aea2c-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "87af8618-d7f3-491b-a38c-a29d2cc74ea5-attachment.json", "type": "application/json"}], "start": 1775432838569, "stop": 1775432838569}, {"name": "Response → 200, trace_id: 562e862e71f724a7392c1bb1f7093930", "status": "passed", "attachments": [{"name": "response.headers", "source": "9498b983-9529-4847-971b-11cf9533e376-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d5c9e7d5-5cd8-4e8d-b6bb-d03e91c7357c-attachment.json", "type": "application/json"}], "start": 1775432838569, "stop": 1775432838570}], "attachments": [{"name": "cURL", "source": "1a210beb-6bf8-4e9d-b1a5-bc7c8af6ca0c-attachment.txt", "type": "text/plain"}], "start": 1775432838569, "stop": 1775432838570}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/invoices/get-pallets", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5f413530-52e4-4e12-89d8-f6fe73807381-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "818ad1fc-7259-47d7-ad7a-b0312e2e1116-attachment.json", "type": "application/json"}], "start": 1775432838592, "stop": 1775432838592}, {"name": "Response → 200, trace_id: 4372b786832539f923fe3cf7ad97803f", "status": "passed", "attachments": [{"name": "response.headers", "source": "3e6ffd4d-b3aa-44ae-b93e-1921e07f2403-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d2ec1d29-1f5d-44fb-9703-4d87c5a85831-attachment.json", "type": "application/json"}], "start": 1775432838592, "stop": 1775432838592}], "attachments": [{"name": "cURL", "source": "b0ad9b80-2168-4a9f-b9b8-8f1a711eff98-attachment.txt", "type": "text/plain"}], "start": 1775432838592, "stop": 1775432838592}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/invoice/7543283650/items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "470409c2-5d8c-4856-be6c-0268f78190c1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "88d0c4fb-01f2-4ea9-8be0-7212574dd96a-attachment.json", "type": "application/json"}], "start": 1775432838627, "stop": 1775432838627}, {"name": "Response → 200, trace_id: a208577e9e464254788b8651e0a76a48", "status": "passed", "attachments": [{"name": "response.headers", "source": "da4dca90-d0f7-4f63-9e2b-c3c8d8a0958b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "af6f900b-5c7e-4e75-80ac-36c5319100a0-attachment.json", "type": "application/json"}], "start": 1775432838627, "stop": 1775432838627}], "attachments": [{"name": "cURL", "source": "6fcd5973-42d8-41aa-8bc0-30d4a83b1b04-attachment.txt", "type": "text/plain"}], "start": 1775432838627, "stop": 1775432838627}, {"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": "3edc1c6d-3f3a-4dba-a97d-43fabdd144cf-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a8307d58-5865-4c8f-8cea-f8d9d415118f-attachment.json", "type": "application/json"}], "start": 1775432838655, "stop": 1775432838656}, {"name": "Response → 200, trace_id: 7be8238a9aea31fb22a4866ee8329c25", "status": "passed", "attachments": [{"name": "response.headers", "source": "b7be82fc-fe29-4718-bf23-62c4659bea66-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e3e25b8d-6416-4d82-b71d-3e559c916c23-attachment.txt", "type": "text/plain"}], "start": 1775432838656, "stop": 1775432838656}], "attachments": [{"name": "cURL", "source": "c7cf0547-2ee8-4022-ae9c-93eb4fdb4e9c-attachment.txt", "type": "text/plain"}], "start": 1775432838655, "stop": 1775432838656}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-count-box-to-table", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bf38524d-9cb0-4352-8441-cd292f32790e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "73ae5792-5fa5-437e-894f-c822dd97bddd-attachment.json", "type": "application/json"}], "start": 1775432838697, "stop": 1775432838697}, {"name": "Response → 200, trace_id: 3953bcf20acc4977c91a1517068e50b1", "status": "passed", "attachments": [{"name": "response.headers", "source": "28536522-542c-4f30-b54f-cdb251225a8d-attachment.json", "type": "application/json"}], "start": 1775432838697, "stop": 1775432838697}], "attachments": [{"name": "cURL", "source": "8290a452-b8b7-416f-8adc-3080be24b6e2-attachment.txt", "type": "text/plain"}], "start": 1775432838696, "stop": 1775432838697}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a77d2680-877c-440a-a300-432b65318b69-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7b1e0cd4-fb89-4d86-a4e9-c5cc6f6d7450-attachment.json", "type": "application/json"}], "start": 1775432838768, "stop": 1775432838768}, {"name": "Response → 200, trace_id: c0f13ebb34a2faffa65a1d0ca68babd9", "status": "passed", "attachments": [{"name": "response.headers", "source": "ac869192-6048-4724-ba02-3304c97686d2-attachment.json", "type": "application/json"}], "start": 1775432838768, "stop": 1775432838768}], "attachments": [{"name": "cURL", "source": "d6399a38-10fb-4fe5-aeee-e73bc419366e-attachment.txt", "type": "text/plain"}], "start": 1775432838768, "stop": 1775432838768}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "035f7eea-b405-4cda-9855-e0243227d048-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "64e8e403-0bd5-4057-ba50-8f054377b054-attachment.json", "type": "application/json"}], "start": 1775432838834, "stop": 1775432838834}, {"name": "Response → 200, trace_id: 683bf4a2d7b4c49dea70203161883b4a", "status": "passed", "attachments": [{"name": "response.headers", "source": "6be45958-0e54-476b-8e91-1d77ad6e943f-attachment.json", "type": "application/json"}], "start": 1775432838834, "stop": 1775432838835}], "attachments": [{"name": "cURL", "source": "42cab7a7-b423-4355-ad61-b76e2e261076-attachment.txt", "type": "text/plain"}], "start": 1775432838834, "stop": 1775432838835}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bfe2cd6b-ad8f-4b67-8438-350f5ce8fec2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3e39fcde-891e-43c3-97f0-0979c857e025-attachment.json", "type": "application/json"}], "start": 1775432838900, "stop": 1775432838901}, {"name": "Response → 200, trace_id: 669aff55d7e4f186a93503106cce8dd8", "status": "passed", "attachments": [{"name": "response.headers", "source": "12191bae-648e-4254-80a7-3cc1b365b913-attachment.json", "type": "application/json"}], "start": 1775432838901, "stop": 1775432838901}], "attachments": [{"name": "cURL", "source": "323a6296-1b76-4787-b3b3-998bb6871ea7-attachment.txt", "type": "text/plain"}], "start": 1775432838900, "stop": 1775432838901}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "58d8e04a-5f29-4672-98a5-13e7c519fc74-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "58bc3efb-a2f6-4c37-8445-c09633e86fc7-attachment.json", "type": "application/json"}], "start": 1775432838960, "stop": 1775432838960}, {"name": "Response → 200, trace_id: c671d147115c9633b97069bedc47af0e", "status": "passed", "attachments": [{"name": "response.headers", "source": "3685597b-3cdd-43a8-8de1-4d2ed609eb86-attachment.json", "type": "application/json"}], "start": 1775432838960, "stop": 1775432838960}], "attachments": [{"name": "cURL", "source": "9cbadbd0-a53e-48f0-852e-c4e74543c64f-attachment.txt", "type": "text/plain"}], "start": 1775432838960, "stop": 1775432838961}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2d84af38-9a1b-46ec-9832-af02c84747df-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d943e294-2f6f-4bff-a5a9-00ccce9f79c2-attachment.json", "type": "application/json"}], "start": 1775432839022, "stop": 1775432839022}, {"name": "Response → 200, trace_id: 8ce0fa53c49907ea87314545cb28bb03", "status": "passed", "attachments": [{"name": "response.headers", "source": "0546c018-09a7-41bc-a3b7-9488d8258481-attachment.json", "type": "application/json"}], "start": 1775432839022, "stop": 1775432839022}], "attachments": [{"name": "cURL", "source": "5f7c3bec-8355-4386-afb6-c100178ae734-attachment.txt", "type": "text/plain"}], "start": 1775432839021, "stop": 1775432839022}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "73c5cb24-54d3-45cc-af6b-a66afa308bd2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "86c4fd0c-7a1f-4ff9-ac64-82de2a4b36ae-attachment.json", "type": "application/json"}], "start": 1775432839079, "stop": 1775432839080}, {"name": "Response → 200, trace_id: 39a5131bfe30d134dd600deb16314273", "status": "passed", "attachments": [{"name": "response.headers", "source": "50e225a6-4459-4350-8438-df0cd9f40047-attachment.json", "type": "application/json"}], "start": 1775432839080, "stop": 1775432839080}], "attachments": [{"name": "cURL", "source": "67a8d95b-c875-4baa-b436-ca3714bdb1b4-attachment.txt", "type": "text/plain"}], "start": 1775432839079, "stop": 1775432839080}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4c83f33a-eabe-4cc1-828f-9144fbc0b2e5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "804fe797-fb61-4183-a840-1d876e7a4df0-attachment.json", "type": "application/json"}], "start": 1775432839139, "stop": 1775432839140}, {"name": "Response → 200, trace_id: b43b5c6945953f943a33bdef26abbdea", "status": "passed", "attachments": [{"name": "response.headers", "source": "7cc9ce26-5ebe-47dc-9028-256ed45cf695-attachment.json", "type": "application/json"}], "start": 1775432839140, "stop": 1775432839140}], "attachments": [{"name": "cURL", "source": "2eee9e82-4024-4d75-a663-6727c1d61915-attachment.txt", "type": "text/plain"}], "start": 1775432839139, "stop": 1775432839140}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4d3b5b3f-a6c7-4adc-b623-1346602bb026-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "39304ab0-f28b-4c6d-9497-885e524506bd-attachment.json", "type": "application/json"}], "start": 1775432839205, "stop": 1775432839205}, {"name": "Response → 200, trace_id: 2139653202926c5cc8ac49252478cc34", "status": "passed", "attachments": [{"name": "response.headers", "source": "cf7de5c8-a7af-443c-8212-a367ca50d0ae-attachment.json", "type": "application/json"}], "start": 1775432839205, "stop": 1775432839205}], "attachments": [{"name": "cURL", "source": "d5b0dca5-693a-4a00-ab7e-dcaedd7488f8-attachment.txt", "type": "text/plain"}], "start": 1775432839205, "stop": 1775432839205}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f86cf42d-37db-40f2-916d-54a886b30029-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d74d13a7-ce7a-4088-83e1-59dff52fc2c5-attachment.json", "type": "application/json"}], "start": 1775432839266, "stop": 1775432839267}, {"name": "Response → 200, trace_id: e8aabddd6a14b62c9d8a5565f3001662", "status": "passed", "attachments": [{"name": "response.headers", "source": "2e387cfc-3254-4167-b138-b3a992cf1b16-attachment.json", "type": "application/json"}], "start": 1775432839267, "stop": 1775432839267}], "attachments": [{"name": "cURL", "source": "aa092dbc-cad1-48ba-9274-42210179691e-attachment.txt", "type": "text/plain"}], "start": 1775432839266, "stop": 1775432839267}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "062f7123-45a6-44ce-ba6c-2486a2168438-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a1c5e2ff-bfa0-43c9-a439-e606de95637c-attachment.json", "type": "application/json"}], "start": 1775432839330, "stop": 1775432839331}, {"name": "Response → 200, trace_id: c9c1eee87908f95b6b0251af2fbfa09e", "status": "passed", "attachments": [{"name": "response.headers", "source": "03634800-0c90-431e-a5f9-78f312dbb487-attachment.json", "type": "application/json"}], "start": 1775432839331, "stop": 1775432839331}], "attachments": [{"name": "cURL", "source": "41d20f34-d177-4a62-9cf8-07b17d3affef-attachment.txt", "type": "text/plain"}], "start": 1775432839330, "stop": 1775432839331}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a7c5c4de-bc49-4b21-8c11-cd32a7eac1b8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9db43448-269c-4638-bc91-679c2dbada44-attachment.json", "type": "application/json"}], "start": 1775432839391, "stop": 1775432839392}, {"name": "Response → 200, trace_id: d6027ff78e724cf0b6556c4ae5b1d190", "status": "passed", "attachments": [{"name": "response.headers", "source": "58b08f4c-e1a3-45d3-9730-427f654d1ed9-attachment.json", "type": "application/json"}], "start": 1775432839392, "stop": 1775432839392}], "attachments": [{"name": "cURL", "source": "40b42874-f6dc-48c7-8da1-0c9b32952a7f-attachment.txt", "type": "text/plain"}], "start": 1775432839391, "stop": 1775432839392}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "10cec882-dfe9-4d88-8bff-fd0990b740da-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "bc1cd916-64f9-4a35-a1ed-27e7fe60af74-attachment.json", "type": "application/json"}], "start": 1775432839454, "stop": 1775432839454}, {"name": "Response → 200, trace_id: 73f2faa8df61e7dc89608dd683c6d92f", "status": "passed", "attachments": [{"name": "response.headers", "source": "9e75553b-67a2-4162-8002-39af9eed2e79-attachment.json", "type": "application/json"}], "start": 1775432839454, "stop": 1775432839454}], "attachments": [{"name": "cURL", "source": "31d6f85f-0802-432c-a0d1-4839fe98a986-attachment.txt", "type": "text/plain"}], "start": 1775432839454, "stop": 1775432839454}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ab1490a3-fc45-4fbc-8953-8035ee97eb91-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5b5aa9db-3e25-4da6-afe8-918aa3f907bd-attachment.json", "type": "application/json"}], "start": 1775432839514, "stop": 1775432839514}, {"name": "Response → 200, trace_id: 9701b14eaa7ac996f6b7c5de39c7f99f", "status": "passed", "attachments": [{"name": "response.headers", "source": "2dd67e1f-72fb-422d-a15b-8f77267ff3b8-attachment.json", "type": "application/json"}], "start": 1775432839514, "stop": 1775432839514}], "attachments": [{"name": "cURL", "source": "a1a71c62-74c6-4955-9d74-43e4ec9a5bd2-attachment.txt", "type": "text/plain"}], "start": 1775432839514, "stop": 1775432839514}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d9393bd7-98c9-40d5-8de8-a7f1a39530c6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9770d761-2060-4606-8400-fb1f054d45c9-attachment.json", "type": "application/json"}], "start": 1775432839581, "stop": 1775432839582}, {"name": "Response → 200, trace_id: 829f40bfd6f7da144a240f5fef1759bd", "status": "passed", "attachments": [{"name": "response.headers", "source": "1d0cb2c8-0b25-4170-8a3a-2d3f23db67b9-attachment.json", "type": "application/json"}], "start": 1775432839582, "stop": 1775432839582}], "attachments": [{"name": "cURL", "source": "c2e83271-8d91-4d10-b596-f6828010db9d-attachment.txt", "type": "text/plain"}], "start": 1775432839581, "stop": 1775432839582}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b90977ac-5d92-4293-9ad9-1bfbae50f338-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4d930ffa-9bba-4b23-bc91-0be979a2b661-attachment.json", "type": "application/json"}], "start": 1775432839643, "stop": 1775432839644}, {"name": "Response → 200, trace_id: 2c537e771b09836819c2e1c3f53dfc73", "status": "passed", "attachments": [{"name": "response.headers", "source": "180a22ff-b2d9-4433-ad97-efc307c0fb56-attachment.json", "type": "application/json"}], "start": 1775432839644, "stop": 1775432839644}], "attachments": [{"name": "cURL", "source": "5139f741-365b-4eec-b857-cdeff071aabc-attachment.txt", "type": "text/plain"}], "start": 1775432839643, "stop": 1775432839644}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "df5a23aa-a62f-47aa-8fae-fb66cdcea466-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4b49556f-54cb-4baa-8a3f-16f64b941939-attachment.json", "type": "application/json"}], "start": 1775432839703, "stop": 1775432839703}, {"name": "Response → 200, trace_id: 17a13dd78f5d51d4ca6c1eb8d174dd0b", "status": "passed", "attachments": [{"name": "response.headers", "source": "f4b798c6-5816-4fd9-9bda-ad9a4810b307-attachment.json", "type": "application/json"}], "start": 1775432839703, "stop": 1775432839703}], "attachments": [{"name": "cURL", "source": "f28a314b-2611-405e-9b90-69d137110bd5-attachment.txt", "type": "text/plain"}], "start": 1775432839703, "stop": 1775432839703}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "35ac9598-9dd8-4049-9c66-96d6a39434a6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "40a953f4-50e4-46e2-bd1f-81b787f2f017-attachment.json", "type": "application/json"}], "start": 1775432839767, "stop": 1775432839768}, {"name": "Response → 200, trace_id: 371b9b2e29e81ac84f418e163d4bfb36", "status": "passed", "attachments": [{"name": "response.headers", "source": "81f053e8-3930-4eed-b7d4-27ecb1fbf36e-attachment.json", "type": "application/json"}], "start": 1775432839768, "stop": 1775432839768}], "attachments": [{"name": "cURL", "source": "3e74577f-2609-43f8-915f-bb248af0e6c4-attachment.txt", "type": "text/plain"}], "start": 1775432839767, "stop": 1775432839768}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6b341961-2ef3-42b6-a350-da8eac3f5175-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4e9331f6-d70d-4b91-b5f3-646b3c3d4a09-attachment.json", "type": "application/json"}], "start": 1775432839829, "stop": 1775432839829}, {"name": "Response → 200, trace_id: 85580e8927f0a4e79180a4bd0d24a9f3", "status": "passed", "attachments": [{"name": "response.headers", "source": "659e286d-ee05-4e8b-a84b-9431bd4bf2ac-attachment.json", "type": "application/json"}], "start": 1775432839829, "stop": 1775432839830}], "attachments": [{"name": "cURL", "source": "6a1b1623-91f6-4562-80eb-dc04cdc21f61-attachment.txt", "type": "text/plain"}], "start": 1775432839829, "stop": 1775432839830}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "eb0bbdf7-775e-4633-9e15-e17bc4007b6b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "830f6470-2b4f-4011-8061-5db9429d9520-attachment.json", "type": "application/json"}], "start": 1775432839896, "stop": 1775432839896}, {"name": "Response → 200, trace_id: 4fb2eb7f4e008fa2e2f4e7f94a288c76", "status": "passed", "attachments": [{"name": "response.headers", "source": "d4014525-9518-4331-9c25-e8ebacea654c-attachment.json", "type": "application/json"}], "start": 1775432839896, "stop": 1775432839896}], "attachments": [{"name": "cURL", "source": "cd0ac8ad-6b2d-49fd-8efc-8b0f08a1d08d-attachment.txt", "type": "text/plain"}], "start": 1775432839896, "stop": 1775432839896}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8a7e1b24-7d5b-438e-a141-f90ff7e1795e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b8b1e1cd-afd6-41ad-ad74-888cdd7b729a-attachment.json", "type": "application/json"}], "start": 1775432839960, "stop": 1775432839961}, {"name": "Response → 200, trace_id: 14441d68b07876b0a660566dccc5616c", "status": "passed", "attachments": [{"name": "response.headers", "source": "1ce5ddf9-fbea-43cb-847f-365c44887ed1-attachment.json", "type": "application/json"}], "start": 1775432839961, "stop": 1775432839961}], "attachments": [{"name": "cURL", "source": "d7fd2b17-f145-487b-b148-f6f0acd56bae-attachment.txt", "type": "text/plain"}], "start": 1775432839960, "stop": 1775432839961}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7a8dfc87-3b16-412e-92af-a9ecf6d719db-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "385abddd-1da7-474c-83f8-367c99dcc111-attachment.json", "type": "application/json"}], "start": 1775432840025, "stop": 1775432840025}, {"name": "Response → 200, trace_id: c0c11f3501595ba452d68afba229d98e", "status": "passed", "attachments": [{"name": "response.headers", "source": "8ae69f45-8e6c-449a-a01f-8143f9500bfa-attachment.json", "type": "application/json"}], "start": 1775432840025, "stop": 1775432840025}], "attachments": [{"name": "cURL", "source": "37f9f5e2-8d7e-4531-8ffd-6690d94028dd-attachment.txt", "type": "text/plain"}], "start": 1775432840025, "stop": 1775432840025}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6d4829b7-43d1-4de2-b46c-64afa5a2c6c5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "55612582-781a-46a3-9411-602f26a434b8-attachment.json", "type": "application/json"}], "start": 1775432840088, "stop": 1775432840088}, {"name": "Response → 200, trace_id: cc671fec8d523e0167f6671f6d264a3c", "status": "passed", "attachments": [{"name": "response.headers", "source": "0a66790b-ca98-45c9-9c65-0c1852fb35a9-attachment.json", "type": "application/json"}], "start": 1775432840088, "stop": 1775432840089}], "attachments": [{"name": "cURL", "source": "62373b8b-361d-45c7-9245-12006600319f-attachment.txt", "type": "text/plain"}], "start": 1775432840088, "stop": 1775432840089}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f17d84f0-4267-4c00-a7a2-7ea99d3b234f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a304e456-1219-47a1-a4a5-915bd54734a7-attachment.json", "type": "application/json"}], "start": 1775432840156, "stop": 1775432840156}, {"name": "Response → 200, trace_id: 001202a8db785f4304bca337976b7c53", "status": "passed", "attachments": [{"name": "response.headers", "source": "9ab56432-5cb8-4078-80e4-6c65dc05faf6-attachment.json", "type": "application/json"}], "start": 1775432840156, "stop": 1775432840156}], "attachments": [{"name": "cURL", "source": "25095cf1-dc64-4f9e-bbc0-181c773b13a4-attachment.txt", "type": "text/plain"}], "start": 1775432840155, "stop": 1775432840156}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4a4f0165-f4c4-4998-972a-2f41453af99d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a2d8669d-b111-4e4b-9281-453bacccab83-attachment.json", "type": "application/json"}], "start": 1775432840220, "stop": 1775432840220}, {"name": "Response → 200, trace_id: 2694f71581271c7c4ee0115be7a9cb8e", "status": "passed", "attachments": [{"name": "response.headers", "source": "37e17169-de0d-4fef-8370-b75ac45edf7a-attachment.json", "type": "application/json"}], "start": 1775432840220, "stop": 1775432840220}], "attachments": [{"name": "cURL", "source": "71fef98d-0d84-4d47-8839-31d8dcec282d-attachment.txt", "type": "text/plain"}], "start": 1775432840220, "stop": 1775432840220}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f4fad472-8abc-404d-887c-d53a1fe4d74f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "54634b96-327e-4858-9383-1015301e2ca1-attachment.json", "type": "application/json"}], "start": 1775432840286, "stop": 1775432840286}, {"name": "Response → 200, trace_id: 0eea78f36b1b7e90aa0d6bc420d6bcc0", "status": "passed", "attachments": [{"name": "response.headers", "source": "fb7ea6a3-21d8-49f0-b7c3-743c440a9d43-attachment.json", "type": "application/json"}], "start": 1775432840286, "stop": 1775432840286}], "attachments": [{"name": "cURL", "source": "561f2df4-f972-43f4-ac68-fb3253ade278-attachment.txt", "type": "text/plain"}], "start": 1775432840286, "stop": 1775432840287}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4c557bf4-71ec-4060-adf7-da21a9c6189a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e5157a2a-a6da-458e-a0a5-f36f857f0607-attachment.json", "type": "application/json"}], "start": 1775432840351, "stop": 1775432840351}, {"name": "Response → 200, trace_id: 85a4e5e70f27f2cf347ff3c256a79848", "status": "passed", "attachments": [{"name": "response.headers", "source": "1c32f6f6-7eaf-46cc-bdad-fb1ad3200998-attachment.json", "type": "application/json"}], "start": 1775432840351, "stop": 1775432840352}], "attachments": [{"name": "cURL", "source": "0c062fb3-07ab-428d-bbe8-749c8c5cbc43-attachment.txt", "type": "text/plain"}], "start": 1775432840351, "stop": 1775432840352}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "83f6f6c9-f624-4a77-ae71-c1d494ce09d3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "33496b4d-56be-4c7f-89ee-248a70d8963f-attachment.json", "type": "application/json"}], "start": 1775432840416, "stop": 1775432840416}, {"name": "Response → 200, trace_id: 92badbe253e52ae27912d6b5de27b385", "status": "passed", "attachments": [{"name": "response.headers", "source": "eedf60f2-41a0-4531-9fa0-c78795c4c4c7-attachment.json", "type": "application/json"}], "start": 1775432840416, "stop": 1775432840416}], "attachments": [{"name": "cURL", "source": "462d6e33-a005-4c39-adca-befe7afad010-attachment.txt", "type": "text/plain"}], "start": 1775432840416, "stop": 1775432840416}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/close-count-box", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d5d9bb65-ac5b-4eb3-b6b4-2d99fa619b91-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "23906820-b6ae-475f-aee0-439e7daffad1-attachment.json", "type": "application/json"}], "start": 1775432840449, "stop": 1775432840449}, {"name": "Response → 200, trace_id: 85ad749ba0a09dbea6b592df81e09f56", "status": "passed", "attachments": [{"name": "response.headers", "source": "01c6c476-db2b-497e-9848-bb7351f2acd0-attachment.json", "type": "application/json"}], "start": 1775432840449, "stop": 1775432840449}], "attachments": [{"name": "cURL", "source": "130370d9-d421-4142-b87f-92b194a76863-attachment.txt", "type": "text/plain"}], "start": 1775432840449, "stop": 1775432840449}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/link-box-to-zone", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "020e9b85-d988-4a1c-a349-4de1fab1b0d2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c1cb5976-8597-42a0-9517-35e1f9818824-attachment.json", "type": "application/json"}], "start": 1775432841247, "stop": 1775432841247}, {"name": "Response → 200, trace_id: 7781996ba8a401a1993f8a5ff6fad127", "status": "passed", "attachments": [{"name": "response.headers", "source": "26215e34-7ddb-41cf-8791-72f2fb77ee01-attachment.json", "type": "application/json"}], "start": 1775432841247, "stop": 1775432841247}], "attachments": [{"name": "cURL", "source": "723339e6-550d-4fc3-ab01-5b0c0f1fae6c-attachment.txt", "type": "text/plain"}], "start": 1775432841247, "stop": 1775432841247}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/close-pallet-count", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8d73713a-3001-49ae-8063-0129467cbec8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "706663d6-4fcd-481d-bb5e-5f8f1661b9e1-attachment.json", "type": "application/json"}], "start": 1775432841323, "stop": 1775432841324}, {"name": "Response → 200, trace_id: 2226c27156bbe2b0ba4a6f64dade1978", "status": "passed", "attachments": [{"name": "response.headers", "source": "8e89be3a-a19b-4ed5-9952-fff514d3f6f3-attachment.json", "type": "application/json"}], "start": 1775432841324, "stop": 1775432841324}], "attachments": [{"name": "cURL", "source": "8546710b-a64a-43f7-ae77-2cc212e58387-attachment.txt", "type": "text/plain"}], "start": 1775432841323, "stop": 1775432841324}, {"name": "Waiter function: wait_cell_status", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "5df8330a-420b-4b67-baf4-7f2495b04033-attachment.txt", "type": "text/plain"}], "start": 1775432841332, "stop": 1775432841332}], "start": 1775432841327, "stop": 1775432841332}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "c3af83a6-7a8f-49b8-8ecc-f346afbf104c-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "ba7d4e8d-25a9-4a5a-ab32-386716235246-attachment.json", "type": "application/json"}], "start": 1775432841344, "stop": 1775432841344}], "start": 1775432841332, "stop": 1775432841344}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/invoice/7543283650/items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9bb952cb-5b8b-428a-b4ef-86123070d95b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "8eb403b7-98a2-4919-9708-645698677d55-attachment.json", "type": "application/json"}], "start": 1775432841378, "stop": 1775432841379}, {"name": "Response → 200, trace_id: da4219a8ed131c2363aceddef69c7910", "status": "passed", "attachments": [{"name": "response.headers", "source": "6d7cf849-3cd7-4e86-9ebd-75d889f3881a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b1141607-a2bd-4048-85bc-d38e3ebdad76-attachment.json", "type": "application/json"}], "start": 1775432841379, "stop": 1775432841379}], "attachments": [{"name": "cURL", "source": "306704e7-4fac-49ce-9c9a-08b68b943f70-attachment.txt", "type": "text/plain"}], "start": 1775432841378, "stop": 1775432841379}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/box/get-active-for-invoice", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "726ccdbd-bc10-43c5-b023-73a6a4dabfde-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "f2ced4f7-0b9b-4798-84b8-134cfc0529d0-attachment.json", "type": "application/json"}], "start": 1775432841402, "stop": 1775432841402}, {"name": "Response → 200, trace_id: ef2c75fab5ad70aef9e9e025abc6c4b2", "status": "passed", "attachments": [{"name": "response.headers", "source": "33a730e9-d1b0-4a39-b516-fe998dc3de6f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9e00a3d4-9291-4932-9965-5c84fb6a8aa4-attachment.json", "type": "application/json"}], "start": 1775432841402, "stop": 1775432841402}], "attachments": [{"name": "cURL", "source": "880979ff-84a0-4738-a2b1-50c892402e4d-attachment.txt", "type": "text/plain"}], "start": 1775432841402, "stop": 1775432841402}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/box/get-box-items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1d1f1d38-84b8-4cbc-91d0-8f77a42397de-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "9ece1f30-134a-4382-9095-efb9ddfcc6e7-attachment.json", "type": "application/json"}], "start": 1775432841431, "stop": 1775432841431}, {"name": "Response → 200, trace_id: 3ea1169c70a05bbab66e6a1e55ee99ab", "status": "passed", "attachments": [{"name": "response.headers", "source": "a38dee18-8ad3-4648-8a49-fe11ab14fce9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ee613d46-2b2e-4265-ba37-69958c7a3683-attachment.json", "type": "application/json"}], "start": 1775432841431, "stop": 1775432841431}], "attachments": [{"name": "cURL", "source": "aad106fc-cd52-4995-aa10-7c7529a73442-attachment.txt", "type": "text/plain"}], "start": 1775432841431, "stop": 1775432841431}], "start": 1775432838473, "stop": 1775432841434}, {"name": "declaration request", "status": "failed", "statusDetails": {"message": "AssertionError: invoice 7543283650 not in status: INVOICE_DOC_REQUESTED, actual status: READY_FOR_DECLARATION\nassert 'READY_FOR_DECLARATION' == <WMSInvoiceSt...OC_REQUESTED'>\n  \n  - INVOICE_DOC_REQUESTED\n  + READY_FOR_DECLARATION\n", "trace": "  File \"/app/src/framework/wms/builders/acceptance/invoice/invoice.py\", line 791, in full_acceptance\n    (self.state_awaiting_doc().state_invoice_doc_waiting().state_invoice_doc_requested())\n     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/app/src/framework/wms/builders/acceptance/invoice/invoice.py\", line 613, in state_invoice_doc_waiting\n    wait_invoice(self.invoice_id, status=wait_state)\n  File \"/app/src/framework/common/utils/utils.py\", line 218, in wrapped_f\n    return Retrying(\n           ^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 289, in call\n    raise attempt.get()\n          ^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 326, in get\n    raise exc.with_traceback(tb)\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 273, in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\n  File \"/app/src/framework/wms/validation/waiters/acceptance.py\", line 40, in wait_invoice\n    assert invoice.status == status, f\"invoice {supply_id} not in status: {status}, actual status: {invoice.status}\"\n"}, "steps": [{"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "48d4b7b0-5e32-4a46-a391-215397857e42-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "6d6afdb9-6804-4f98-ad0d-2fcd8ee29694-attachment.json", "type": "application/json"}], "start": 1775432841439, "stop": 1775432841439}], "start": 1775432841434, "stop": 1775432841439}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/invoices/send-to-declaration?invoice_ids=7543283650", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6be20134-377f-411e-8fb4-4299048f51a4-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "822b0d83-ae37-45dd-bcc0-004b7b27fbb3-attachment.json", "type": "application/json"}], "start": 1775432841476, "stop": 1775432841476}, {"name": "Response → 200, trace_id: 3150d41bb3109d85898ba8a0548c0d15", "status": "passed", "attachments": [{"name": "response.headers", "source": "9d3edcec-12f2-48da-8707-6b462468d43d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fb7a60aa-2696-4d9c-a16b-04933ce96303-attachment.json", "type": "application/json"}], "start": 1775432841476, "stop": 1775432841476}], "attachments": [{"name": "cURL", "source": "19142e48-a62a-4ba9-9372-f20f8ae0fb58-attachment.txt", "type": "text/plain"}], "start": 1775432841476, "stop": 1775432841476}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "e813ee88-0292-4eca-8168-bafbdcb1419c-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "648aa567-2e93-4e23-b715-d5cc849f52b0-attachment.json", "type": "application/json"}], "start": 1775432841483, "stop": 1775432841483}], "start": 1775432841479, "stop": 1775432841484}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "bbc8db5f-9da8-4050-93d1-437c92a1457c-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "d821bac9-e5bd-4b89-b857-a2e15f2f6220-attachment.json", "type": "application/json"}], "start": 1775432841496, "stop": 1775432841496}], "start": 1775432841484, "stop": 1775432841496}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/declaration-requests/create", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "93527f0d-132c-401f-90af-26b853f00632-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f7dd7fa9-202a-4c83-b083-c3df7c13fc48-attachment.json", "type": "application/json"}], "start": 1775432841557, "stop": 1775432841558}, {"name": "Response → 200, trace_id: 428f83d6a4ff032243cddaba84710a46", "status": "passed", "attachments": [{"name": "response.headers", "source": "dcb62708-5c94-45a6-a952-66b1defcd47b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "14cba27d-7e25-4b93-952e-7532ed5150bb-attachment.json", "type": "application/json"}], "start": 1775432841558, "stop": 1775432841558}], "attachments": [{"name": "cURL", "source": "a3c2a2b8-483b-407a-96ef-e6d34d5fde71-attachment.txt", "type": "text/plain"}], "start": 1775432841557, "stop": 1775432841558}, {"name": "Waiter function: wait_invoice", "status": "failed", "statusDetails": {"message": "AssertionError: invoice 7543283650 not in status: INVOICE_DOC_REQUESTED, actual status: READY_FOR_DECLARATION\nassert 'READY_FOR_DECLARATION' == <WMSInvoiceSt...OC_REQUESTED'>\n  \n  - INVOICE_DOC_REQUESTED\n  + READY_FOR_DECLARATION\n", "trace": "  File \"/app/src/framework/common/utils/utils.py\", line 218, in wrapped_f\n    return Retrying(\n           ^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 289, in call\n    raise attempt.get()\n          ^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 326, in get\n    raise exc.with_traceback(tb)\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 273, in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\n  File \"/app/src/framework/wms/validation/waiters/acceptance.py\", line 40, in wait_invoice\n    assert invoice.status == status, f\"invoice {supply_id} not in status: {status}, actual status: {invoice.status}\"\n"}, "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "938f446e-94d1-4a2b-bff7-f1272fbb2f96-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "aef4b62c-32ad-4d92-96ae-8f3fa7794cd2-attachment.json", "type": "application/json"}], "start": 1775432841565, "stop": 1775432841565}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "8cd7a5af-302a-4a37-a6d0-57dad876ef1d-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "58e20e89-cc67-4343-8a03-8281b267471c-attachment.json", "type": "application/json"}], "start": 1775432861579, "stop": 1775432861579}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "d8b6c668-1565-42ee-90c9-e057b2aa4d20-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "8d23cc4b-c46c-4a8b-ab1b-9d05a97612c0-attachment.json", "type": "application/json"}], "start": 1775432881585, "stop": 1775432881585}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "32c3d51f-32cb-4e4d-941a-41e2176352fc-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "38942989-45d5-4fdd-9bff-cf8db092b88a-attachment.json", "type": "application/json"}], "start": 1775432901599, "stop": 1775432901599}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "eb3e5c56-121b-48b4-b422-43448f15aeb5-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "5f16550b-28e6-4383-bd58-0fe2a1efc0c4-attachment.json", "type": "application/json"}], "start": 1775432921614, "stop": 1775432921614}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "ef689d97-0d0c-4cf3-ab46-ec5153498cd3-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "6a88b5f8-6117-4c27-8ee2-b9ef2f87d468-attachment.json", "type": "application/json"}], "start": 1775432941628, "stop": 1775432941629}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "decfc35a-1a2f-4bb8-b835-246ef9667466-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "ea34030c-a79f-4667-8f79-7c301b9fd95e-attachment.json", "type": "application/json"}], "start": 1775432961643, "stop": 1775432961643}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "6848f842-7c9d-4c05-9173-00e3f5e97c3f-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "812eabdd-3510-4abf-a06c-ae96bd5e7fe1-attachment.json", "type": "application/json"}], "start": 1775432981651, "stop": 1775432981651}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "17a0c54e-9db2-4925-9a63-d6c079f516d2-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "57691a21-a1dd-483d-8ffb-6040d4a265c8-attachment.json", "type": "application/json"}], "start": 1775433001667, "stop": 1775433001668}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "25064a61-a65d-45b9-8cd5-2319843dd9d0-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "fae39638-0886-4aae-ada8-db8928153f06-attachment.json", "type": "application/json"}], "start": 1775433021681, "stop": 1775433021681}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "6a1a3779-9109-4b58-9f4d-8776f33f1c96-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "5899c980-b3c0-4355-a70c-3331ae01aae8-attachment.json", "type": "application/json"}], "start": 1775433041686, "stop": 1775433041687}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "477cdf0f-2af0-4f15-9969-11bdd8c33d5b-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "08b5dab0-ad1b-4072-819c-fdb50118dda1-attachment.json", "type": "application/json"}], "start": 1775433061701, "stop": 1775433061701}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "43c9b63a-0969-46f8-b5e8-53f71d292ac8-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "29bb5882-c49a-4cd8-b4e5-6a8e3f5b8a72-attachment.json", "type": "application/json"}], "start": 1775433081715, "stop": 1775433081715}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "3d1bfc10-de9a-4d10-86c6-a5cd4634ae73-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "d8f5f56a-4b43-4883-be46-d9ab57135f03-attachment.json", "type": "application/json"}], "start": 1775433101729, "stop": 1775433101729}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "4ef6735f-58c8-48b4-b94f-0c85f3796474-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "98102f50-3117-4763-9f58-892492b57cc0-attachment.json", "type": "application/json"}], "start": 1775433121744, "stop": 1775433121744}], "start": 1775432841561, "stop": 1775433121744}], "start": 1775432841434, "stop": 1775433121745}], "attachments": [{"name": "log", "source": "fbeab4cb-94ec-4a40-b4e9-7f497b68cf81-attachment.txt", "type": "text/plain"}], "parameters": [{"name": "wms_inbound_e2e", "value": "{'warehouse': 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=100333, phone='1000100333', role_wms_id=23, zone_id=None, patronymic='autotest UZ', last_name='Lancer', password='1234', first_name='Phantom', token='a6ddd3aa-d594-41fd-ab4f-8b3363f4855c', 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), 'zone_id': 31, 'cell': <src.framework.wms.builders.db.cell.AvailableCell object at 0x757edb524490>, 'count_types': {'proper': True, 'defected': False, 'overage': False, 'zero': False}}"}, {"name": "params", "value": "{'sku_amount': 1, 'barcode_count': 3, 'quantity': 9}"}], "start": 1775432835557, "stop": 1775433121745, "uuid": "2c6d2e82-8083-4090-b073-c8726030f0a7", "historyId": "a1d27389419013c034f4c026b44b204b", "testCaseId": "8492d9fb49209f19f0fcdca811418779", "fullName": "tests.wms.test_e2e_inbound.test_inbound.TestE2EInbound#test_e2e_inbound", "labels": [{"name": "feature", "value": "WMS e2e inbound"}, {"name": "tag", "value": "wms-end-to-end-inbound"}, {"name": "parentSuite", "value": "tests.wms.test_e2e_inbound"}, {"name": "suite", "value": "test_inbound"}, {"name": "subSuite", "value": "TestE2EInbound"}, {"name": "host", "value": "runner-1rdl4o-mi-project-9-concurrent-7-0y09vz3o"}, {"name": "thread", "value": "22-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "tests.wms.test_e2e_inbound.test_inbound"}], "titlePath": ["tests", "wms", "test_e2e_inbound", "test_inbound.py", "TestE2EInbound"]}