This commit is contained in:
‘937886381’
2024-07-25 14:13:35 +08:00
parent 8ecf281f08
commit 737949d3ec
50 changed files with 1508 additions and 777 deletions

View File

@@ -551,15 +551,15 @@ function getFactoryTargetValueA(targetList, factoryId) {
*/
function initA() {
const t_ = {
current: Array(7).fill(0),
previous: Array(7).fill(0),
current: Array(2).fill(0),
previous: Array(2).fill(0),
};
// 芯片OEE
// 转化效率
// 标准组件良率
const stdRate = {
...deepClone(t_),
target: Array(7).fill(0),
target: Array(2).fill(0),
};
// 芯片良率
const transformRate = deepClone(stdRate);
@@ -579,8 +579,8 @@ function initA() {
*/
function init() {
const t_ = {
current: Array(7).fill(0),
previous: Array(7).fill(0),
current: Array(2).fill(0),
previous: Array(2).fill(0),
};
// 芯片投入
const chipInvest = deepClone(t_);
@@ -589,7 +589,7 @@ function init() {
// 芯片产出
const chipOutput = {
...deepClone(t_),
target: Array(7).fill(0),
target: Array(2).fill(0),
};
// 标准组件产出
const stdOutput = deepClone(chipOutput);