-
-
Notifications
You must be signed in to change notification settings - Fork 0
OBPIH-7540: Putaway - validations when qty removed from receiving bin when pending putaway created #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
OBPIH-7540: Putaway - validations when qty removed from receiving bin when pending putaway created #78
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
aa84e9a
add new pages
kkrawczyk123 82b6796
add new elements to existing pages
kkrawczyk123 f251e26
add record stock table
kkrawczyk123 e2b4f3a
add edit transaction page and components
kkrawczyk123 845d525
add test for validate qty removed from receiving bin
kkrawczyk123 c5f87ac
add improvements after review
kkrawczyk123 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
src/pages/product/productShow/sections/components/RecortStockTable.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| import { Locator, Page } from '@playwright/test'; | ||
|
|
||
| import BasePageModel from '@/pages/BasePageModel'; | ||
|
|
||
| class RecordStockTable extends BasePageModel { | ||
| constructor(page: Page) { | ||
| super(page); | ||
| } | ||
|
|
||
| get section() { | ||
| return this.page.getByRole('region', { name: 'Record Stock' }); | ||
| } | ||
|
|
||
| get table() { | ||
| return this.section.getByRole('table'); | ||
| } | ||
|
|
||
| get rows() { | ||
| return this.table.getByRole('row'); | ||
| } | ||
|
|
||
| row(index: number) { | ||
| return new Row(this.page, this.rows.nth(index)); | ||
| } | ||
| } | ||
|
|
||
| class Row extends BasePageModel { | ||
| row: Locator; | ||
| constructor(page: Page, row: Locator) { | ||
| super(page); | ||
| this.row = row; | ||
| } | ||
| } | ||
|
|
||
| export default RecordStockTable; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| import { Page } from '@playwright/test'; | ||
|
|
||
| import BasePageModel from '@/pages/BasePageModel'; | ||
| import TransactionDetailsHeaderTab from '@/pages/transactions/components/TransactionDetailsHeaderTab'; | ||
|
|
||
| class EditTransactionPage extends BasePageModel { | ||
| transactionDetailsHeaderTab: TransactionDetailsHeaderTab; | ||
|
|
||
| constructor(page: Page) { | ||
| super(page); | ||
| this.transactionDetailsHeaderTab = new TransactionDetailsHeaderTab(page); | ||
| } | ||
|
|
||
| get saveButton() { | ||
| return this.page.getByRole('button', { name: 'Save' }); | ||
| } | ||
| } | ||
|
|
||
| export default EditTransactionPage; |
47 changes: 47 additions & 0 deletions
47
src/pages/transactions/components/TransactionDetailsHeaderTab.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| import { Locator, Page } from '@playwright/test'; | ||
|
|
||
| import BasePageModel from '@/pages/BasePageModel'; | ||
|
|
||
| class TransactionDetailsHeaderTab extends BasePageModel { | ||
| constructor(page: Page) { | ||
| super(page); | ||
| } | ||
|
|
||
| get section() { | ||
| return this.page.locator('#transaction-header'); | ||
| } | ||
|
|
||
| get table() { | ||
| return this.section.getByRole('table'); | ||
| } | ||
|
|
||
| get rows() { | ||
| return this.table.getByRole('row'); | ||
| } | ||
|
|
||
| row(index: number) { | ||
| return new Row(this.page, this.rows.nth(index)); | ||
| } | ||
| } | ||
|
|
||
| class Row extends BasePageModel { | ||
| row: Locator; | ||
| constructor(page: Page, row: Locator) { | ||
| super(page); | ||
| this.row = row; | ||
| } | ||
|
|
||
| get transactionDateMinuteSelect() { | ||
| return this.row.locator('select[name="transactionDate_minute"]'); | ||
kkrawczyk123 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| async decreaseMinute() { | ||
kkrawczyk123 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| const selectedValue = await this.transactionDateMinuteSelect.inputValue(); | ||
| const parsedValue = parseInt(selectedValue || '0', 10); | ||
| const nextMinute = (parsedValue - 1 + 60) % 60; | ||
| const optionToSelect = String(nextMinute).padStart(2, '0'); | ||
| await this.transactionDateMinuteSelect.selectOption(optionToSelect); | ||
| } | ||
| } | ||
|
|
||
| export default TransactionDetailsHeaderTab; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.