跳至主要内容

Getting Prepared for Negotiation


negotiation- mental health scared


Most of our clients are already competitively skilled when it comes to negotiation skills of buying and selling, however on the agency side, we are often way behind the mark and just starting to study and learn the same principle of pricing and negotiation

This may be an old classic topic to us all, but as the words say, classics are the classics for a reason.

There are 2 things we need to be very clear before moving into a negotiation: 

1. Rejection is a good sign

2. Clients buy our value not costs



Rejection is a good sign


It is hard to face any form of rejection, both mentally and physically.

One can't remember how many times I have got rejected in a negotiation, in the beginning, I was really upset and puzzled by rejection, it lowered my self-esteem, lost confidence. However, what changed my mind was one day I suddenly realized that hearing No from clients is actually a good sign, it means that we haven't sold ourselves short!

On top of this, it also meant that the client gave our pricing some thoughts and decided to rule it out, what we really need to do is to go the extra mile and explore another option where we can give a little bit more from our end so that the clients feel even-out.


Clients buy our value not cost


Most of the time, when we buy new things, we don't spend the time and energy to measure the products' cost, what matters to us is how much we have to give out to get the benefit from the service/product.

It is the same in a compensation negotiation. We need to overcome and change our mindset from cost to value.

It doesn't really matter how much our cost is, our cost is just a piece of evidence that may support the reason why we asked for a specific price, however, if we put ourselves in the client's shoes, what truly matters to us is the price we have to payout and the benefits that we can earn from making this deal.

Therefore, in times of client hesitation, the critical question to ask is: is it about the price? or is it about the service? often you will find out that the client's true concern is more on the below points rather than what is your cost.Can I afford this price?
Is there a substitute?
Is there a compromised option?

评论

此博客中的热门博文

04. Python 文档与注释

  注释 注释的目的主要是为了说明,注释符号之后的内容都不会被视为代码,也自然不会被计算机执行。 单行注释代码:  1 个 # 多行注释代码:  3 个单引号或是 3 个双引号 所包含的范围,例如:'''或是""" 可以使用多个单行注释代码来达到多行的效果 有些代码暂时用不到的话,也可以 透过加注释代码的方式,来使其暂时失效 ,不被运行。 在代码行内使用快捷键 “ Ctrl + / ",可以直接表示为单行注释。 可以一次选取多行,然后使用快捷键 “ Ctrl + / " 多行注释代码之所以有 2 个选择,其中一个原因也是方便注释内容之中出现引号的情况。例如,内容需要出现 3 个双引号,那么就可以使用 3 个单引号作为多行注释代码。

02. Python 的数据类型

单个数据存储类型 整数(int) - 不带小数点的数; integer 浮点数(float) - 带浮点点的数:3.14, -6.7, 4.0 注意的是,4.0也算是浮点数,因为含有小数点 字符串(string) - 有序的字符序列 布尔值(bool) - 用于逻辑运算的类型,值只有TRUE或FALSE。 多个数据存储类型,容器 列表(list) - 有序列序,可以重复 字典(dictionary) - 无序的键(key)值(value)对 元组(tuple) - 有序且不可变序列 集合(set) - 无序且无重复元素

05. Python 数据类型转换

  各个数据类型转换 各种数据之间要做运算的话,原则上会需要是同类型的数据类型,不然程序会报错。 例: birth = input("请输入出生年份:") age = 2021 - birth print ("你今年已经 “ + age + ” 岁啦!“) 程序会报错:input取得的结果是字符串,字符串无法跟整数拼接。 正确的写法应该是: 例: birth = input("请输入出生年份:") age = 2021 - int(birth) print ("你今年已经 “ + str(age) + ” 岁啦!“) 透过 int() 及 str() 的方式,将数据类型强制转换 也可以将数据转换成其他类型,例如 float,list 等 再来个范例: hp = 358 max_hp = 1462 result = hp / max_hp result *= 100 result = int(result) print ("角色当前生命值: ” + str(result) + "%")