-
-
Notifications
You must be signed in to change notification settings - Fork 813
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migration for SalesOrderAllocation - Allow allocation against order with null shipment * Enhaced query efficiency * Further API cleanup * Adjust serializer * PUI updates * Enable editing of allocation shipment * Improve shipment filtering * Add sub-table for salesorderlineitem * Add helper method to SalesOrder to return pending SalesOrderAllocations * Fix for CUI * Update form for CUI * Prevent SalesOrder completion with incomplete allocations * Fixes for StockItem API * Frontend refactoring * Code cleanup * Annotate shipment information to SalesOrder API endpoint * Update frontend PUI * Additional filtering for SalesOrderAllocation * Bump API version * Hide panel based on user permissions * js linting * Unit test fix * Update playwright tests * Revert diff * Disable playwright test (temporary) * View output from build table
- Loading branch information
1 parent
656950a
commit 2c294d6
Showing
22 changed files
with
475 additions
and
242 deletions.
There are no files selected for viewing
This file contains 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 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
19 changes: 19 additions & 0 deletions
19
src/backend/InvenTree/order/migrations/0103_alter_salesorderallocation_shipment.py
This file contains 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 @@ | ||
# Generated by Django 4.2.16 on 2024-11-06 04:46 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('order', '0102_purchaseorder_destination_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='salesorderallocation', | ||
name='shipment', | ||
field=models.ForeignKey(blank=True, help_text='Sales order shipment reference', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='allocations', to='order.salesordershipment', verbose_name='Shipment'), | ||
), | ||
] |
This file contains 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 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 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.