limpia lineas de orden

master
Freddy Heredia 2 years ago
parent 070680add8
commit 7023a1fe45

@ -1,17 +1,18 @@
import { useEffect, useState } from 'react' import { useContext, useEffect, useState } from 'react'
import { FlatList, RefreshControl, Text, View } from 'react-native' import { FlatList, RefreshControl, Text, View } from 'react-native'
import { useNavigation } from '@react-navigation/native'; import { useNavigation } from '@react-navigation/native';
import { Card } from '../../components/Card' import { Card } from '../../components/Card'
import { CardList } from '../../components/cardList/CardList' import { CardList } from '../../components/cardList/CardList'
import { Button } from '../../components/Button' import { Button } from '../../components/Button'
import { useFetchWithAuth } from '../../hooks/useFetchWithAuth' import { useFetchWithAuth } from '../../hooks/useFetchWithAuth'
import { SalesOrderContext } from './SalesOrderContex';
export const SalesOrderListScreen = () => { export const SalesOrderListScreen = () => {
const navigation = useNavigation(); const navigation = useNavigation();
const [refreshing, setRefreshing] = useState(false); const [refreshing, setRefreshing] = useState(false);
const endpoints = "pedido"; const endpoints = "pedido";
let defaultData: [] = []; let defaultData: [] = [];
const { setLines } = useContext(SalesOrderContext);
const [entities, setEntities] = useState(defaultData); const [entities, setEntities] = useState(defaultData);
const getInitData = async () => { const getInitData = async () => {
@ -39,7 +40,10 @@ export const SalesOrderListScreen = () => {
<Button <Button
title=' + ' title=' + '
additionalStyle='z-10 absolute bottom-2 right-0' additionalStyle='z-10 absolute bottom-2 right-0'
onPress={() => navigation.navigate("SalesOrderFormScreen" as never)} /> onPress={() => {
setLines([]);
navigation.navigate("SalesOrderFormScreen" as never)}
} />
<FlatList <FlatList
refreshControl={ refreshControl={
<RefreshControl <RefreshControl

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Loading…
Cancel
Save