karlenigma
12/01/2017, 5:02 PMfunction SetSellingPriceDate(scriptContext) {
if (context.type === context.UserEventType.CREATE) {
var sellingPrice = compRec.getValue({fieldId: 'custrecord_competitor_code_selling_price'});
if (!sellingPrice) {
var uploadDate = new Date();
compRec.setValue({fieldId: 'custrecord_competitor_code_date_price', value: uploadDate});
}
}
}