28 changed files with 488 additions and 196 deletions
@ -0,0 +1,29 @@
|
||||
<?php |
||||
|
||||
use App\Libraries\AldLibrary; |
||||
if (!function_exists('currentMonth')) { |
||||
function currentMonth() |
||||
{ |
||||
$Ald = new AldLibrary; |
||||
$username = session('nip'); |
||||
return $Ald->encryptMe(date('m'), $username); |
||||
} |
||||
} |
||||
|
||||
if (!function_exists('currentYear')) { |
||||
function currentYear() |
||||
{ |
||||
$Ald = new AldLibrary; |
||||
$username = session('nip'); |
||||
return $Ald->encryptMe(date('Y'), $username); |
||||
} |
||||
} |
||||
|
||||
if (!function_exists('encryptData')) { |
||||
function encryptData($text) |
||||
{ |
||||
$Ald = new AldLibrary; |
||||
$username = session('nip'); |
||||
return $Ald->encryptMe($text, $username); |
||||
} |
||||
} |
File diff suppressed because one or more lines are too long
@ -0,0 +1,16 @@
|
||||
import { createSlice, createAsyncThunk } from "@reduxjs/toolkit" |
||||
export const kpdlSlice = createSlice({ |
||||
name: "kpdl", |
||||
initialState: { |
||||
selectedOpsi: null |
||||
}, |
||||
reducers: { |
||||
setSelectedOpsi: (state, action) => { |
||||
state.selectedOpsi = action.payload |
||||
} |
||||
} |
||||
}) |
||||
|
||||
export const { setSelectedOpsi } = kpdlSlice.actions |
||||
|
||||
export default kpdlSlice.reducer |
@ -0,0 +1,15 @@
|
||||
import { configureStore } from "@reduxjs/toolkit" |
||||
import kpdl from "./KpdlStore" |
||||
const rootReducer = { |
||||
kpdl |
||||
} |
||||
const store = configureStore({ |
||||
reducer: rootReducer, |
||||
middleware: (getDefaultMiddleware) => { |
||||
return getDefaultMiddleware({ |
||||
serializableCheck: false |
||||
}) |
||||
} |
||||
}) |
||||
|
||||
export { store } |
@ -1,6 +1,6 @@
|
||||
export const isObjEmpty = (obj) => Object.keys(obj).length === 0 |
||||
export function format_angka(num) { |
||||
var num_parts = num.toString().split("."); |
||||
num_parts[0] = num_parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, "."); |
||||
return num_parts.join(","); |
||||
} |
||||
var num_parts = num.toString().split(".") |
||||
num_parts[0] = num_parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ".") |
||||
return num_parts.join(",") |
||||
} |
||||
|
Loading…
Reference in new issue