mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
feat(customer): add customer opening balance dialog.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import * as Yup from 'yup';
|
||||
|
||||
const Schema = Yup.object().shape({
|
||||
opening_balance_branch_id: Yup.string(),
|
||||
opening_balance: Yup.number().nullable(),
|
||||
opening_balance_at: Yup.date(),
|
||||
opening_balance_exchange_rate: Yup.number(),
|
||||
});
|
||||
|
||||
export const CreateCustomerOpeningBalanceFormSchema = Schema;
|
||||
Reference in New Issue
Block a user