var a=this.getValue();
var location = this.options.location; //获取当前控件的位置
var cr = FR.cellStr2ColumnRow(location);
var col = cr.col; //列号
var ro = cr.row; //行号
var a1 = contentPane.getWidgetByCell(FR.columnRow2CellStr({col: col+1, row: ro}));
var a2 = contentPane.getWidgetByCell(FR.columnRow2CellStr({col: col+2, row: ro}));
var a3 = contentPane.getWidgetByCell(FR.columnRow2CellStr({col: col+2, row: ro}));
if(a=="采购部"){
a1.setEnable(true);
a2.setEnable(false);
a3.setEnable(false);
}
else if(a=="销售部"){
a1.setEnable(false);
a2.setEnable(true);
a3.setEnable(false);
}
else if(a=="研发部"){
a1.setEnable(false);
a2.setEnable(false);
a3.setEnable(true);
}