- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图使用以下代码通过SuiteScript 2.0在客户端脚本中以编程方式(自动)创建“ list 详细信息”字段。库存调整表单上的项目行将被部分输入(直到“调整数量”字段为止),然后在此我要自动添加“库存明细”。
但是,代码错误就行了
inventoryDetailSubrecord = currentRecord.getSubrecord({
fieldId: 'inventorydetail'
});
SSS_INVALID_FIELD_ON_SUBRECORD_OPERATION
。我不知道为什么会引发此错误,因为
fieldId
绝对有效。几乎没有有关此错误的信息。有谁知道我要去哪里错了?
/**
* @NApiVersion 2.0
* @NScriptType ClientScript
* @NModuleScope SameAccount
*/
define(['N/search'], function (s) {
// Client Script global variables.
var allowSave = true;
var firstItemNegative = false;
var firstItemParentID = -9999;
function fieldChanged(context) {
var currentRecord = context.currentRecord; // Current opened record.
var sublistName = context.sublistId; // The internal ID of the sublist.
var sublistFieldName = context.fieldId; // The internal ID of the field that was changed.
var currentLine = context.line; // Line number (first line has value = 0) of Item User is on.
// Run when the Item field of the inventory sublist changed.
// Item for some reason does not fire a change event, so using item description instead.
// This means the description has to be required for these types of items.
if (sublistName === 'inventory' && sublistFieldName === 'description') {
// Check how many lines exist in the inventory sublist.
var lines = currentRecord.getLineCount({sublistId: 'inventory'});
// console.info("SS lines: " + lines);
// if (currentRecord.isDynamic) {
// console.info("SS isDynamic: true"); // currentRecord is Dynamic.
// } else {
// console.info("SS isDynamic: false");
// }
// Run when the Adjust Qty. By field of the inventory sublist changed.
} else if (sublistName === 'inventory' && sublistFieldName === 'adjustqtyby') {
console.info("SS fieldChanged: " + (context.sublistId || "record") + "." + context.fieldId);
console.info("SS currentLine: " + currentLine);
// Check how many lines exist in the inventory sublist.
var lines = currentRecord.getLineCount({sublistId: 'inventory'});
console.info("SS lines: " + lines);
var total; // Total used to check whether sum of quantities is zero.
var quantity; // Used to hold quantity for current line item.
var inventoryDetailSubrecord; // Used to access the Inventory Detail Icon fields.
for (var i = 0; i <= lines; i++) {
// If we are on the first item line.
if (i === 0) {
if (i === currentLine) {
// Get the first item line's Adjust Qty. By field value.
// Note that the value could be invalid in which case 0 is used.
// For partially entered lines.
total = (parseFloat(currentRecord.getCurrentSublistValue({
sublistId: "inventory",
fieldId: "adjustqtyby"
})) || 0);
} else {
// Get the first item line's Adjust Qty. By field value.
// For completed lines that have been Added.
total = (parseFloat(currentRecord.getSublistValue({
sublistId: "inventory",
fieldId: "adjustqtyby",
line: i
})) || 0);
}
console.info("SS total first line: " + total);
// If the quantity of the first line is positive then this is a real Inventory Adjustment
// and not a roll that was cut into smaller inventory.
if (total >= 0) {
firstItemNegative = false;
} else {
firstItemNegative = true;
}
} else if (i > 0) { // For non-first lines.
if (i === currentLine) {
// Get the current item line's Adjust Qty. By field value.
quantity = (parseFloat(currentRecord.getCurrentSublistValue({
sublistId: "inventory",
fieldId: "adjustqtyby"
})) || 0);
// If the first item is negative then we have to increment the lot number.
if (firstItemNegative) {
// Get the inventory detail subrecord of the current line.
inventoryDetailSubrecord = currentRecord.getCurrentSublistSubrecord({
sublistId: 'inventory',
fieldId: 'inventorydetail'
});
// If the inventory detail subrecord does not exist, then create one.
if (!inventoryDetailSubrecord) {
// Errors with SSS_INVALID_FIELD_ON_SUBRECORD_OPERATION.
inventoryDetailSubrecord = currentRecord.getSubrecord({
fieldId: 'inventorydetail'
});
// Select a new inventory detail subrecord line.
inventoryDetailSubrecord.selectNewLine({
sublistId: 'inventory'
});
// Set the lot number.
inventoryDetailSubrecord.setCurrentSublistValue({
sublistId: 'inventory',
fieldId: 'issueinventorynumber',
value: '1'
});
// Set the quantity.
inventoryDetailSubrecord.setCurrentSublistValue({
sublistId: 'inventory',
fieldId: 'quantity',
value: quantity
});
// Commit the sublist.
objRecord.commitLine({
sublistId: 'inventory'
});
} // if (!inventoryDetailSubrecord)
} // if (firstItemNegative)
} else {
// Get the current item line's Adjust Qty. By field value.
quantity = (parseFloat(currentRecord.getSublistValue({
sublistId: "inventory",
fieldId: "adjustqtyby",
line: i
})) || 0);
}
console.info("SS quantity: " + quantity);
// If the first item is negative then we have to keep a running total of the quantities.
if (firstItemNegative) {
total = total + quantity;
console.info("SS total other lines: " + total);
} else { // If the first item is positive we have to check that there are no other negative quantities.
if (quantity < 0) {
allowSave = false;
// Show modeless Netsuite banner message at top of screen that is replaced by subsequent messages.
// If you use the same id in the first parameter it will overwrite the message, if you supply a different id you will see new messages uniquely in the page.
showAlertBox(
"my_element_id", // Dummy element id of alert.
"Error:", // Message header.
'Inventory Item line number ' + (i + 1) + ' has a negative "Adjust Qty. By" field value. Negative values are only allowed for the first item.',
3, // Colour of alert: 0 - Success (green), 1 - Information (blue), 2 - Warning (yellow), 3 - Error (red)
"","","","" // Not sure what this does.
);
break;
}
}
} // if (i === 0)
} // for (var i = 0; i < lines + 1; i++)
console.info("SS total end: " + total);
// If the total of the quantities are not zero then error. Allow if only the first line exists.
if (total !== 0 && lines !== 0) {
allowSave = false;
if (total < 0) {
showAlertBox(
"my_element_id", // Dummy element id of alert.
"Error:", // Message header.
'Error: The total of the "Adjust Qty. By" fields must equal zero. You are under by ' + (-total),
3, // Colour of alert: 0 - Success (green), 1 - Information (blue), 2 - Warning (yellow), 3 - Error (red)
"","","","" // Not sure what this does.
);
} else {
showAlertBox(
"my_element_id", // Dummy element id of alert.
"Error:", // Message header.
'Error: The total of the "Adjust Qty. By" fields must equal zero. You are over by ' + total,
3, // Colour of alert: 0 - Success (green), 1 - Information (blue), 2 - Warning (yellow), 3 - Error (red)
"","","","" // Not sure what this does.
);
}
} else {
allowSave = true;
}
} // if (sublistName === 'inventory' && sublistFieldName === 'description')
// Clear any error messages to show that all fields validated.
if (allowSave) {
showAlertBox(
"my_element_id", // Dummy element id of alert.
"Success:", // Message header.
'Validation passed.',
0, // Colour of alert: 0 - Success (green), 1 - Information (blue), 2 - Warning (yellow), 3 - Error (red)
"","","","" // Not sure what this does.
);
}
} // fieldChanged
function saveRecord() {
// debugger;
console.info("SS saveRecord");
if (!allowSave) {
alert("Error: Save failed. There are error messages at the top of the page.");
}
return allowSave;
} // saveRecord
return {
fieldChanged: fieldChanged,
saveRecord: saveRecord
};
}); // Define
最佳答案
不能使用客户端脚本创建子记录。您将需要使用用户事件脚本,或者可能要从客户端脚本发布到Suitelet。
导致该错误的原因是,当使用getSubrecord
时,如果NetSuite不存在该记录,它将尝试创建该记录。
从文档中:
A client script may not create subrecords on the current record and is limited to read-only access of existing subrecords on the current record. The client script may remove the subrecord from the current record.
关于NetSuite SuiteScript 2.0无法以编程方式输入部分创建的当前记录的“库存详细信息”子列表子记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53958616/
目录 进程 其他相关概念 创建线程的两种方式 为什么使用start()方法而不直接使用run()方法 start()方法底层
CURL状态码列表 状态码 状态原因 解释 0 正常访问
ODBC连接类函数 odbc_connect函数:打开一个ODBC连接 odbc_close函数:关闭一个已经打开的ODBC连接 odbc_close_all函数:关闭所有已经打开的ODBC连
作为标题,如何计算从纪元1900到现在使用boost的持续时间? 编辑:很抱歉以前的问题太短。我将再次描述我的问题。 我有关于将生日另存为整数的问题。我创建了四个函数,用法如下: ptime转换为整数
前言 在Java中,有一个常被忽略 但 非常重要的关键字Synchronized今天,我将详细讲解 Java关键字Synchronized的所有知识,希望你们会喜欢 目录 1. 定义 J
详细 JVM 垃圾收集日志的时间戳是收集的开始还是结束? 2016-08-09T21:04:19.756-0400: 224890.317: [GC Desired survivor size 167
我在“Master-Detail”概念上苦苦挣扎,除了一点点(但很重要)的细微差别外,几乎所有东西都按预期工作。我应该在 Storyboard上更改什么以在详细信息 View (屏幕截图底部的右上角)
我希望能够显示表格的详细 View ,但不推送新屏幕,而只显示表格所在的详细 View 。 设置它的最佳方式是什么......如果真的可行的话? ---------------------------
我在我的博客中为我的帖子使用了详细 View ,每篇帖子都有评论,所以我想对它们进行分页,但我不知道该怎么做,因为我请求了帖子模型。我知道如何在功能 View 中执行此操作,但不知道如何在详细 Vie
在下面的代码中,与 pm 对齐,该行是否会 move 整个内存并将其分配给 pm,或者它只会 move p 指向的内存而不是整个数组? int main() { int*
1·下载 https://dev.mysql.com/downloads/mysql/ 2·安装服务 1)管理员运行cmd 2)D: 3)cd D:\mysql
今天以前一直用的SQL Server 2005做开发,偶尔也用MySQL,现入手公司项目,用到SQL Server 2008,于是乎必须安装它,免得出现其他很纠结的小问题,现将自己安装图解分享如下:
1. crontab命令选项 复制代码 代码如下: #crontab -u <-l, -r, -e> -u指定一个用
我们有一个 WPF 应用程序,它有一个主窗口/详细信息窗口,两者都是 WPF 数据网格。当您在上部数据网格中选择一行时,详细信息将显示在下部数据网格中。我想知道从 UI 的角度来看是否有任何关于如何处
在可视化 Perforce 客户端 (p4v) 中有一个选项: 显示文件操作的 p4 命令输出 启用后,在日志 Pane 中,我可以看到这样的详细日志记录: p4 sync /Users/az/ftp
在其他服务器上设置测试环境后,在几个API调用中出现错误。 99%肯定这是MySQL的事情,但是返回的错误根本没有帮助: global name 'sys' is not defined" 我已经导入
我正在维护一个通用的 iOS 应用程序,其开发已开始于 iOS 6。我正在为 iOS 7 更新 UI。现在我遇到了应用程序的 iPad 部分的奇怪问题。这部分遵循使用 UISplitViewContr
我希望我能正确描述这种情况。当它发生时很容易在屏幕上看到,但很难用语言解释,但我会尽力而为。 我有一个带有固定主视图 (UITableView) 和两个详细 View 之一的 UISplitViewC
我尝试在 eclipse 和 intelliJ 参数中使用垃圾收集记录器来配置简单的测试程序。尝试了不同类型的配置,但尚未创建日志文件。 -XX:+PrintGCDetails -XX:+PrintG
正如您所知,.cap 文件中的 java 小程序的输出文件格式必须通过智能卡读卡器/写卡器(如 ACR122 或任何其他读卡器)部署到 java 卡,而且我相信 java 卡与 java 卡之间的部署
我是一名优秀的程序员,十分优秀!