我有一个正在运行的客户端脚本,该脚本从案例记录的“项目”字段设置时间跟踪子列表行的服务项目。这发生在lineInit上,并在我添加新行时起作用。 我的问题是我希望它能在第一行中工作。记录加载后,会有一行已经填充了一些数据,但没有填写服务项目。
如果有人能指出我正确的方向,我将不胜感激。可以在pageInit或fieldChanged上工作吗-就像在更新另一个行字段之后更新服务项?
/**
* @NApiVersion 2.x
* @NScriptType ClientScript
* @NModuleScope SameAccount
*/
define([],
function() {
/**
* Function to be executed when field is slaved.
*
* @param {Object} scriptContext
* @param {Record} scriptContext.currentRecord - Current form record
* @param {string} scriptContext.sublistId - Sublist name
* @param {string} scriptContext.fieldId - Field name
*
* @since 2015.2
*/
function lineInit(scriptContext) {
if (scriptContext.sublistId !== 'timeitem'){
console.log('test3');
return;
}
/* {N/currentRecord.CurrentRecord} */
var rec = scriptContext.currentRecord;
/* {string} The Service Item in the Body, if any */
var bodyItem = rec.getValue({fieldId: 'item'});
/* {string} The class that has been set at the line level, if any */
var lineServiceItem = rec.getCurrentSublistValue({
sublistId: 'timeitem',
fieldId: 'item'
});
/* IF there IS a value at the body level, and there is NOT a value at the line */
if (bodyItem && !lineServiceItem) {
console.log('test4');
/* Set the line value to the body value */
rec.setCurrentSublistValue({
sublistId: 'timeitem',
fieldId: 'item',
value: bodyItem
});
}
}
return {
lineInit: lineInit
};
});
答案 0 :(得分:0)
第一行(或处于编辑模式的当前行)必须在pageInit期间填充。
function setLineItem(context, isPageInit) {
if (isPageInit || (context.sublistId === 'timeitem')) {
// set value
}
}
function pageInit(context) {
setLineItem(context, true);
}
function lineInit(context) {
setLineItem(context);
}