addscss
This commit is contained in:
parent
1c464221a2
commit
544e282bd0
|
|
@ -15,6 +15,7 @@ import {
|
||||||
import { useDispatch, useSelector } from 'react-redux';
|
import { useDispatch, useSelector } from 'react-redux';
|
||||||
import { validateSafeInput } from '../../../../../Services/Others';
|
import { validateSafeInput } from '../../../../../Services/Others';
|
||||||
import { TextAreaInput } from '../../../../../../ownLib/my-ui-lib';
|
import { TextAreaInput } from '../../../../../../ownLib/my-ui-lib';
|
||||||
|
import "../../../../../Styles/BookingScreen/Components/BSBillingTables/BSBillingEditQuantity/BSBillingEditQuantity.scss"
|
||||||
const BSImeiDetails = (props) => {
|
const BSImeiDetails = (props) => {
|
||||||
const formRef = useRef(null);
|
const formRef = useRef(null);
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
|
|
@ -89,7 +90,7 @@ const BSImeiDetails = (props) => {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
setMessageType('error');
|
setMessageType('error');
|
||||||
setMessageData('you cant enter more than Order Qty');
|
setMessageData('you cant enter more than Order Qty');
|
||||||
}
|
}
|
||||||
|
|
||||||
formRef.current?.resetFields();
|
formRef.current?.resetFields();
|
||||||
|
|
@ -184,7 +185,7 @@ const BSImeiDetails = (props) => {
|
||||||
<DefaultModal
|
<DefaultModal
|
||||||
title={
|
title={
|
||||||
<div className="EditQuantity-title">
|
<div className="EditQuantity-title">
|
||||||
<FormHeader title={'Device Identifieer'} />
|
<FormHeader title={'Device Identifier'} />
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
open={DeviceDetailOpen}
|
open={DeviceDetailOpen}
|
||||||
|
|
@ -385,6 +386,10 @@ const BSImeiDetails = (props) => {
|
||||||
<div style={{ display: "flex", marginTop: "10px" }}>
|
<div style={{ display: "flex", marginTop: "10px" }}>
|
||||||
<Form.Item name="description">
|
<Form.Item name="description">
|
||||||
<TextAreaInput
|
<TextAreaInput
|
||||||
|
disabled={
|
||||||
|
(IMEINumberList?.length === 0) &&
|
||||||
|
(SerialNumberList?.length === 0)
|
||||||
|
}
|
||||||
autoComplete="off"
|
autoComplete="off"
|
||||||
label={<label>Description..</label>}
|
label={<label>Description..</label>}
|
||||||
defaultValue=""
|
defaultValue=""
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue