Compare commits
No commits in common. "9e65f6d46df33abfc6c52cc3b4a989ffd9eb1252" and "a23ff0c00863e979b30ae210e6d83f4dfb0378cc" have entirely different histories.
9e65f6d46d
...
a23ff0c008
@ -129,9 +129,7 @@ const DocumentPrinterInfo = () => {
|
|||||||
}}
|
}}
|
||||||
editLoading={objectFormState.editLoading}
|
editLoading={objectFormState.editLoading}
|
||||||
formValid={objectFormState.formValid}
|
formValid={objectFormState.formValid}
|
||||||
disabled={
|
disabled={objectFormState.beingEditedByOther || objectFormState.loading}
|
||||||
objectFormState.beingEditedByOther || objectFormState.loading
|
|
||||||
}
|
|
||||||
loading={objectFormState.editLoading}
|
loading={objectFormState.editLoading}
|
||||||
/>
|
/>
|
||||||
</Space>
|
</Space>
|
||||||
@ -166,7 +164,6 @@ const DocumentPrinterInfo = () => {
|
|||||||
loading={loading}
|
loading={loading}
|
||||||
indicator={<LoadingOutlined />}
|
indicator={<LoadingOutlined />}
|
||||||
isEditing={isEditing}
|
isEditing={isEditing}
|
||||||
labelWidth={165}
|
|
||||||
type='documentPrinter'
|
type='documentPrinter'
|
||||||
objectData={objectData}
|
objectData={objectData}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -21,7 +21,6 @@ const NewDocumentPrinter = ({ onOk, defaultValues }) => {
|
|||||||
bordered={false}
|
bordered={false}
|
||||||
isEditing={true}
|
isEditing={true}
|
||||||
required={true}
|
required={true}
|
||||||
labelWidth={100}
|
|
||||||
objectData={objectData}
|
objectData={objectData}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
@ -36,7 +35,6 @@ const NewDocumentPrinter = ({ onOk, defaultValues }) => {
|
|||||||
bordered={false}
|
bordered={false}
|
||||||
isEditing={true}
|
isEditing={true}
|
||||||
required={false}
|
required={false}
|
||||||
labelWidth={125}
|
|
||||||
visibleProperties={{ content: false, testObject: false }}
|
visibleProperties={{ content: false, testObject: false }}
|
||||||
objectData={objectData}
|
objectData={objectData}
|
||||||
/>
|
/>
|
||||||
@ -54,12 +52,8 @@ const NewDocumentPrinter = ({ onOk, defaultValues }) => {
|
|||||||
_id: false,
|
_id: false,
|
||||||
_reference: false,
|
_reference: false,
|
||||||
createdAt: false,
|
createdAt: false,
|
||||||
connectedAt: false,
|
|
||||||
state: false,
|
|
||||||
online: false,
|
|
||||||
updatedAt: false
|
updatedAt: false
|
||||||
}}
|
}}
|
||||||
labelWidth={130}
|
|
||||||
isEditing={false}
|
isEditing={false}
|
||||||
objectData={objectData}
|
objectData={objectData}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -91,13 +91,6 @@ export const DocumentPrinter = {
|
|||||||
readOnly: true,
|
readOnly: true,
|
||||||
columnWidth: 180
|
columnWidth: 180
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: 'updatedAt',
|
|
||||||
label: 'Updated At',
|
|
||||||
type: 'dateTime',
|
|
||||||
readOnly: true,
|
|
||||||
columnWidth: 175
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: 'name',
|
name: 'name',
|
||||||
label: 'Name',
|
label: 'Name',
|
||||||
@ -106,15 +99,13 @@ export const DocumentPrinter = {
|
|||||||
columnWidth: 200,
|
columnWidth: 200,
|
||||||
columnFixed: 'left'
|
columnFixed: 'left'
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
name: 'connectedAt',
|
name: 'updatedAt',
|
||||||
label: 'Connected At',
|
label: 'Updated At',
|
||||||
type: 'dateTime',
|
type: 'dateTime',
|
||||||
readOnly: true,
|
readOnly: true,
|
||||||
columnWidth: 175
|
columnWidth: 175
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
name: 'state',
|
name: 'state',
|
||||||
label: 'Status',
|
label: 'Status',
|
||||||
@ -124,7 +115,13 @@ export const DocumentPrinter = {
|
|||||||
readOnly: true,
|
readOnly: true,
|
||||||
columnWidth: 260
|
columnWidth: 260
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'connectedAt',
|
||||||
|
label: 'Connected At',
|
||||||
|
type: 'dateTime',
|
||||||
|
readOnly: true,
|
||||||
|
columnWidth: 175
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'online',
|
name: 'online',
|
||||||
label: 'Online',
|
label: 'Online',
|
||||||
@ -211,7 +208,7 @@ export const DocumentPrinter = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'currentDocumentSize',
|
name: 'currentDocumentSize',
|
||||||
label: 'Document Size',
|
label: 'Current Document Size',
|
||||||
required: false,
|
required: false,
|
||||||
type: 'object',
|
type: 'object',
|
||||||
objectType: 'documentSize',
|
objectType: 'documentSize',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user