586 lines
16 KiB
TypeScript
586 lines
16 KiB
TypeScript
import React, { ReactElement, useEffect } from 'react';
|
|
import Head from 'next/head'
|
|
import DatePicker from "react-datepicker";
|
|
import "react-datepicker/dist/react-datepicker.css";
|
|
import dayjs from "dayjs";
|
|
import {useAppDispatch, useAppSelector} from "../../stores/hooks";
|
|
import {useRouter} from "next/router";
|
|
import { fetch } from '../../stores/shipping_methods/shipping_methodsSlice'
|
|
import {saveFile} from "../../helpers/fileSaver";
|
|
import dataFormatter from '../../helpers/dataFormatter';
|
|
import ImageField from "../../components/ImageField";
|
|
import LayoutAuthenticated from "../../layouts/Authenticated";
|
|
import {getPageTitle} from "../../config";
|
|
import SectionTitleLineWithButton from "../../components/SectionTitleLineWithButton";
|
|
import SectionMain from "../../components/SectionMain";
|
|
import CardBox from "../../components/CardBox";
|
|
import BaseButton from "../../components/BaseButton";
|
|
import BaseDivider from "../../components/BaseDivider";
|
|
import {mdiChartTimelineVariant} from "@mdi/js";
|
|
import {SwitchField} from "../../components/SwitchField";
|
|
import FormField from "../../components/FormField";
|
|
|
|
|
|
const Shipping_methodsView = () => {
|
|
const router = useRouter()
|
|
const dispatch = useAppDispatch()
|
|
const { shipping_methods } = useAppSelector((state) => state.shipping_methods)
|
|
|
|
|
|
const { id } = router.query;
|
|
|
|
function removeLastCharacter(str) {
|
|
console.log(str,`str`)
|
|
return str.slice(0, -1);
|
|
}
|
|
|
|
useEffect(() => {
|
|
dispatch(fetch({ id }));
|
|
}, [dispatch, id]);
|
|
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('View shipping_methods')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title={removeLastCharacter('View shipping_methods')} main>
|
|
<BaseButton
|
|
color='info'
|
|
label='Edit'
|
|
href={`/shipping_methods/shipping_methods-edit/?id=${id}`}
|
|
/>
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>Carrier</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p>{shipping_methods?.carrier?.carrier_name ?? 'No data'}</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>MethodName</p>
|
|
<p>{shipping_methods?.method_name}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>BaseCost</p>
|
|
<p>{shipping_methods?.base_cost || 'No data'}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>FreeShippingThreshold</p>
|
|
<p>{shipping_methods?.free_shipping_threshold || 'No data'}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className={'mb-4'}>
|
|
<p className={'block font-bold mb-2'}>ServiceLevel</p>
|
|
<p>{shipping_methods?.service_level ?? 'No data'}</p>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label='Active'>
|
|
<SwitchField
|
|
field={{name: 'active', value: shipping_methods?.active}}
|
|
form={{setFieldValue: () => null}}
|
|
disabled
|
|
/>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<>
|
|
<p className={'block font-bold mb-2'}>Orders ShippingMethod</p>
|
|
<CardBox
|
|
className='mb-6 border border-gray-300 rounded overflow-hidden'
|
|
hasTable
|
|
>
|
|
<div className='overflow-x-auto'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
|
|
|
|
<th>OrderNumber</th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<th>OrderStatus</th>
|
|
|
|
|
|
|
|
<th>PaymentStatus</th>
|
|
|
|
|
|
|
|
<th>FulfillmentStatus</th>
|
|
|
|
|
|
|
|
<th>SubtotalAmount</th>
|
|
|
|
|
|
|
|
<th>DiscountAmount</th>
|
|
|
|
|
|
|
|
<th>ShippingAmount</th>
|
|
|
|
|
|
|
|
<th>TaxAmount</th>
|
|
|
|
|
|
|
|
<th>TotalAmount</th>
|
|
|
|
|
|
|
|
<th>CurrencyCode</th>
|
|
|
|
|
|
|
|
|
|
|
|
<th>CustomerNote</th>
|
|
|
|
|
|
|
|
<th>PlacedAt</th>
|
|
|
|
|
|
|
|
<th>PaidAt</th>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{shipping_methods.orders_shipping_method && Array.isArray(shipping_methods.orders_shipping_method) &&
|
|
shipping_methods.orders_shipping_method.map((item: any) => (
|
|
<tr key={item.id} onClick={() => router.push(`/orders/orders-view/?id=${item.id}`)}>
|
|
|
|
|
|
<td data-label="order_number">
|
|
{ item.order_number }
|
|
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<td data-label="order_status">
|
|
{ item.order_status }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="payment_status">
|
|
{ item.payment_status }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="fulfillment_status">
|
|
{ item.fulfillment_status }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="subtotal_amount">
|
|
{ item.subtotal_amount }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="discount_amount">
|
|
{ item.discount_amount }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="shipping_amount">
|
|
{ item.shipping_amount }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="tax_amount">
|
|
{ item.tax_amount }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="total_amount">
|
|
{ item.total_amount }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="currency_code">
|
|
{ item.currency_code }
|
|
</td>
|
|
|
|
|
|
|
|
|
|
|
|
<td data-label="customer_note">
|
|
{ item.customer_note }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="placed_at">
|
|
{ dataFormatter.dateTimeFormatter(item.placed_at) }
|
|
</td>
|
|
|
|
|
|
|
|
<td data-label="paid_at">
|
|
{ dataFormatter.dateTimeFormatter(item.paid_at) }
|
|
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{!shipping_methods?.orders_shipping_method?.length && <div className={'text-center py-4'}>No data</div>}
|
|
</CardBox>
|
|
</>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<BaseDivider />
|
|
|
|
<BaseButton
|
|
color='info'
|
|
label='Back'
|
|
onClick={() => router.push('/shipping_methods/shipping_methods-list')}
|
|
/>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
Shipping_methodsView.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated
|
|
|
|
permission={'READ_SHIPPING_METHODS'}
|
|
|
|
>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
)
|
|
}
|
|
|
|
export default Shipping_methodsView; |