EAS_客户端设置分录单元格背景色灰色不可编辑

发布时间 2023-09-11 14:17:18作者: 凉了记忆
  public void onLoad()
    throws Exception
  {
    if ((!this.currentCompany.isIsBizUnit()) && (!"FINDVIEW".equalsIgnoreCase(getOprtState()))) {
      throw new NTException(NTException.CHANGE_TO_BIZUNIT);
    }
    super.onLoad();
    this.tblMain.checkParsed();
    init();
    addLine();
    setCellValue("exchangeRate", DEFAULT_EXCHANGERATE);
    int count = tblMain.getRowCount();
    for (int i = 0; i <count; i++) {
        tblMain.getCell(i, "draftNumber").getStyleAttributes().setLocked(true);
        tblMain.getCell(i, "draftNumber").getStyleAttributes().setBackground(new Color(15263971));

    }
  }