|
|
@@ -1216,6 +1216,23 @@ public class workorder extends Controller {
|
|
|
return getSucReturnObject().toString();
|
|
|
}
|
|
|
|
|
|
+ @API(title = "更新服务工单备注", apiversion = R.ID2026020509571602.v1.class)
|
|
|
+ public String updateRemarks() throws YosException {
|
|
|
+
|
|
|
+ Long sa_workorderid = content.getLongValue("sa_workorderid");
|
|
|
+ String remarks_workorder=content.getString("remarks_workorder");
|
|
|
+ UpdateSQL updateSQL = SQLFactory.createUpdateSQL(this, "sa_workorder");
|
|
|
+ updateSQL.setSiteid(siteid);
|
|
|
+ updateSQL.setValue("remarks_workorder", remarks_workorder);
|
|
|
+ updateSQL.setUniqueid(sa_workorderid);
|
|
|
+ updateSQL.update();
|
|
|
+
|
|
|
+ DataContrlLog.createLog(this, "sa_workorder", sa_workorderid, "更新", "更新服务工单备注:" + remarks_workorder).insert();
|
|
|
+
|
|
|
+ return getSucReturnObject().toString();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
@API(title = "查询客户序列号", apiversion = R.ID2025080813465203.v1.class)
|
|
|
@CACHEING
|
|
|
public String queryCustomerSkuList() throws YosException {
|