Revert "View Attachments in portal (#8830)"

This reverts commit 7e661437b1abb52b2a3595bb8bb52cb1a7b6249e.
diff --git a/erpnext/templates/pages/order.html b/erpnext/templates/pages/order.html
index da9eb33..7129178 100644
--- a/erpnext/templates/pages/order.html
+++ b/erpnext/templates/pages/order.html
@@ -86,24 +86,6 @@
 			{% endif %}
 		{% endif %}
 	</div>
-	
-{% if attachments %}
-<div class="order-item-table">
-	<div class="row order-items order-item-header text-muted">
-		<div class="col-sm-12 h6 text-uppercase">
-			{{ _("Attachments") }}
-		</div>
-	</div>
-	<div class="row order-items">
-		<div class="col-sm-12">
-			{% for attachment in attachments %}
-			<p class="small">
-				<a href="{{ attachment.file_url }}" target="blank"> {{ attachment.file_name }} </a>
-			</p>
-			{% endfor %}
-		</div>
-	</div>
 </div>
-{% endif %}
-</div>
+
 {% endblock %}