-
- 名称
-
- {
- this.handleChange({ name: value });
- }}
- />
-
-
- {
- !isAdd &&
-
- 薪资档案引用
-
- {
- this.handleChange({ useInEmployeeSalary: value ? 1 : 0 });
- }}
- />
-
-
-
- }
-
- 默认使用
-
- {
- this.handleChange({ useDefault: value ? 1 : 0 });
- }}
- />
-
-
-
-
- {
- (systemType == 0 || isAdd) &&
-
-
-
- 可见性
-
- {
- let payload = {};
- (value === "0" || value === "") && (payload.taxAgentIds = "");
- payload.sharedType = value;
- this.handleChange(payload);
- }}
- style={{ width: "200px" }}
- />
-
-
-
-
- }
- {
- sharedType === "1" &&
-
-
-
- 可见性范围
-
- {
- this.handleChange({ taxAgentIds: value });
- }}
- />
-
-
-
-
- }
-
-
-
- 字段类型
-
- {
- this.handleChange({ dataType: value });
- }}
- style={{ width: "200px" }}
- />
-
-
-
-
-
-
-
- 舍入规则
-
- {
- this.handleChange({ roundingMode: value });
- }}
- />
-
-
-
-
-
- 保留小数位
-
- {
- this.handleChange({ pattern: value });
- }}
- value={pattern}
- style={{ width: "200px" }}
- />
-
-
-
-
-
-
- 取值方式
-
- {
- this.handleChange({
- valueType: value,
- formulaId: null,
- formulaContent: ""
- });
- }}/>
-
-
- {(valueType == 2 || valueType == 3) &&
-
-
- {valueType == 2 ? "公式" : "SQL"}
-
-
- {
- if (this.props.record.canEdit || isAdd) {
- editable && this.handleShowFormal();
- }
- }}>
- {formulaContent}
-
-
-
}
-
-
- 备注
-
- {
- this.handleChange({ description: value });
- }}
- />
-
-
-