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.

581 lines
26KB

  1. from logging import Logger
  2. import logging
  3. from .utils import safe_division
  4. from jinja2 import Environment, PackageLoader
  5. from odoo import models, fields, api
  6. from odoo.exceptions import UserError
  7. from odoo.tools import float_compare
  8. from decimal import Decimal
  9. import logging
  10. _logger = logging.getLogger(__name__)
  11. env = Environment(loader=PackageLoader(
  12. 'odoo.addons.warehouse', 'html'), autoescape=True)
  13. class WhMoveLine(models.Model):
  14. _name = 'wh.move.line'
  15. _description = '移库单明细'
  16. _order = 'lot'
  17. _rec_name = 'note'
  18. MOVE_LINE_TYPE = [
  19. ('out', '出库'),
  20. ('in', '入库'),
  21. ('internal', '内部调拨'),
  22. ]
  23. MOVE_LINE_STATE = [
  24. ('draft', '草稿'),
  25. ('done', '已完成'),
  26. ('cancel', '已作废'),
  27. ]
  28. ORIGIN_EXPLAIN = {
  29. ('wh.assembly', 'out'): '组装单子件',
  30. ('wh.assembly', 'in'): '组装单组合件',
  31. ('wh.disassembly', 'out'): '拆卸单组合件',
  32. ('wh.disassembly', 'in'): '拆卸单子件',
  33. ('wh.internal', True): '调拨出库',
  34. ('wh.internal', False): '调拨入库',
  35. 'wh.out.inventory': '盘亏',
  36. 'wh.out.others': '其他出库',
  37. 'wh.in.inventory': '盘盈',
  38. 'wh.in.others': '其他入库',
  39. 'buy.receipt.buy': '采购入库',
  40. 'buy.receipt.return': '采购退货',
  41. 'sell.delivery.sell': '销售出库',
  42. 'sell.delivery.return': '销售退货',
  43. }
  44. @api.depends('goods_qty', 'price_taxed', 'discount_amount', 'tax_rate')
  45. def _compute_all_amount(self):
  46. '''当订单行的数量、含税单价、折扣额、税率改变时,改变金额、税额、价税合计'''
  47. for wml in self:
  48. if wml.tax_rate > 100:
  49. raise UserError('税率不能输入超过100的数')
  50. if wml.tax_rate < 0:
  51. raise UserError('税率不能输入负数')
  52. wml.subtotal = wml.price_taxed * wml.goods_qty - wml.discount_amount # 价税合计
  53. wml.tax_amount = wml.subtotal / \
  54. (100 + wml.tax_rate) * wml.tax_rate # 税额
  55. wml.amount = wml.subtotal - wml.tax_amount # 金额
  56. @api.onchange('price', 'tax_rate')
  57. def onchange_price(self):
  58. if not self.goods_id:
  59. return
  60. '''当订单行的不含税单价改变时,改变含税单价'''
  61. price = self.price_taxed / (1 + self.tax_rate * 0.01) # 不含税单价
  62. decimal = self.env.ref('core.decimal_price')
  63. if float_compare(price, self.price, precision_digits=decimal.digits) != 0:
  64. self.price_taxed = self.price * (1 + self.tax_rate * 0.01)
  65. @api.depends('goods_id')
  66. def _compute_using_attribute(self):
  67. for wml in self:
  68. wml.using_attribute = wml.goods_id.attribute_ids and True or False
  69. @api.depends('move_id.warehouse_id')
  70. def _get_line_warehouse(self):
  71. for wml in self:
  72. wml.warehouse_id = wml.move_id.warehouse_id.id # 关联单据头调出仓库
  73. if (wml.move_id.origin in ('wh.assembly', 'wh.disassembly', 'outsource')) and wml.type == 'in':
  74. wml.warehouse_id = self.env.ref(
  75. 'warehouse.warehouse_production').id
  76. @api.depends('move_id.warehouse_dest_id')
  77. def _get_line_warehouse_dest(self):
  78. for wml in self:
  79. wml.warehouse_dest_id = wml.move_id.warehouse_dest_id.id # 关联单据头调入仓库
  80. if (wml.move_id.origin in ('wh.assembly', 'wh.disassembly', 'outsource')) and wml.type == 'out':
  81. wml.warehouse_dest_id = self.env.ref(
  82. 'warehouse.warehouse_production').id
  83. @api.depends('goods_id')
  84. def _compute_uom_uos(self):
  85. for wml in self:
  86. if wml.goods_id:
  87. wml.uom_id = wml.goods_id.uom_id
  88. wml.uos_id = wml.goods_id.uos_id
  89. @api.depends('goods_qty', 'goods_id')
  90. def _get_goods_uos_qty(self):
  91. for wml in self:
  92. if wml.goods_id and wml.goods_qty:
  93. wml.goods_uos_qty = wml.goods_qty / wml.goods_id.conversion
  94. else:
  95. wml.goods_uos_qty = 0
  96. def _inverse_goods_qty(self):
  97. for wml in self:
  98. wml.goods_qty = wml.goods_uos_qty * wml.goods_id.conversion
  99. @api.depends('goods_id', 'goods_qty')
  100. def compute_line_net_weight(self):
  101. for move_line in self:
  102. move_line.line_net_weight = move_line.goods_id.net_weight * move_line.goods_qty
  103. move_id = fields.Many2one('wh.move', string='移库单', ondelete='cascade',
  104. help='出库/入库/移库单行对应的移库单')
  105. partner_id = fields.Many2one('partner',string='业务伙伴',related='move_id.partner_id',store=True)
  106. plan_date = fields.Date('计划日期', default=fields.Date.context_today)
  107. date = fields.Date('完成日期', copy=False,
  108. help='单据完成日期')
  109. cost_time = fields.Datetime('确认时间', copy=False,
  110. help='单据确认时间')
  111. type = fields.Selection(MOVE_LINE_TYPE,
  112. '类型',
  113. required=True,
  114. default=lambda self: self.env.context.get('type'),
  115. help='类型:出库、入库 或者 内部调拨')
  116. state = fields.Selection(MOVE_LINE_STATE, '状态', copy=False, default='draft',
  117. index=True,
  118. help='状态标识,新建时状态为草稿;确认后状态为已完成')
  119. goods_id = fields.Many2one('goods', string='商品', required=True,
  120. index=True, ondelete='restrict',
  121. help='该单据行对应的商品')
  122. goods_class = fields.Char('商品类别', related='goods_id.goods_class_id.name')
  123. using_attribute = fields.Boolean(compute='_compute_using_attribute', string='使用属性',
  124. help='该单据行对应的商品是否存在属性,存在True否则False')
  125. attribute_id = fields.Many2one('attribute', '属性', ondelete='restrict', index=True,
  126. help='该单据行对应的商品的属性')
  127. designator = fields.Char('位号')
  128. using_batch = fields.Boolean(related='goods_id.using_batch', string='批号管理',
  129. readonly=True,
  130. help='该单据行对应的商品是否使用批号管理')
  131. force_batch_one = fields.Boolean(related='goods_id.force_batch_one', string='每批号数量为1',
  132. readonly=True,
  133. help='该单据行对应的商品是否每批号数量为1,是True否则False')
  134. lot = fields.Char('入库批号',
  135. help='该单据行对应的商品的批号,一般是入库单行')
  136. lot_id = fields.Many2one('wh.move.line', '批号',
  137. domain="[('goods_id', '=', goods_id), ('state', '=', 'done'), ('lot', '!=', False), "
  138. "('qty_remaining', '>', 0), ('warehouse_dest_id', '=', warehouse_id)]",
  139. help='该单据行对应的商品的批号,一般是出库单行')
  140. lot_qty = fields.Float(related='lot_id.qty_remaining', string='批号数量',
  141. digits='Quantity',
  142. help='该单据行对应的商品批号的商品剩余数量')
  143. lot_uos_qty = fields.Float('批号辅助数量',
  144. digits='Quantity',
  145. help='该单据行对应的商品的批号辅助数量')
  146. location_id = fields.Many2one('location', ondelete='restrict', string='库位', index=True)
  147. production_date = fields.Date('生产日期', default=fields.Date.context_today,
  148. help='商品的生产日期')
  149. shelf_life = fields.Integer('保质期(天)',
  150. help='商品的保质期(天)')
  151. uom_id = fields.Many2one('uom', string='单位', ondelete='restrict', compute=_compute_uom_uos,
  152. help='商品的计量单位', store=True)
  153. uos_id = fields.Many2one('uom', string='辅助单位', ondelete='restrict', compute=_compute_uom_uos,
  154. readonly=True, help='商品的辅助单位', store=True)
  155. warehouse_id = fields.Many2one('warehouse', '调出仓库',
  156. ondelete='restrict',
  157. store=True,
  158. index=True,
  159. compute=_get_line_warehouse,
  160. help='单据的来源仓库')
  161. warehouse_dest_id = fields.Many2one('warehouse', '调入仓库',
  162. ondelete='restrict',
  163. store=True,
  164. index=True,
  165. compute=_get_line_warehouse_dest,
  166. help='单据的目的仓库')
  167. goods_qty = fields.Float('数量',
  168. digits='Quantity',
  169. default=1,
  170. required=True,
  171. help='商品的数量')
  172. all_lack = fields.Float('缺货数量', digits='Quantity', compute="_get_lack")
  173. wh_lack = fields.Float('本仓缺货', digits='Quantity', compute="_get_lack")
  174. goods_uos_qty = fields.Float('辅助数量', digits='Quantity',
  175. compute=_get_goods_uos_qty, inverse=_inverse_goods_qty, store=True,
  176. help='商品的辅助数量')
  177. price = fields.Float('单价',
  178. store=True,
  179. digits='Price',
  180. help='商品的单价')
  181. price_taxed = fields.Float('含税单价',
  182. digits='Price',
  183. help='商品的含税单价')
  184. discount_rate = fields.Float('折扣率%',
  185. help='单据的折扣率%')
  186. discount_amount = fields.Float('折扣额',
  187. digits='Amount',
  188. help='单据的折扣额')
  189. amount = fields.Float('金额', compute=_compute_all_amount, store=True,
  190. digits='Amount',
  191. help='单据的金额,计算得来')
  192. tax_rate = fields.Float('税率(%)',
  193. help='单据的税率(%)')
  194. tax_amount = fields.Float('税额', compute=_compute_all_amount, store=True,
  195. digits='Amount',
  196. help='单据的税额,有单价×数量×税率计算得来')
  197. subtotal = fields.Float('价税合计', compute=_compute_all_amount, store=True,
  198. digits='Amount',
  199. help='价税合计,有不含税金额+税额计算得来')
  200. note = fields.Text('备注',
  201. help='可以为该单据添加一些需要的标识信息')
  202. cost_unit = fields.Float('单位成本', digits='Price',
  203. help='入库/出库单位成本')
  204. cost = fields.Float('成本', compute='_compute_cost', inverse='_inverse_cost',
  205. digits='Amount', store=True,
  206. help='入库/出库成本')
  207. line_net_weight = fields.Float(
  208. string='净重小计', digits='Weight', compute=compute_line_net_weight, store=True)
  209. expiration_date = fields.Date('过保日',
  210. help='商品保质期截止日期')
  211. company_id = fields.Many2one(
  212. 'res.company',
  213. string='公司',
  214. change_default=True,
  215. default=lambda self: self.env.company)
  216. scrap = fields.Boolean('报废')
  217. share_cost = fields.Float('采购费用',
  218. digits='Amount',
  219. help='点击分摊按钮或确认时将采购费用进行分摊得出的费用')
  220. bill_date = fields.Date('单据日期', related='move_id.date', help='单据创建日期,默认为当前天')
  221. bill_finance_category_id = fields.Many2one(
  222. 'core.category',
  223. string='收发类别',
  224. ondelete='restrict', related='move_id.finance_category_id',
  225. help='生成凭证时从此字段上取商品科目的对方科目',
  226. )
  227. @api.model_create_multi
  228. def create(self, vals_list):
  229. new_ids = super(WhMoveLine, self).create(vals_list)
  230. for new_id in new_ids:
  231. # 只针对入库单行
  232. if new_id.type != 'out' and not new_id.location_id and new_id.warehouse_dest_id:
  233. # 有库存的产品
  234. qty_now = self.move_id.check_goods_qty(
  235. new_id.goods_id, new_id.attribute_id, new_id.warehouse_dest_id)[0]
  236. if qty_now:
  237. # 建议将产品上架到现有库位上
  238. new_id.location_id = new_id.env['location'].search([('goods_id', '=', new_id.goods_id.id),
  239. ('attribute_id', '=',
  240. new_id.attribute_id and new_id.attribute_id.id or False),
  241. ('warehouse_id', '=', new_id.warehouse_dest_id.id)],
  242. limit=1)
  243. return new_ids
  244. @api.depends('cost_unit', 'price', 'goods_qty', 'discount_amount', 'share_cost')
  245. def _compute_cost(self):
  246. for wml in self:
  247. wml.cost = 0
  248. if wml.env.context.get('type') == 'in' and wml.goods_id:
  249. if wml.price: # 按采购价记成本
  250. wml.cost = wml.price * wml.goods_qty - wml.discount_amount + wml.share_cost
  251. elif wml.cost_unit: # 按出库成本退货
  252. wml.cost = wml.cost_unit * wml.goods_qty - wml.discount_amount + wml.share_cost
  253. elif wml.cost_unit:
  254. wml.cost = wml.cost_unit * wml.goods_qty
  255. def _inverse_cost(self):
  256. for wml in self:
  257. wml.cost_unit = safe_division(wml.cost, wml.goods_qty)
  258. def get_origin_explain(self):
  259. self.ensure_one()
  260. if self.move_id.origin in ('wh.assembly', 'wh.disassembly'):
  261. return self.ORIGIN_EXPLAIN.get((self.move_id.origin, self.type))
  262. elif self.move_id.origin == 'wh.internal':
  263. return self.ORIGIN_EXPLAIN.get((self.move_id.origin, self.env.context.get('internal_out', False)))
  264. elif self.move_id.origin in self.ORIGIN_EXPLAIN.keys():
  265. return self.ORIGIN_EXPLAIN.get(self.move_id.origin)
  266. return ''
  267. @api.model
  268. def default_get(self, fields):
  269. res = super(WhMoveLine, self).default_get(fields)
  270. if self.env.context.get('goods_id') and self.env.context.get('warehouse_id'):
  271. res.update({
  272. 'goods_id': self.env.context.get('goods_id'),
  273. 'warehouse_id': self.env.context.get('warehouse_id')
  274. })
  275. return res
  276. def get_real_cost_unit(self):
  277. self.ensure_one()
  278. return safe_division(self.cost, self.goods_qty)
  279. def name_get(self):
  280. res = []
  281. for line in self:
  282. if self.env.context.get('match'):
  283. res.append((line.id, '%s-%s->%s(%s, %s%s)' %
  284. (line.move_id.name, line.warehouse_id.name, line.warehouse_dest_id.name,
  285. line.goods_id.name, str(line.goods_qty), line.uom_id.name)))
  286. else:
  287. res.append((line.id, line.lot))
  288. return res
  289. @api.model
  290. def name_search(self, name='', args=None, operator='ilike', limit=100):
  291. ''' 批号下拉的时候显示批次和剩余数量 '''
  292. result = []
  293. domain = []
  294. if args:
  295. domain = args
  296. if name:
  297. domain.append(('lot', operator, name))
  298. records = self.search(domain, limit=limit)
  299. for line in records:
  300. # 增加了Decimal函数,强制批次余额数显示为6位小数 author: zou.jason@qq.com 邹霍梁
  301. # 原因:原 line.qty_remaining 取数 (0.000001),会导致由于6位小数太小时,显示为 (1e-06) 错误
  302. if line.expiration_date:
  303. result.append((line.id, '%s %s 余 %s 过保日 %s' % (
  304. line.lot, line.warehouse_dest_id.name,
  305. Decimal(line.qty_remaining).quantize(Decimal("0.000000")), line.expiration_date)))
  306. else:
  307. result.append((line.id, '%s %s 余 %s' % (
  308. line.lot, line.warehouse_dest_id.name,
  309. Decimal(line.qty_remaining).quantize(Decimal("0.000000")))))
  310. return result
  311. def check_availability(self):
  312. if self.warehouse_dest_id == self.warehouse_id:
  313. # 如果是 商品库位转移生成的内部移库,则不用约束调入仓和调出仓是否相同;否则需要约束
  314. if not (self.move_id.origin == 'wh.internal' and not self.location_id == False):
  315. raise UserError('调出仓库不可以和调入仓库一样')
  316. # 检查属性或批号是否填充,防止无权限人员不填就可以保存
  317. if self.using_attribute and not self.attribute_id:
  318. raise UserError('请输入商品:%s 的属性' % self.goods_id.name)
  319. if self.using_batch:
  320. if self.type == 'in' and not self.lot:
  321. raise UserError('请输入商品:%s 的批号' % self.goods_id.name)
  322. if self.type in ['out', 'internal'] and not self.lot_id:
  323. raise UserError('请选择商品:%s 的批号' % self.goods_id.name)
  324. def prev_action_done(self):
  325. pass
  326. def action_done(self):
  327. for line in self:
  328. _logger.info('正在确认ID为%s的移库行' % line.id)
  329. line.check_availability()
  330. line.prev_action_done()
  331. line.write({
  332. 'state': 'done',
  333. 'date': line.move_id.date,
  334. 'cost_time': fields.Datetime.now(self),
  335. })
  336. if line.type in ('in', 'internal'):
  337. locations = self.env['location'].search([('warehouse_id', '=', line.warehouse_dest_id.id)])
  338. if locations and not line.location_id:
  339. raise UserError('调入仓库 %s 进行了库位管理,请在明细行输入库位' % line.warehouse_dest_id.name)
  340. if line.location_id:
  341. line.location_id.write(
  342. {'attribute_id': line.attribute_id.id, 'goods_id': line.goods_id.id})
  343. if line.type == 'in' and line.scrap:
  344. if not self.env.user.company_id.wh_scrap_id:
  345. raise UserError('请在公司上输入废品库')
  346. dic = {
  347. 'type': 'internal',
  348. 'goods_id': line.goods_id.id,
  349. 'uom_id': line.uom_id.id,
  350. 'attribute_id': line.attribute_id.id,
  351. 'goods_qty': line.goods_qty,
  352. 'warehouse_id': line.warehouse_dest_id.id,
  353. 'warehouse_dest_id': self.env.user.company_id.wh_scrap_id.id
  354. }
  355. if line.lot:
  356. dic.update({'lot_id': line.id})
  357. wh_internal = self.env['wh.internal'].search([('ref', '=', line.move_id.name)])
  358. if not wh_internal:
  359. value = {
  360. 'ref': line.move_id.name,
  361. 'date': fields.Datetime.now(self),
  362. 'warehouse_id': line.warehouse_dest_id.id,
  363. 'warehouse_dest_id': self.env.user.company_id.wh_scrap_id.id,
  364. 'line_out_ids': [(0, 0, dic)],
  365. }
  366. self.env['wh.internal'].create(value)
  367. else:
  368. dic['move_id'] = wh_internal.move_id.id
  369. self.env['wh.move.line'].create(dic)
  370. def check_cancel(self):
  371. pass
  372. def prev_action_draft(self):
  373. pass
  374. def action_draft(self):
  375. for line in self:
  376. line.check_cancel()
  377. line.prev_action_draft()
  378. line.write({
  379. 'state': 'draft',
  380. 'date': False,
  381. })
  382. def compute_lot_compatible(self):
  383. for wml in self:
  384. if wml.warehouse_id and wml.lot_id and wml.lot_id.warehouse_dest_id != wml.warehouse_id:
  385. wml.lot_id = False
  386. if wml.goods_id and wml.lot_id and wml.lot_id.goods_id != wml.goods_id:
  387. wml.lot_id = False
  388. def compute_lot_domain(self):
  389. warehouse_id = self.env.context.get('default_warehouse_id')
  390. lot_domain = [('goods_id', '=', self.goods_id.id), ('state', '=', 'done'),
  391. ('lot', '!=', False), ('qty_remaining', '>', 0),
  392. ('warehouse_dest_id.type', '=', 'stock')]
  393. if warehouse_id:
  394. lot_domain.append(('warehouse_dest_id', '=', warehouse_id))
  395. if self.attribute_id:
  396. lot_domain.append(('attribute_id', '=', self.attribute_id.id))
  397. return lot_domain
  398. def compute_suggested_cost(self):
  399. for wml in self:
  400. if wml.env.context.get('type') == 'out' and wml.goods_id and wml.warehouse_id and wml.goods_qty:
  401. _, cost_unit = wml.goods_id.get_suggested_cost_by_warehouse(
  402. wml.warehouse_id, wml.goods_qty, wml.lot_id, wml.attribute_id)
  403. wml.cost_unit = cost_unit
  404. if wml.env.context.get('type') == 'in' and wml.goods_id:
  405. wml.cost_unit = wml.goods_id.cost
  406. @api.onchange('goods_id')
  407. def onchange_goods_id(self):
  408. if self.goods_id:
  409. self.uom_id = self.goods_id.uom_id
  410. self.uos_id = self.goods_id.uos_id
  411. self.attribute_id = False
  412. partner_id = self.env.context.get('default_partner')
  413. partner = self.env['partner'].browse(partner_id)
  414. if self.type == 'in':
  415. self.tax_rate = self.goods_id.get_tax_rate(self.goods_id, partner, 'buy')
  416. if self.type == 'out':
  417. self.tax_rate = self.goods_id.get_tax_rate(self.goods_id, partner, 'sell')
  418. if self.goods_id.using_batch and self.goods_id.force_batch_one:
  419. self.goods_qty = 1
  420. self.goods_uos_qty = self.goods_id.anti_conversion_unit(
  421. self.goods_qty)
  422. else:
  423. self.goods_qty = self.goods_id.conversion_unit(
  424. self.goods_uos_qty or 1)
  425. else:
  426. return
  427. self.compute_suggested_cost()
  428. self.compute_lot_compatible()
  429. return {'domain': {'lot_id': self.compute_lot_domain()}}
  430. @api.onchange('warehouse_id')
  431. def onchange_warehouse_id(self):
  432. if not self.warehouse_id:
  433. return
  434. self.compute_suggested_cost()
  435. self.compute_lot_domain()
  436. self.compute_lot_compatible()
  437. return {'domain': {'lot_id': self.compute_lot_domain()}}
  438. @api.onchange('attribute_id')
  439. def onchange_attribute_id(self):
  440. if not self.attribute_id:
  441. return
  442. self.compute_suggested_cost()
  443. return {'domain': {'lot_id': self.compute_lot_domain()}}
  444. @api.onchange('goods_qty')
  445. def onchange_goods_qty(self):
  446. if not self.goods_id:
  447. return
  448. self.compute_suggested_cost()
  449. @api.onchange('goods_uos_qty')
  450. def onchange_goods_uos_qty(self):
  451. if self.goods_id:
  452. self.goods_qty = self.goods_id.conversion_unit(self.goods_uos_qty)
  453. self.compute_suggested_cost()
  454. @api.onchange('lot_id')
  455. def onchange_lot_id(self):
  456. if self.lot_id:
  457. if self.lot_id.qty_remaining < self.goods_qty:
  458. self.goods_qty = self.lot_id.qty_remaining
  459. self.lot_qty = self.lot_id.qty_remaining
  460. self.lot_uos_qty = self.goods_id.anti_conversion_unit(self.lot_qty)
  461. if self.env.context.get('type') in ['internal', 'out']:
  462. self.lot = self.lot_id.lot
  463. @api.onchange('goods_qty', 'price_taxed', 'discount_rate')
  464. def onchange_discount_rate(self):
  465. if not self.goods_id:
  466. return
  467. """当数量、单价或优惠率发生变化时,优惠金额发生变化"""
  468. price = self.price_taxed / (1 + self.tax_rate * 0.01)
  469. decimal = self.env.ref('core.decimal_price')
  470. if float_compare(price, self.price, precision_digits=decimal.digits) != 0:
  471. self.price = price
  472. self.discount_amount = self.goods_qty * self.price * self.discount_rate * 0.01
  473. @api.onchange('discount_amount')
  474. def onchange_discount_amount(self):
  475. if not self.goods_id:
  476. return
  477. """当优惠金额发生变化时,重新取默认的单位成本,以便计算实际的单位成本"""
  478. self.compute_suggested_cost()
  479. @api.constrains('goods_qty')
  480. def check_goods_qty(self):
  481. """序列号管理的商品数量必须为1"""
  482. for wml in self:
  483. if wml.force_batch_one and wml.goods_qty > 1:
  484. raise UserError('商品 %s 进行了序列号管理,数量必须为1' % wml.goods_id.name)
  485. def get_lot_id(self):
  486. if self.type == 'out' and self.goods_id.using_batch:
  487. domain = [
  488. ('qty_remaining', '>=', self.goods_qty),
  489. ('state', '=', 'done'),
  490. ('warehouse_dest_id', '=', self.warehouse_id.id),
  491. ('goods_id', '=', self.goods_id.id)
  492. ]
  493. line = self.env['wh.move.line'].search(
  494. domain, order='location_id, expiration_date, cost_time, id',limit=1)
  495. if line:
  496. self.lot_id = line.id
  497. self.lot = line.lot
  498. else:
  499. print('not lot for %s in %s' % (self.goods_id.name, self.move_id.name))
  500. @api.depends('goods_id', 'goods_qty', 'warehouse_id', 'state')
  501. def _get_lack(self):
  502. for s in self:
  503. s.all_lack = 0
  504. s.wh_lack = 0
  505. if s.type != 'in' and s.state == 'draft' and s.goods_id:
  506. s.all_lack = s.goods_qty
  507. s.wh_lack = s.goods_qty
  508. qty = s.goods_id.get_stock_qty()
  509. for i in qty:
  510. s.all_lack -= i['qty']
  511. if i['warehouse'] == s.warehouse_id.name:
  512. s.wh_lack -= i['qty']
上海开阖软件有限公司 沪ICP备12045867号-1