diff --git a/resources/assets/sass/modules/_typography.scss b/resources/assets/sass/modules/_typography.scss
index dbc80e6f..a22dc2fc 100644
--- a/resources/assets/sass/modules/_typography.scss
+++ b/resources/assets/sass/modules/_typography.scss
@@ -643,6 +643,10 @@ hr{
cursor: pointer !important;
}
+.not-allowed {
+ cursor: not-allowed !important;
+}
+
/* Labels
------------------------------------
*/
diff --git a/resources/assets/vue/components/orders/sections/OrdersTableSectionComponent.vue b/resources/assets/vue/components/orders/sections/OrdersTableSectionComponent.vue
new file mode 100644
index 00000000..0175534f
--- /dev/null
+++ b/resources/assets/vue/components/orders/sections/OrdersTableSectionComponent.vue
@@ -0,0 +1,290 @@
+
+ Nothing To Show Here
+
+
+
+
+
+
+ Order No
+ Warehouse
+ Delivery Address
+ Marking
+ Date
+ Total CBM
+
+
+
+ {{data.reference}}
+ {{data.warehouse.name}} {{$store.getters.isAdmin ? data.warehouse.reference : ''}}
+ {{data.address.reference}}
+ {{data.company_module.marking}}
+ {{data.created_at}}
+ {{(Math.ceil((data.parcels.origin_warehouse_packages.flatMap(packing_list => packing_list.packages).reduce((total, obj) => obj.cbm + total, 0) + data.parcels.in_transit_packages.flatMap(packing_list => packing_list.packages).reduce((total, obj) => obj.cbm + total, 0) + data.parcels.destination_warehouse_packages.flatMap(packing_list => packing_list.packages).reduce((total, obj) => obj.cbm + total, 0) + data.parcels.delivered_packages.flatMap(packing_list => packing_list.packages).reduce((total, obj) => obj.cbm + total, 0)) * 10000) / 10000).toFixed(3)}}
+
+
+
+
+
+
+ 