Compare commits
2 Commits
32888fa7a4
...
4d1735e3d5
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d1735e3d5 | |||
| 69040d289e |
@ -94,13 +94,7 @@ export function useProformasGridColumns(
|
|||||||
),
|
),
|
||||||
cell: ({ row }) => DateHelper.format(row.original.invoiceDate),
|
cell: ({ row }) => DateHelper.format(row.original.invoiceDate),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
id: "series",
|
|
||||||
accessorKey: "series",
|
|
||||||
header: "Serie",
|
|
||||||
enableHiding: true,
|
|
||||||
enableSorting: false,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "invoiceNumber",
|
id: "invoiceNumber",
|
||||||
accessorKey: "invoiceNumber",
|
accessorKey: "invoiceNumber",
|
||||||
@ -185,7 +179,13 @@ export function useProformasGridColumns(
|
|||||||
cellClassName: "max-w-128",
|
cellClassName: "max-w-128",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: "series",
|
||||||
|
accessorKey: "series",
|
||||||
|
header: "Serie",
|
||||||
|
enableHiding: true,
|
||||||
|
enableSorting: false,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "reference",
|
id: "reference",
|
||||||
accessorKey: "reference",
|
accessorKey: "reference",
|
||||||
|
|||||||
@ -21,6 +21,8 @@ export const mapProformaToProformaUpdateForm = (proforma: Proforma): ProformaUpd
|
|||||||
const fiscalDefaults = resolveFiscalDefaults(proforma, proformaDefaults);
|
const fiscalDefaults = resolveFiscalDefaults(proforma, proformaDefaults);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
invoiceNumber: proforma.invoiceNumber,
|
||||||
|
|
||||||
series: proforma.series ?? proformaDefaults.series,
|
series: proforma.series ?? proformaDefaults.series,
|
||||||
|
|
||||||
invoiceDate: proforma.invoiceDate ?? proformaDefaults.invoiceDate,
|
invoiceDate: proforma.invoiceDate ?? proformaDefaults.invoiceDate,
|
||||||
|
|||||||
@ -18,6 +18,8 @@ import type { ProformaItemUpdateForm } from "./proforma-item-update-form.entity"
|
|||||||
export type ProformaTaxMode = "single" | "perLine";
|
export type ProformaTaxMode = "single" | "perLine";
|
||||||
|
|
||||||
export interface ProformaUpdateForm {
|
export interface ProformaUpdateForm {
|
||||||
|
invoiceNumber: string;
|
||||||
|
|
||||||
series: string;
|
series: string;
|
||||||
|
|
||||||
invoiceDate: string;
|
invoiceDate: string;
|
||||||
|
|||||||
@ -38,7 +38,7 @@ export const ProformaUpdateHeaderEditor = ({
|
|||||||
<FormSectionGrid>
|
<FormSectionGrid>
|
||||||
<TextField
|
<TextField
|
||||||
className="md:col-span-2"
|
className="md:col-span-2"
|
||||||
disabled={disabled}
|
disabled={true}
|
||||||
label={t("form_fields.proformas.invoice_number.label")}
|
label={t("form_fields.proformas.invoice_number.label")}
|
||||||
maxLength={16}
|
maxLength={16}
|
||||||
name="invoiceNumber"
|
name="invoiceNumber"
|
||||||
|
|||||||
@ -16,14 +16,6 @@ import type { NativeInputProps } from "./types.ts";
|
|||||||
|
|
||||||
export type ProformaFieldSpan = "xs" | "sm" | "md" | "lg" | "full";
|
export type ProformaFieldSpan = "xs" | "sm" | "md" | "lg" | "full";
|
||||||
|
|
||||||
const fieldSpanClasses: Record<ProformaFieldSpan, string> = {
|
|
||||||
xs: "md:col-span-2",
|
|
||||||
sm: "md:col-span-3",
|
|
||||||
md: "md:col-span-4",
|
|
||||||
lg: "md:col-span-6",
|
|
||||||
full: "md:col-span-12",
|
|
||||||
};
|
|
||||||
|
|
||||||
type TextFieldProps<TFormValues extends FieldValues> = Omit<NativeInputProps, "name"> & {
|
type TextFieldProps<TFormValues extends FieldValues> = Omit<NativeInputProps, "name"> & {
|
||||||
name: FieldPath<TFormValues>;
|
name: FieldPath<TFormValues>;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user