|
@@ -1880,6 +1880,7 @@ export const useHooks = (t?: any) => {
|
|
|
"erp_pzname",
|
|
|
"erp_pzcode",
|
|
|
"bj_pzname",
|
|
|
+ "bj_namemx",
|
|
|
"itemname",
|
|
|
"actual_size",
|
|
|
"sb_craft",
|
|
@@ -1895,7 +1896,9 @@ export const useHooks = (t?: any) => {
|
|
|
mx.bj_inputtype = mx2.bj_inputtype;
|
|
|
mx.bj_namemx = mx2.bj_namemx;
|
|
|
} else {
|
|
|
- mx = cloneDeep(mx2);
|
|
|
+ PRESERVE_PROPS.forEach(prop => {
|
|
|
+ mx[prop] = mx2[prop];
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
return mx;
|