mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 05:05:42 +00:00 
			
		
		
		
	Adds ReturnOrder and ReturnOrderAttachment models
This commit is contained in:
		
							
								
								
									
										18
									
								
								InvenTree/templates/InvenTree/settings/returns.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								InvenTree/templates/InvenTree/settings/returns.html
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | ||||
| {% extends "panel.html" %} | ||||
| {% load i18n %} | ||||
|  | ||||
| {% block label %}return-order{% endblock %} | ||||
|  | ||||
| {% block heading %} | ||||
| {% trans "Return Order Settings" %} | ||||
| {% endblock %} | ||||
|  | ||||
| {% block content %} | ||||
|  | ||||
| <table class='table table-striped table-condensed'> | ||||
|     <tbody> | ||||
|         {% include "InvenTree/settings/setting.html" with key="RETURNORDER_REFERENCE_PATTERN" %} | ||||
|     </tbody> | ||||
| </table> | ||||
|  | ||||
| {% endblock %} | ||||
| @@ -42,6 +42,7 @@ | ||||
| {% include "InvenTree/settings/build.html" %} | ||||
| {% include "InvenTree/settings/po.html" %} | ||||
| {% include "InvenTree/settings/so.html" %} | ||||
| {% include "InvenTree/settings/returns.html" %} | ||||
|  | ||||
| {% include "InvenTree/settings/plugin.html" %} | ||||
| {% plugin_list as pl_list %} | ||||
|   | ||||
| @@ -52,6 +52,8 @@ | ||||
| {% include "sidebar_item.html" with label='purchase-order' text=text icon="fa-shopping-cart" %} | ||||
| {% trans "Sales Orders" as text %} | ||||
| {% include "sidebar_item.html" with label='sales-order' text=text icon="fa-truck" %} | ||||
| {% trans "Return Orders" as text %} | ||||
| {% include "sidebar_item.html" with label='return-order' text=text icon="fa-undo" %} | ||||
|  | ||||
| {% trans "Plugin Settings" as text %} | ||||
| {% include "sidebar_header.html" with text=text %} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user