GoodERP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

229 lines
11KB

  1. # Copyright 2016 上海开阖软件有限公司 (http://www.osbzr.com)
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  3. from odoo.tests.common import TransactionCase
  4. from psycopg2 import IntegrityError
  5. class TestPartnerAddress(TransactionCase):
  6. '''测试业务伙伴的联系人地址'''
  7. def setUp(self):
  8. '''准备数据'''
  9. super(TestPartnerAddress, self).setUp()
  10. self.partner_id = self.env.ref('core.jd')
  11. self.partner = self.env['partner'].search(
  12. [('id', '=', self.partner_id.id)])
  13. self.partner.write({'child_ids':
  14. [(0, 0,
  15. {'contact': '小东',
  16. 'mobile': '1385559999',
  17. }
  18. )]
  19. })
  20. def test_onchange_province(self):
  21. '''测试onchange province'''
  22. # 不存在省
  23. for child in self.partner.child_ids:
  24. child.onchange_province()
  25. province = self.env['country.state'].search([('name', '=', '河北省')])
  26. # 存在省不存在市
  27. for child in self.partner.child_ids:
  28. child.province_id = province.id
  29. child.city_id = False
  30. child.onchange_province()
  31. # 存在省存在市,但市不属于省
  32. city = self.env['all.city'].search([('city_name', '=', '上海市')])
  33. for child in self.partner.child_ids:
  34. child.city_id = city.id
  35. child.onchange_province()
  36. # 存在省存在市,市属于省
  37. city = self.env['all.city'].search([('city_name', '=', '石家庄市')])
  38. for child in self.partner.child_ids:
  39. child.city_id = city.id
  40. child.onchange_province()
  41. # 存在省存在市存在县,但县不属于市
  42. county = self.env['all.county'].search([('county_name', '=', '太康县')])
  43. for child in self.partner.child_ids:
  44. child.county_id = county.id
  45. child.onchange_province()
  46. # 存在省存在市存在县,县属于市
  47. county = self.env['all.county'].search([('county_name', '=', '平山县')])
  48. for child in self.partner.child_ids:
  49. child.county_id = county.id
  50. child.onchange_province()
  51. def test_onchange_city(self):
  52. '''测试onchange city'''
  53. # 不存在市
  54. for child in self.partner.child_ids:
  55. child.onchange_city()
  56. # 存在市不存在省
  57. city = self.env['all.city'].search([('city_name', '=', '石家庄市')])
  58. for child in self.partner.child_ids:
  59. child.city_id = city.id
  60. child.onchange_city()
  61. # 存在市不存在省,不存在县
  62. for child in self.partner.child_ids:
  63. child.province_id = False
  64. child.county_id = False
  65. child.city_id = city.id
  66. child.onchange_city()
  67. # 存在市存在省存在县,但县不属于市
  68. county = self.env['all.county'].search(
  69. [('county_name', '=', '承德县')])
  70. for child in self.partner.child_ids:
  71. child.province_id = False
  72. child.county_id = county.id
  73. child.onchange_city()
  74. # 存在市不存在省,存在县,县属于市
  75. county = self.env['all.county'].search([('county_name', '=', '平山县')])
  76. city = self.env['all.city'].search([('city_name', '=', '石家庄市')])
  77. for child in self.partner.child_ids:
  78. child.province_id = False
  79. child.county_id = county.id
  80. child.city_id = city.id
  81. child.onchange_city()
  82. # 存在市存在省
  83. province = self.env['country.state'].search([('name', '=', '河北省')])
  84. for child in self.partner.child_ids:
  85. child.province_id = province.id
  86. child.onchange_city()
  87. # 存在市存在省存在县,县属于市
  88. county = self.env['all.county'].search([('county_name', '=', '平山县')])
  89. for child in self.partner.child_ids:
  90. child.county_id = county.id
  91. child.onchange_city()
  92. # 存在市存在省存在县,县属于市,但省与 市所在的省相同
  93. province = self.env['country.state'].search([('name', '=', '河北省')])
  94. city = self.env['all.city'].search([('city_name', '=', '石家庄市')])
  95. county = self.env['all.county'].search([('county_name', '=', '平山县')])
  96. for child in self.partner.child_ids:
  97. child.city_id = city.id
  98. child.province_id = province.id
  99. child.county_id = county.id
  100. child.onchange_city()
  101. # 存在市存在省存在县,县属于市,但省与 市所在的省不同
  102. province = self.env['country.state'].search([('name', '=', '四川省')])
  103. for child in self.partner.child_ids:
  104. child.province_id = province.id
  105. child.onchange_city()
  106. # 存在市存在省存在县,但县不属于市
  107. county = self.env['all.county'].search([('county_name', '=', '承德县')])
  108. for child in self.partner.child_ids:
  109. child.county_id = county.id
  110. child.province_id = province.id
  111. child.onchange_city()
  112. # 存在市存在省存在县,县不属于市,省与 市所在的省不同
  113. province = self.env['country.state'].search([('name', '=', '四川省')])
  114. city = self.env['all.city'].search([('city_name', '=', '石家庄市')])
  115. county = self.env['all.county'].search([('county_name', '=', '承德县')])
  116. for child in self.partner.child_ids:
  117. child.province_id = province.id
  118. child.city_id = city.id
  119. child.county_id = county.id
  120. child.onchange_city()
  121. # 存在市存在省存在县,县不属于市,但省与 市所在的省相同
  122. province = self.env['country.state'].search([('name', '=', '河北省')])
  123. city = self.env['all.city'].search([('city_name', '=', '石家庄市')])
  124. county = self.env['all.county'].search([('county_name', '=', '承德县')])
  125. for child in self.partner.child_ids:
  126. child.province_id = province.id
  127. child.city_id = city.id
  128. child.county_id = county.id
  129. child.onchange_city()
  130. # 存在市存在省不存在县,省与 市所在的省不同
  131. city = self.env['all.city'].search([('city_name', '=', '石家庄市')])
  132. province = self.env['country.state'].search([('name', '=', '山西省')])
  133. for child in self.partner.child_ids:
  134. child.province_id = province.id
  135. child.city_id = city.id
  136. child.county_id = False
  137. child.onchange_city()
  138. # 存在市存在省不存在县,省与 市所在的省相同
  139. city = self.env['all.city'].search([('city_name', '=', '石家庄市')])
  140. province = self.env['country.state'].search([('name', '=', '河北省')])
  141. for child in self.partner.child_ids:
  142. child.province_id = province.id
  143. child.city_id = city.id
  144. child.county_id = False
  145. child.onchange_city()
  146. def test_onchange_county(self):
  147. '''测试onchange county'''
  148. county = self.env['all.county'].search([('county_name', '=', '正定县')])
  149. for child in self.partner.child_ids:
  150. child.county_id = county.id
  151. child.onchange_county()
  152. class TestPartner(TransactionCase):
  153. def setUp(self):
  154. '''准备数据'''
  155. super(TestPartner, self).setUp()
  156. self.partner_id = self.env.ref('core.jd')
  157. self.province_id = self.env['country.state'].search(
  158. [('name', '=', '河北省')])
  159. self.city_id = self.env['all.city'].search(
  160. [('city_name', '=', '石家庄市')])
  161. self.county_id = self.env['all.county'].search(
  162. [('county_name', '=', '正定县')])
  163. def test_compute_partner_address(self):
  164. '''测试如果业务伙伴地址中有默认地址,则显示在业务伙伴列表上'''
  165. partner = self.env['partner'].search(
  166. [('id', '=', self.partner_id.id)])
  167. # 没有联系人地址child_ids时
  168. partner._compute_partner_address()
  169. # 有联系人地址child_ids,并为默认地址时
  170. partner.write({'child_ids':
  171. [(0, 0,
  172. {'contact': '小东',
  173. 'province_id': self.province_id.id,
  174. 'city_id': self.city_id.id,
  175. 'county_id': self.county_id.id,
  176. 'town': '曹路镇',
  177. 'detail_address': '金海路1688号',
  178. }
  179. )]
  180. })
  181. partner._compute_partner_address()
  182. for child in partner.child_ids:
  183. child.mobile = '1385559999'
  184. child.phone = '55558888'
  185. child.qq = '11116666'
  186. child.is_default_add = True
  187. partner._compute_partner_address()
  188. self.assertEqual(partner.contact, '小东')
  189. self.assertEqual(partner.mobile, '1385559999')
  190. self.assertEqual(partner.phone, '55558888')
  191. self.assertEqual(partner.qq, '11116666')
  192. addr = ''
  193. for child in partner.child_ids:
  194. addr = '%s%s%s%s%s' % (child.province_id.name,
  195. child.city_id.city_name,
  196. child.county_id.county_name,
  197. child.town,
  198. child.detail_address)
  199. self.assertEqual(partner.address, addr)
  200. def test_name_get(self):
  201. address = self.env['partner.address'].create({'contact': '小东',
  202. 'province_id': self.province_id.id,
  203. 'city_id': self.city_id.id,
  204. 'county_id': self.county_id.id,
  205. 'town': '曹路镇',
  206. 'detail_address': '金海路1688号',
  207. })
  208. name = address.name_get()
  209. real_name = '%s%s%s%s%s' % (
  210. address.province_id and address.province_id.name or '',
  211. address.city_id and address.city_id.city_name or '',
  212. address.county_id and address.county_id.county_name or '',
  213. address.town or '',
  214. address.detail_address or '')
  215. self.assertTrue(name[0][1] == real_name)
上海开阖软件有限公司 沪ICP备12045867号-1