2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 12:05:53 +00:00

[PUI] Sales order tables (#7793)

* Add placeholder for more sales order actions

* Add <SalesOrderShipmentTable />

* Allow filtering by date fields

* Add <ReturnOrderLineItemTable />

- Add label rendering for ReturnOrderLineItem

* Add placeholder actions

* Edit / delete / add line items for return order

* Fix for duplicate action

* Cleanup unused code

* Bump API version

* Update playwright tests
This commit is contained in:
Oliver
2024-08-03 18:49:09 +10:00
committed by GitHub
parent dee519e848
commit abe9b19ead
18 changed files with 517 additions and 27 deletions

View File

@ -101,8 +101,7 @@ test('PUI - Sales', async ({ page }) => {
.getByText('Selling some stuff')
.waitFor();
await page.getByRole('tab', { name: 'Line Items' }).click();
await page.getByRole('tab', { name: 'Pending Shipments' }).click();
await page.getByRole('tab', { name: 'Completed Shipments' }).click();
await page.getByRole('tab', { name: 'Shipments' }).click();
await page.getByRole('tab', { name: 'Build Orders' }).click();
await page.getByText('No records found').first().waitFor();
await page.getByRole('tab', { name: 'Attachments' }).click();