|
|
@@ -54,398 +54,400 @@
|
|
|
<th>金额</th>
|
|
|
<th>操作</th>
|
|
|
</tr>
|
|
|
- <tr>
|
|
|
- <td>仓储费</td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr v-for="item in feeTotal['information']['storageFee']">
|
|
|
- <td>@{{ item.name }}<span v-if="item.tax_fee>0" class="badge badge-info">税</span></td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr v-for="item in feeTotal['information']['storageFee']">
|
|
|
- <td>@{{ item.remark }}</td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr v-for="item in feeTotal['information']['storageFee']">
|
|
|
- <td>@{{ item.fee }}</td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <form v-if="isArchivedItems['storageFee']!==1" action="{{ 'storageFee/confirmBill' }}"
|
|
|
- method="post"
|
|
|
- onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
- {{ csrf_field() }}
|
|
|
- <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
- <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
- <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
- <span class="ml-4 mt-2">
|
|
|
+ <template v-if="feeTotal['information']??false">
|
|
|
+ <tr>
|
|
|
+ <td>仓储费</td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr v-for="item in feeTotal['information']['storageFee']">
|
|
|
+ <td>@{{ item.name }}<span v-if="item.tax_fee>0" class="badge badge-info">税</span></td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr v-for="item in feeTotal['information']['storageFee']">
|
|
|
+ <td>@{{ item.remark }}</td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr v-for="item in feeTotal['information']['storageFee']">
|
|
|
+ <td>@{{ item.fee }}</td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <form v-if="isArchivedItems['storageFee']!==1" action="{{ 'storageFee/confirmBill' }}"
|
|
|
+ method="post"
|
|
|
+ onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
+ {{ csrf_field() }}
|
|
|
+ <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
+ <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
+ <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
+ <span class="ml-4 mt-2">
|
|
|
<button type="submit" class="btn btn-success">
|
|
|
确认金额
|
|
|
</button>
|
|
|
</span>
|
|
|
- </form>
|
|
|
- <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>入库费</td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr v-for="item in feeTotal['information']['storeFee']">
|
|
|
- <td>@{{ item.name }}<span v-if="item.tax_fee>0" class="badge badge-info">税</span></td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr v-for="item in feeTotal['information']['storeFee']">
|
|
|
- <td >
|
|
|
- <span v-for="itemInfo in item.remark">@{{ itemInfo }} </span>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr v-for="item in feeTotal['information']['storeFee']">
|
|
|
- <td>@{{ item.fee }}</td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <form v-if="isArchivedItems['storeFee']!==1" action="{{ 'storeFee/report/confirmBill' }}"
|
|
|
- method="post"
|
|
|
- onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
- {{ csrf_field() }}
|
|
|
- <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
- <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
- <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
- <span class="ml-4 mt-2">
|
|
|
+ </form>
|
|
|
+ <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>入库费</td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr v-for="item in feeTotal['information']['storeFee']">
|
|
|
+ <td>@{{ item.name }}<span v-if="item.tax_fee>0" class="badge badge-info">税</span></td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr v-for="item in feeTotal['information']['storeFee']">
|
|
|
+ <td >
|
|
|
+ <span v-for="itemInfo in item.remark">@{{ itemInfo }} </span>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr v-for="item in feeTotal['information']['storeFee']">
|
|
|
+ <td>@{{ item.fee }}</td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <form v-if="isArchivedItems['storeFee']!==1" action="{{ 'storeFee/report/confirmBill' }}"
|
|
|
+ method="post"
|
|
|
+ onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
+ {{ csrf_field() }}
|
|
|
+ <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
+ <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
+ <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
+ <span class="ml-4 mt-2">
|
|
|
<button type="submit" class="btn btn-success">
|
|
|
确认金额
|
|
|
</button>
|
|
|
</span>
|
|
|
- </form>
|
|
|
- <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
+ </form>
|
|
|
+ <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>出库费</td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr v-for="item in feeTotal['information']['storeOutFee']">
|
|
|
- <td>@{{ item.name }}<span v-if="item.tax_fee>0" class="badge badge-info">税</span></td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr v-for="item in feeTotal['information']['storeOutFee']">
|
|
|
- <td>
|
|
|
- <span v-for="itemInfo in item.remark">@{{ itemInfo }} </span>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr v-for="item in feeTotal['information']['storeOutFee']">
|
|
|
- <td>@{{ item.fee }}</td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <form v-if="isArchivedItems['storeOutFee']!==1" action="{{ 'storeOutFee/report/confirmBill' }}"
|
|
|
- method="post"
|
|
|
- onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
- {{ csrf_field() }}
|
|
|
- <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
- <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
- <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
- <span class="ml-4 mt-2">
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>出库费</td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr v-for="item in feeTotal['information']['storeOutFee']">
|
|
|
+ <td>@{{ item.name }}<span v-if="item.tax_fee>0" class="badge badge-info">税</span></td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr v-for="item in feeTotal['information']['storeOutFee']">
|
|
|
+ <td>
|
|
|
+ <span v-for="itemInfo in item.remark">@{{ itemInfo }} </span>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr v-for="item in feeTotal['information']['storeOutFee']">
|
|
|
+ <td>@{{ item.fee }}</td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <form v-if="isArchivedItems['storeOutFee']!==1" action="{{ 'storeOutFee/report/confirmBill' }}"
|
|
|
+ method="post"
|
|
|
+ onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
+ {{ csrf_field() }}
|
|
|
+ <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
+ <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
+ <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
+ <span class="ml-4 mt-2">
|
|
|
<button type="submit" class="btn btn-success">
|
|
|
确认金额
|
|
|
</button>
|
|
|
</span>
|
|
|
- </form>
|
|
|
- <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
+ </form>
|
|
|
+ <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>配送费</td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr>
|
|
|
- <td>快递费<span v-if="feeTotal['express_tax_fee']>0" class="badge badge-info">税</span></td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>物流费<span v-if="feeTotal['logistic_tax_fee']>0" class="badge badge-info">税</span>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr>
|
|
|
- <td><a target="_blank"
|
|
|
- href="{{ route('settlementBills.expressFee.report',['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td><a target="_blank"
|
|
|
- href="{{ route('settlementBills.logisticFee',['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr>
|
|
|
- <td>@{{ feeTotal['express_fee'] }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>@{{ feeTotal['logistic_fee'] }}</td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0">
|
|
|
- <tr>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <form v-if="isArchivedItems['expressFee']!==1"
|
|
|
- action="{{ 'expressFee/report/confirmBill' }}"
|
|
|
- method="post"
|
|
|
- onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
- {{ csrf_field() }}
|
|
|
- <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
- <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
- <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
- <span class="ml-4 mt-2">
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>配送费</td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr>
|
|
|
+ <td>快递费<span v-if="feeTotal['express_tax_fee']>0" class="badge badge-info">税</span></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>物流费<span v-if="feeTotal['logistic_tax_fee']>0" class="badge badge-info">税</span>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr>
|
|
|
+ <td><a target="_blank"
|
|
|
+ href="{{ route('settlementBills.expressFee.report',['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td><a target="_blank"
|
|
|
+ href="{{ route('settlementBills.logisticFee',['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr>
|
|
|
+ <td>@{{ feeTotal['express_fee'] }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>@{{ feeTotal['logistic_fee'] }}</td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0">
|
|
|
+ <tr>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <form v-if="isArchivedItems['expressFee']!==1"
|
|
|
+ action="{{ 'expressFee/report/confirmBill' }}"
|
|
|
+ method="post"
|
|
|
+ onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
+ {{ csrf_field() }}
|
|
|
+ <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
+ <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
+ <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
+ <span class="ml-4 mt-2">
|
|
|
<button type="submit" class="btn btn-success">
|
|
|
确认金额
|
|
|
</button>
|
|
|
</span>
|
|
|
- </form>
|
|
|
- <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <form v-if="isArchivedItems['logisticFee']!==1"
|
|
|
- action="{{ 'logisticFee/confirmBill' }}"
|
|
|
- method="post"
|
|
|
- onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
- {{ csrf_field() }}
|
|
|
- <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
- <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
- <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
- <span class="ml-4 mt-2">
|
|
|
+ </form>
|
|
|
+ <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <form v-if="isArchivedItems['logisticFee']!==1"
|
|
|
+ action="{{ 'logisticFee/confirmBill' }}"
|
|
|
+ method="post"
|
|
|
+ onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
+ {{ csrf_field() }}
|
|
|
+ <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
+ <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
+ <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
+ <span class="ml-4 mt-2">
|
|
|
<button type="submit" class="btn btn-success">
|
|
|
确认金额
|
|
|
</button>
|
|
|
</span>
|
|
|
- </form>
|
|
|
- <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
+ </form>
|
|
|
+ <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
|
|
|
- </td>
|
|
|
+ </td>
|
|
|
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>库内加工</td>
|
|
|
- <td>加工作业<span v-if="feeTotal['process_tax_fee']>0" class="badge badge-info">税</span></td>
|
|
|
- <td><a target="_blank"
|
|
|
- href="{{ route('settlementBills.processFee',['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a>
|
|
|
- </td>
|
|
|
- <td>@{{ feeTotal['process_fee'] }}</td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <form v-if="isArchivedItems['processFee']!==1"
|
|
|
- action="{{ 'processFee/confirmBill' }}"
|
|
|
- method="post"
|
|
|
- onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
- {{ csrf_field() }}
|
|
|
- <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
- <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
- <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
- <span class="ml-4 mt-2">
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>库内加工</td>
|
|
|
+ <td>加工作业<span v-if="feeTotal['process_tax_fee']>0" class="badge badge-info">税</span></td>
|
|
|
+ <td><a target="_blank"
|
|
|
+ href="{{ route('settlementBills.processFee',['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a>
|
|
|
+ </td>
|
|
|
+ <td>@{{ feeTotal['process_fee'] }}</td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <form v-if="isArchivedItems['processFee']!==1"
|
|
|
+ action="{{ 'processFee/confirmBill' }}"
|
|
|
+ method="post"
|
|
|
+ onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
+ {{ csrf_field() }}
|
|
|
+ <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
+ <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
+ <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
+ <span class="ml-4 mt-2">
|
|
|
<button type="submit" class="btn btn-success">
|
|
|
确认金额
|
|
|
</button>
|
|
|
</span>
|
|
|
- </form>
|
|
|
- <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
+ </form>
|
|
|
+ <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>系统使用费</td>
|
|
|
- <td>系统使用费<span v-if="feeTotal['system_tax_fee']>0" class="badge badge-info">税</span></td>
|
|
|
- <td>-</td>
|
|
|
- <td>@{{ feeTotal['system_fee'] }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>包材费</td>
|
|
|
- <td>包材费</td>
|
|
|
- <td><a target="_blank" href="{{ route('settlementBills.packingMaterialFee',['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a></td>
|
|
|
- <td>@{{ feeTotal['packing_material_fee'] }}</td>
|
|
|
- <!-- TODO -->
|
|
|
- <td class="m-0 p-0">
|
|
|
- <form v-if="isArchivedItems['packingMaterialFee']!==1"
|
|
|
- action="{{ 'packingMaterialFee/confirmBill' }}"
|
|
|
- method="post"
|
|
|
- onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
- {{ csrf_field() }}
|
|
|
- <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
- <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
- <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
- <span class="ml-4 mt-2">
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>系统使用费</td>
|
|
|
+ <td>系统使用费<span v-if="feeTotal['system_tax_fee']>0" class="badge badge-info">税</span></td>
|
|
|
+ <td>-</td>
|
|
|
+ <td>@{{ feeTotal['system_fee'] }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>包材费</td>
|
|
|
+ <td>包材费</td>
|
|
|
+ <td><a target="_blank" href="{{ route('settlementBills.packingMaterialFee',['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a></td>
|
|
|
+ <td>@{{ feeTotal['packing_material_fee'] }}</td>
|
|
|
+ <!-- TODO -->
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <form v-if="isArchivedItems['packingMaterialFee']!==1"
|
|
|
+ action="{{ 'packingMaterialFee/confirmBill' }}"
|
|
|
+ method="post"
|
|
|
+ onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
+ {{ csrf_field() }}
|
|
|
+ <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
+ <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
+ <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
+ <span class="ml-4 mt-2">
|
|
|
<button type="submit" class="btn btn-success">
|
|
|
确认金额
|
|
|
</button>
|
|
|
</span>
|
|
|
- </form>
|
|
|
- <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
+ </form>
|
|
|
+ <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>卸货费</td>
|
|
|
- <td>卸货费</td>
|
|
|
- <td><a target="_blank"
|
|
|
- href="{{ route('settlementBills.unloadFee',['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a>
|
|
|
- </td>
|
|
|
- <td>@{{ feeTotal['unload_fee'] }}</td>
|
|
|
- <!-- TODO -->
|
|
|
- <td class="m-0 p-0">
|
|
|
- <form v-if="isArchivedItems['unloadFee']!==1"
|
|
|
- action="{{ 'unloadFee/confirmBill' }}"
|
|
|
- method="post"
|
|
|
- onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
- {{ csrf_field() }}
|
|
|
- <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
- <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
- <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
- <span class="ml-4 mt-2">
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>卸货费</td>
|
|
|
+ <td>卸货费</td>
|
|
|
+ <td><a target="_blank"
|
|
|
+ href="{{ route('settlementBills.unloadFee',['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a>
|
|
|
+ </td>
|
|
|
+ <td>@{{ feeTotal['unload_fee'] }}</td>
|
|
|
+ <!-- TODO -->
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <form v-if="isArchivedItems['unloadFee']!==1"
|
|
|
+ action="{{ 'unloadFee/confirmBill' }}"
|
|
|
+ method="post"
|
|
|
+ onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
+ {{ csrf_field() }}
|
|
|
+ <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
+ <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
+ <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
+ <span class="ml-4 mt-2">
|
|
|
<button type="submit" class="btn btn-success">
|
|
|
确认金额
|
|
|
</button>
|
|
|
</span>
|
|
|
- </form>
|
|
|
- <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
+ </form>
|
|
|
+ <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>杂项费</td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0"
|
|
|
- v-for="sundryFee in feeTotal['sundry_information']">
|
|
|
- <tr>
|
|
|
- <td>@{{ sundryFee.type }}</td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0"
|
|
|
- v-for="sundryFee in feeTotal['sundry_information']">
|
|
|
- <tr>
|
|
|
- <td><a target="_blank"
|
|
|
- href="{{ route('settlementBills.sundryFee', ['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <table class="table m-0 p-0"
|
|
|
- v-for="sundryFee in feeTotal['sundry_information']">
|
|
|
- <tr>
|
|
|
- <td>@{{ sundryFee.fee }}</td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
- </td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <form v-if="isArchivedItems['sundryFee']!==1"
|
|
|
- action="{{ 'sundryFee/confirmBill' }}"
|
|
|
- method="post"
|
|
|
- onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
- {{ csrf_field() }}
|
|
|
- <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
- <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
- <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
- <span class="ml-4 mt-2">
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>杂项费</td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0"
|
|
|
+ v-for="sundryFee in feeTotal['sundry_information']">
|
|
|
+ <tr>
|
|
|
+ <td>@{{ sundryFee.type }}</td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0"
|
|
|
+ v-for="sundryFee in feeTotal['sundry_information']">
|
|
|
+ <tr>
|
|
|
+ <td><a target="_blank"
|
|
|
+ href="{{ route('settlementBills.sundryFee', ['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <table class="table m-0 p-0"
|
|
|
+ v-for="sundryFee in feeTotal['sundry_information']">
|
|
|
+ <tr>
|
|
|
+ <td>@{{ sundryFee.fee }}</td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <form v-if="isArchivedItems['sundryFee']!==1"
|
|
|
+ action="{{ 'sundryFee/confirmBill' }}"
|
|
|
+ method="post"
|
|
|
+ onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
+ {{ csrf_field() }}
|
|
|
+ <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
+ <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
+ <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
+ <span class="ml-4 mt-2">
|
|
|
<button type="submit" class="btn btn-success">
|
|
|
确认金额
|
|
|
</button>
|
|
|
</span>
|
|
|
- </form>
|
|
|
- <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
+ </form>
|
|
|
+ <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>理赔</td>
|
|
|
- <td>责任理赔</td>
|
|
|
- <td><a target="_blank"
|
|
|
- href="{{ route('settlementBills.indemnityFee',['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a>
|
|
|
- </td>
|
|
|
- <td>@{{ feeTotal['indemnity_fee'] }}</td>
|
|
|
- <td class="m-0 p-0">
|
|
|
- <form v-if="isArchivedItems['indemnityFee']!==1"
|
|
|
- action="{{ 'indemnityFee/confirmBill' }}"
|
|
|
- method="post"
|
|
|
- onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
- {{ csrf_field() }}
|
|
|
- <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
- <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
- <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
- <span class="ml-4 mt-2">
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>理赔</td>
|
|
|
+ <td>责任理赔</td>
|
|
|
+ <td><a target="_blank"
|
|
|
+ href="{{ route('settlementBills.indemnityFee',['owner_id' => $request['owner_id'],'year' => $request['year'],'month' => $request['month']]) }}">查看明细</a>
|
|
|
+ </td>
|
|
|
+ <td>@{{ feeTotal['indemnity_fee'] }}</td>
|
|
|
+ <td class="m-0 p-0">
|
|
|
+ <form v-if="isArchivedItems['indemnityFee']!==1"
|
|
|
+ action="{{ 'indemnityFee/confirmBill' }}"
|
|
|
+ method="post"
|
|
|
+ onsubmit="return confirm('您确定要确认金额吗?');">
|
|
|
+ {{ csrf_field() }}
|
|
|
+ <input type="hidden" name="owner_id" value="{{ $request['owner_id']??'' }}">
|
|
|
+ <input type="hidden" name="year" value="{{ $request['year']??'' }}">
|
|
|
+ <input type="hidden" name="month" value="{{ $request['month']??'' }}">
|
|
|
+ <span class="ml-4 mt-2">
|
|
|
<button type="submit" class="btn btn-success">
|
|
|
确认金额
|
|
|
</button>
|
|
|
</span>
|
|
|
- </form>
|
|
|
- <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
+ </form>
|
|
|
+ <h5 v-else class="text-center pt-1 font-weight-bold">已确认</h5>
|
|
|
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>优惠</td>
|
|
|
- <td>优惠政策</td>
|
|
|
- <td>@{{ feeTotal['discount_remark'] }}</td>
|
|
|
- <td>@{{ feeTotal['discount_fee'] }}</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>税率</td>
|
|
|
- <td>@{{ feeTotal['tax_rate'] }}%</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="text-right font-weight-bolder" rowspan="3">
|
|
|
- 公司名称:
|
|
|
- <br>
|
|
|
- 开户银行:
|
|
|
- <br>
|
|
|
- 公司账号:
|
|
|
- </td>
|
|
|
- <td class="font-weight-bolder" colspan="3">
|
|
|
- 上海宝时供应链管理有限公司
|
|
|
- <br>
|
|
|
- 中国工商银行股份有限公司上海市松江科技城支行
|
|
|
- <br>
|
|
|
- 1001 7341 0900 0118 429
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>优惠</td>
|
|
|
+ <td>优惠政策</td>
|
|
|
+ <td>@{{ feeTotal['discount_remark'] }}</td>
|
|
|
+ <td>@{{ feeTotal['discount_fee'] }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>税率</td>
|
|
|
+ <td>@{{ feeTotal['tax_rate'] }}%</td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td class="text-right font-weight-bolder" rowspan="3">
|
|
|
+ 公司名称:
|
|
|
+ <br>
|
|
|
+ 开户银行:
|
|
|
+ <br>
|
|
|
+ 公司账号:
|
|
|
+ </td>
|
|
|
+ <td class="font-weight-bolder" colspan="3">
|
|
|
+ 上海宝时供应链管理有限公司
|
|
|
+ <br>
|
|
|
+ 中国工商银行股份有限公司上海市松江科技城支行
|
|
|
+ <br>
|
|
|
+ 1001 7341 0900 0118 429
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </template>
|
|
|
</table>
|
|
|
</div>
|
|
|
</div>
|