22 コミット

作成者 SHA1 メッセージ 日付
  Alex Cheung f8fa390d85 Merge branch 'New_Enhancement' into CR013B1 3日前
  Jason Chuang 62c3a6bbfd FPS enable web-to-app 1週間前
  Alex Cheung 32c3b256da update check page 3週間前
  Alex Cheung fbd0a00b8b update db check page /databaseHealthCheck 4週間前
  Alex Cheung 520de2f87c update recon download file btn 1ヶ月前
  Alex Cheung 8a873414c6 update download btn disable 1ヶ月前
  Alex Cheung 0347064423 add get jvm info 2ヶ月前
  Alex Cheung 3fdf6311bb update jvm page 2ヶ月前
  Alex Cheung 7777e520c4 FIx FPS cancel 2ヶ月前
  Alex Cheung f5e671ca7f fix public notes save search criteria 2ヶ月前
  Jason Chuang 985118ae10 fix audit log export 2ヶ月前
  Alex Cheung ad333c8621 update SearchCriteria save 2ヶ月前
  Alex Cheung ab6377db8c update save page number for data gird 2ヶ月前
  Alex Cheung afd6fe0242 update massage 2ヶ月前
  Alex Cheung 3cf55a0191 update message 2ヶ月前
  Alex Cheung 673229bbe5 update org register remove '()' checking 2ヶ月前
  Alex Cheung 3cc816b55c update org user faxNo and org faxNo and dashboard clear search 3ヶ月前
  Alex Cheung f85eb71007 fix clear combo 3ヶ月前
  Alex Cheung 923c8577f3 update gld view searching and gld user search page bug fix 3ヶ月前
  Alex Cheung c2fe95a1a6 update application and bug fix 3ヶ月前
  Alex Cheung 70e6943b4a update public search criteria save 3ヶ月前
  Alex Cheung 868e84838d update proof searchCriteria save 3ヶ月前
4個のファイルの変更18行の追加42行の削除
分割表示
  1. +2
    -2
      src/layout/MainLayout/Header/index.js
  2. +7
    -13
      src/pages/Payment/FPS/FPS.js
  3. +0
    -22
      src/pages/Payment/Search_GLD/DataGrid.js
  4. +9
    -5
      src/routes/LoginRoutes.js

+ 2
- 2
src/layout/MainLayout/Header/index.js ファイルの表示

@@ -532,13 +532,13 @@ function Header(props) {
</Typography>
</Link>
</li>
{/* <li>
<li>
<Link className="login" to={'/userGuidePub'}>
<Typography style={{ opacity: 0.9 }} variant={"pnspsHeaderTitle"} sx={{ ml: 2 }}>
<FormattedMessage id="userGuide" />
</Typography>
</Link>
</li> */}
</li>
<li>
<Link className="login" to='/login'>
<Typography style={{ opacity: 0.9 }} variant={"pnspsHeaderTitle"} sx={{ ml: 2 }}>


+ 7
- 13
src/pages/Payment/FPS/FPS.js ファイルの表示

@@ -81,20 +81,14 @@ const Index = () => {
setLocationData(location.state)
setBrowserType(desktopBrowser)

if (localStorage.getItem('userData') != null){
const userId = JSON.parse(localStorage.getItem('userData')).id
if (userId === 13){
if (/Android|webOS|iPhone|iPad|iPod|Opera Mini/i.test(navigator.userAgent)) {
// console.log('Mobile web browser');
setBrowserType(mobileBrowser)
// setFpsqrcodeurl(openPASGUrl)
} else {
// console.log('Desktop web browser');
setBrowserType(desktopBrowser)
}
}
if (/Android|webOS|iPhone|iPad|iPod|Opera Mini/i.test(navigator.userAgent)) {
// console.log('Mobile web browser');
setBrowserType(mobileBrowser)
// setFpsqrcodeurl(openPASGUrl)
} else {
// console.log('Desktop web browser');
setBrowserType(desktopBrowser)
}

}
}, []);



+ 0
- 22
src/pages/Payment/Search_GLD/DataGrid.js ファイルの表示

@@ -7,10 +7,6 @@ import * as PaymentStatus from "utils/statusUtils/PaymentStatus"
import { useNavigate } from "react-router-dom";
import { FiDataGrid } from "components/FiDataGrid";
import { clickableLink } from 'utils/CommonFunction';
import {
Checkbox
// MenuItem
} from '@mui/material';
// ==============================|| EVENT TABLE ||============================== //

export default function SearchPaymentTable({ searchCriteria, applyGridOnReady, applySearch}) {
@@ -63,16 +59,6 @@ export default function SearchPaymentTable({ searchCriteria, applyGridOnReady, a
return clickableLink('/paymentPage/details/' + params.row.id, params.row.transNo);
},
},
{
id: 'payMethod',
field: 'payMethod',
headerName: 'Payment means',
flex: 1,
minWidth: 150,
renderCell: (params) => {
return <div style={{ marginTop: 2, marginBottom: 2 }}>{params.row.payMethod}</div>
}
},
{
id: 'transDateTime',
field: 'transDateTime',
@@ -83,14 +69,6 @@ export default function SearchPaymentTable({ searchCriteria, applyGridOnReady, a
return DateUtils.dateStr(params?.value);
}
},
{
field: 'bib',
headerName: 'BIB',
width: 150,
renderCell: (params) => {
return <Checkbox checked={params.row.bib} onChange={() => {set_paymentMethod("demandNote")}}/>;
}
},
{
field: 'action',
headerName: 'Status',


+ 9
- 5
src/routes/LoginRoutes.js ファイルの表示

@@ -16,7 +16,7 @@ const PrivacyPolicyPage = Loadable(lazy(() => import('pages/extra-pages/PrivacyP
const ImportantNoticePage = Loadable(lazy(() => import('pages/extra-pages/ImportantNoticePage')));
const AboutUsPage = Loadable(lazy(() => import('pages/extra-pages/AboutUs')));
const UserMenuPage = Loadable(lazy(() => import('pages/extra-pages/UserMenu')));
// const UserMenuPubPage = Loadable(lazy(() => import('pages/extra-pages/UserMenuPub')));
const UserMenuPubPage = Loadable(lazy(() => import('pages/extra-pages/UserMenuPub')));
const DatabaseHealthCheckPage = Loadable(lazy(() => import('pages/extra-pages/DatabaseHealthCheck')));


@@ -88,10 +88,14 @@ const LoginRoutes = {
path: 'userGuide',
element: <UserMenuPage/>
},
// {
// path: 'userGuidePub',
// element: <UserMenuPubPage/>
// },
{
path: 'userGuidePub',
element: <UserMenuPubPage/>
},
{
path: 'databaseHealthCheck',
element: <DatabaseHealthCheckPage/>
},
{
path: 'databaseHealthCheck',
element: <DatabaseHealthCheckPage/>


読み込み中…
キャンセル
保存