Skip to content

Commit

Permalink
Merge pull request #652 from odisha-muktasoft/UCEM-726-FIX
Browse files Browse the repository at this point in the history
Ucem 726 fix
  • Loading branch information
Tulika-eGov authored Sep 5, 2024
2 parents f8e0625 + 16940f0 commit 9d53781
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export const BillsSearch = {
asSectionHeader: true,
values: [
{ title: "WORKS_BILL_NUMBER", value: billData?.billNumber || "NA"},
{ title: "WORKS_BILL_DATE", value: Digit.Utils.pt.convertEpochToDate(billData?.billDate) || "NA"},
{ title: "WORKS_BILL_DATE", value: Digit.Utils.pt.convertEpochToDate(billData?.auditDetails?.createdTime) || "NA"},
{ title: "WORKS_ORDER_NO", value: WOData?.contractNumber || "NA"},
{ title: "WORKS_PROJECT_ID", value: WOData?.additionalDetails?.projectId || "NA"},
{ title: "PROJECTS_DESCRIPTION", value: WOData?.additionalDetails?.projectDesc || "NA"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const fetchData = async (sorid, state, setState, setShowToast) => {

const searchSor = (props) => {
const { t } = useTranslation();
const [stateData, setStateData] = useState({});
const [stateData, setStateData] = useState({SORType:"W"});
const [selectedSOR, setSelectedSOR] = useState(null);
const [showToast, setShowToast] = useState({show : false, label : "", error : false});
const { register, setValue, watch } = props;
Expand Down

0 comments on commit 9d53781

Please sign in to comment.