From 4443fb28e39d6ff1b2b41d359cb80c3838e447e4 Mon Sep 17 00:00:00 2001 From: Jordi Ballester Alomar Date: Mon, 27 Feb 2017 11:29:19 +0100 Subject: [PATCH 01/24] new module 'stock_available_unreserved' (#206) * [ADD] new module 'stock_available_unreserved' --- stock_available_unreserved/README.rst | 64 ++++++++ stock_available_unreserved/__init__.py | 7 + stock_available_unreserved/__openerp__.py | 21 +++ stock_available_unreserved/models/__init__.py | 7 + stock_available_unreserved/models/product.py | 141 ++++++++++++++++++ .../static/description/icon.png | Bin 0 -> 9455 bytes stock_available_unreserved/tests/__init__.py | 7 + .../tests/test_stock_available_unreserved.py | 136 +++++++++++++++++ .../views/product_view.xml | 78 ++++++++++ .../views/stock_quant_view.xml | 31 ++++ 10 files changed, 492 insertions(+) create mode 100644 stock_available_unreserved/README.rst create mode 100644 stock_available_unreserved/__init__.py create mode 100644 stock_available_unreserved/__openerp__.py create mode 100644 stock_available_unreserved/models/__init__.py create mode 100644 stock_available_unreserved/models/product.py create mode 100644 stock_available_unreserved/static/description/icon.png create mode 100644 stock_available_unreserved/tests/__init__.py create mode 100644 stock_available_unreserved/tests/test_stock_available_unreserved.py create mode 100644 stock_available_unreserved/views/product_view.xml create mode 100644 stock_available_unreserved/views/stock_quant_view.xml diff --git a/stock_available_unreserved/README.rst b/stock_available_unreserved/README.rst new file mode 100644 index 000000000..dcf69d808 --- /dev/null +++ b/stock_available_unreserved/README.rst @@ -0,0 +1,64 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +========================== +Stock Available Unreserved +========================== + +This module allows users to check the quantity of a stocked product that is +available on-hand, and that has not yet been reserved for use anywhere else. + +This key figure is very important during the monitoring of the warehouse +execution, because it assists users to ensure that the flow of products will +not be stuck due to a sudden unavailability of stock. + +If the warehouse personnel ensures that the unreserved quantity on hand > 0, +then nobody will be stuck in pickings or manufacturing orders waiting for +the availability of unreserved stock. + + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/153/9.0 + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Jordi Ballester Alomar + + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/stock_available_unreserved/__init__.py b/stock_available_unreserved/__init__.py new file mode 100644 index 000000000..298ab2340 --- /dev/null +++ b/stock_available_unreserved/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 ACSONE SA/NV () +# Copyright 2016 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from . import models diff --git a/stock_available_unreserved/__openerp__.py b/stock_available_unreserved/__openerp__.py new file mode 100644 index 000000000..f2b1189bd --- /dev/null +++ b/stock_available_unreserved/__openerp__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 ACSONE SA/NV () +# Copyright 2016 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +{ + "name": "Stock Available Unreserved", + "summary": "Quantity of stock available for inmediate use", + "version": "9.0.1.0.0", + "author": "Eficent Business and IT Consulting Services S.L," + "Odoo Community Association (OCA)", + "website": "https://www.odoo-community.org", + "category": "Warehouse Management", + "depends": ["stock"], + "data": ["views/stock_quant_view.xml", + "views/product_view.xml" + ], + "license": "AGPL-3", + 'installable': True, + 'application': False, +} diff --git a/stock_available_unreserved/models/__init__.py b/stock_available_unreserved/models/__init__.py new file mode 100644 index 000000000..a7bcedeaa --- /dev/null +++ b/stock_available_unreserved/models/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 ACSONE SA/NV () +# Copyright 2016 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from . import product diff --git a/stock_available_unreserved/models/product.py b/stock_available_unreserved/models/product.py new file mode 100644 index 000000000..74e2a087c --- /dev/null +++ b/stock_available_unreserved/models/product.py @@ -0,0 +1,141 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 ACSONE SA/NV () +# Copyright 2016 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from openerp import api, fields, models, _ +from openerp.tools.float_utils import float_round +from openerp.addons import decimal_precision as dp + +UNIT = dp.get_precision('Product Unit of Measure') + + +class ProductTemplate(models.Model): + _inherit = "product.template" + + qty_available_not_res = fields.Float( + string='Quantity On Hand Unreserved', digits=UNIT, + compute='_compute_product_available_not_res') + + qty_available_stock_text = fields.Char( + compute='_compute_product_available_not_res', + string='Unreserved stock quantity') + + @api.multi + def _compute_product_available_not_res(self): + no_new = self.filtered( + lambda x: not isinstance(x.id, models.NewId)) + res = no_new._product_available() + for tmpl in no_new: + qty = res[tmpl.id]['qty_available_not_res'] + tmpl.qty_available_not_res = qty + text = res[tmpl.id]['qty_available_stock_text'] + tmpl.qty_available_stock_text = text + + @api.multi + def _product_available(self, name=None, arg=False): + prod_available = super(ProductTemplate, self)._product_available(name, + arg) + + variants = self.env['product.product'] + for product in self: + variants += product.product_variant_ids + variant_available = variants._product_available() + + for product in self: + if isinstance(product.id, models.NewId): + continue + qty_available_not_res = 0.0 + text = '' + for p in product.product_variant_ids: + qty = variant_available[p.id]["qty_available_not_res"] + qty_available_not_res += qty + text = variant_available[p.id]["qty_available_stock_text"] + prod_available[product.id].update({ + "qty_available_not_res": qty_available_not_res, + "qty_available_stock_text": text, + }) + return prod_available + + @api.multi + def action_open_quants_unreserved(self): + products = self._get_products() + result = self._get_act_window_dict('stock.product_open_quants') + result['domain'] = "[('product_id','in',[" + ','.join( + map(str, products)) + "]), ('reservation_id', '=', False)]" + result[ + 'context'] = "{'search_default_locationgroup': 1, " \ + "'search_default_internal_loc': 1}" + return result + + +class ProductProduct(models.Model): + _inherit = 'product.product' + + qty_available_not_res = fields.Float( + string='Qty Available Not Reserved', digits=UNIT, + compute='_compute_qty_available_not_res') + + qty_available_stock_text = fields.Char( + compute='_compute_qty_available_not_res', string='Available per stock') + + @api.multi + def _compute_qty_available_not_res(self): + res = self._product_available() + for prod in self: + qty = res[prod.id]['qty_available_not_res'] + text = res[prod.id]['qty_available_stock_text'] + prod.qty_available_not_res = qty + prod.qty_available_stock_text = text + + @api.model + def _prepare_domain_available_not_res(self, products): + domain_products = [('product_id', 'in', products.mapped('id'))] + domain_quant = [] + domain_quant_loc, _, _ = products._get_domain_locations() + + domain_quant += domain_products + + domain_quant.append(('reservation_id', '=', False)) + + domain_quant += domain_quant_loc + + return domain_quant + + @api.multi + def _product_available_not_res_hook(self, quants): + """Hook used to introduce possible variations""" + return False + + @api.multi + def _product_available(self, field_names=None, arg=False): + + res = super(ProductProduct, self).\ + _product_available(field_names=field_names, + arg=arg) + + domain_quant = self._prepare_domain_available_not_res(self) + + quants = self.env['stock.quant'].read_group( + domain_quant, + ['product_id', 'location_id', 'qty'], + ['product_id', 'location_id'], + lazy=False) + values_prod = {} + for quant in quants: + # create a dictionary with the total value per products + values_prod.setdefault(quant['product_id'][0], 0) + values_prod[quant['product_id'][0]] += quant['qty'] + for product in self: + # get total qty for the product + qty = float_round(values_prod.get(product.id, 0.0), + precision_rounding=product.uom_id.rounding) + qty_available_not_res = qty + res[product.id].update({'qty_available_not_res': + qty_available_not_res}) + text = str(qty_available_not_res) + _(" On Hand") + res[product.id].update({'qty_available_stock_text': text}) + self._product_available_not_res_hook(quants) + + return res diff --git a/stock_available_unreserved/static/description/icon.png b/stock_available_unreserved/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/stock_available_unreserved/tests/__init__.py b/stock_available_unreserved/tests/__init__.py new file mode 100644 index 000000000..296133ef2 --- /dev/null +++ b/stock_available_unreserved/tests/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 ACSONE SA/NV () +# Copyright 2016 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from . import test_stock_available_unreserved diff --git a/stock_available_unreserved/tests/test_stock_available_unreserved.py b/stock_available_unreserved/tests/test_stock_available_unreserved.py new file mode 100644 index 000000000..e440e4a1b --- /dev/null +++ b/stock_available_unreserved/tests/test_stock_available_unreserved.py @@ -0,0 +1,136 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 ACSONE SA/NV () +# Copyright 2016 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# Copyright 2016 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from openerp.tests.common import TransactionCase + + +class TestStockLogisticsWarehouse(TransactionCase): + + def test01_stock_levels(self): + """checking that qty_available_not_res actually reflects \ + the variations in stock, both on product and template""" + pickingObj = self.env['stock.picking'] + productObj = self.env['product.product'] + templateObj = self.env['product.template'] + supplier_location = self.env.ref('stock.stock_location_suppliers') + stock_location = self.env.ref('stock.stock_location_stock') + customer_location = self.env.ref('stock.stock_location_customers') + uom_unit = self.env.ref('product.product_uom_unit') + + # Create product template + templateAB = templateObj.create( + {'name': 'templAB', + 'uom_id': uom_unit.id, + }) + + # Create product A and B + productA = productObj.create( + {'name': 'product A', + 'standard_price': 1, + 'type': 'product', + 'uom_id': uom_unit.id, + 'default_code': 'A', + 'product_tmpl_id': templateAB.id, + }) + + productB = productObj.create( + {'name': 'product B', + 'standard_price': 1, + 'type': 'product', + 'uom_id': uom_unit.id, + 'default_code': 'B', + 'product_tmpl_id': templateAB.id, + }) + + # Create a picking move from INCOMING to STOCK + pickingInA = pickingObj.create({ + 'picking_type_id': self.ref('stock.picking_type_in'), + 'location_id': supplier_location.id, + 'location_dest_id': stock_location.id, + 'move_lines': [ + (0, 0, { + 'name': 'Test move', + 'product_id': productA.id, + 'product_uom': productA.uom_id.id, + 'product_uom_qty': 2, + 'location_id': supplier_location.id, + 'location_dest_id': stock_location.id, + })] + }) + + pickingInB = pickingObj.create({ + 'picking_type_id': self.ref('stock.picking_type_in'), + 'location_id': supplier_location.id, + 'location_dest_id': stock_location.id, + 'move_lines': [ + (0, 0, { + 'name': 'Test move', + 'product_id': productB.id, + 'product_uom': productB.uom_id.id, + 'product_uom_qty': 3, + 'location_id': supplier_location.id, + 'location_dest_id': stock_location.id, + })] + }) + + def compare_qty_available_not_res(product, value): + # Refresh, because the function field is not recalculated between + # transactions + product.refresh() + self.assertEqual(product.qty_available_not_res, value) + + compare_qty_available_not_res(productA, 0) + compare_qty_available_not_res(templateAB, 0) + + pickingInA.action_confirm() + compare_qty_available_not_res(productA, 0) + compare_qty_available_not_res(templateAB, 0) + + pickingInA.action_assign() + compare_qty_available_not_res(productA, 0) + compare_qty_available_not_res(templateAB, 0) + + pickingInA.action_done() + compare_qty_available_not_res(productA, 2) + compare_qty_available_not_res(templateAB, 2) + + # will directly trigger action_done on productB + pickingInB.action_done() + compare_qty_available_not_res(productA, 2) + compare_qty_available_not_res(productB, 3) + compare_qty_available_not_res(templateAB, 5) + + # Create a picking from STOCK to CUSTOMER + pickingOutA = pickingObj.create({ + 'picking_type_id': self.ref('stock.picking_type_out'), + 'location_id': stock_location.id, + 'location_dest_id': customer_location.id, + 'move_lines': [ + (0, 0, { + 'name': 'Test move', + 'product_id': productB.id, + 'product_uom': productB.uom_id.id, + 'product_uom_qty': 2, + 'location_id': stock_location.id, + 'location_dest_id': customer_location.id, + })] + }) + + compare_qty_available_not_res(productB, 3) + compare_qty_available_not_res(templateAB, 5) + + pickingOutA.action_confirm() + compare_qty_available_not_res(productB, 3) + compare_qty_available_not_res(templateAB, 5) + + pickingOutA.action_assign() + compare_qty_available_not_res(productB, 1) + compare_qty_available_not_res(templateAB, 3) + + pickingOutA.action_done() + compare_qty_available_not_res(productB, 1) + compare_qty_available_not_res(templateAB, 3) diff --git a/stock_available_unreserved/views/product_view.xml b/stock_available_unreserved/views/product_view.xml new file mode 100644 index 000000000..bc2a0c08d --- /dev/null +++ b/stock_available_unreserved/views/product_view.xml @@ -0,0 +1,78 @@ + + + + + + + product.template.stock.tree.inherit + product.template + + + + + + + + + + Product Template Kanban Stock + product.template + + +
    +
  • Unreserved:
  • +
+
+
+ + + product.stock.tree.inherit + product.product + + + + + + + + + + product.template_procurement + product.template + + +
+ +
+
+
+ + + product.product.procurement + product.product + + +
+ +
+
+
+ +
+
diff --git a/stock_available_unreserved/views/stock_quant_view.xml b/stock_available_unreserved/views/stock_quant_view.xml new file mode 100644 index 000000000..4a6b56ac4 --- /dev/null +++ b/stock_available_unreserved/views/stock_quant_view.xml @@ -0,0 +1,31 @@ + + + + + + stock.quant.search + stock.quant + + + + + + + + + + + + + + Stock On Hand (Unreserved) + {'search_default_internal_loc': 1, 'search_default_locationgroup':1} + [('product_id', '=', active_id), ('reservation_id', '=', False)] + stock.quant + + + + From ecab13d2673cfb1e0a97bb8c4b6e25d9d4667780 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 4 Mar 2017 03:30:34 -0500 Subject: [PATCH 02/24] OCA Transbot updated translations from Transifex --- stock_available_unreserved/i18n/ca.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/de.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/el_GR.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/es.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/es_ES.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/es_MX.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/eu.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/fi.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/fr.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/fr_CH.po | 77 +++++++++++++++++++++++ stock_available_unreserved/i18n/fr_FR.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/gl.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/hr.po | 77 +++++++++++++++++++++++ stock_available_unreserved/i18n/hr_HR.po | 77 +++++++++++++++++++++++ stock_available_unreserved/i18n/it.po | 77 +++++++++++++++++++++++ stock_available_unreserved/i18n/nl.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/nl_NL.po | 77 +++++++++++++++++++++++ stock_available_unreserved/i18n/pt.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/pt_BR.po | 78 ++++++++++++++++++++++++ stock_available_unreserved/i18n/ro.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/ru.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/sl.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/tr.po | 77 +++++++++++++++++++++++ stock_available_unreserved/i18n/tr_TR.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/vi_VN.po | 76 +++++++++++++++++++++++ stock_available_unreserved/i18n/zh_CN.po | 76 +++++++++++++++++++++++ 26 files changed, 1984 insertions(+) create mode 100644 stock_available_unreserved/i18n/ca.po create mode 100644 stock_available_unreserved/i18n/de.po create mode 100644 stock_available_unreserved/i18n/el_GR.po create mode 100644 stock_available_unreserved/i18n/es.po create mode 100644 stock_available_unreserved/i18n/es_ES.po create mode 100644 stock_available_unreserved/i18n/es_MX.po create mode 100644 stock_available_unreserved/i18n/eu.po create mode 100644 stock_available_unreserved/i18n/fi.po create mode 100644 stock_available_unreserved/i18n/fr.po create mode 100644 stock_available_unreserved/i18n/fr_CH.po create mode 100644 stock_available_unreserved/i18n/fr_FR.po create mode 100644 stock_available_unreserved/i18n/gl.po create mode 100644 stock_available_unreserved/i18n/hr.po create mode 100644 stock_available_unreserved/i18n/hr_HR.po create mode 100644 stock_available_unreserved/i18n/it.po create mode 100644 stock_available_unreserved/i18n/nl.po create mode 100644 stock_available_unreserved/i18n/nl_NL.po create mode 100644 stock_available_unreserved/i18n/pt.po create mode 100644 stock_available_unreserved/i18n/pt_BR.po create mode 100644 stock_available_unreserved/i18n/ro.po create mode 100644 stock_available_unreserved/i18n/ru.po create mode 100644 stock_available_unreserved/i18n/sl.po create mode 100644 stock_available_unreserved/i18n/tr.po create mode 100644 stock_available_unreserved/i18n/tr_TR.po create mode 100644 stock_available_unreserved/i18n/vi_VN.po create mode 100644 stock_available_unreserved/i18n/zh_CN.po diff --git a/stock_available_unreserved/i18n/ca.po b/stock_available_unreserved/i18n/ca.po new file mode 100644 index 000000000..c517421f1 --- /dev/null +++ b/stock_available_unreserved/i18n/ca.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# Carles Antoli , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: Carles Antoli , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Producte" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Plantilla del producte" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/de.po b/stock_available_unreserved/i18n/de.po new file mode 100644 index 000000000..271bba014 --- /dev/null +++ b/stock_available_unreserved/i18n/de.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 14:35+0000\n" +"PO-Revision-Date: 2018-01-16 14:35+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:112 +#, python-format +msgid " On Hand" +msgstr "Verfügbar" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "Verfügbar nach Bestand" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "Intern nicht reserviert" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Produkt" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Produktvorlage" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "Freier Bestand" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "Nicht reservierte, verfügbare Menge" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "Freier Bestand (nicht reserv.)" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "Nicht reserviert" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "Nicht reservierte Bestandsmenge" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "Nicht reserviert:" diff --git a/stock_available_unreserved/i18n/el_GR.po b/stock_available_unreserved/i18n/el_GR.po new file mode 100644 index 000000000..4247c22be --- /dev/null +++ b/stock_available_unreserved/i18n/el_GR.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# Kostas Goutoudis , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: Kostas Goutoudis , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Προϊόν" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/es.po b/stock_available_unreserved/i18n/es.po new file mode 100644 index 000000000..e432f39af --- /dev/null +++ b/stock_available_unreserved/i18n/es.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Producto" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "No reservado" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/es_ES.po b/stock_available_unreserved/i18n/es_ES.po new file mode 100644 index 000000000..0c18bc6b4 --- /dev/null +++ b/stock_available_unreserved/i18n/es_ES.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# Javier García-Panach , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: Javier García-Panach , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Producto" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/es_MX.po b/stock_available_unreserved/i18n/es_MX.po new file mode 100644 index 000000000..bea9ef360 --- /dev/null +++ b/stock_available_unreserved/i18n/es_MX.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# Juan González , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: Juan González , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Plantilla del producto" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/eu.po b/stock_available_unreserved/i18n/eu.po new file mode 100644 index 000000000..a459f8f5b --- /dev/null +++ b/stock_available_unreserved/i18n/eu.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: Esther Martín Menéndez , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Produktua" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/fi.po b/stock_available_unreserved/i18n/fi.po new file mode 100644 index 000000000..f9507aec4 --- /dev/null +++ b/stock_available_unreserved/i18n/fi.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Tuote" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Tuotteen malli" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/fr.po b/stock_available_unreserved/i18n/fr.po new file mode 100644 index 000000000..497fab56a --- /dev/null +++ b/stock_available_unreserved/i18n/fr.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Article" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Modèle de produit" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/fr_CH.po b/stock_available_unreserved/i18n/fr_CH.po new file mode 100644 index 000000000..0bdb6f561 --- /dev/null +++ b/stock_available_unreserved/i18n/fr_CH.po @@ -0,0 +1,77 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# leemannd , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Produit" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Template de produit" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/fr_FR.po b/stock_available_unreserved/i18n/fr_FR.po new file mode 100644 index 000000000..cf0ce192f --- /dev/null +++ b/stock_available_unreserved/i18n/fr_FR.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Produit" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/gl.po b/stock_available_unreserved/i18n/gl.po new file mode 100644 index 000000000..9eae1e61e --- /dev/null +++ b/stock_available_unreserved/i18n/gl.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# César Castro Cruz , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: César Castro Cruz , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Produto" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/hr.po b/stock_available_unreserved/i18n/hr.po new file mode 100644 index 000000000..22232b2fa --- /dev/null +++ b/stock_available_unreserved/i18n/hr.po @@ -0,0 +1,77 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# Bole , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/hr_HR.po b/stock_available_unreserved/i18n/hr_HR.po new file mode 100644 index 000000000..ca89e87b7 --- /dev/null +++ b/stock_available_unreserved/i18n/hr_HR.po @@ -0,0 +1,77 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# Bole , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/it.po b/stock_available_unreserved/i18n/it.po new file mode 100644 index 000000000..dd96facaf --- /dev/null +++ b/stock_available_unreserved/i18n/it.po @@ -0,0 +1,77 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# Paolo Valier , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Prodotto" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Template Prodotto" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/nl.po b/stock_available_unreserved/i18n/nl.po new file mode 100644 index 000000000..94527d4a6 --- /dev/null +++ b/stock_available_unreserved/i18n/nl.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 14:35+0000\n" +"PO-Revision-Date: 2018-01-16 14:35+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:112 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Product" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Productsjabloon" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/nl_NL.po b/stock_available_unreserved/i18n/nl_NL.po new file mode 100644 index 000000000..5423c4f18 --- /dev/null +++ b/stock_available_unreserved/i18n/nl_NL.po @@ -0,0 +1,77 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# OCA Transbot , 2017 +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-23 00:57+0000\n" +"PO-Revision-Date: 2017-06-23 00:57+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:135 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Product" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Productsjabloon" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/pt.po b/stock_available_unreserved/i18n/pt.po new file mode 100644 index 000000000..cafb89b11 --- /dev/null +++ b/stock_available_unreserved/i18n/pt.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Produto" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/pt_BR.po b/stock_available_unreserved/i18n/pt_BR.po new file mode 100644 index 000000000..0edbbd70a --- /dev/null +++ b/stock_available_unreserved/i18n/pt_BR.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# Claudio Araujo Santos , 2017 +# OCA Transbot , 2017 +# danimaribeiro , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: danimaribeiro , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Produto" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Modelo Produto" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "Desreservar" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/ro.po b/stock_available_unreserved/i18n/ro.po new file mode 100644 index 000000000..d6f8b8f26 --- /dev/null +++ b/stock_available_unreserved/i18n/ro.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Produs" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Produs șablon" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/ru.po b/stock_available_unreserved/i18n/ru.po new file mode 100644 index 000000000..999c4eecd --- /dev/null +++ b/stock_available_unreserved/i18n/ru.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 14:35+0000\n" +"PO-Revision-Date: 2018-01-16 14:35+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:112 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Товар/Услуга" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/sl.po b/stock_available_unreserved/i18n/sl.po new file mode 100644 index 000000000..797824665 --- /dev/null +++ b/stock_available_unreserved/i18n/sl.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 14:35+0000\n" +"PO-Revision-Date: 2018-01-16 14:35+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:112 +#, python-format +msgid " On Hand" +msgstr "Na voljo" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "Na voljo po zalogah" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "Interno ne rezervirano" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Predloga proizvoda" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "Ne rezervirana količina na voljo" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "Ne rezervirana količna pri roki" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "Količina pri roki (ne rezervirana)" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "Odstranjena rezervacija" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "Količina ne rezerviranih zalog" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "Ne rezervirano:" diff --git a/stock_available_unreserved/i18n/tr.po b/stock_available_unreserved/i18n/tr.po new file mode 100644 index 000000000..73695c753 --- /dev/null +++ b/stock_available_unreserved/i18n/tr.po @@ -0,0 +1,77 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# Ediz Duman , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-23 00:57+0000\n" +"PO-Revision-Date: 2017-06-23 00:57+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:135 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Ürün" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Ürün Şablonu" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/tr_TR.po b/stock_available_unreserved/i18n/tr_TR.po new file mode 100644 index 000000000..d518cd79f --- /dev/null +++ b/stock_available_unreserved/i18n/tr_TR.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: Ozge Altinisik , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Ürün" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Ürün şablonu" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/vi_VN.po b/stock_available_unreserved/i18n/vi_VN.po new file mode 100644 index 000000000..d877b03b7 --- /dev/null +++ b/stock_available_unreserved/i18n/vi_VN.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "Sản phẩm" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "Mẫu sản phẩm" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" diff --git a/stock_available_unreserved/i18n/zh_CN.po b/stock_available_unreserved/i18n/zh_CN.po new file mode 100644 index 000000000..df7638bd4 --- /dev/null +++ b/stock_available_unreserved/i18n/zh_CN.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +# Translators: +# Jeffery CHEN , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 03:58+0000\n" +"PO-Revision-Date: 2017-03-04 03:58+0000\n" +"Last-Translator: Jeffery CHEN , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:137 +#, python-format +msgid " On Hand" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text +msgid "Available per stock" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "产品" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "产品模板" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text +msgid "Unreserved stock quantity" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" From d79518b97990ba804253d1f41fdd910304be4a42 Mon Sep 17 00:00:00 2001 From: Stefan Rijnhart Date: Mon, 15 May 2017 09:46:10 +0200 Subject: [PATCH 03/24] [MIG] stock_available_unreserved --- stock_available_unreserved/README.rst | 3 ++- .../{__openerp__.py => __manifest__.py} | 4 ++-- stock_available_unreserved/models/product.py | 16 +++++++--------- .../tests/test_stock_available_unreserved.py | 4 +++- .../views/product_view.xml | 6 ++---- .../views/stock_quant_view.xml | 6 ++---- 6 files changed, 18 insertions(+), 21 deletions(-) rename stock_available_unreserved/{__openerp__.py => __manifest__.py} (88%) diff --git a/stock_available_unreserved/README.rst b/stock_available_unreserved/README.rst index dcf69d808..dbaebc69e 100644 --- a/stock_available_unreserved/README.rst +++ b/stock_available_unreserved/README.rst @@ -23,7 +23,7 @@ Usage .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/153/9.0 + :target: https://runbot.odoo-community.org/runbot/153/10.0 Bug Tracker @@ -46,6 +46,7 @@ Contributors ------------ * Jordi Ballester Alomar +* Stefan Rijnhart Maintainer diff --git a/stock_available_unreserved/__openerp__.py b/stock_available_unreserved/__manifest__.py similarity index 88% rename from stock_available_unreserved/__openerp__.py rename to stock_available_unreserved/__manifest__.py index f2b1189bd..c43c438fe 100644 --- a/stock_available_unreserved/__openerp__.py +++ b/stock_available_unreserved/__manifest__.py @@ -5,8 +5,8 @@ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { "name": "Stock Available Unreserved", - "summary": "Quantity of stock available for inmediate use", - "version": "9.0.1.0.0", + "summary": "Quantity of stock available for immediate use", + "version": "10.0.1.0.0", "author": "Eficent Business and IT Consulting Services S.L," "Odoo Community Association (OCA)", "website": "https://www.odoo-community.org", diff --git a/stock_available_unreserved/models/product.py b/stock_available_unreserved/models/product.py index 74e2a087c..d638215ad 100644 --- a/stock_available_unreserved/models/product.py +++ b/stock_available_unreserved/models/product.py @@ -4,9 +4,9 @@ # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from openerp import api, fields, models, _ -from openerp.tools.float_utils import float_round -from openerp.addons import decimal_precision as dp +from odoo import api, fields, models, _ +from odoo.tools.float_utils import float_round +from odoo.addons import decimal_precision as dp UNIT = dp.get_precision('Product Unit of Measure') @@ -38,9 +38,7 @@ class ProductTemplate(models.Model): prod_available = super(ProductTemplate, self)._product_available(name, arg) - variants = self.env['product.product'] - for product in self: - variants += product.product_variant_ids + variants = self.mapped('product_variant_ids') variant_available = variants._product_available() for product in self: @@ -60,8 +58,8 @@ class ProductTemplate(models.Model): @api.multi def action_open_quants_unreserved(self): - products = self._get_products() - result = self._get_act_window_dict('stock.product_open_quants') + products = self.mapped('product_variant_ids').ids + result = self.env.ref('stock.product_open_quants').read()[0] result['domain'] = "[('product_id','in',[" + ','.join( map(str, products)) + "]), ('reservation_id', '=', False)]" result[ @@ -93,7 +91,7 @@ class ProductProduct(models.Model): def _prepare_domain_available_not_res(self, products): domain_products = [('product_id', 'in', products.mapped('id'))] domain_quant = [] - domain_quant_loc, _, _ = products._get_domain_locations() + domain_quant_loc = products._get_domain_locations()[0] domain_quant += domain_products diff --git a/stock_available_unreserved/tests/test_stock_available_unreserved.py b/stock_available_unreserved/tests/test_stock_available_unreserved.py index e440e4a1b..f0ef3b932 100644 --- a/stock_available_unreserved/tests/test_stock_available_unreserved.py +++ b/stock_available_unreserved/tests/test_stock_available_unreserved.py @@ -5,7 +5,7 @@ # Copyright 2016 Therp BV # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from openerp.tests.common import TransactionCase +from odoo.tests.common import TransactionCase class TestStockLogisticsWarehouse(TransactionCase): @@ -134,3 +134,5 @@ class TestStockLogisticsWarehouse(TransactionCase): pickingOutA.action_done() compare_qty_available_not_res(productB, 1) compare_qty_available_not_res(templateAB, 3) + + templateAB.action_open_quants_unreserved() diff --git a/stock_available_unreserved/views/product_view.xml b/stock_available_unreserved/views/product_view.xml index bc2a0c08d..d452199d3 100644 --- a/stock_available_unreserved/views/product_view.xml +++ b/stock_available_unreserved/views/product_view.xml @@ -1,6 +1,5 @@ - - + @@ -74,5 +73,4 @@ - - + diff --git a/stock_available_unreserved/views/stock_quant_view.xml b/stock_available_unreserved/views/stock_quant_view.xml index 4a6b56ac4..8d4b42895 100644 --- a/stock_available_unreserved/views/stock_quant_view.xml +++ b/stock_available_unreserved/views/stock_quant_view.xml @@ -1,6 +1,5 @@ - - + stock.quant.search @@ -27,5 +26,4 @@ stock.quant - - + From 36b64e4b85cc39ede1202616c141bde94d7f33e1 Mon Sep 17 00:00:00 2001 From: mreficent Date: Thu, 19 Oct 2017 11:07:46 +0200 Subject: [PATCH 04/24] [IMP] fast compute _product_available() method is computed only once by location --- stock_available_unreserved/models/product.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/stock_available_unreserved/models/product.py b/stock_available_unreserved/models/product.py index d638215ad..ff22b2b80 100644 --- a/stock_available_unreserved/models/product.py +++ b/stock_available_unreserved/models/product.py @@ -33,10 +33,9 @@ class ProductTemplate(models.Model): text = res[tmpl.id]['qty_available_stock_text'] tmpl.qty_available_stock_text = text - @api.multi - def _product_available(self, name=None, arg=False): - prod_available = super(ProductTemplate, self)._product_available(name, - arg) + def _compute_quantities_dict(self): + prod_available = super(ProductTemplate, self).\ + _compute_quantities_dict() variants = self.mapped('product_variant_ids') variant_available = variants._product_available() @@ -107,11 +106,12 @@ class ProductProduct(models.Model): return False @api.multi - def _product_available(self, field_names=None, arg=False): - + def _compute_quantities_dict(self, lot_id, owner_id, package_id, + from_date=False, to_date=False): res = super(ProductProduct, self).\ - _product_available(field_names=field_names, - arg=arg) + _compute_quantities_dict( + lot_id=lot_id, owner_id=owner_id, package_id=package_id, + from_date=from_date, to_date=to_date) domain_quant = self._prepare_domain_available_not_res(self) From b39846cc5a0bf9fc485f62f9fd8909c87ea7408a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Pigeon?= Date: Thu, 29 Jun 2017 13:47:12 +0200 Subject: [PATCH 05/24] [CHG] optimize stock computation by avoiding to call useless compute --- stock_available_unreserved/models/product.py | 44 +++++--------------- 1 file changed, 10 insertions(+), 34 deletions(-) diff --git a/stock_available_unreserved/models/product.py b/stock_available_unreserved/models/product.py index ff22b2b80..87c039934 100644 --- a/stock_available_unreserved/models/product.py +++ b/stock_available_unreserved/models/product.py @@ -23,37 +23,15 @@ class ProductTemplate(models.Model): string='Unreserved stock quantity') @api.multi + @api.depends('product_variant_ids.qty_available_not_res') def _compute_product_available_not_res(self): no_new = self.filtered( lambda x: not isinstance(x.id, models.NewId)) - res = no_new._product_available() for tmpl in no_new: - qty = res[tmpl.id]['qty_available_not_res'] - tmpl.qty_available_not_res = qty - text = res[tmpl.id]['qty_available_stock_text'] - tmpl.qty_available_stock_text = text - - def _compute_quantities_dict(self): - prod_available = super(ProductTemplate, self).\ - _compute_quantities_dict() - - variants = self.mapped('product_variant_ids') - variant_available = variants._product_available() - - for product in self: - if isinstance(product.id, models.NewId): - continue - qty_available_not_res = 0.0 - text = '' - for p in product.product_variant_ids: - qty = variant_available[p.id]["qty_available_not_res"] - qty_available_not_res += qty - text = variant_available[p.id]["qty_available_stock_text"] - prod_available[product.id].update({ - "qty_available_not_res": qty_available_not_res, - "qty_available_stock_text": text, - }) - return prod_available + tmpl.qty_available_not_res = sum(tmpl.mapped( + 'product_variant_ids.qty_available_not_res')) + tmpl.qty_available_stock_text = "/".join(tmpl.mapped( + 'product_variant_ids.qty_available_stock_text')) @api.multi def action_open_quants_unreserved(self): @@ -79,7 +57,7 @@ class ProductProduct(models.Model): @api.multi def _compute_qty_available_not_res(self): - res = self._product_available() + res = self._compute_product_available_not_res_dict() for prod in self: qty = res[prod.id]['qty_available_not_res'] text = res[prod.id]['qty_available_stock_text'] @@ -106,12 +84,9 @@ class ProductProduct(models.Model): return False @api.multi - def _compute_quantities_dict(self, lot_id, owner_id, package_id, - from_date=False, to_date=False): - res = super(ProductProduct, self).\ - _compute_quantities_dict( - lot_id=lot_id, owner_id=owner_id, package_id=package_id, - from_date=from_date, to_date=to_date) + def _compute_product_available_not_res_dict(self): + + res = {} domain_quant = self._prepare_domain_available_not_res(self) @@ -126,6 +101,7 @@ class ProductProduct(models.Model): values_prod.setdefault(quant['product_id'][0], 0) values_prod[quant['product_id'][0]] += quant['qty'] for product in self: + res[product.id] = {} # get total qty for the product qty = float_round(values_prod.get(product.id, 0.0), precision_rounding=product.uom_id.rounding) From 08dc76405ec179d7ae699c564f775c39b78e55ed Mon Sep 17 00:00:00 2001 From: "Laurent Mignon (ACSONE)" Date: Tue, 26 Sep 2017 18:09:34 +0200 Subject: [PATCH 06/24] [IMP] stock_available_unreserved: Improve perf in stock computation; Read quants without lang into the context to avoid sql join on ir.translations Iter on product with prefetch_fields=False and lang='' to avoid reading useless column ad join on ir.translations --- stock_available_unreserved/models/product.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stock_available_unreserved/models/product.py b/stock_available_unreserved/models/product.py index 87c039934..121a0f7ad 100644 --- a/stock_available_unreserved/models/product.py +++ b/stock_available_unreserved/models/product.py @@ -90,7 +90,7 @@ class ProductProduct(models.Model): domain_quant = self._prepare_domain_available_not_res(self) - quants = self.env['stock.quant'].read_group( + quants = self.env['stock.quant'].with_context(lang=False).read_group( domain_quant, ['product_id', 'location_id', 'qty'], ['product_id', 'location_id'], @@ -100,7 +100,7 @@ class ProductProduct(models.Model): # create a dictionary with the total value per products values_prod.setdefault(quant['product_id'][0], 0) values_prod[quant['product_id'][0]] += quant['qty'] - for product in self: + for product in self.with_context(prefetch_fields=False, lang=''): res[product.id] = {} # get total qty for the product qty = float_round(values_prod.get(product.id, 0.0), From b8afda67f7e345a0a160c39c3d373c9534b09162 Mon Sep 17 00:00:00 2001 From: Denis Roussel Date: Wed, 29 Nov 2017 18:13:25 +0100 Subject: [PATCH 07/24] [FIX] stock_available: Some affectations --- stock_available_unreserved/models/product.py | 1 + 1 file changed, 1 insertion(+) diff --git a/stock_available_unreserved/models/product.py b/stock_available_unreserved/models/product.py index 121a0f7ad..7001ddeb5 100644 --- a/stock_available_unreserved/models/product.py +++ b/stock_available_unreserved/models/product.py @@ -63,6 +63,7 @@ class ProductProduct(models.Model): text = res[prod.id]['qty_available_stock_text'] prod.qty_available_not_res = qty prod.qty_available_stock_text = text + return res @api.model def _prepare_domain_available_not_res(self, products): From 07e173114fbf5ed7655fcf81f8a045656f70688f Mon Sep 17 00:00:00 2001 From: mpanarin Date: Tue, 13 Feb 2018 18:11:35 +0200 Subject: [PATCH 08/24] [MIG] stock_available_unreserved: migrate Odoo 11 --- stock_available_unreserved/README.rst | 3 +- stock_available_unreserved/__init__.py | 1 - stock_available_unreserved/__manifest__.py | 19 +- stock_available_unreserved/models/__init__.py | 2 +- stock_available_unreserved/models/product.py | 131 +++++------ stock_available_unreserved/models/quant.py | 23 ++ stock_available_unreserved/tests/__init__.py | 1 - .../tests/test_stock_available_unreserved.py | 208 +++++++++--------- .../views/product_view.xml | 6 +- .../views/stock_quant_view.xml | 44 ++-- 10 files changed, 227 insertions(+), 211 deletions(-) create mode 100644 stock_available_unreserved/models/quant.py diff --git a/stock_available_unreserved/README.rst b/stock_available_unreserved/README.rst index dbaebc69e..43b879b86 100644 --- a/stock_available_unreserved/README.rst +++ b/stock_available_unreserved/README.rst @@ -23,7 +23,7 @@ Usage .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/153/10.0 + :target: https://runbot.odoo-community.org/runbot/153/11.0 Bug Tracker @@ -47,6 +47,7 @@ Contributors * Jordi Ballester Alomar * Stefan Rijnhart +* Mykhailo Panarin Maintainer diff --git a/stock_available_unreserved/__init__.py b/stock_available_unreserved/__init__.py index 298ab2340..a00d71200 100644 --- a/stock_available_unreserved/__init__.py +++ b/stock_available_unreserved/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) diff --git a/stock_available_unreserved/__manifest__.py b/stock_available_unreserved/__manifest__.py index c43c438fe..c3f819b63 100644 --- a/stock_available_unreserved/__manifest__.py +++ b/stock_available_unreserved/__manifest__.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- +# Copyright 2018 Camptocamp SA # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) @@ -6,16 +6,17 @@ { "name": "Stock Available Unreserved", "summary": "Quantity of stock available for immediate use", - "version": "10.0.1.0.0", + "version": "11.0.1.0.0", "author": "Eficent Business and IT Consulting Services S.L," "Odoo Community Association (OCA)", - "website": "https://www.odoo-community.org", + "website": "https://github.com/OCA/stock-logistics-warehouse", "category": "Warehouse Management", - "depends": ["stock"], - "data": ["views/stock_quant_view.xml", - "views/product_view.xml" - ], + "depends": [ + "stock", + ], + "data": [ + "views/stock_quant_view.xml", + "views/product_view.xml", + ], "license": "AGPL-3", - 'installable': True, - 'application': False, } diff --git a/stock_available_unreserved/models/__init__.py b/stock_available_unreserved/models/__init__.py index a7bcedeaa..e76114f16 100644 --- a/stock_available_unreserved/models/__init__.py +++ b/stock_available_unreserved/models/__init__.py @@ -1,7 +1,7 @@ -# -*- coding: utf-8 -*- # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import product +from . import quant diff --git a/stock_available_unreserved/models/product.py b/stock_available_unreserved/models/product.py index 7001ddeb5..867917fd9 100644 --- a/stock_available_unreserved/models/product.py +++ b/stock_available_unreserved/models/product.py @@ -1,11 +1,10 @@ -# -*- coding: utf-8 -*- +# Copyright 2018 Camptocamp SA # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from odoo import api, fields, models, _ -from odoo.tools.float_utils import float_round +from odoo import api, fields, models from odoo.addons import decimal_precision as dp UNIT = dp.get_precision('Product Unit of Measure') @@ -15,33 +14,36 @@ class ProductTemplate(models.Model): _inherit = "product.template" qty_available_not_res = fields.Float( - string='Quantity On Hand Unreserved', digits=UNIT, - compute='_compute_product_available_not_res') - - qty_available_stock_text = fields.Char( + string='Quantity On Hand Unreserved', + digits=UNIT, compute='_compute_product_available_not_res', - string='Unreserved stock quantity') + ) @api.multi @api.depends('product_variant_ids.qty_available_not_res') def _compute_product_available_not_res(self): - no_new = self.filtered( - lambda x: not isinstance(x.id, models.NewId)) - for tmpl in no_new: - tmpl.qty_available_not_res = sum(tmpl.mapped( - 'product_variant_ids.qty_available_not_res')) - tmpl.qty_available_stock_text = "/".join(tmpl.mapped( - 'product_variant_ids.qty_available_stock_text')) + for tmpl in self: + if isinstance(tmpl.id, models.NewId): + continue + tmpl.qty_available_not_res = sum( + tmpl.mapped('product_variant_ids.qty_available_not_res') + ) @api.multi def action_open_quants_unreserved(self): - products = self.mapped('product_variant_ids').ids + products_ids = self.mapped('product_variant_ids').ids + quants = self.env['stock.quant'].search([ + ('product_id', 'in', products_ids), + ]) + quant_ids = quants.filtered( + lambda x: x.product_id.qty_available_not_res > 0 + ).ids result = self.env.ref('stock.product_open_quants').read()[0] - result['domain'] = "[('product_id','in',[" + ','.join( - map(str, products)) + "]), ('reservation_id', '=', False)]" - result[ - 'context'] = "{'search_default_locationgroup': 1, " \ - "'search_default_internal_loc': 1}" + result['domain'] = [('id', 'in', quant_ids)] + result['context'] = { + 'search_default_locationgroup': 1, + 'search_default_internal_loc': 1, + } return result @@ -49,68 +51,55 @@ class ProductProduct(models.Model): _inherit = 'product.product' qty_available_not_res = fields.Float( - string='Qty Available Not Reserved', digits=UNIT, - compute='_compute_qty_available_not_res') - - qty_available_stock_text = fields.Char( - compute='_compute_qty_available_not_res', string='Available per stock') - - @api.multi - def _compute_qty_available_not_res(self): - res = self._compute_product_available_not_res_dict() - for prod in self: - qty = res[prod.id]['qty_available_not_res'] - text = res[prod.id]['qty_available_stock_text'] - prod.qty_available_not_res = qty - prod.qty_available_stock_text = text - return res - - @api.model - def _prepare_domain_available_not_res(self, products): - domain_products = [('product_id', 'in', products.mapped('id'))] - domain_quant = [] - domain_quant_loc = products._get_domain_locations()[0] - - domain_quant += domain_products - - domain_quant.append(('reservation_id', '=', False)) - - domain_quant += domain_quant_loc - - return domain_quant + string='Qty Available Not Reserved', + digits=UNIT, + compute='_compute_qty_available_not_reserved', + ) @api.multi def _product_available_not_res_hook(self, quants): """Hook used to introduce possible variations""" return False + @api.multi + def _prepare_domain_available_not_reserved(self): + domain_quant = [ + ('product_id', 'in', self.ids), + ('contains_unreserved', '=', True), + ] + domain_quant_locations = self._get_domain_locations()[0] + domain_quant.extend(domain_quant_locations) + return domain_quant + @api.multi def _compute_product_available_not_res_dict(self): res = {} - domain_quant = self._prepare_domain_available_not_res(self) - - quants = self.env['stock.quant'].with_context(lang=False).read_group( + domain_quant = self._prepare_domain_available_not_reserved() + quants = self.env['stock.quant'].with_context(lang=False).search( domain_quant, - ['product_id', 'location_id', 'qty'], - ['product_id', 'location_id'], - lazy=False) - values_prod = {} - for quant in quants: - # create a dictionary with the total value per products - values_prod.setdefault(quant['product_id'][0], 0) - values_prod[quant['product_id'][0]] += quant['qty'] - for product in self.with_context(prefetch_fields=False, lang=''): - res[product.id] = {} - # get total qty for the product - qty = float_round(values_prod.get(product.id, 0.0), - precision_rounding=product.uom_id.rounding) - qty_available_not_res = qty - res[product.id].update({'qty_available_not_res': - qty_available_not_res}) - text = str(qty_available_not_res) + _(" On Hand") - res[product.id].update({'qty_available_stock_text': text}) + ) + # TODO: this should probably be refactored performance-wise + for prod in self: + vals = {} + prod_quant = quants.filtered(lambda x: x.product_id == prod) + quantity = sum(prod_quant.mapped( + lambda x: x._get_available_quantity( + x.product_id, + x.location_id + ) + )) + vals['qty_available_not_res'] = quantity + res[prod.id] = vals self._product_available_not_res_hook(quants) return res + + @api.multi + def _compute_qty_available_not_reserved(self): + res = self._compute_product_available_not_res_dict() + for prod in self: + qty = res[prod.id]['qty_available_not_res'] + prod.qty_available_not_res = qty + return res diff --git a/stock_available_unreserved/models/quant.py b/stock_available_unreserved/models/quant.py new file mode 100644 index 000000000..625634092 --- /dev/null +++ b/stock_available_unreserved/models/quant.py @@ -0,0 +1,23 @@ +# Copyright 2018 Camptocamp SA +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class StockQuant(models.Model): + _inherit = "stock.quant" + + contains_unreserved = fields.Boolean( + string="Contains unreserved products", + compute="_compute_contains_unreserved", + store=True, + ) + + @api.depends('product_id', 'location_id', 'quantity', 'reserved_quantity') + def _compute_contains_unreserved(self): + for record in self: + available = record._get_available_quantity( + record.product_id, + record.location_id, + ) + record.contains_unreserved = True if available > 0 else False diff --git a/stock_available_unreserved/tests/__init__.py b/stock_available_unreserved/tests/__init__.py index 296133ef2..a9fb8e294 100644 --- a/stock_available_unreserved/tests/__init__.py +++ b/stock_available_unreserved/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) diff --git a/stock_available_unreserved/tests/test_stock_available_unreserved.py b/stock_available_unreserved/tests/test_stock_available_unreserved.py index f0ef3b932..865139a2c 100644 --- a/stock_available_unreserved/tests/test_stock_available_unreserved.py +++ b/stock_available_unreserved/tests/test_stock_available_unreserved.py @@ -1,138 +1,142 @@ -# -*- coding: utf-8 -*- +# Copyright 2018 Camptocamp SA # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) # Copyright 2016 Therp BV # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from odoo.tests.common import TransactionCase +from odoo.tests.common import SavepointCase -class TestStockLogisticsWarehouse(TransactionCase): - - def test01_stock_levels(self): - """checking that qty_available_not_res actually reflects \ - the variations in stock, both on product and template""" - pickingObj = self.env['stock.picking'] - productObj = self.env['product.product'] - templateObj = self.env['product.template'] - supplier_location = self.env.ref('stock.stock_location_suppliers') - stock_location = self.env.ref('stock.stock_location_stock') - customer_location = self.env.ref('stock.stock_location_customers') - uom_unit = self.env.ref('product.product_uom_unit') +class TestStockLogisticsWarehouse(SavepointCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.pickingObj = cls.env['stock.picking'] + cls.productObj = cls.env['product.product'] + cls.templateObj = cls.env['product.template'] + cls.supplier_location = cls.env.ref('stock.stock_location_suppliers') + cls.stock_location = cls.env.ref('stock.stock_location_stock') + cls.customer_location = cls.env.ref('stock.stock_location_customers') + cls.uom_unit = cls.env.ref('product.product_uom_unit') # Create product template - templateAB = templateObj.create( - {'name': 'templAB', - 'uom_id': uom_unit.id, - }) + cls.templateAB = cls.templateObj.create({ + 'name': 'templAB', + 'uom_id': cls.uom_unit.id, + }) # Create product A and B - productA = productObj.create( - {'name': 'product A', - 'standard_price': 1, - 'type': 'product', - 'uom_id': uom_unit.id, - 'default_code': 'A', - 'product_tmpl_id': templateAB.id, - }) + cls.productA = cls.productObj.create({ + 'name': 'product A', + 'standard_price': 1, + 'type': 'product', + 'uom_id': cls.uom_unit.id, + 'default_code': 'A', + 'product_tmpl_id': cls.templateAB.id, + }) - productB = productObj.create( - {'name': 'product B', - 'standard_price': 1, - 'type': 'product', - 'uom_id': uom_unit.id, - 'default_code': 'B', - 'product_tmpl_id': templateAB.id, - }) + cls.productB = cls.productObj.create({ + 'name': 'product B', + 'standard_price': 1, + 'type': 'product', + 'uom_id': cls.uom_unit.id, + 'default_code': 'B', + 'product_tmpl_id': cls.templateAB.id, + }) # Create a picking move from INCOMING to STOCK - pickingInA = pickingObj.create({ - 'picking_type_id': self.ref('stock.picking_type_in'), - 'location_id': supplier_location.id, - 'location_dest_id': stock_location.id, + cls.pickingInA = cls.pickingObj.create({ + 'picking_type_id': cls.env.ref('stock.picking_type_in').id, + 'location_id': cls.supplier_location.id, + 'location_dest_id': cls.stock_location.id, 'move_lines': [ (0, 0, { 'name': 'Test move', - 'product_id': productA.id, - 'product_uom': productA.uom_id.id, + 'product_id': cls.productA.id, + 'product_uom': cls.productA.uom_id.id, 'product_uom_qty': 2, - 'location_id': supplier_location.id, - 'location_dest_id': stock_location.id, - })] + 'quantity_done': 2, + 'location_id': cls.supplier_location.id, + 'location_dest_id': cls.stock_location.id, + }) + ] }) - pickingInB = pickingObj.create({ - 'picking_type_id': self.ref('stock.picking_type_in'), - 'location_id': supplier_location.id, - 'location_dest_id': stock_location.id, + cls.pickingInB = cls.pickingObj.create({ + 'picking_type_id': cls.env.ref('stock.picking_type_in').id, + 'location_id': cls.supplier_location.id, + 'location_dest_id': cls.stock_location.id, 'move_lines': [ (0, 0, { 'name': 'Test move', - 'product_id': productB.id, - 'product_uom': productB.uom_id.id, + 'product_id': cls.productB.id, + 'product_uom': cls.productB.uom_id.id, 'product_uom_qty': 3, - 'location_id': supplier_location.id, - 'location_dest_id': stock_location.id, - })] + 'quantity_done': 3, + 'location_id': cls.supplier_location.id, + 'location_dest_id': cls.stock_location.id, + }) + ] }) - - def compare_qty_available_not_res(product, value): - # Refresh, because the function field is not recalculated between - # transactions - product.refresh() - self.assertEqual(product.qty_available_not_res, value) - - compare_qty_available_not_res(productA, 0) - compare_qty_available_not_res(templateAB, 0) - - pickingInA.action_confirm() - compare_qty_available_not_res(productA, 0) - compare_qty_available_not_res(templateAB, 0) - - pickingInA.action_assign() - compare_qty_available_not_res(productA, 0) - compare_qty_available_not_res(templateAB, 0) - - pickingInA.action_done() - compare_qty_available_not_res(productA, 2) - compare_qty_available_not_res(templateAB, 2) - - # will directly trigger action_done on productB - pickingInB.action_done() - compare_qty_available_not_res(productA, 2) - compare_qty_available_not_res(productB, 3) - compare_qty_available_not_res(templateAB, 5) - - # Create a picking from STOCK to CUSTOMER - pickingOutA = pickingObj.create({ - 'picking_type_id': self.ref('stock.picking_type_out'), - 'location_id': stock_location.id, - 'location_dest_id': customer_location.id, + cls.pickingOutA = cls.pickingObj.create({ + 'picking_type_id': cls.env.ref('stock.picking_type_out').id, + 'location_id': cls.stock_location.id, + 'location_dest_id': cls.customer_location.id, 'move_lines': [ (0, 0, { 'name': 'Test move', - 'product_id': productB.id, - 'product_uom': productB.uom_id.id, + 'product_id': cls.productB.id, + 'product_uom': cls.productB.uom_id.id, 'product_uom_qty': 2, - 'location_id': stock_location.id, - 'location_dest_id': customer_location.id, - })] + 'location_id': cls.stock_location.id, + 'location_dest_id': cls.customer_location.id, + }) + ] }) - compare_qty_available_not_res(productB, 3) - compare_qty_available_not_res(templateAB, 5) + def compare_qty_available_not_res(self, product, value): + product.invalidate_cache() + self.assertEqual(product.qty_available_not_res, value) - pickingOutA.action_confirm() - compare_qty_available_not_res(productB, 3) - compare_qty_available_not_res(templateAB, 5) + def test_stock_levels(self): + """checking that qty_available_not_res actually reflects \ + the variations in stock, both on product and template""" - pickingOutA.action_assign() - compare_qty_available_not_res(productB, 1) - compare_qty_available_not_res(templateAB, 3) + self.compare_qty_available_not_res(self.productA, 0) + self.compare_qty_available_not_res(self.templateAB, 0) - pickingOutA.action_done() - compare_qty_available_not_res(productB, 1) - compare_qty_available_not_res(templateAB, 3) + self.pickingInA.action_confirm() + self.compare_qty_available_not_res(self.productA, 0) + self.compare_qty_available_not_res(self.templateAB, 0) - templateAB.action_open_quants_unreserved() + self.pickingInA.action_assign() + self.compare_qty_available_not_res(self.productA, 0) + self.compare_qty_available_not_res(self.templateAB, 0) + + self.pickingInA.button_validate() + self.compare_qty_available_not_res(self.productA, 2) + self.compare_qty_available_not_res(self.templateAB, 2) + + # will directly trigger action_done on self.productB + self.pickingInB.action_done() + self.compare_qty_available_not_res(self.productA, 2) + self.compare_qty_available_not_res(self.productB, 3) + self.compare_qty_available_not_res(self.templateAB, 5) + + self.compare_qty_available_not_res(self.productB, 3) + self.compare_qty_available_not_res(self.templateAB, 5) + + self.pickingOutA.action_confirm() + self.compare_qty_available_not_res(self.productB, 3) + self.compare_qty_available_not_res(self.templateAB, 5) + + self.pickingOutA.action_assign() + self.compare_qty_available_not_res(self.productB, 1) + self.compare_qty_available_not_res(self.templateAB, 3) + + self.pickingOutA.action_done() + self.compare_qty_available_not_res(self.productB, 1) + self.compare_qty_available_not_res(self.templateAB, 3) + + self.templateAB.action_open_quants_unreserved() diff --git a/stock_available_unreserved/views/product_view.xml b/stock_available_unreserved/views/product_view.xml index d452199d3..1d714ca54 100644 --- a/stock_available_unreserved/views/product_view.xml +++ b/stock_available_unreserved/views/product_view.xml @@ -63,9 +63,9 @@
diff --git a/stock_available_unreserved/views/stock_quant_view.xml b/stock_available_unreserved/views/stock_quant_view.xml index 8d4b42895..28c8c0486 100644 --- a/stock_available_unreserved/views/stock_quant_view.xml +++ b/stock_available_unreserved/views/stock_quant_view.xml @@ -1,29 +1,29 @@ - - stock.quant.search - stock.quant - - - - - - - - - + + stock.quant.search + stock.quant + + + + + - + + + + + - - Stock On Hand (Unreserved) - {'search_default_internal_loc': 1, 'search_default_locationgroup':1} - [('product_id', '=', active_id), ('reservation_id', '=', False)] - stock.quant - + + Stock On Hand (Unreserved) + {'search_default_internal_loc': 1, 'search_default_locationgroup':1} + [('product_id', '=', active_id), ('contains_unreserved', '=', True)] + stock.quant + From 30a14dab0fe84c32618c5088768f93b15bf73870 Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Thu, 29 Mar 2018 16:19:08 +0200 Subject: [PATCH 09/24] Fix computation of stock available unreserved The computation of the unreserved available amount using the StockQuant._get_available_quantity was wrong as soon as more than one quant was found for the same product. It can easily happen when you have sublocations and a quant in each location. The reason is that the algorithm was: 1. searching for all the quants for a given product 2. calling StockQuant._get_available_quantity for each quant 3. _get_available_quantity is an @api.model method, which itself will search for all quants for the product and the given location and children Which means that if you have these locations: Stock Stock > Bin A Stock > Bin B And these quants: 1. Product: Product A Location: Bin A Quantity: 60 Reserved: 0 2. Product: Product A Location: Bin B Quantity: 10 Reserved: 0 Instead of 70, the result was 140. (One loop for each quant, each loop recomputing the total quantity in _get_available_quantity, all summed togethed, for each new quant, an additional sum would be added). Ultimately, the _get_available_quantity method does the sum of (quantity - quantity reserved). This commit uses the same logic than the 10.0 branch, it finds the quants contextually using ProductProduct._get_domain_locations and get the available quantity as the sum of (quantity - quantity reserved). We can't really use StockQuant._get_available_quantity because this one expects a location, while here we don't necessarily know it. I removed _product_available_not_res_hook which seems to have no purpose, it does not receive the result of the computation and its own result is unused. --- stock_available_unreserved/models/product.py | 42 +++++++++---------- .../tests/test_stock_available_unreserved.py | 35 ++++++++++++++++ 2 files changed, 55 insertions(+), 22 deletions(-) diff --git a/stock_available_unreserved/models/product.py b/stock_available_unreserved/models/product.py index 867917fd9..5a400832e 100644 --- a/stock_available_unreserved/models/product.py +++ b/stock_available_unreserved/models/product.py @@ -6,6 +6,7 @@ from odoo import api, fields, models from odoo.addons import decimal_precision as dp +from odoo.tools.float_utils import float_round UNIT = dp.get_precision('Product Unit of Measure') @@ -56,16 +57,10 @@ class ProductProduct(models.Model): compute='_compute_qty_available_not_reserved', ) - @api.multi - def _product_available_not_res_hook(self, quants): - """Hook used to introduce possible variations""" - return False - @api.multi def _prepare_domain_available_not_reserved(self): domain_quant = [ ('product_id', 'in', self.ids), - ('contains_unreserved', '=', True), ] domain_quant_locations = self._get_domain_locations()[0] domain_quant.extend(domain_quant_locations) @@ -77,23 +72,26 @@ class ProductProduct(models.Model): res = {} domain_quant = self._prepare_domain_available_not_reserved() - quants = self.env['stock.quant'].with_context(lang=False).search( + quants = self.env['stock.quant'].with_context(lang=False).read_group( domain_quant, - ) - # TODO: this should probably be refactored performance-wise - for prod in self: - vals = {} - prod_quant = quants.filtered(lambda x: x.product_id == prod) - quantity = sum(prod_quant.mapped( - lambda x: x._get_available_quantity( - x.product_id, - x.location_id - ) - )) - vals['qty_available_not_res'] = quantity - res[prod.id] = vals - self._product_available_not_res_hook(quants) - + ['product_id', 'location_id', 'quantity', 'reserved_quantity'], + ['product_id', 'location_id'], + lazy=False) + product_sums = {} + for quant in quants: + # create a dictionary with the total value per products + product_sums.setdefault(quant['product_id'][0], 0.) + product_sums[quant['product_id'][0]] += ( + quant['quantity'] - quant['reserved_quantity'] + ) + for product in self.with_context(prefetch_fields=False, lang=''): + available_not_res = float_round( + product_sums.get(product.id, 0.0), + precision_rounding=product.uom_id.rounding + ) + res[product.id] = { + 'qty_available_not_res': available_not_res, + } return res @api.multi diff --git a/stock_available_unreserved/tests/test_stock_available_unreserved.py b/stock_available_unreserved/tests/test_stock_available_unreserved.py index 865139a2c..19dade613 100644 --- a/stock_available_unreserved/tests/test_stock_available_unreserved.py +++ b/stock_available_unreserved/tests/test_stock_available_unreserved.py @@ -19,6 +19,23 @@ class TestStockLogisticsWarehouse(SavepointCase): cls.stock_location = cls.env.ref('stock.stock_location_stock') cls.customer_location = cls.env.ref('stock.stock_location_customers') cls.uom_unit = cls.env.ref('product.product_uom_unit') + cls.main_company = cls.env.ref('base.main_company') + + cls.bin_a = cls.env['stock.location'].create({ + 'usage': 'internal', + 'name': 'Bin A', + 'location_id': cls.stock_location.id, + 'company_id': cls.main_company.id + }) + + cls.bin_b = cls.env['stock.location'].create({ + 'usage': 'internal', + 'name': 'Bin B', + 'location_id': cls.stock_location.id, + 'company_id': cls.main_company.id + }) + + cls.env['stock.location']._parent_store_compute() # Create product template cls.templateAB = cls.templateObj.create({ @@ -140,3 +157,21 @@ class TestStockLogisticsWarehouse(SavepointCase): self.compare_qty_available_not_res(self.templateAB, 3) self.templateAB.action_open_quants_unreserved() + + def test_more_than_one_quant(self): + self.env['stock.quant'].create( + {'location_id': self.stock_location.id, + 'company_id': self.main_company.id, + 'product_id': self.productA.id, + 'quantity': 10.0}) + self.env['stock.quant'].create( + {'location_id': self.bin_a.id, + 'company_id': self.main_company.id, + 'product_id': self.productA.id, + 'quantity': 10.0}) + self.env['stock.quant'].create( + {'location_id': self.bin_b.id, + 'company_id': self.main_company.id, + 'product_id': self.productA.id, + 'quantity': 60.0}) + self.compare_qty_available_not_res(self.productA, 80) From 9858cd5d4b8eb374cca6d8bdabea38d5a8460985 Mon Sep 17 00:00:00 2001 From: Atte Isopuro Date: Mon, 9 Apr 2018 12:22:14 +0300 Subject: [PATCH 10/24] stock_available_unreserved: allow searching by unreserved quantities --- stock_available_unreserved/README.rst | 1 + stock_available_unreserved/models/product.py | 23 ++- .../tests/test_stock_available_unreserved.py | 164 ++++++++++++++++++ .../views/product_view.xml | 11 ++ 4 files changed, 198 insertions(+), 1 deletion(-) diff --git a/stock_available_unreserved/README.rst b/stock_available_unreserved/README.rst index 43b879b86..ad650e028 100644 --- a/stock_available_unreserved/README.rst +++ b/stock_available_unreserved/README.rst @@ -48,6 +48,7 @@ Contributors * Jordi Ballester Alomar * Stefan Rijnhart * Mykhailo Panarin +* Atte Isopuro Maintainer diff --git a/stock_available_unreserved/models/product.py b/stock_available_unreserved/models/product.py index 5a400832e..6447e4cea 100644 --- a/stock_available_unreserved/models/product.py +++ b/stock_available_unreserved/models/product.py @@ -4,9 +4,11 @@ # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from odoo import api, fields, models +from odoo import api, fields, models, _ from odoo.addons import decimal_precision as dp +from odoo.addons.stock.models.product import OPERATORS from odoo.tools.float_utils import float_round +from odoo.exceptions import UserError UNIT = dp.get_precision('Product Unit of Measure') @@ -18,6 +20,7 @@ class ProductTemplate(models.Model): string='Quantity On Hand Unreserved', digits=UNIT, compute='_compute_product_available_not_res', + search='_search_quantity_unreserved', ) @api.multi @@ -47,6 +50,11 @@ class ProductTemplate(models.Model): } return result + def _search_quantity_unreserved(self, operator, value): + domain = [('qty_available_not_res', operator, value)] + product_variant_ids = self.env['product.product'].search(domain) + return [('product_variant_ids', 'in', product_variant_ids.ids)] + class ProductProduct(models.Model): _inherit = 'product.product' @@ -55,6 +63,7 @@ class ProductProduct(models.Model): string='Qty Available Not Reserved', digits=UNIT, compute='_compute_qty_available_not_reserved', + search="_search_quantity_unreserved", ) @api.multi @@ -101,3 +110,15 @@ class ProductProduct(models.Model): qty = res[prod.id]['qty_available_not_res'] prod.qty_available_not_res = qty return res + + def _search_quantity_unreserved(self, operator, value): + if operator not in OPERATORS: + raise UserError(_('Invalid domain operator %s') % operator) + if not isinstance(value, (float, int)): + raise UserError(_('Invalid domain right operand %s') % value) + + ids = [] + for product in self.search([]): + if OPERATORS[operator](product.qty_available_not_res, value): + ids.append(product.id) + return [('id', 'in', ids)] diff --git a/stock_available_unreserved/tests/test_stock_available_unreserved.py b/stock_available_unreserved/tests/test_stock_available_unreserved.py index 19dade613..37638a986 100644 --- a/stock_available_unreserved/tests/test_stock_available_unreserved.py +++ b/stock_available_unreserved/tests/test_stock_available_unreserved.py @@ -43,6 +43,8 @@ class TestStockLogisticsWarehouse(SavepointCase): 'uom_id': cls.uom_unit.id, }) + cls.productC = cls.templateAB.product_variant_ids + # Create product A and B cls.productA = cls.productObj.create({ 'name': 'product A', @@ -175,3 +177,165 @@ class TestStockLogisticsWarehouse(SavepointCase): 'product_id': self.productA.id, 'quantity': 60.0}) self.compare_qty_available_not_res(self.productA, 80) + + def check_variants_found_correctly(self, operator, value, expected): + domain = [('id', 'in', self.templateAB.product_variant_ids.ids)] + return self.check_found_correctly(self.env['product.product'], + domain, operator, value, expected) + + def check_template_found_correctly(self, operator, value, expected): + # There may be other products already in the system: ignore those + domain = [('id', 'in', self.templateAB.ids)] + return self.check_found_correctly(self.env['product.template'], + domain, operator, value, expected) + + def check_found_correctly(self, model, domain, operator, value, expected): + found = model.search(domain + [ + ('qty_available_not_res', operator, value)] + ) + if found != expected: + self.fail( + "Searching for products failed: search for unreserved " + "quantity {operator} {value}; expected to find " + "{expected}, but found {found}".format( + operator=operator, + value=value, + expected=expected or "no products", + found=found, + ) + ) + + def test_stock_search(self): + all_variants = self.templateAB.product_variant_ids + a_and_b = self.productA + self.productB + b_and_c = self.productB + self.productC + a_and_c = self.productA + self.productC + no_variants = self.env['product.product'] + no_template = self.env['product.template'] + # Start: one template with three variants. + # All variants have zero unreserved stock + self.check_variants_found_correctly('=', 0, all_variants) + self.check_variants_found_correctly('>=', 0, all_variants) + self.check_variants_found_correctly('<=', 0, all_variants) + self.check_variants_found_correctly('>', 0, no_variants) + self.check_variants_found_correctly('<', 0, no_variants) + self.check_variants_found_correctly('!=', 0, no_variants) + + self.check_template_found_correctly('=', 0, self.templateAB) + self.check_template_found_correctly('>=', 0, self.templateAB) + self.check_template_found_correctly('<=', 0, self.templateAB) + self.check_template_found_correctly('>', 0, no_template) + self.check_template_found_correctly('<', 0, no_template) + self.check_template_found_correctly('!=', 0, no_template) + + self.pickingInA.action_confirm() + # All variants still have zero unreserved stock + self.check_variants_found_correctly('=', 0, all_variants) + self.check_variants_found_correctly('>=', 0, all_variants) + self.check_variants_found_correctly('<=', 0, all_variants) + self.check_variants_found_correctly('>', 0, no_variants) + self.check_variants_found_correctly('<', 0, no_variants) + self.check_variants_found_correctly('!=', 0, no_variants) + + self.check_template_found_correctly('=', 0, self.templateAB) + self.check_template_found_correctly('>=', 0, self.templateAB) + self.check_template_found_correctly('<=', 0, self.templateAB) + self.check_template_found_correctly('>', 0, no_template) + self.check_template_found_correctly('<', 0, no_template) + self.check_template_found_correctly('!=', 0, no_template) + + self.pickingInA.action_assign() + # All variants still have zero unreserved stock + self.check_variants_found_correctly('=', 0, all_variants) + self.check_variants_found_correctly('>=', 0, all_variants) + self.check_variants_found_correctly('<=', 0, all_variants) + self.check_variants_found_correctly('>', 0, no_variants) + self.check_variants_found_correctly('<', 0, no_variants) + self.check_variants_found_correctly('!=', 0, no_variants) + + self.check_template_found_correctly('=', 0, self.templateAB) + self.check_template_found_correctly('>=', 0, self.templateAB) + self.check_template_found_correctly('<=', 0, self.templateAB) + self.check_template_found_correctly('>', 0, no_template) + self.check_template_found_correctly('<', 0, no_template) + self.check_template_found_correctly('!=', 0, no_template) + + self.pickingInA.button_validate() + # product A has 2 unreserved stock, other variants have 0 + + self.check_variants_found_correctly('=', 2, self.productA) + self.check_variants_found_correctly('=', 0, b_and_c) + self.check_variants_found_correctly('>', 0, self.productA) + self.check_variants_found_correctly('<', 0, no_variants) + self.check_variants_found_correctly('!=', 0, self.productA) + self.check_variants_found_correctly('!=', 1, all_variants) + self.check_variants_found_correctly('!=', 2, b_and_c) + self.check_variants_found_correctly('<=', 0, b_and_c) + self.check_variants_found_correctly('<=', 1, b_and_c) + self.check_variants_found_correctly('>=', 0, all_variants) + self.check_variants_found_correctly('>=', 1, self.productA) + + self.check_template_found_correctly('=', 0, self.templateAB) + self.check_template_found_correctly('=', 1, no_template) + self.check_template_found_correctly('=', 2, self.templateAB) + self.check_template_found_correctly('!=', 0, self.templateAB) + self.check_template_found_correctly('!=', 1, self.templateAB) + self.check_template_found_correctly('!=', 2, self.templateAB) + self.check_template_found_correctly('>', -1, self.templateAB) + self.check_template_found_correctly('>', 0, self.templateAB) + self.check_template_found_correctly('>', 1, self.templateAB) + self.check_template_found_correctly('>', 2, no_template) + self.check_template_found_correctly('<', 3, self.templateAB) + self.check_template_found_correctly('<', 2, self.templateAB) + self.check_template_found_correctly('<', 1, self.templateAB) + self.check_template_found_correctly('<', 0, no_template) + self.check_template_found_correctly('>=', 0, self.templateAB) + self.check_template_found_correctly('>=', 1, self.templateAB) + self.check_template_found_correctly('>=', 2, self.templateAB) + self.check_template_found_correctly('>=', 3, no_template) + self.check_template_found_correctly('<=', 3, self.templateAB) + self.check_template_found_correctly('<=', 2, self.templateAB) + self.check_template_found_correctly('<=', 1, self.templateAB) + self.check_template_found_correctly('<=', 0, self.templateAB) + self.check_template_found_correctly('<=', -1, no_template) + + self.pickingInB.action_done() + # product A has 2 unreserved, product B has 3 unreserved and + # the remaining variant has 0 + + self.check_variants_found_correctly('=', 2, self.productA) + self.check_variants_found_correctly('=', 3, self.productB) + self.check_variants_found_correctly('=', 0, self.productC) + self.check_variants_found_correctly('>', 0, a_and_b) + self.check_variants_found_correctly('<', 0, no_variants) + self.check_variants_found_correctly('!=', 0, a_and_b) + self.check_variants_found_correctly('!=', 1, all_variants) + self.check_variants_found_correctly('!=', 2, b_and_c) + self.check_variants_found_correctly('!=', 3, a_and_c) + self.check_variants_found_correctly('<=', 0, self.productC) + self.check_variants_found_correctly('<=', 1, self.productC) + self.check_variants_found_correctly('>=', 0, all_variants) + self.check_variants_found_correctly('>=', 1, a_and_b) + self.check_variants_found_correctly('>=', 2, a_and_b) + self.check_variants_found_correctly('>=', 3, self.productB) + self.check_variants_found_correctly('>=', 4, no_variants) + + self.check_template_found_correctly('=', 0, self.templateAB) + self.check_template_found_correctly('=', 1, no_template) + self.check_template_found_correctly('=', 2, self.templateAB) + self.check_template_found_correctly('=', 3, self.templateAB) + self.check_template_found_correctly('!=', 0, self.templateAB) + self.check_template_found_correctly('!=', 2, self.templateAB) + self.check_template_found_correctly('!=', 3, self.templateAB) + self.check_template_found_correctly('>', 1, self.templateAB) + self.check_template_found_correctly('>', 2, self.templateAB) + # This part may seem a bit unintuitive, but this is the + # way it works in the Odoo core + # Searches are "deferred" to the variants, so while the template says + # it has a stock of 5, searching for a stock greater than 3 will not + # find anything because no singular variant has a higher stock + self.check_template_found_correctly('>', 3, no_template) + self.check_template_found_correctly('<', 3, self.templateAB) + self.check_template_found_correctly('<', 2, self.templateAB) + self.check_template_found_correctly('<', 1, self.templateAB) + self.check_template_found_correctly('<', 0, no_template) diff --git a/stock_available_unreserved/views/product_view.xml b/stock_available_unreserved/views/product_view.xml index 1d714ca54..ea55a1ccc 100644 --- a/stock_available_unreserved/views/product_view.xml +++ b/stock_available_unreserved/views/product_view.xml @@ -14,6 +14,17 @@ + + product.template.search.stock.form.inherit + product.template + + + + + + + + Product Template Kanban Stock product.template From 49ebf6b62b1f5979e31829ac7f5f5846317ccca0 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Thu, 21 Jun 2018 13:48:13 +0000 Subject: [PATCH 11/24] [UPD] Update stock_available_unreserved.pot --- stock_available_unreserved/i18n/ca.po | 41 +++++---- stock_available_unreserved/i18n/de.po | 52 ++++++++---- stock_available_unreserved/i18n/el_GR.po | 44 ++++++---- stock_available_unreserved/i18n/es.po | 41 +++++---- stock_available_unreserved/i18n/es_ES.po | 44 ++++++---- stock_available_unreserved/i18n/es_MX.po | 44 ++++++---- stock_available_unreserved/i18n/eu.po | 41 +++++---- stock_available_unreserved/i18n/fi.po | 41 +++++---- stock_available_unreserved/i18n/fr.po | 41 +++++---- stock_available_unreserved/i18n/fr_CH.po | 44 ++++++---- stock_available_unreserved/i18n/fr_FR.po | 44 ++++++---- stock_available_unreserved/i18n/gl.po | 41 +++++---- stock_available_unreserved/i18n/hr.po | 44 ++++++---- stock_available_unreserved/i18n/hr_HR.po | 47 +++++++---- stock_available_unreserved/i18n/it.po | 41 +++++---- stock_available_unreserved/i18n/nl.po | 41 +++++---- stock_available_unreserved/i18n/nl_NL.po | 44 ++++++---- stock_available_unreserved/i18n/pt.po | 41 +++++---- stock_available_unreserved/i18n/pt_BR.po | 44 ++++++---- stock_available_unreserved/i18n/ro.po | 44 ++++++---- stock_available_unreserved/i18n/ru.po | 45 ++++++---- stock_available_unreserved/i18n/sl.po | 55 ++++++++---- .../i18n/stock_available_unreserved.pot | 83 +++++++++++++++++++ stock_available_unreserved/i18n/tr.po | 41 +++++---- stock_available_unreserved/i18n/tr_TR.po | 44 ++++++---- stock_available_unreserved/i18n/vi_VN.po | 44 ++++++---- stock_available_unreserved/i18n/zh_CN.po | 44 ++++++---- 27 files changed, 812 insertions(+), 408 deletions(-) create mode 100644 stock_available_unreserved/i18n/stock_available_unreserved.pot diff --git a/stock_available_unreserved/i18n/ca.po b/stock_available_unreserved/i18n/ca.po index c517421f1..35398b224 100644 --- a/stock_available_unreserved/i18n/ca.po +++ b/stock_available_unreserved/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # Carles Antoli , 2017 msgid "" @@ -12,21 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: Carles Antoli , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +28,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +60,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +81,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/de.po b/stock_available_unreserved/i18n/de.po index 271bba014..27223d6c1 100644 --- a/stock_available_unreserved/i18n/de.po +++ b/stock_available_unreserved/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,28 +12,34 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:112 -#, python-format -msgid " On Hand" -msgstr "Verfügbar" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" -msgstr "Verfügbar nach Bestand" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" +msgstr "" #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "Intern nicht reserviert" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +60,16 @@ msgstr "Freier Bestand" msgid "Quantity On Hand Unreserved" msgstr "Nicht reservierte, verfügbare Menge" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,12 +81,16 @@ msgstr "Freier Bestand (nicht reserv.)" msgid "Unreserved" msgstr "Nicht reserviert" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "Nicht reservierte Bestandsmenge" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "Nicht reserviert:" + +#~ msgid " On Hand" +#~ msgstr "Verfügbar" + +#~ msgid "Available per stock" +#~ msgstr "Verfügbar nach Bestand" + +#~ msgid "Unreserved stock quantity" +#~ msgstr "Nicht reservierte Bestandsmenge" diff --git a/stock_available_unreserved/i18n/el_GR.po b/stock_available_unreserved/i18n/el_GR.po index 4247c22be..1f3450a68 100644 --- a/stock_available_unreserved/i18n/el_GR.po +++ b/stock_available_unreserved/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # Kostas Goutoudis , 2017 msgid "" @@ -11,22 +11,17 @@ msgstr "" "POT-Creation-Date: 2017-03-04 03:58+0000\n" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: Kostas Goutoudis , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +29,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +61,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +82,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/es.po b/stock_available_unreserved/i18n/es.po index e432f39af..7cb2c3399 100644 --- a/stock_available_unreserved/i18n/es.po +++ b/stock_available_unreserved/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,21 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +28,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +60,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +81,6 @@ msgstr "" msgid "Unreserved" msgstr "No reservado" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/es_ES.po b/stock_available_unreserved/i18n/es_ES.po index 0c18bc6b4..5745d73da 100644 --- a/stock_available_unreserved/i18n/es_ES.po +++ b/stock_available_unreserved/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # Javier García-Panach , 2017 msgid "" @@ -11,22 +11,17 @@ msgstr "" "POT-Creation-Date: 2017-03-04 03:58+0000\n" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: Javier García-Panach , 2017\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +29,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +61,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +82,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/es_MX.po b/stock_available_unreserved/i18n/es_MX.po index bea9ef360..247b74710 100644 --- a/stock_available_unreserved/i18n/es_MX.po +++ b/stock_available_unreserved/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # Juan González , 2017 msgid "" @@ -11,22 +11,17 @@ msgstr "" "POT-Creation-Date: 2017-03-04 03:58+0000\n" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: Juan González , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +29,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +61,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +82,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/eu.po b/stock_available_unreserved/i18n/eu.po index a459f8f5b..7f25cc7c4 100644 --- a/stock_available_unreserved/i18n/eu.po +++ b/stock_available_unreserved/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # Esther Martín Menéndez , 2017 msgid "" @@ -12,21 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: Esther Martín Menéndez , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +28,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +60,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +81,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/fi.po b/stock_available_unreserved/i18n/fi.po index f9507aec4..b503e3ca0 100644 --- a/stock_available_unreserved/i18n/fi.po +++ b/stock_available_unreserved/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,21 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +28,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +60,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +81,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/fr.po b/stock_available_unreserved/i18n/fr.po index 497fab56a..7f909f00a 100644 --- a/stock_available_unreserved/i18n/fr.po +++ b/stock_available_unreserved/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,21 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +28,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +60,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +81,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/fr_CH.po b/stock_available_unreserved/i18n/fr_CH.po index 0bdb6f561..6acdd2643 100644 --- a/stock_available_unreserved/i18n/fr_CH.po +++ b/stock_available_unreserved/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # leemannd , 2017 # OCA Transbot , 2017 @@ -12,22 +12,17 @@ msgstr "" "POT-Creation-Date: 2017-03-04 03:58+0000\n" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -35,6 +30,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -55,6 +62,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -66,11 +83,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/fr_FR.po b/stock_available_unreserved/i18n/fr_FR.po index cf0ce192f..9884fbfd1 100644 --- a/stock_available_unreserved/i18n/fr_FR.po +++ b/stock_available_unreserved/i18n/fr_FR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,22 +11,17 @@ msgstr "" "POT-Creation-Date: 2017-03-04 03:58+0000\n" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" +"fr_FR/)\n" +"Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +29,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +61,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +82,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/gl.po b/stock_available_unreserved/i18n/gl.po index 9eae1e61e..62b07e64c 100644 --- a/stock_available_unreserved/i18n/gl.po +++ b/stock_available_unreserved/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # César Castro Cruz , 2017 msgid "" @@ -12,21 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: César Castro Cruz , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +28,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +60,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +81,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/hr.po b/stock_available_unreserved/i18n/hr.po index 22232b2fa..37d0296e4 100644 --- a/stock_available_unreserved/i18n/hr.po +++ b/stock_available_unreserved/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # Bole , 2017 # OCA Transbot , 2017 @@ -13,21 +13,16 @@ msgstr "" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -35,6 +30,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -55,6 +62,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -66,11 +83,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/hr_HR.po b/stock_available_unreserved/i18n/hr_HR.po index ca89e87b7..01e03ca48 100644 --- a/stock_available_unreserved/i18n/hr_HR.po +++ b/stock_available_unreserved/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # Bole , 2017 # OCA Transbot , 2017 @@ -12,22 +12,18 @@ msgstr "" "POT-Creation-Date: 2017-03-04 03:58+0000\n" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_HR\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -35,6 +31,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -55,6 +63,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -66,11 +84,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/it.po b/stock_available_unreserved/i18n/it.po index dd96facaf..c960ca031 100644 --- a/stock_available_unreserved/i18n/it.po +++ b/stock_available_unreserved/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # Paolo Valier , 2017 # OCA Transbot , 2017 @@ -13,21 +13,15 @@ msgstr "" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -35,6 +29,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -55,6 +61,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -66,11 +82,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/nl.po b/stock_available_unreserved/i18n/nl.po index 94527d4a6..a79299a91 100644 --- a/stock_available_unreserved/i18n/nl.po +++ b/stock_available_unreserved/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,21 +12,15 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:112 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +28,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +60,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +81,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/nl_NL.po b/stock_available_unreserved/i18n/nl_NL.po index 5423c4f18..3aea0d65f 100644 --- a/stock_available_unreserved/i18n/nl_NL.po +++ b/stock_available_unreserved/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # OCA Transbot , 2017 # Peter Hageman , 2017 @@ -12,22 +12,17 @@ msgstr "" "POT-Creation-Date: 2017-06-23 00:57+0000\n" "PO-Revision-Date: 2017-06-23 00:57+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:135 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -35,6 +30,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -55,6 +62,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -66,11 +83,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/pt.po b/stock_available_unreserved/i18n/pt.po index cafb89b11..792b9aa57 100644 --- a/stock_available_unreserved/i18n/pt.po +++ b/stock_available_unreserved/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,21 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +28,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +60,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +81,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/pt_BR.po b/stock_available_unreserved/i18n/pt_BR.po index 0edbbd70a..4a409f4e8 100644 --- a/stock_available_unreserved/i18n/pt_BR.po +++ b/stock_available_unreserved/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # Claudio Araujo Santos , 2017 # OCA Transbot , 2017 @@ -13,22 +13,17 @@ msgstr "" "POT-Creation-Date: 2017-03-04 03:58+0000\n" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: danimaribeiro , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -36,6 +31,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -56,6 +63,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -67,11 +84,6 @@ msgstr "" msgid "Unreserved" msgstr "Desreservar" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/ro.po b/stock_available_unreserved/i18n/ro.po index d6f8b8f26..2521866f5 100644 --- a/stock_available_unreserved/i18n/ro.po +++ b/stock_available_unreserved/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,21 +12,16 @@ msgstr "" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +29,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +61,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +82,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/ru.po b/stock_available_unreserved/i18n/ru.po index 999c4eecd..bafd42fd3 100644 --- a/stock_available_unreserved/i18n/ru.po +++ b/stock_available_unreserved/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,21 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:112 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +30,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +62,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +83,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/sl.po b/stock_available_unreserved/i18n/sl.po index 797824665..4b53b9cc9 100644 --- a/stock_available_unreserved/i18n/sl.po +++ b/stock_available_unreserved/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,28 +12,35 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:112 -#, python-format -msgid " On Hand" -msgstr "Na voljo" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" -msgstr "Na voljo po zalogah" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" +msgstr "" #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "Interno ne rezervirano" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +61,16 @@ msgstr "Ne rezervirana količina na voljo" msgid "Quantity On Hand Unreserved" msgstr "Ne rezervirana količna pri roki" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,12 +82,16 @@ msgstr "Količina pri roki (ne rezervirana)" msgid "Unreserved" msgstr "Odstranjena rezervacija" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "Količina ne rezerviranih zalog" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "Ne rezervirano:" + +#~ msgid " On Hand" +#~ msgstr "Na voljo" + +#~ msgid "Available per stock" +#~ msgstr "Na voljo po zalogah" + +#~ msgid "Unreserved stock quantity" +#~ msgstr "Količina ne rezerviranih zalog" diff --git a/stock_available_unreserved/i18n/stock_available_unreserved.pot b/stock_available_unreserved/i18n/stock_available_unreserved.pot new file mode 100644 index 000000000..103c1457a --- /dev/null +++ b/stock_available_unreserved/i18n/stock_available_unreserved.pot @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "" + diff --git a/stock_available_unreserved/i18n/tr.po b/stock_available_unreserved/i18n/tr.po index 73695c753..86ac8811d 100644 --- a/stock_available_unreserved/i18n/tr.po +++ b/stock_available_unreserved/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # Ediz Duman , 2017 # OCA Transbot , 2017 @@ -13,21 +13,15 @@ msgstr "" "PO-Revision-Date: 2017-06-23 00:57+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:135 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -35,6 +29,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -55,6 +61,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -66,11 +82,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/tr_TR.po b/stock_available_unreserved/i18n/tr_TR.po index d518cd79f..34861bc40 100644 --- a/stock_available_unreserved/i18n/tr_TR.po +++ b/stock_available_unreserved/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # Ozge Altinisik , 2017 msgid "" @@ -11,22 +11,17 @@ msgstr "" "POT-Creation-Date: 2017-03-04 03:58+0000\n" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: Ozge Altinisik , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +29,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +61,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +82,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/vi_VN.po b/stock_available_unreserved/i18n/vi_VN.po index d877b03b7..ac233769d 100644 --- a/stock_available_unreserved/i18n/vi_VN.po +++ b/stock_available_unreserved/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,22 +11,17 @@ msgstr "" "POT-Creation-Date: 2017-03-04 03:58+0000\n" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +29,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +61,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +82,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" diff --git a/stock_available_unreserved/i18n/zh_CN.po b/stock_available_unreserved/i18n/zh_CN.po index df7638bd4..5f0dd5fd2 100644 --- a/stock_available_unreserved/i18n/zh_CN.po +++ b/stock_available_unreserved/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_available_unreserved -# +# # Translators: # Jeffery CHEN , 2017 msgid "" @@ -11,22 +11,17 @@ msgstr "" "POT-Creation-Date: 2017-03-04 03:58+0000\n" "PO-Revision-Date: 2017-03-04 03:58+0000\n" "Last-Translator: Jeffery CHEN , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:137 -#, python-format -msgid " On Hand" -msgstr "" - -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_stock_text -msgid "Available per stock" +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved @@ -34,6 +29,18 @@ msgstr "" msgid "Internal Unreserved" msgstr "" +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product msgid "Product" @@ -54,6 +61,16 @@ msgstr "" msgid "Quantity On Hand Unreserved" msgstr "" +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "" + #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" @@ -65,11 +82,6 @@ msgstr "" msgid "Unreserved" msgstr "" -#. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_stock_text -msgid "Unreserved stock quantity" -msgstr "" - #. module: stock_available_unreserved #: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" From 031cbb2abe8bc8652bbd36a7876471e721317131 Mon Sep 17 00:00:00 2001 From: Osoul Date: Fri, 29 Jun 2018 04:13:43 +0000 Subject: [PATCH 12/24] Added translation using Weblate (Arabic) --- stock_available_unreserved/i18n/ar.po | 86 +++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 stock_available_unreserved/i18n/ar.po diff --git a/stock_available_unreserved/i18n/ar.po b/stock_available_unreserved/i18n/ar.po new file mode 100644 index 000000000..c0e20d393 --- /dev/null +++ b/stock_available_unreserved/i18n/ar.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_available_unreserved +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2018-06-29 14:21+0000\n" +"Last-Translator: Osoul \n" +"Language-Team: none\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 3.0.1\n" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +msgid "Contains unreserved products" +msgstr "يحتوي على كميات غير محجوزة" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +msgid "Internal Unreserved" +msgstr "الغير محجوز داخلياً" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:116 +#, python-format +msgid "Invalid domain operator %s" +msgstr "" + +#. module: stock_available_unreserved +#: code:addons/stock_available_unreserved/models/product.py:118 +#, python-format +msgid "Invalid domain right operand %s" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_product +msgid "Product" +msgstr "المنتج" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_product_template +msgid "Product Template" +msgstr "قالب المنتج" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +msgid "Qty Available Not Reserved" +msgstr "الكمية المتوفرة الغير محجوزة" + +#. module: stock_available_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +msgid "Quantity On Hand Unreserved" +msgstr "الكمية في متناول اليد الغير محجوزة" + +#. module: stock_available_unreserved +#: model:ir.model,name:stock_available_unreserved.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +msgid "Reservable Products" +msgstr "المنتجات القابلة للحجز" + +#. module: stock_available_unreserved +#: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved +msgid "Stock On Hand (Unreserved)" +msgstr "الكمية في متناول اليد (غير محجوزة)" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +msgid "Unreserved" +msgstr "غير محجوز" + +#. module: stock_available_unreserved +#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +msgid "Unreserved:" +msgstr "غير محجوز:" From 1697f7b7193740e3a884f78e4f35d10fefe5be0c Mon Sep 17 00:00:00 2001 From: ougc27 Date: Mon, 7 Jan 2019 09:35:55 -0600 Subject: [PATCH 13/24] [MIG] stock_available_unreserved: Migration to V12 --- stock_available_unreserved/README.rst | 1 + stock_available_unreserved/__init__.py | 1 + stock_available_unreserved/__manifest__.py | 3 ++- stock_available_unreserved/models/__init__.py | 1 + stock_available_unreserved/models/product.py | 1 + stock_available_unreserved/models/quant.py | 1 + stock_available_unreserved/tests/__init__.py | 1 + .../tests/test_stock_available_unreserved.py | 3 ++- 8 files changed, 10 insertions(+), 2 deletions(-) diff --git a/stock_available_unreserved/README.rst b/stock_available_unreserved/README.rst index ad650e028..cad36577b 100644 --- a/stock_available_unreserved/README.rst +++ b/stock_available_unreserved/README.rst @@ -49,6 +49,7 @@ Contributors * Stefan Rijnhart * Mykhailo Panarin * Atte Isopuro +* Oscar Garza Maintainer diff --git a/stock_available_unreserved/__init__.py b/stock_available_unreserved/__init__.py index a00d71200..cecd8fd14 100644 --- a/stock_available_unreserved/__init__.py +++ b/stock_available_unreserved/__init__.py @@ -1,6 +1,7 @@ # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) +# Copyright 2019 JARSA Sistemas S.A. de C.V. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import models diff --git a/stock_available_unreserved/__manifest__.py b/stock_available_unreserved/__manifest__.py index c3f819b63..490983ecf 100644 --- a/stock_available_unreserved/__manifest__.py +++ b/stock_available_unreserved/__manifest__.py @@ -2,11 +2,12 @@ # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) +# Copyright 2019 JARSA Sistemas S.A. de C.V. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { "name": "Stock Available Unreserved", "summary": "Quantity of stock available for immediate use", - "version": "11.0.1.0.0", + "version": "12.0.1.0.0", "author": "Eficent Business and IT Consulting Services S.L," "Odoo Community Association (OCA)", "website": "https://github.com/OCA/stock-logistics-warehouse", diff --git a/stock_available_unreserved/models/__init__.py b/stock_available_unreserved/models/__init__.py index e76114f16..b5f273ba9 100644 --- a/stock_available_unreserved/models/__init__.py +++ b/stock_available_unreserved/models/__init__.py @@ -1,6 +1,7 @@ # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) +# Copyright 2019 JARSA Sistemas S.A. de C.V. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import product diff --git a/stock_available_unreserved/models/product.py b/stock_available_unreserved/models/product.py index 6447e4cea..28c018337 100644 --- a/stock_available_unreserved/models/product.py +++ b/stock_available_unreserved/models/product.py @@ -2,6 +2,7 @@ # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) +# Copyright 2019 JARSA Sistemas S.A. de C.V. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import api, fields, models, _ diff --git a/stock_available_unreserved/models/quant.py b/stock_available_unreserved/models/quant.py index 625634092..b01868522 100644 --- a/stock_available_unreserved/models/quant.py +++ b/stock_available_unreserved/models/quant.py @@ -1,4 +1,5 @@ # Copyright 2018 Camptocamp SA +# Copyright 2019 JARSA Sistemas S.A. de C.V. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import api, fields, models diff --git a/stock_available_unreserved/tests/__init__.py b/stock_available_unreserved/tests/__init__.py index a9fb8e294..c9c70c559 100644 --- a/stock_available_unreserved/tests/__init__.py +++ b/stock_available_unreserved/tests/__init__.py @@ -1,5 +1,6 @@ # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. +# Copyright 2019 JARSA Sistemas S.A. de C.V. # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). diff --git a/stock_available_unreserved/tests/test_stock_available_unreserved.py b/stock_available_unreserved/tests/test_stock_available_unreserved.py index 37638a986..8fb8ff836 100644 --- a/stock_available_unreserved/tests/test_stock_available_unreserved.py +++ b/stock_available_unreserved/tests/test_stock_available_unreserved.py @@ -3,6 +3,7 @@ # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) # Copyright 2016 Therp BV +# Copyright 2019 JARSA Sistemas S.A. de C.V. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo.tests.common import SavepointCase @@ -18,7 +19,7 @@ class TestStockLogisticsWarehouse(SavepointCase): cls.supplier_location = cls.env.ref('stock.stock_location_suppliers') cls.stock_location = cls.env.ref('stock.stock_location_stock') cls.customer_location = cls.env.ref('stock.stock_location_customers') - cls.uom_unit = cls.env.ref('product.product_uom_unit') + cls.uom_unit = cls.env.ref('uom.product_uom_unit') cls.main_company = cls.env.ref('base.main_company') cls.bin_a = cls.env['stock.location'].create({ From d72daca1620948a1fc4f4b0e759eb682f1b9bb98 Mon Sep 17 00:00:00 2001 From: ougc27 Date: Mon, 7 Jan 2019 12:09:36 -0600 Subject: [PATCH 14/24] [ADD][stock_available_unreserved] - Missing depends on qty_available_not_reserved compute method in order to update the quantity. --- stock_available_unreserved/README.rst | 1 - stock_available_unreserved/__init__.py | 1 - stock_available_unreserved/__manifest__.py | 1 - stock_available_unreserved/models/__init__.py | 1 - stock_available_unreserved/models/product.py | 2 +- stock_available_unreserved/models/quant.py | 1 - 6 files changed, 1 insertion(+), 6 deletions(-) diff --git a/stock_available_unreserved/README.rst b/stock_available_unreserved/README.rst index cad36577b..ad650e028 100644 --- a/stock_available_unreserved/README.rst +++ b/stock_available_unreserved/README.rst @@ -49,7 +49,6 @@ Contributors * Stefan Rijnhart * Mykhailo Panarin * Atte Isopuro -* Oscar Garza Maintainer diff --git a/stock_available_unreserved/__init__.py b/stock_available_unreserved/__init__.py index cecd8fd14..a00d71200 100644 --- a/stock_available_unreserved/__init__.py +++ b/stock_available_unreserved/__init__.py @@ -1,7 +1,6 @@ # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) -# Copyright 2019 JARSA Sistemas S.A. de C.V. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import models diff --git a/stock_available_unreserved/__manifest__.py b/stock_available_unreserved/__manifest__.py index 490983ecf..11b9efdf2 100644 --- a/stock_available_unreserved/__manifest__.py +++ b/stock_available_unreserved/__manifest__.py @@ -2,7 +2,6 @@ # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) -# Copyright 2019 JARSA Sistemas S.A. de C.V. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { "name": "Stock Available Unreserved", diff --git a/stock_available_unreserved/models/__init__.py b/stock_available_unreserved/models/__init__.py index b5f273ba9..e76114f16 100644 --- a/stock_available_unreserved/models/__init__.py +++ b/stock_available_unreserved/models/__init__.py @@ -1,7 +1,6 @@ # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) -# Copyright 2019 JARSA Sistemas S.A. de C.V. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import product diff --git a/stock_available_unreserved/models/product.py b/stock_available_unreserved/models/product.py index 28c018337..8d66c164a 100644 --- a/stock_available_unreserved/models/product.py +++ b/stock_available_unreserved/models/product.py @@ -2,7 +2,6 @@ # Copyright 2016 ACSONE SA/NV () # Copyright 2016 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) -# Copyright 2019 JARSA Sistemas S.A. de C.V. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import api, fields, models, _ @@ -105,6 +104,7 @@ class ProductProduct(models.Model): return res @api.multi + @api.depends('stock_move_ids.product_qty', 'stock_move_ids.state') def _compute_qty_available_not_reserved(self): res = self._compute_product_available_not_res_dict() for prod in self: diff --git a/stock_available_unreserved/models/quant.py b/stock_available_unreserved/models/quant.py index b01868522..625634092 100644 --- a/stock_available_unreserved/models/quant.py +++ b/stock_available_unreserved/models/quant.py @@ -1,5 +1,4 @@ # Copyright 2018 Camptocamp SA -# Copyright 2019 JARSA Sistemas S.A. de C.V. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import api, fields, models From 0fbb222c8354e6cecbfc4951bd338c242e05d2da Mon Sep 17 00:00:00 2001 From: oca-travis Date: Tue, 23 Apr 2019 08:33:02 +0000 Subject: [PATCH 15/24] [UPD] Update stock_available_unreserved.pot --- .../i18n/stock_available_unreserved.pot | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/stock_available_unreserved/i18n/stock_available_unreserved.pot b/stock_available_unreserved/i18n/stock_available_unreserved.pot index 103c1457a..2ca3afc9e 100644 --- a/stock_available_unreserved/i18n/stock_available_unreserved.pot +++ b/stock_available_unreserved/i18n/stock_available_unreserved.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 11.0\n" +"Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: <>\n" "Language-Team: \n" @@ -14,23 +14,23 @@ msgstr "" "Plural-Forms: \n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -46,12 +46,12 @@ msgid "Product Template" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -61,7 +61,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -71,13 +71,13 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" From 42570263be6dbaeef39ef79d1c515bdb3c397767 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Mon, 20 May 2019 21:05:33 +0000 Subject: [PATCH 16/24] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: stock-logistics-warehouse-12.0/stock-logistics-warehouse-12.0-stock_available_unreserved Translate-URL: https://translation.odoo-community.org/projects/stock-logistics-warehouse-12-0/stock-logistics-warehouse-12-0-stock_available_unreserved/ --- stock_available_unreserved/i18n/ar.po | 22 +++++++++++----------- stock_available_unreserved/i18n/ca.po | 20 ++++++++++---------- stock_available_unreserved/i18n/de.po | 20 ++++++++++---------- stock_available_unreserved/i18n/el_GR.po | 20 ++++++++++---------- stock_available_unreserved/i18n/es.po | 20 ++++++++++---------- stock_available_unreserved/i18n/es_ES.po | 20 ++++++++++---------- stock_available_unreserved/i18n/es_MX.po | 20 ++++++++++---------- stock_available_unreserved/i18n/eu.po | 20 ++++++++++---------- stock_available_unreserved/i18n/fi.po | 20 ++++++++++---------- stock_available_unreserved/i18n/fr.po | 20 ++++++++++---------- stock_available_unreserved/i18n/fr_CH.po | 20 ++++++++++---------- stock_available_unreserved/i18n/fr_FR.po | 20 ++++++++++---------- stock_available_unreserved/i18n/gl.po | 20 ++++++++++---------- stock_available_unreserved/i18n/hr.po | 20 ++++++++++---------- stock_available_unreserved/i18n/hr_HR.po | 20 ++++++++++---------- stock_available_unreserved/i18n/it.po | 20 ++++++++++---------- stock_available_unreserved/i18n/nl.po | 20 ++++++++++---------- stock_available_unreserved/i18n/nl_NL.po | 20 ++++++++++---------- stock_available_unreserved/i18n/pt.po | 20 ++++++++++---------- stock_available_unreserved/i18n/pt_BR.po | 20 ++++++++++---------- stock_available_unreserved/i18n/ro.po | 20 ++++++++++---------- stock_available_unreserved/i18n/ru.po | 20 ++++++++++---------- stock_available_unreserved/i18n/sl.po | 20 ++++++++++---------- stock_available_unreserved/i18n/tr.po | 20 ++++++++++---------- stock_available_unreserved/i18n/tr_TR.po | 20 ++++++++++---------- stock_available_unreserved/i18n/vi_VN.po | 20 ++++++++++---------- stock_available_unreserved/i18n/zh_CN.po | 20 ++++++++++---------- 27 files changed, 271 insertions(+), 271 deletions(-) diff --git a/stock_available_unreserved/i18n/ar.po b/stock_available_unreserved/i18n/ar.po index c0e20d393..c48430a24 100644 --- a/stock_available_unreserved/i18n/ar.po +++ b/stock_available_unreserved/i18n/ar.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * stock_available_unreserved +# * stock_available_unreserved # msgid "" msgstr "" @@ -18,23 +18,23 @@ msgstr "" "X-Generator: Weblate 3.0.1\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "يحتوي على كميات غير محجوزة" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "الغير محجوز داخلياً" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -50,12 +50,12 @@ msgid "Product Template" msgstr "قالب المنتج" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "الكمية المتوفرة الغير محجوزة" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "الكمية في متناول اليد الغير محجوزة" @@ -65,7 +65,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "المنتجات القابلة للحجز" @@ -75,12 +75,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "الكمية في متناول اليد (غير محجوزة)" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "غير محجوز" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "غير محجوز:" diff --git a/stock_available_unreserved/i18n/ca.po b/stock_available_unreserved/i18n/ca.po index 35398b224..9e7ead4af 100644 --- a/stock_available_unreserved/i18n/ca.po +++ b/stock_available_unreserved/i18n/ca.po @@ -19,23 +19,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -51,12 +51,12 @@ msgid "Product Template" msgstr "Plantilla del producte" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -66,7 +66,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -76,12 +76,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/de.po b/stock_available_unreserved/i18n/de.po index 27223d6c1..ddf852356 100644 --- a/stock_available_unreserved/i18n/de.po +++ b/stock_available_unreserved/i18n/de.po @@ -19,23 +19,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "Intern nicht reserviert" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -51,12 +51,12 @@ msgid "Product Template" msgstr "Produktvorlage" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "Freier Bestand" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "Nicht reservierte, verfügbare Menge" @@ -66,7 +66,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -76,13 +76,13 @@ msgid "Stock On Hand (Unreserved)" msgstr "Freier Bestand (nicht reserv.)" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "Nicht reserviert" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "Nicht reserviert:" diff --git a/stock_available_unreserved/i18n/el_GR.po b/stock_available_unreserved/i18n/el_GR.po index 1f3450a68..ba88059e1 100644 --- a/stock_available_unreserved/i18n/el_GR.po +++ b/stock_available_unreserved/i18n/el_GR.po @@ -20,23 +20,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -52,12 +52,12 @@ msgid "Product Template" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -67,7 +67,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -77,12 +77,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/es.po b/stock_available_unreserved/i18n/es.po index 7cb2c3399..a9394355c 100644 --- a/stock_available_unreserved/i18n/es.po +++ b/stock_available_unreserved/i18n/es.po @@ -19,23 +19,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -51,12 +51,12 @@ msgid "Product Template" msgstr "Plantilla de producto" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -66,7 +66,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -76,12 +76,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "No reservado" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/es_ES.po b/stock_available_unreserved/i18n/es_ES.po index 5745d73da..891512254 100644 --- a/stock_available_unreserved/i18n/es_ES.po +++ b/stock_available_unreserved/i18n/es_ES.po @@ -20,23 +20,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -52,12 +52,12 @@ msgid "Product Template" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -67,7 +67,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -77,12 +77,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/es_MX.po b/stock_available_unreserved/i18n/es_MX.po index 247b74710..01f5f8dd5 100644 --- a/stock_available_unreserved/i18n/es_MX.po +++ b/stock_available_unreserved/i18n/es_MX.po @@ -20,23 +20,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -52,12 +52,12 @@ msgid "Product Template" msgstr "Plantilla del producto" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -67,7 +67,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -77,12 +77,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/eu.po b/stock_available_unreserved/i18n/eu.po index 7f25cc7c4..d7d47b5f0 100644 --- a/stock_available_unreserved/i18n/eu.po +++ b/stock_available_unreserved/i18n/eu.po @@ -19,23 +19,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -51,12 +51,12 @@ msgid "Product Template" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -66,7 +66,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -76,12 +76,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/fi.po b/stock_available_unreserved/i18n/fi.po index b503e3ca0..d6427c38b 100644 --- a/stock_available_unreserved/i18n/fi.po +++ b/stock_available_unreserved/i18n/fi.po @@ -19,23 +19,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -51,12 +51,12 @@ msgid "Product Template" msgstr "Tuotteen malli" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -66,7 +66,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -76,12 +76,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/fr.po b/stock_available_unreserved/i18n/fr.po index 7f909f00a..4abb42a14 100644 --- a/stock_available_unreserved/i18n/fr.po +++ b/stock_available_unreserved/i18n/fr.po @@ -19,23 +19,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -51,12 +51,12 @@ msgid "Product Template" msgstr "Modèle de produit" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -66,7 +66,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -76,12 +76,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/fr_CH.po b/stock_available_unreserved/i18n/fr_CH.po index 6acdd2643..d9f0fd30f 100644 --- a/stock_available_unreserved/i18n/fr_CH.po +++ b/stock_available_unreserved/i18n/fr_CH.po @@ -21,23 +21,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -53,12 +53,12 @@ msgid "Product Template" msgstr "Template de produit" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -68,7 +68,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -78,12 +78,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/fr_FR.po b/stock_available_unreserved/i18n/fr_FR.po index 9884fbfd1..d394bc76b 100644 --- a/stock_available_unreserved/i18n/fr_FR.po +++ b/stock_available_unreserved/i18n/fr_FR.po @@ -20,23 +20,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -52,12 +52,12 @@ msgid "Product Template" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -67,7 +67,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -77,12 +77,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/gl.po b/stock_available_unreserved/i18n/gl.po index 62b07e64c..c1c6ba0ff 100644 --- a/stock_available_unreserved/i18n/gl.po +++ b/stock_available_unreserved/i18n/gl.po @@ -19,23 +19,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -51,12 +51,12 @@ msgid "Product Template" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -66,7 +66,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -76,12 +76,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/hr.po b/stock_available_unreserved/i18n/hr.po index 37d0296e4..3cb256fa7 100644 --- a/stock_available_unreserved/i18n/hr.po +++ b/stock_available_unreserved/i18n/hr.po @@ -21,23 +21,23 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -53,12 +53,12 @@ msgid "Product Template" msgstr "Predložak proizvoda" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -68,7 +68,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -78,12 +78,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/hr_HR.po b/stock_available_unreserved/i18n/hr_HR.po index 01e03ca48..3c06c6be9 100644 --- a/stock_available_unreserved/i18n/hr_HR.po +++ b/stock_available_unreserved/i18n/hr_HR.po @@ -22,23 +22,23 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -54,12 +54,12 @@ msgid "Product Template" msgstr "Predložak proizvoda" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -69,7 +69,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -79,12 +79,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/it.po b/stock_available_unreserved/i18n/it.po index c960ca031..41285a2c7 100644 --- a/stock_available_unreserved/i18n/it.po +++ b/stock_available_unreserved/i18n/it.po @@ -20,23 +20,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -52,12 +52,12 @@ msgid "Product Template" msgstr "Template Prodotto" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -67,7 +67,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -77,12 +77,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/nl.po b/stock_available_unreserved/i18n/nl.po index a79299a91..275ce3e87 100644 --- a/stock_available_unreserved/i18n/nl.po +++ b/stock_available_unreserved/i18n/nl.po @@ -19,23 +19,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -51,12 +51,12 @@ msgid "Product Template" msgstr "Productsjabloon" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -66,7 +66,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -76,12 +76,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/nl_NL.po b/stock_available_unreserved/i18n/nl_NL.po index 3aea0d65f..eb2260726 100644 --- a/stock_available_unreserved/i18n/nl_NL.po +++ b/stock_available_unreserved/i18n/nl_NL.po @@ -21,23 +21,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -53,12 +53,12 @@ msgid "Product Template" msgstr "Productsjabloon" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -68,7 +68,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -78,12 +78,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/pt.po b/stock_available_unreserved/i18n/pt.po index 792b9aa57..214064224 100644 --- a/stock_available_unreserved/i18n/pt.po +++ b/stock_available_unreserved/i18n/pt.po @@ -19,23 +19,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -51,12 +51,12 @@ msgid "Product Template" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -66,7 +66,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -76,12 +76,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/pt_BR.po b/stock_available_unreserved/i18n/pt_BR.po index 4a409f4e8..da1a335d6 100644 --- a/stock_available_unreserved/i18n/pt_BR.po +++ b/stock_available_unreserved/i18n/pt_BR.po @@ -22,23 +22,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -54,12 +54,12 @@ msgid "Product Template" msgstr "Modelo Produto" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -69,7 +69,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -79,12 +79,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "Desreservar" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/ro.po b/stock_available_unreserved/i18n/ro.po index 2521866f5..0572a1b1e 100644 --- a/stock_available_unreserved/i18n/ro.po +++ b/stock_available_unreserved/i18n/ro.po @@ -20,23 +20,23 @@ msgstr "" "2:1));\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -52,12 +52,12 @@ msgid "Product Template" msgstr "Produs șablon" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -67,7 +67,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -77,12 +77,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/ru.po b/stock_available_unreserved/i18n/ru.po index bafd42fd3..ef8fbb33c 100644 --- a/stock_available_unreserved/i18n/ru.po +++ b/stock_available_unreserved/i18n/ru.po @@ -21,23 +21,23 @@ msgstr "" "%100>=11 && n%100<=14)? 2 : 3);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -53,12 +53,12 @@ msgid "Product Template" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -68,7 +68,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -78,12 +78,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/sl.po b/stock_available_unreserved/i18n/sl.po index 4b53b9cc9..c54483ae7 100644 --- a/stock_available_unreserved/i18n/sl.po +++ b/stock_available_unreserved/i18n/sl.po @@ -20,23 +20,23 @@ msgstr "" "%100==4 ? 2 : 3);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "Interno ne rezervirano" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -52,12 +52,12 @@ msgid "Product Template" msgstr "Predloga proizvoda" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "Ne rezervirana količina na voljo" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "Ne rezervirana količna pri roki" @@ -67,7 +67,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -77,13 +77,13 @@ msgid "Stock On Hand (Unreserved)" msgstr "Količina pri roki (ne rezervirana)" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "Odstranjena rezervacija" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "Ne rezervirano:" diff --git a/stock_available_unreserved/i18n/tr.po b/stock_available_unreserved/i18n/tr.po index 86ac8811d..d8d7c9849 100644 --- a/stock_available_unreserved/i18n/tr.po +++ b/stock_available_unreserved/i18n/tr.po @@ -20,23 +20,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -52,12 +52,12 @@ msgid "Product Template" msgstr "Ürün Şablonu" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -67,7 +67,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -77,12 +77,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/tr_TR.po b/stock_available_unreserved/i18n/tr_TR.po index 34861bc40..06f145763 100644 --- a/stock_available_unreserved/i18n/tr_TR.po +++ b/stock_available_unreserved/i18n/tr_TR.po @@ -20,23 +20,23 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -52,12 +52,12 @@ msgid "Product Template" msgstr "Ürün şablonu" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -67,7 +67,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -77,12 +77,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/vi_VN.po b/stock_available_unreserved/i18n/vi_VN.po index ac233769d..469d3db72 100644 --- a/stock_available_unreserved/i18n/vi_VN.po +++ b/stock_available_unreserved/i18n/vi_VN.po @@ -20,23 +20,23 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -52,12 +52,12 @@ msgid "Product Template" msgstr "Mẫu sản phẩm" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -67,7 +67,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -77,12 +77,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" diff --git a/stock_available_unreserved/i18n/zh_CN.po b/stock_available_unreserved/i18n/zh_CN.po index 5f0dd5fd2..d1b842356 100644 --- a/stock_available_unreserved/i18n/zh_CN.po +++ b/stock_available_unreserved/i18n/zh_CN.po @@ -20,23 +20,23 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant_contains_unreserved +#: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:116 +#: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:118 +#: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" msgstr "" @@ -52,12 +52,12 @@ msgid "Product Template" msgstr "产品模板" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template_qty_available_not_res +#: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" msgstr "" @@ -67,7 +67,7 @@ msgid "Quants" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" msgstr "" @@ -77,12 +77,12 @@ msgid "Stock On Hand (Unreserved)" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" msgstr "" #. module: stock_available_unreserved -#: model:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view +#: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" msgstr "" From acca50f049a4a98c9934a2d8ad106ba36689101d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Thu, 26 Sep 2019 15:04:34 +0000 Subject: [PATCH 17/24] Translated using Weblate (Chinese (Simplified)) Currently translated at 38.5% (5 of 13 strings) Translation: stock-logistics-warehouse-12.0/stock-logistics-warehouse-12.0-stock_available_unreserved Translate-URL: https://translation.odoo-community.org/projects/stock-logistics-warehouse-12-0/stock-logistics-warehouse-12-0-stock_available_unreserved/zh_CN/ --- stock_available_unreserved/i18n/zh_CN.po | 27 ++++++++++++------------ 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/stock_available_unreserved/i18n/zh_CN.po b/stock_available_unreserved/i18n/zh_CN.po index d1b842356..f2a95e4bc 100644 --- a/stock_available_unreserved/i18n/zh_CN.po +++ b/stock_available_unreserved/i18n/zh_CN.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-03-04 03:58+0000\n" -"PO-Revision-Date: 2017-03-04 03:58+0000\n" -"Last-Translator: Jeffery CHEN , 2017\n" +"PO-Revision-Date: 2019-09-26 17:24+0000\n" +"Last-Translator: 黎伟杰 <674416404@qq.com>\n" "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" "zh_CN/)\n" "Language: zh_CN\n" @@ -18,28 +18,29 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.8\n" #. module: stock_available_unreserved #: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" -msgstr "" +msgstr "包含未预留的产品" #. module: stock_available_unreserved #: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" -msgstr "" +msgstr "内部未预留" #. module: stock_available_unreserved #: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" -msgstr "" +msgstr "无效的域运算符%s" #. module: stock_available_unreserved #: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" -msgstr "" +msgstr "无效的域权限操作数%s" #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product @@ -54,35 +55,35 @@ msgstr "产品模板" #. module: stock_available_unreserved #: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" -msgstr "" +msgstr "可用量未预留" #. module: stock_available_unreserved #: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" -msgstr "" +msgstr "未预留的在手数量" #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_stock_quant msgid "Quants" -msgstr "" +msgstr "数量分析" #. module: stock_available_unreserved #: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" -msgstr "" +msgstr "可预订产品" #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" -msgstr "" +msgstr "现有库存(未预留)" #. module: stock_available_unreserved #: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button #: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_form_view_procurement_button msgid "Unreserved" -msgstr "" +msgstr "未预留" #. module: stock_available_unreserved #: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" -msgstr "" +msgstr "未预留:" From e078dfea0ee82a5c3852c5efc0a3fdcac900e73f Mon Sep 17 00:00:00 2001 From: Galoperd Date: Tue, 26 Nov 2019 17:59:02 +0000 Subject: [PATCH 18/24] Translated using Weblate (Spanish) Currently translated at 100.0% (13 of 13 strings) Translation: stock-logistics-warehouse-12.0/stock-logistics-warehouse-12.0-stock_available_unreserved Translate-URL: https://translation.odoo-community.org/projects/stock-logistics-warehouse-12-0/stock-logistics-warehouse-12-0-stock_available_unreserved/es/ --- stock_available_unreserved/i18n/es.po | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/stock_available_unreserved/i18n/es.po b/stock_available_unreserved/i18n/es.po index a9394355c..96189f30f 100644 --- a/stock_available_unreserved/i18n/es.po +++ b/stock_available_unreserved/i18n/es.po @@ -9,36 +9,37 @@ msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-03-04 03:58+0000\n" -"PO-Revision-Date: 2017-03-04 03:58+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"PO-Revision-Date: 2019-11-26 20:14+0000\n" +"Last-Translator: Galoperd \n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" #. module: stock_available_unreserved #: model:ir.model.fields,field_description:stock_available_unreserved.field_stock_quant__contains_unreserved msgid "Contains unreserved products" -msgstr "" +msgstr "Contiene producto no reservado" #. module: stock_available_unreserved #: model_terms:ir.ui.view,arch_db:stock_available_unreserved.quant_search_view msgid "Internal Unreserved" -msgstr "" +msgstr "No reservado interno" #. module: stock_available_unreserved #: code:addons/stock_available_unreserved/models/product.py:117 #, python-format msgid "Invalid domain operator %s" -msgstr "" +msgstr "Operador de dominio inválido %s" #. module: stock_available_unreserved #: code:addons/stock_available_unreserved/models/product.py:119 #, python-format msgid "Invalid domain right operand %s" -msgstr "" +msgstr "Operando de dominio inválido %s" #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_product_product @@ -53,27 +54,27 @@ msgstr "Plantilla de producto" #. module: stock_available_unreserved #: model:ir.model.fields,field_description:stock_available_unreserved.field_product_product__qty_available_not_res msgid "Qty Available Not Reserved" -msgstr "" +msgstr "Cant. Disponible No Reservada" #. module: stock_available_unreserved #: model:ir.model.fields,field_description:stock_available_unreserved.field_product_template__qty_available_not_res msgid "Quantity On Hand Unreserved" -msgstr "" +msgstr "Cantidad A Mano No Reservada" #. module: stock_available_unreserved #: model:ir.model,name:stock_available_unreserved.model_stock_quant msgid "Quants" -msgstr "" +msgstr "Cantidades" #. module: stock_available_unreserved #: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_search_form_view_stock msgid "Reservable Products" -msgstr "" +msgstr "Productos Reservables" #. module: stock_available_unreserved #: model:ir.actions.act_window,name:stock_available_unreserved.product_open_quants_unreserved msgid "Stock On Hand (Unreserved)" -msgstr "" +msgstr "Stock A Mano (No Reservado)" #. module: stock_available_unreserved #: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_form_view_procurement_button @@ -84,4 +85,4 @@ msgstr "No reservado" #. module: stock_available_unreserved #: model_terms:ir.ui.view,arch_db:stock_available_unreserved.product_template_kanban_stock_view msgid "Unreserved:" -msgstr "" +msgstr "No reservado:" From 2650946eacc069263e421659bb228b7d80cc5b48 Mon Sep 17 00:00:00 2001 From: Lois Rilo Date: Thu, 19 Dec 2019 16:19:14 +0100 Subject: [PATCH 19/24] [12.0][UPD] stock_available_unreserved: * update author's name after recent rebranding of Eficent to ForgeFlow. * change license to lgpl as agreed by the authors. * update readme to new format. --- stock_available_unreserved/README.rst | 69 ++- stock_available_unreserved/__init__.py | 5 - stock_available_unreserved/__manifest__.py | 10 +- stock_available_unreserved/models/__init__.py | 5 - stock_available_unreserved/models/product.py | 5 +- stock_available_unreserved/models/quant.py | 3 +- .../readme/CONTRIBUTORS.rst | 5 + .../readme/DESCRIPTION.rst | 10 + .../static/description/index.html | 430 ++++++++++++++++++ stock_available_unreserved/tests/__init__.py | 6 - .../tests/test_stock_available_unreserved.py | 5 +- 11 files changed, 499 insertions(+), 54 deletions(-) create mode 100644 stock_available_unreserved/readme/CONTRIBUTORS.rst create mode 100644 stock_available_unreserved/readme/DESCRIPTION.rst create mode 100644 stock_available_unreserved/static/description/index.html diff --git a/stock_available_unreserved/README.rst b/stock_available_unreserved/README.rst index ad650e028..d92271d30 100644 --- a/stock_available_unreserved/README.rst +++ b/stock_available_unreserved/README.rst @@ -1,11 +1,30 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - ========================== Stock Available Unreserved ========================== +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github + :target: https://github.com/OCA/stock-logistics-warehouse/tree/12.0/stock_available_unreserved + :alt: OCA/stock-logistics-warehouse +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-12-0/stock-logistics-warehouse-12-0-stock_available_unreserved + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/153/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + This module allows users to check the quantity of a stocked product that is available on-hand, and that has not yet been reserved for use anywhere else. @@ -17,51 +36,51 @@ If the warehouse personnel ensures that the unreserved quantity on hand > 0, then nobody will be stuck in pickings or manufacturing orders waiting for the availability of unreserved stock. +**Table of contents** -Usage -===== - -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/153/11.0 - +.. contents:: + :local: Bug Tracker =========== -Bugs are tracked on `GitHub Issues -`_. In case of trouble, please -check there if your issue has already been reported. If you spotted it first, -help us smashing it by providing a detailed and welcomed feedback. +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. Credits ======= -Images ------- +Authors +~~~~~~~ -* Odoo Community Association: `Icon `_. +* ForgeFlow Contributors ------------- +~~~~~~~~~~~~ -* Jordi Ballester Alomar +* Jordi Ballester Alomar * Stefan Rijnhart * Mykhailo Panarin * Atte Isopuro +* Lois Rilo +Maintainers +~~~~~~~~~~~ -Maintainer ----------- +This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org -This module is maintained by the OCA. - OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -To contribute to this module, please visit https://odoo-community.org. +This module is part of the `OCA/stock-logistics-warehouse `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/stock_available_unreserved/__init__.py b/stock_available_unreserved/__init__.py index a00d71200..0650744f6 100644 --- a/stock_available_unreserved/__init__.py +++ b/stock_available_unreserved/__init__.py @@ -1,6 +1 @@ -# Copyright 2016 ACSONE SA/NV () -# Copyright 2016 Eficent Business and IT Consulting Services S.L. -# (http://www.eficent.com) -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). - from . import models diff --git a/stock_available_unreserved/__manifest__.py b/stock_available_unreserved/__manifest__.py index 11b9efdf2..a242bad29 100644 --- a/stock_available_unreserved/__manifest__.py +++ b/stock_available_unreserved/__manifest__.py @@ -1,14 +1,12 @@ # Copyright 2018 Camptocamp SA # Copyright 2016 ACSONE SA/NV () -# Copyright 2016 Eficent Business and IT Consulting Services S.L. -# (http://www.eficent.com) -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# Copyright 2016 ForgeFlow S.L. (https://www.forgeflow.com) +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). { "name": "Stock Available Unreserved", "summary": "Quantity of stock available for immediate use", "version": "12.0.1.0.0", - "author": "Eficent Business and IT Consulting Services S.L," - "Odoo Community Association (OCA)", + "author": "ForgeFlow, Odoo Community Association (OCA)", "website": "https://github.com/OCA/stock-logistics-warehouse", "category": "Warehouse Management", "depends": [ @@ -18,5 +16,5 @@ "views/stock_quant_view.xml", "views/product_view.xml", ], - "license": "AGPL-3", + "license": "LGPL-3", } diff --git a/stock_available_unreserved/models/__init__.py b/stock_available_unreserved/models/__init__.py index e76114f16..6d26fbefb 100644 --- a/stock_available_unreserved/models/__init__.py +++ b/stock_available_unreserved/models/__init__.py @@ -1,7 +1,2 @@ -# Copyright 2016 ACSONE SA/NV () -# Copyright 2016 Eficent Business and IT Consulting Services S.L. -# (http://www.eficent.com) -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). - from . import product from . import quant diff --git a/stock_available_unreserved/models/product.py b/stock_available_unreserved/models/product.py index 8d66c164a..b6f4a6c07 100644 --- a/stock_available_unreserved/models/product.py +++ b/stock_available_unreserved/models/product.py @@ -1,8 +1,7 @@ # Copyright 2018 Camptocamp SA # Copyright 2016 ACSONE SA/NV () -# Copyright 2016 Eficent Business and IT Consulting Services S.L. -# (http://www.eficent.com) -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# Copyright 2016 ForgeFlow S.L. (https://www.forgeflow.com) +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). from odoo import api, fields, models, _ from odoo.addons import decimal_precision as dp diff --git a/stock_available_unreserved/models/quant.py b/stock_available_unreserved/models/quant.py index 625634092..164f648fe 100644 --- a/stock_available_unreserved/models/quant.py +++ b/stock_available_unreserved/models/quant.py @@ -1,5 +1,6 @@ # Copyright 2018 Camptocamp SA -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# Copyright 2016 ForgeFlow S.L. (https://www.forgeflow.com) +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). from odoo import api, fields, models diff --git a/stock_available_unreserved/readme/CONTRIBUTORS.rst b/stock_available_unreserved/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..781c431d2 --- /dev/null +++ b/stock_available_unreserved/readme/CONTRIBUTORS.rst @@ -0,0 +1,5 @@ +* Jordi Ballester Alomar +* Stefan Rijnhart +* Mykhailo Panarin +* Atte Isopuro +* Lois Rilo diff --git a/stock_available_unreserved/readme/DESCRIPTION.rst b/stock_available_unreserved/readme/DESCRIPTION.rst new file mode 100644 index 000000000..b5dfb2b6f --- /dev/null +++ b/stock_available_unreserved/readme/DESCRIPTION.rst @@ -0,0 +1,10 @@ +This module allows users to check the quantity of a stocked product that is +available on-hand, and that has not yet been reserved for use anywhere else. + +This key figure is very important during the monitoring of the warehouse +execution, because it assists users to ensure that the flow of products will +not be stuck due to a sudden unavailability of stock. + +If the warehouse personnel ensures that the unreserved quantity on hand > 0, +then nobody will be stuck in pickings or manufacturing orders waiting for +the availability of unreserved stock. diff --git a/stock_available_unreserved/static/description/index.html b/stock_available_unreserved/static/description/index.html new file mode 100644 index 000000000..4ea893043 --- /dev/null +++ b/stock_available_unreserved/static/description/index.html @@ -0,0 +1,430 @@ + + + + + + +Stock Available Unreserved + + + +
+

Stock Available Unreserved

+ + +

Beta License: LGPL-3 OCA/stock-logistics-warehouse Translate me on Weblate Try me on Runbot

+

This module allows users to check the quantity of a stocked product that is +available on-hand, and that has not yet been reserved for use anywhere else.

+

This key figure is very important during the monitoring of the warehouse +execution, because it assists users to ensure that the flow of products will +not be stuck due to a sudden unavailability of stock.

+

If the warehouse personnel ensures that the unreserved quantity on hand > 0, +then nobody will be stuck in pickings or manufacturing orders waiting for +the availability of unreserved stock.

+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • ForgeFlow
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/stock-logistics-warehouse project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/stock_available_unreserved/tests/__init__.py b/stock_available_unreserved/tests/__init__.py index c9c70c559..96c954ccd 100644 --- a/stock_available_unreserved/tests/__init__.py +++ b/stock_available_unreserved/tests/__init__.py @@ -1,7 +1 @@ -# Copyright 2016 ACSONE SA/NV () -# Copyright 2016 Eficent Business and IT Consulting Services S.L. -# Copyright 2019 JARSA Sistemas S.A. de C.V. -# (http://www.eficent.com) -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). - from . import test_stock_available_unreserved diff --git a/stock_available_unreserved/tests/test_stock_available_unreserved.py b/stock_available_unreserved/tests/test_stock_available_unreserved.py index 8fb8ff836..3a2368171 100644 --- a/stock_available_unreserved/tests/test_stock_available_unreserved.py +++ b/stock_available_unreserved/tests/test_stock_available_unreserved.py @@ -1,10 +1,9 @@ # Copyright 2018 Camptocamp SA # Copyright 2016 ACSONE SA/NV () -# Copyright 2016 Eficent Business and IT Consulting Services S.L. -# (http://www.eficent.com) +# Copyright 2016 ForgeFlow S.L. (https://www.forgeflow.com) # Copyright 2016 Therp BV # Copyright 2019 JARSA Sistemas S.A. de C.V. -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). from odoo.tests.common import SavepointCase From 2e07df7930de4f7669aa246ae70ebc825b6d7cd2 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Fri, 20 Dec 2019 10:10:50 +0000 Subject: [PATCH 20/24] [UPD] Update stock_available_unreserved.pot --- .../i18n/stock_available_unreserved.pot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stock_available_unreserved/i18n/stock_available_unreserved.pot b/stock_available_unreserved/i18n/stock_available_unreserved.pot index 2ca3afc9e..50add1a2f 100644 --- a/stock_available_unreserved/i18n/stock_available_unreserved.pot +++ b/stock_available_unreserved/i18n/stock_available_unreserved.pot @@ -24,13 +24,13 @@ msgid "Internal Unreserved" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:117 +#: code:addons/stock_available_unreserved/models/product.py:116 #, python-format msgid "Invalid domain operator %s" msgstr "" #. module: stock_available_unreserved -#: code:addons/stock_available_unreserved/models/product.py:119 +#: code:addons/stock_available_unreserved/models/product.py:118 #, python-format msgid "Invalid domain right operand %s" msgstr "" From e5920fa3dc93097ad35c1c8c76757ecf95e62ce6 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Fri, 20 Dec 2019 10:58:41 +0000 Subject: [PATCH 21/24] [UPD] README.rst --- stock_available_unreserved/static/description/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stock_available_unreserved/static/description/index.html b/stock_available_unreserved/static/description/index.html index 4ea893043..b6cd7b0b8 100644 --- a/stock_available_unreserved/static/description/index.html +++ b/stock_available_unreserved/static/description/index.html @@ -3,7 +3,7 @@ - + Stock Available Unreserved