render: (text, row) => {
          const {
            form: { getFieldDecorator },
          } = this.props;
          return this.state.isEdit ? (
            <Form className={'form-customer'}>
              <Form.Item style={{ width: '100%' }}>
                {getFieldDecorator(`approveRefundCnt${row.code}`, {})(
                  <InputNumber step={1} precision={2} min={0} />
                )}
              </Form.Item>
            </Form>
          ) : (
            <span>{text ? formatMoneyThousand(text) : ''}</span>
          );
        },