Set ERP_CODE_VERSION Current Time

Set ERP_CODE_VERSION Current Time; like: 202101281552

اعتبارا من 01-02-2021. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         Set ERP_CODE_VERSION Current Time
// @namespace    http://172.31.0.64:8080/*
// @version      3.1
// @description  Set ERP_CODE_VERSION Current Time; like: 202101281552
// @author       You
// @match        http://172.31.0.64:8080/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    Date.prototype.Format = function (fmt) {
        var o = {
            "M+": this.getMonth() + 1, //月份
            "d+": this.getDate(), //日
            "h+": this.getHours(), //小时
            "m+": this.getMinutes(), //分
            "s+": this.getSeconds(), //秒
            "q+": Math.floor((this.getMonth() + 3) / 3), //季度
            "S": this.getMilliseconds() //毫秒
        };
        if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
        for (var k in o) if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
        return fmt;
    }

    var now = new Date().Format("yyyyMMddhhmm");

    //console.log(now);

    var white_list = ['ERP_CODE_VERSION', 'ERP_FILE_VERSION'];

    var S = "#main-panel > form > table > tbody:nth-child(1) > tr:nth-child(1) > td.setting-main > div > input.setting-input";
    var col = "#main-panel > form > table > tbody:nth-child(1) > tr:nth-child(1) > td.setting-name";

    //console.log(document.querySelector(col).innerHTML);
    //console.log(white_list.indexOf(document.querySelector(col).innerHTML));

    if(white_list.indexOf(document.querySelector(col).innerHTML) >= 0){
        document.querySelector(S).setAttribute('value', now);
    };

    // Your code here...
})();