Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add default customer message and terms conditions to the transactions #291

Merged
merged 6 commits into from
Dec 16, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore: doc comments
  • Loading branch information
abouolia committed Dec 16, 2023
commit eb1ff7c1518a2f2f04cb73580c9f7b00afb03253
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { PreferencesCreditNotesBoot } from './PreferencesCreditNotesFormBoot';
import { PreferencesCreditNotesFormPage } from './PreferencesCreditNotesFormPage';

/**
* items preferences.
* Credit notes preferences.
*/
export function PreferencesCreditNotes() {
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { useHistory } from 'react-router-dom';
import { FormattedMessage as T, FFormGroup, FTextArea } from '@/components';

/**
* Preferences estimates form.
* Preferences credit notes form.
*/
export function PreferencesCreditNotesForm({ isSubmitting }) {
const history = useHistory();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function PreferencesCreditNotesBoot({ ...props }) {

// Provider state.
const provider = {
organization: {},
isSettingsLoading,
};
// Detarmines whether if any query is loading.
const isLoading = isSettingsLoading;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const defaultValues = {
};

/**
* Preferences - .
* Preferences estimates form.
*/
function PreferencesEstimatesFormPageRoot({
// #withDashboardActions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { useHistory } from 'react-router-dom';
import { FormattedMessage as T, FFormGroup, FTextArea } from '@/components';

/**
* Preferences general form.
* Invoices preferences form.
*/
export function PreferencesInvoicesForm({ isSubmitting }) {
const history = useHistory();
Expand Down