Fix shipment date

main
Ashelyn Dawn 5 years ago
parent 7e7d7b582f
commit ce1fba6978

@ -4,6 +4,7 @@ import Link from 'next/link'
import {Button} from '@rmwc/button'
import AdminToolbar from '~/components/admin/actionBar'
import Table from '~/components/table'
import {DateTime} from 'luxon'
AdminShipments.getInitialProps = async ({ctx: {axios}}) => {
const {data: shipments} = await axios.get('/api/shipments')
@ -19,7 +20,7 @@ export default function AdminShipments({shipments}){
<Table
columns={[
{name: 'Note', extractor: shipment => shipment.description},
{name: 'Date', extractor: shipment => shipment.date},
{name: 'Date', extractor: shipment => DateTime.fromISO(shipment.date).setZone('local').toFormat('LLLL dd, h:mm a')},
{name: 'Quantity', extractor: ({stockchanges}) => {
const totalAdded = stockchanges
.filter(stockchange => stockchange.direction === 'added')

Loading…
Cancel
Save