Files
bigcapital/src/containers/Preferences/Item/ItemPreferences.schema.tsx
2022-09-19 21:16:02 +02:00

11 lines
288 B
TypeScript

// @ts-nocheck
import * as Yup from 'yup';
const Schema = Yup.object().shape({
preferred_sell_account: Yup.number().nullable(),
preferred_cost_account: Yup.number().nullable(),
preferred_inventory_account: Yup.number().nullable(),
});
export const ItemPreferencesSchema = Schema;