|
@@ -291,6 +291,7 @@
|
|
|
if (!CUST_CFG.hasOwnProperty('continuousOutput')) {
|
|
|
CUST_CFG.continuousOutput = false;
|
|
|
}
|
|
|
+ //
|
|
|
const PROJECT_ID = <%- project_id %>;
|
|
|
const TENDER_ID = <%- tender_id %>;
|
|
|
const TENDER_NAME = '<%- tender_name %>';
|
|
@@ -301,6 +302,12 @@
|
|
|
const STAGE_LIST = <%- stage_list %>;
|
|
|
const PRJ_ACCOUNT_LIST = <%- prj_account_list %>;
|
|
|
const ROLE_LIST = <%- role_list %>;
|
|
|
+ const CUST_NAME = '<%- ctx.session.sessionUser.name %>';
|
|
|
+ if (localStorage[CUST_NAME + '_custCfg']) {
|
|
|
+ CUST_CFG = JSON.parse(localStorage[CUST_NAME + '_custCfg']);
|
|
|
+ } else {
|
|
|
+ localStorage[CUST_NAME + '_custCfg'] = JSON.stringify(CUST_CFG);
|
|
|
+ }
|
|
|
let USED_LIST = <%- used_list %>;
|
|
|
const STAGE_STATUS = <%- stg_status %>;
|
|
|
const FOLDER_SEPERATER = '->';
|