1、布局配置-开票申请
/**
* @author QiaoChu
* @codeName 纳税人识别码只能输入数字和大写字母
* @description 纳税人识别码只能输入数字和大写字母
*/
def pattern = ~/^[A-Z0-9]+$/
String taxId = context.data.tax_id
Remind remind;
if (taxId != "" && !(taxId ==~ pattern)) {
remind = Remind.Alert("纳税识别号只能包含数字和大写字母")
}
log.info(remind)
return remind;
// 红字提醒
// Remind remind = Remind.Text("Text");
//弹窗提醒
// Remind remind = Remind.Alert("3214");
// 一次设置多个字段的校验提醒
// Remind remind = Remind.builder()
// .remindText("name", "主属性名称重复")
// .remindText("field_wy9do__c", "字段不能包含test")
// .build()
// //清除提醒消息
// Remind remind = Remind.builder()
// .remindText("name", "")
// .remindText("field_y2k46__c", "")
// .build()