Skip to content
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

move mfg and wo #154

Merged
merged 38 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2c8d861
Changes to remove null value in handling unit list (#95)
viralkansodiya Mar 26, 2024
c71599f
Added remaining qty and transferred qty on dialog box(Cancellation pr…
viralkansodiya Apr 9, 2024
0323066
fix: add read-only decorator to APIs (#104)
Alchez Apr 20, 2024
d463e13
14.8.5
agritheory Apr 20, 2024
d766a01
wip: demand poc
agritheory Apr 20, 2024
aa249d0
Merge remote-tracking branch 'upstream/version-14' into demand
May 3, 2024
0095b0d
fix: minor cleanup
May 8, 2024
a8b743d
fix: restructure demand folder to match scan structure
May 8, 2024
d9498a6
fix: add missing imports
May 8, 2024
392cf00
feat: setup demand matrix (#115)
Alchez May 9, 2024
df302b8
Merge remote-tracking branch 'upstream/version-15' into demand
May 9, 2024
978a65f
fix: typing issue
May 9, 2024
a029d53
Merge remote-tracking branch 'upstream/version-15' into demand
May 14, 2024
b70c4bb
test: time log addition
May 14, 2024
2e68a34
fix: filelock on demand.db (#127)
MyuddinKhatri Jun 7, 2024
5d62b52
Descendant warehouse lookup with warehouse types (#132)
MyuddinKhatri Jul 3, 2024
b9d7b10
Merge branch 'version-15' of github.com:agritheory/beam into demand
agritheory Jul 22, 2024
e6e121d
wip: demand
agritheory Jul 29, 2024
b0df4d0
wip: demand
agritheory Aug 1, 2024
492cdae
wip: get tests passing without measuring in-process demand
agritheory Aug 2, 2024
b180fb0
wip: trying to detect demand side effects
agritheory Aug 2, 2024
fd846bd
Merge remote-tracking branch 'upstream/version-15' into demand
Aug 9, 2024
6b5761d
fix: apply demand map to transactions (#145)
Alchez Aug 13, 2024
c63cbab
wip: move mfg and wo
agritheory Aug 14, 2024
cb7c9c5
wip: move mfg
agritheory Aug 14, 2024
5683e58
Merge remote-tracking branch 'upstream/mobile_v15' into demand
Aug 15, 2024
959eeae
Merge remote-tracking branch 'upstream/mobile_v15' into mobile_move_mfg
Aug 15, 2024
41cabf6
fix: use new view routes
Aug 15, 2024
9aa0706
Merge remote-tracking branch 'upstream/mobile_v15' into demand
Aug 16, 2024
9fdb3bb
fix: update styles
Aug 16, 2024
e779319
Merge branch 'mobile_move_mfg' of github.com:agritheory/beam into mob…
agritheory Aug 16, 2024
31469b3
wip: shuffle pages
agritheory Aug 16, 2024
51cd7f9
fix: add typing to get_demand return value (#156)
Alchez Aug 16, 2024
69d7f5c
tests: reorder demand artifacts
agritheory Aug 16, 2024
5a78123
tests: change setup and add creation as ordering key to get determini…
agritheory Aug 16, 2024
5e7b214
Merge branch 'demand' into mobile_move_mfg
agritheory Aug 16, 2024
70b12ef
tests: setup shipping and receiving workstations
agritheory Aug 26, 2024
8cfcda1
Merge branch 'mobile_v15' into mobile_move_mfg
agritheory Aug 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions .github/workflows/generate_matrix.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
name: Generate Matrix
on:
push:
branches:
- version-14
- version-15
pull_request:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Generate Scanning Decision Matrix
run: python3 ./beam/docs/generate_matrix.py
name: Generate Matrix

on:
push:
branches:
- version-14
- version-15
pull_request:

env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Generate Scanning Decision Matrix
run: python3 ./beam/docs/generate_matrix.py
Loading
Loading