mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-11-03 22:55:43 +00:00 
			
		
		
		
	Remove redundant table on Part page
This commit is contained in:
		@@ -893,8 +893,10 @@ class SOAllocationList(generics.ListAPIView):
 | 
			
		||||
                    shipment__shipment_date=None,
 | 
			
		||||
                )
 | 
			
		||||
            else:
 | 
			
		||||
                queryset = queryset.exclude(line__order__status__in=SalesOrderStatus.OPEN)
 | 
			
		||||
                queryset = queryset.exclude(shipment__shipment_date=None)
 | 
			
		||||
                queryset = queryset.exclude(
 | 
			
		||||
                    line__order__status__in=SalesOrderStatus.OPEN,
 | 
			
		||||
                    shipment__shipment_date=None
 | 
			
		||||
                )
 | 
			
		||||
 | 
			
		||||
        return queryset
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -47,23 +47,6 @@
 | 
			
		||||
</div>
 | 
			
		||||
{% endif %}
 | 
			
		||||
 | 
			
		||||
<div class='panel panel-hidden' id='panel-allocations'>
 | 
			
		||||
    <div class='panel-heading'>
 | 
			
		||||
        <div class='d-flex flex-wrap'>
 | 
			
		||||
            <h4>{% trans "Part Stock Allocations" %}</h4>
 | 
			
		||||
            {% include "spacer.html" %}
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class='panel-content'>
 | 
			
		||||
        <div id='allocations-button-toolbar'>
 | 
			
		||||
            <div class='btn-group' role='group'>
 | 
			
		||||
                {% include "filter_list.html" with id="allocations" %}
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <table class='table table-striped table-condensed' data-toolbar='#allocations-button-toolbar' id='part-allocation-table'></table>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<div class='panel panel-hidden' id='panel-test-templates'>
 | 
			
		||||
    <div class='panel-heading'>
 | 
			
		||||
        <div class='d-flex flex-wrap'>
 | 
			
		||||
@@ -675,19 +658,6 @@
 | 
			
		||||
        {% endif %}
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    // Load the "allocations" tab
 | 
			
		||||
    onPanelLoad('allocations', function() {
 | 
			
		||||
 | 
			
		||||
        loadStockAllocationTable(
 | 
			
		||||
            $("#part-allocation-table"),
 | 
			
		||||
            {
 | 
			
		||||
                params: { 
 | 
			
		||||
                    part: {{ part.pk }},
 | 
			
		||||
                },
 | 
			
		||||
            }
 | 
			
		||||
        );
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    // Load the "related parts" tab
 | 
			
		||||
    onPanelLoad("related-parts", function() {
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -30,10 +30,6 @@
 | 
			
		||||
{% trans "Pricing" as text %}
 | 
			
		||||
{% include "sidebar_item.html" with label="pricing" text=text icon="fa-dollar-sign" %}
 | 
			
		||||
{% endif %}
 | 
			
		||||
{% if part.salable or part.component %}
 | 
			
		||||
{% trans "Allocations" as text %}
 | 
			
		||||
{% include "sidebar_item.html" with label="allocations" text=text icon="fa-bookmark" %}
 | 
			
		||||
{% endif %}
 | 
			
		||||
{% if part.purchaseable and roles.purchase_order.view %}
 | 
			
		||||
{% trans "Suppliers" as text %}
 | 
			
		||||
{% include "sidebar_item.html" with label="suppliers" text=text icon="fa-building" %}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user