add marking to arrived parcel components

This commit is contained in:
omair saleh
2021-09-06 13:03:45 +08:00
parent a2f4e1f3fd
commit 7f8a4af3fe
3 changed files with 11 additions and 15 deletions
@@ -38,7 +38,7 @@
</div>
<div class="row" v-if="expanded" >
<div class="col bg-white p-t-15 p-b-15">
<div class="row m-b-5" v-if="$store.getter.isAdmin">
<div class="row m-b-5" v-if="$store.getters.isAdmin">
<div class="col-auto p-r-5">
<p class="no-margin all-caps fs-10 light">Marking</p>
</div>
@@ -46,7 +46,7 @@
<p class="no-margin bold text-info fs-12">{{item.order.company_module.marking}}</p>
</div>
</div>
<div class="row m-b-5">
<div class="row m-b-5" v-if="$store.getters.isAdmin">
<div class="col-auto p-r-5">
<p class="no-margin all-caps fs-10 light">Order Number</p>
</div>
@@ -1,12 +0,0 @@
<template>
<div class="row">
<div class="col-5">
<list-component section="warehouseListSection" :endpoint="route('api.packing_list.list')" :options="{type: 1, status: 2, per_page: 20, order_by: {column: 'created_at', DESC: false}}">
<template slot="list" slot-scope="{data}">
<parcel-component v-for="packages in data.packages" :data="packages" :key="packages.id"></parcel-component>
</template>
</list-component>
</div>
</div>
</template>
@@ -1,4 +1,12 @@
@extends('layouts.base_portal')
@section('inner_content')
<warehouse-list-section-component></warehouse-list-section-component>
<div class="row">
<div class="col-5">
<list-component section="warehouseListSection" :endpoint="route('api.packing_list.list')" :options="{type: 1, status: 2, per_page: 20, order_by: {column: 'created_at', DESC: false}}">
<template slot="list" slot-scope="{data}">
<parcel-component v-for="packages in data.packages" :data="packages" :key="packages.id"></parcel-component>
</template>
</list-component>
</div>
</div>
@endsection