From 6d1412702b01017e9420412bfcdbbf6ae72c9034 Mon Sep 17 00:00:00 2001 From: Jordi Ballester Date: Tue, 30 May 2017 14:39:21 +0200 Subject: [PATCH 01/43] [ADD] new module 'stock_demand_estimate' --- stock_demand_estimate/README.rst | 76 +++++++ stock_demand_estimate/__init__.py | 7 + stock_demand_estimate/__openerp__.py | 25 +++ stock_demand_estimate/models/__init__.py | 7 + .../models/stock_demand_estimate.py | 82 ++++++++ .../models/stock_demand_estimate_period.py | 49 +++++ .../security/ir.model.access.csv | 5 + .../security/stock_security.xml | 22 ++ .../static/description/icon.png | Bin 0 -> 9455 bytes .../stock_demand_estimate_period_view.xml | 49 +++++ .../views/stock_demand_estimate_view.xml | 55 +++++ stock_demand_estimate/wizards/__init__.py | 6 + .../wizards/stock_demand_estimate_wizard.py | 189 ++++++++++++++++++ .../stock_demand_estimate_wizard_view.xml | 85 ++++++++ 14 files changed, 657 insertions(+) create mode 100644 stock_demand_estimate/README.rst create mode 100644 stock_demand_estimate/__init__.py create mode 100644 stock_demand_estimate/__openerp__.py create mode 100644 stock_demand_estimate/models/__init__.py create mode 100644 stock_demand_estimate/models/stock_demand_estimate.py create mode 100644 stock_demand_estimate/models/stock_demand_estimate_period.py create mode 100644 stock_demand_estimate/security/ir.model.access.csv create mode 100644 stock_demand_estimate/security/stock_security.xml create mode 100644 stock_demand_estimate/static/description/icon.png create mode 100644 stock_demand_estimate/views/stock_demand_estimate_period_view.xml create mode 100644 stock_demand_estimate/views/stock_demand_estimate_view.xml create mode 100644 stock_demand_estimate/wizards/__init__.py create mode 100644 stock_demand_estimate/wizards/stock_demand_estimate_wizard.py create mode 100644 stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml diff --git a/stock_demand_estimate/README.rst b/stock_demand_estimate/README.rst new file mode 100644 index 000000000..d3ca4b1c8 --- /dev/null +++ b/stock_demand_estimate/README.rst @@ -0,0 +1,76 @@ +.. 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 Demand Estimate +===================== + +This module allows to create demand estimates for a given product and +location, on configurable time periods. + +The module does not provide in itself any specific usage of the estimates. + +Installation +============ + +This module relies on the OCA module '2D matrix for x2many fields', and can +be downloaded from: +* Github: https://github.com/OCA/web/tree/8.0/web_widget_x2many_2d_matrix + + +Usage +===== + +Go to 'Warehouse / Configuration / Demand Estimate Periods' and define your +estimating periods (monthly or weekly). + + +Go to 'Warehouse / Demand Planning / Create Demand Estimates' to create or +update your demand estimates. + +Go to 'Warehouse / Demand Planning / Demand Estimates' to review the +estimates created. + + +.. 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/8.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_demand_estimate/__init__.py b/stock_demand_estimate/__init__.py new file mode 100644 index 000000000..851fa8da7 --- /dev/null +++ b/stock_demand_estimate/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +# 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 +from . import wizards diff --git a/stock_demand_estimate/__openerp__.py b/stock_demand_estimate/__openerp__.py new file mode 100644 index 000000000..3d838b25f --- /dev/null +++ b/stock_demand_estimate/__openerp__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# 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 Demand Estimate", + "summary": "Allows to create demand estimates.", + "version": "8.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", + "web_widget_x2many_2d_matrix" + ], + "data": ["security/ir.model.access.csv", + "security/stock_security.xml", + "views/stock_demand_estimate_period_view.xml", + "views/stock_demand_estimate_view.xml", + "wizards/stock_demand_estimate_wizard_view.xml", + ], + "license": "AGPL-3", + 'installable': True, + 'application': True, +} diff --git a/stock_demand_estimate/models/__init__.py b/stock_demand_estimate/models/__init__.py new file mode 100644 index 000000000..7e93e257a --- /dev/null +++ b/stock_demand_estimate/models/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +# 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 stock_demand_estimate_period +from . import stock_demand_estimate diff --git a/stock_demand_estimate/models/stock_demand_estimate.py b/stock_demand_estimate/models/stock_demand_estimate.py new file mode 100644 index 000000000..d4dc48091 --- /dev/null +++ b/stock_demand_estimate/models/stock_demand_estimate.py @@ -0,0 +1,82 @@ +# -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# © 2016 Aleph Objects, Inc. (https://www.alephobjects.com/) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from openerp import api, fields, models, _ +import openerp.addons.decimal_precision as dp +from openerp.exceptions import Warning as UserError + + +class StockDemandEstimate(models.Model): + _name = 'stock.demand.estimate' + _description = 'Stock Demand Estimate Line' + + @api.multi + @api.depends('product_id', 'product_uom', 'product_uom_qty') + def _compute_product_qty(self): + for rec in self: + if rec.product_uom: + rec.product_qty = rec.product_uom._compute_qty( + rec.product_id.uom_id.id, rec.product_uom_qty, + rec.product_uom.id) + + def _set_product_qty(self): + raise UserError(_('The requested operation cannot be ' + 'processed because of a programming error ' + 'setting the `product_qty` field instead ' + 'of the `product_uom_qty`.')) + + @api.multi + def _compute_daily_qty(self): + for rec in self: + rec.daily_qty = rec.product_qty / rec.period_id.days + + period_id = fields.Many2one( + comodel_name="stock.demand.estimate.period", + string="Estimating Period", + required=True) + product_id = fields.Many2one(comodel_name="product.product", + string="Product", required=True) + product_uom = fields.Many2one(comodel_name="product.uom", + string="Unit of measure") + location_id = fields.Many2one(comodel_name="stock.location", + string="Location", required=True) + product_uom_qty = fields.Float( + string="Quantity", + digits_compute=dp.get_precision('Product Unit of Measure')) + product_qty = fields.Float('Real Quantity', compute='_compute_product_qty', + inverse='_set_product_qty', digits=0, + store=True, + help='Quantity in the default UoM of the ' + 'product', readonly=True) + daily_qty = fields.Float(string='Quantity / Day', + compute='_compute_daily_qty') + company_id = fields.Many2one( + comodel_name='res.company', string='Company', required=True, + default=lambda self: self.env['res.company']._company_default_get( + 'stock.demand.estimate')) + + @api.multi + def name_get(self): + res = [] + for rec in self: + name = "%s - %s - %s" % (rec.period_id.name, rec.product_id.name, + rec.location_id.name) + res.append((rec.id, name)) + return res + + @api.model + def get_quantity_by_date_range(self, date_from, date_to): + # Check if the dates overlap with the period + period_date_from = fields.Date.from_string(self.period_id.date_from) + period_date_to = fields.Date.from_string(self.period_id.date_to) + + if date_from <= period_date_to and period_date_from <= date_to: + overlap_date_from = max(period_date_from, date_from) + overlap_date_to = min(period_date_to, date_to) + days = (abs(overlap_date_to-overlap_date_from)).days + 1 + return days * self.daily_qty + return 0.0 + diff --git a/stock_demand_estimate/models/stock_demand_estimate_period.py b/stock_demand_estimate/models/stock_demand_estimate_period.py new file mode 100644 index 000000000..cb62e6285 --- /dev/null +++ b/stock_demand_estimate/models/stock_demand_estimate_period.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# © 2016 Aleph Objects, Inc. (https://www.alephobjects.com/) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from openerp import api, fields, models, _ +from openerp.exceptions import Warning as UserError + + +class StockDemandEstimatePeriod(models.Model): + _name = 'stock.demand.estimate.period' + _description = 'Stock Demand Estimate Period' + _order = 'date_from' + + @api.multi + @api.depends('date_from', 'date_to') + def _compute_days(self): + for rec in self: + if rec.date_from and rec.date_to: + rec.days = (fields.Date.from_string(rec.date_to) - + fields.Date.from_string(rec.date_from)).days + 1 + + name = fields.Char(string="Name", required=True) + date_from = fields.Date(string="Date From", required=True) + date_to = fields.Date(string="Date To", required=True) + days = fields.Float(string="Days between dates", + compute='_compute_days', store=True, readonly=True) + + estimate_ids = fields.One2many( + comodel_name="stock.demand.estimate", + inverse_name="period_id") + + company_id = fields.Many2one( + comodel_name='res.company', string='Company', required=True, + default=lambda self: self.env['res.company']._company_default_get( + 'stock.demand.estimate.period')) + + @api.multi + @api.constrains('name', 'date_from', 'date_to') + def _check_period(self): + for period in self: + self.env.cr.execute('SELECT id, date_from, date_to \ + FROM stock_demand_estimate_period \ + WHERE (date_from <= %s and %s <= date_to) \ + AND id <> %s', (period.date_to, period.date_from, period.id)) + res = self.env.cr.fetchall() + if res: + raise UserError(_('Two periods cannot overlap.')) diff --git a/stock_demand_estimate/security/ir.model.access.csv b/stock_demand_estimate/security/ir.model.access.csv new file mode 100644 index 000000000..715896e64 --- /dev/null +++ b/stock_demand_estimate/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_stock_demand_estimate,stock.orderpoint.demand.estimate,model_stock_demand_estimate,stock.group_stock_user,1,0,0,0 +access_stock_demand_estimate_system,stock.orderpoint.demand.estimate system,model_stock_demand_estimate,stock.group_stock_manager,1,1,1,1 +access_stock_demand_estimate_period,stock.orderpoint.demand.estimate.period,model_stock_demand_estimate_period,stock.group_stock_user,1,0,0,0 +access_stock_demand_estimate_period_system,stock.orderpoint.demand.estimate.period system,model_stock_demand_estimate_period,stock.group_stock_manager,1,1,1,1 diff --git a/stock_demand_estimate/security/stock_security.xml b/stock_demand_estimate/security/stock_security.xml new file mode 100644 index 000000000..c447a085c --- /dev/null +++ b/stock_demand_estimate/security/stock_security.xml @@ -0,0 +1,22 @@ + + + + + + + Stock demand estimate multi-company + + + ['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])] + + + + Stock demand estimate multi-company + + + ['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])] + + + + diff --git a/stock_demand_estimate/static/description/icon.png b/stock_demand_estimate/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_demand_estimate/views/stock_demand_estimate_period_view.xml b/stock_demand_estimate/views/stock_demand_estimate_period_view.xml new file mode 100644 index 000000000..d32933cee --- /dev/null +++ b/stock_demand_estimate/views/stock_demand_estimate_period_view.xml @@ -0,0 +1,49 @@ + + + + + + stock.demand.estimate.period.tree + stock.demand.estimate.period + + + + + + + + + + + + stock.demand.estimate.period.search + stock.demand.estimate.period + + + + + + + + + + + Stock Demand Estimate Periods + ir.actions.act_window + stock.demand.estimate.period + form + tree,form + + + + + + + diff --git a/stock_demand_estimate/views/stock_demand_estimate_view.xml b/stock_demand_estimate/views/stock_demand_estimate_view.xml new file mode 100644 index 000000000..2b2f0f981 --- /dev/null +++ b/stock_demand_estimate/views/stock_demand_estimate_view.xml @@ -0,0 +1,55 @@ + + + + + + stock.demand.estimate.tree + stock.demand.estimate + + + + + + + + + + + + + + + stock.demand.estimate.search + stock.demand.estimate + + + + + + + + + + + Stock Demand Estimates + ir.actions.act_window + stock.demand.estimate + form + tree,form + + + + + + + + + diff --git a/stock_demand_estimate/wizards/__init__.py b/stock_demand_estimate/wizards/__init__.py new file mode 100644 index 000000000..05c5fae45 --- /dev/null +++ b/stock_demand_estimate/wizards/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +# 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 stock_demand_estimate_wizard diff --git a/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py b/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py new file mode 100644 index 000000000..8d97c95d2 --- /dev/null +++ b/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py @@ -0,0 +1,189 @@ +# -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# © 2016 Aleph Objects, Inc. (https://www.alephobjects.com/) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from openerp import api, fields, models, _ +import openerp.addons.decimal_precision as dp +from openerp.exceptions import Warning as UserError + +_PERIOD_SELECTION = [ + ('monthly', 'Monthly'), + ('weekly', 'Weekly') +] + + +class StockDemandEstimateSheet(models.TransientModel): + _name = 'stock.demand.estimate.sheet' + _description = 'Stock Demand Estimate Sheet' + + def _default_date_from(self): + return self.env.context.get('date_from', False) + + def _default_date_to(self): + return self.env.context.get('date_to', False) + + def _default_location_id(self): + location_id = self.env.context.get('location_id', False) + if location_id: + return self.env['stock.location'].browse(location_id) + else: + return False + + def _default_estimate_ids(self): + date_from = self.env.context.get('date_from', False) + date_to = self.env.context.get('date_to', False) + location_id = self.env.context.get('location_id', False) + product_ids = self.env.context.get('product_ids', False) + domain = [('date_from', '>=', date_from), + ('date_to', '<=', date_to)] + periods = self.env['stock.demand.estimate.period'].search( + domain) + products = self.env['product.product'].browse(product_ids) + + lines = [] + for product in products: + name_y = '' + if product.default_code: + name_y += '[%s] ' % product.default_code + name_y += product.name + name_y += ' - %s' % product.uom_id.name + for period in periods: + estimates = self.env['stock.demand.estimate'].search( + [('product_id', '=', product.id), + ('period_id', '=', period.id), + ('location_id', '=', location_id)]) + if estimates: + lines.append((0, 0, { + 'value_x': period.name, + 'value_y': name_y, + 'period_id': period.id, + 'product_id': product.id, + 'product_uom': estimates[0].product_uom.id, + 'location_id': location_id, + 'estimate_id': estimates[0].id, + 'product_uom_qty': estimates[0].product_uom_qty + })) + else: + lines.append((0, 0, { + 'value_x': period.name, + 'value_y': name_y, + 'period_id': period.id, + 'product_id': product.id, + 'product_uom': product.uom_id.id, + 'location_id': location_id, + 'product_uom_qty': 0.0 + })) + return lines + + date_from = fields.Date(string="Date From", readonly=True, + default=_default_date_from) + date_to = fields.Date(string="Date From", readonly=True, + default=_default_date_to) + location_id = fields.Many2one(comodel_name="stock.location", + string="Location", readonly=True, + default=_default_location_id) + line_ids = fields.Many2many( + string="Estimates", + comodel_name='stock.demand.estimate.sheet.line', + rel='stock_demand_estimate_line_rel', + default=_default_estimate_ids) + + @api.model + def _prepare_estimate_data(self, line): + return { + 'period_id': line.period_id.id, + 'product_id': line.product_id.id, + 'location_id': line.location_id.id, + 'product_uom_qty': line.product_uom_qty, + 'product_uom': line.product_id.uom_id.id, + } + + @api.multi + def button_validate(self): + res = [] + for line in self.line_ids: + if line.estimate_id: + line.estimate_id.product_uom_qty = line.product_uom_qty + res.append(line.estimate_id.id) + else: + data = self._prepare_estimate_data(line) + estimate = self.env['stock.demand.estimate'].create( + data) + res.append(estimate.id) + res = { + 'domain': [('id', 'in', res)], + 'name': _('Stock Demand Estimates'), + 'src_model': 'stock.demand.estimate.wizard', + 'view_type': 'form', + 'view_mode': 'tree', + 'res_model': 'stock.demand.estimate', + 'type': 'ir.actions.act_window' + } + return res + + +class StockDemandEstimateSheetLine(models.TransientModel): + _name = 'stock.demand.estimate.sheet.line' + _description = 'Stock Demand Estimate Sheet Line' + + estimate_id = fields.Many2one(comodel_name='stock.demand.estimate') + period_id = fields.Many2one( + comodel_name='stock.demand.estimate.period', + string='Period') + location_id = fields.Many2one(comodel_name='stock.location', + string="Stock Location") + product_id = fields.Many2one(comodel_name='product.product', + string='Product') + value_x = fields.Char(string='Period') + value_y = fields.Char(string='Product') + product_uom_qty = fields.Float( + string="Quantity", digits_compute=dp.get_precision('Product UoM')) + + +class DemandEstimateWizard(models.TransientModel): + _name = 'stock.demand.estimate.wizard' + _description = 'Stock Demand Estimate Wizard' + + date_from = fields.Date(string="Date From", required=True) + date_to = fields.Date(string="Date To", required=True) + location_id = fields.Many2one(comodel_name="stock.location", + string="Location", required=True) + product_ids = fields.Many2many( + comodel_name="product.product", + string="Products") + + @api.multi + def _prepare_demand_estimate_sheet(self): + self.ensure_one() + return { + 'date_from': self.date_from, + 'date_to': self.date_to, + 'location_id': self.location_id.id, + } + + @api.multi + def create_sheet(self): + self.ensure_one() + if not self.product_ids: + raise UserError(_('You must select at lease one product.')) + + context = { + 'date_from': self.date_from, + 'date_to': self.date_to, + 'location_id': self.location_id.id, + 'product_ids': self.product_ids.ids + } + res = { + 'context': context, + 'name': _('Estimate Sheet'), + 'src_model': 'stock.demand.estimate.wizard', + 'view_type': 'form', + 'view_mode': 'form', + 'target': 'new', + 'res_model': 'stock.demand.estimate.sheet', + 'type': 'ir.actions.act_window' + } + + return res diff --git a/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml b/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml new file mode 100644 index 000000000..af5926770 --- /dev/null +++ b/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml @@ -0,0 +1,85 @@ + + + + + + stock.demand.estimate.sheet.form + stock.demand.estimate.sheet + +
+ + + +
+ + + + +
+ + + +
+
+ + + + + + stock.demand.estimate.wizard.form + stock.demand.estimate.wizard + +
+ + + +
+ + + + +
+ + + +
+
+ + + + + + + + + + From f52949fd4efb8fde266ce8facd95dd757eb7fe2f Mon Sep 17 00:00:00 2001 From: Jordi Ballester Date: Tue, 30 May 2017 16:50:47 +0200 Subject: [PATCH 02/43] [IMP] stock_demand_estimate: replace demand estimate periods with date range --- stock_demand_estimate/README.rst | 9 ++- stock_demand_estimate/__openerp__.py | 4 +- stock_demand_estimate/models/__init__.py | 2 +- stock_demand_estimate/models/date_range.py | 22 +++++ .../models/stock_demand_estimate.py | 27 ++++--- .../models/stock_demand_estimate_period.py | 49 ----------- .../security/ir.model.access.csv | 2 - .../security/stock_security.xml | 24 ++---- .../stock_demand_estimate_period_view.xml | 49 ----------- .../views/stock_demand_estimate_view.xml | 4 +- .../wizards/stock_demand_estimate_wizard.py | 81 +++++++++++-------- .../stock_demand_estimate_wizard_view.xml | 14 ++-- 12 files changed, 111 insertions(+), 176 deletions(-) create mode 100644 stock_demand_estimate/models/date_range.py delete mode 100644 stock_demand_estimate/models/stock_demand_estimate_period.py delete mode 100644 stock_demand_estimate/views/stock_demand_estimate_period_view.xml diff --git a/stock_demand_estimate/README.rst b/stock_demand_estimate/README.rst index d3ca4b1c8..2fba92c0f 100644 --- a/stock_demand_estimate/README.rst +++ b/stock_demand_estimate/README.rst @@ -14,9 +14,12 @@ The module does not provide in itself any specific usage of the estimates. Installation ============ -This module relies on the OCA module '2D matrix for x2many fields', and can -be downloaded from: -* Github: https://github.com/OCA/web/tree/8.0/web_widget_x2many_2d_matrix +This module relies on: + +* The OCA module '2D matrix for x2many fields', and can be downloaded from + Github: https://github.com/OCA/web/tree/9.0/web_widget_x2many_2d_matrix +* The OCA module 'Date Range', and can be downloaded from + Github: https://github.com/OCA/server-tools/tree/9.0/date_range Usage diff --git a/stock_demand_estimate/__openerp__.py b/stock_demand_estimate/__openerp__.py index 3d838b25f..d2b165a19 100644 --- a/stock_demand_estimate/__openerp__.py +++ b/stock_demand_estimate/__openerp__.py @@ -11,11 +11,11 @@ "website": "https://www.odoo-community.org", "category": "Warehouse Management", "depends": ["stock", - "web_widget_x2many_2d_matrix" + "web_widget_x2many_2d_matrix", + "date_range" ], "data": ["security/ir.model.access.csv", "security/stock_security.xml", - "views/stock_demand_estimate_period_view.xml", "views/stock_demand_estimate_view.xml", "wizards/stock_demand_estimate_wizard_view.xml", ], diff --git a/stock_demand_estimate/models/__init__.py b/stock_demand_estimate/models/__init__.py index 7e93e257a..55c1477c2 100644 --- a/stock_demand_estimate/models/__init__.py +++ b/stock_demand_estimate/models/__init__.py @@ -3,5 +3,5 @@ # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from . import stock_demand_estimate_period from . import stock_demand_estimate +from . import date_range diff --git a/stock_demand_estimate/models/date_range.py b/stock_demand_estimate/models/date_range.py new file mode 100644 index 000000000..34321dc34 --- /dev/null +++ b/stock_demand_estimate/models/date_range.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# © 2016 ACSONE SA/NV () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from openerp import api, fields, models +from openerp.tools.translate import _ +from openerp.exceptions import ValidationError + + +class DateRange(models.Model): + _inherit = "date.range" + + @api.multi + @api.depends('date_start', 'date_end') + def _compute_days(self): + for rec in self: + if rec.date_start and rec.date_end: + rec.days = (fields.Date.from_string(rec.date_start) - + fields.Date.from_string(rec.date_end)).days + 1 + + days = fields.Float(string="Days between dates", + compute='_compute_days', store=True, readonly=True) diff --git a/stock_demand_estimate/models/stock_demand_estimate.py b/stock_demand_estimate/models/stock_demand_estimate.py index d4dc48091..8afcd8770 100644 --- a/stock_demand_estimate/models/stock_demand_estimate.py +++ b/stock_demand_estimate/models/stock_demand_estimate.py @@ -31,10 +31,10 @@ class StockDemandEstimate(models.Model): @api.multi def _compute_daily_qty(self): for rec in self: - rec.daily_qty = rec.product_qty / rec.period_id.days + rec.daily_qty = rec.product_qty / rec.date_range_id.days - period_id = fields.Many2one( - comodel_name="stock.demand.estimate.period", + date_range_id = fields.Many2one( + comodel_name="date.range", string="Estimating Period", required=True) product_id = fields.Many2one(comodel_name="product.product", @@ -62,21 +62,26 @@ class StockDemandEstimate(models.Model): def name_get(self): res = [] for rec in self: - name = "%s - %s - %s" % (rec.period_id.name, rec.product_id.name, + name = "%s - %s - %s" % (rec.date_range_id.name, rec.product_id.name, rec.location_id.name) res.append((rec.id, name)) return res @api.model - def get_quantity_by_date_range(self, date_from, date_to): + def get_quantity_by_date_range(self, date_start, date_end): # Check if the dates overlap with the period - period_date_from = fields.Date.from_string(self.period_id.date_from) - period_date_to = fields.Date.from_string(self.period_id.date_to) + period_date_start = fields.Date.from_string( + self.date_range_id.date_start) + period_date_end = fields.Date.from_string( + self.date_range_id.date_end) - if date_from <= period_date_to and period_date_from <= date_to: - overlap_date_from = max(period_date_from, date_from) - overlap_date_to = min(period_date_to, date_to) - days = (abs(overlap_date_to-overlap_date_from)).days + 1 + # We need only the periods that overlap + # the dates introduced by the user. + if (date_start <= period_date_start <= date_end + or date_start <= period_date_end <= date_end): + overlap_date_start = max(period_date_start, date_start) + overlap_date_end = min(period_date_end, date_end) + days = (abs(overlap_date_end-overlap_date_start)).days + 1 return days * self.daily_qty return 0.0 diff --git a/stock_demand_estimate/models/stock_demand_estimate_period.py b/stock_demand_estimate/models/stock_demand_estimate_period.py deleted file mode 100644 index cb62e6285..000000000 --- a/stock_demand_estimate/models/stock_demand_estimate_period.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2016 Eficent Business and IT Consulting Services S.L. -# (http://www.eficent.com) -# © 2016 Aleph Objects, Inc. (https://www.alephobjects.com/) -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). - -from openerp import api, fields, models, _ -from openerp.exceptions import Warning as UserError - - -class StockDemandEstimatePeriod(models.Model): - _name = 'stock.demand.estimate.period' - _description = 'Stock Demand Estimate Period' - _order = 'date_from' - - @api.multi - @api.depends('date_from', 'date_to') - def _compute_days(self): - for rec in self: - if rec.date_from and rec.date_to: - rec.days = (fields.Date.from_string(rec.date_to) - - fields.Date.from_string(rec.date_from)).days + 1 - - name = fields.Char(string="Name", required=True) - date_from = fields.Date(string="Date From", required=True) - date_to = fields.Date(string="Date To", required=True) - days = fields.Float(string="Days between dates", - compute='_compute_days', store=True, readonly=True) - - estimate_ids = fields.One2many( - comodel_name="stock.demand.estimate", - inverse_name="period_id") - - company_id = fields.Many2one( - comodel_name='res.company', string='Company', required=True, - default=lambda self: self.env['res.company']._company_default_get( - 'stock.demand.estimate.period')) - - @api.multi - @api.constrains('name', 'date_from', 'date_to') - def _check_period(self): - for period in self: - self.env.cr.execute('SELECT id, date_from, date_to \ - FROM stock_demand_estimate_period \ - WHERE (date_from <= %s and %s <= date_to) \ - AND id <> %s', (period.date_to, period.date_from, period.id)) - res = self.env.cr.fetchall() - if res: - raise UserError(_('Two periods cannot overlap.')) diff --git a/stock_demand_estimate/security/ir.model.access.csv b/stock_demand_estimate/security/ir.model.access.csv index 715896e64..a250f8113 100644 --- a/stock_demand_estimate/security/ir.model.access.csv +++ b/stock_demand_estimate/security/ir.model.access.csv @@ -1,5 +1,3 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink access_stock_demand_estimate,stock.orderpoint.demand.estimate,model_stock_demand_estimate,stock.group_stock_user,1,0,0,0 access_stock_demand_estimate_system,stock.orderpoint.demand.estimate system,model_stock_demand_estimate,stock.group_stock_manager,1,1,1,1 -access_stock_demand_estimate_period,stock.orderpoint.demand.estimate.period,model_stock_demand_estimate_period,stock.group_stock_user,1,0,0,0 -access_stock_demand_estimate_period_system,stock.orderpoint.demand.estimate.period system,model_stock_demand_estimate_period,stock.group_stock_manager,1,1,1,1 diff --git a/stock_demand_estimate/security/stock_security.xml b/stock_demand_estimate/security/stock_security.xml index c447a085c..7dc10eb89 100644 --- a/stock_demand_estimate/security/stock_security.xml +++ b/stock_demand_estimate/security/stock_security.xml @@ -1,22 +1,14 @@ - + - - Stock demand estimate multi-company - - - ['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])] - + + Stock demand estimate multi-company + + + ['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])] + - - Stock demand estimate multi-company - - - ['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])] - - - + diff --git a/stock_demand_estimate/views/stock_demand_estimate_period_view.xml b/stock_demand_estimate/views/stock_demand_estimate_period_view.xml deleted file mode 100644 index d32933cee..000000000 --- a/stock_demand_estimate/views/stock_demand_estimate_period_view.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - stock.demand.estimate.period.tree - stock.demand.estimate.period - - - - - - - - - - - - stock.demand.estimate.period.search - stock.demand.estimate.period - - - - - - - - - - - Stock Demand Estimate Periods - ir.actions.act_window - stock.demand.estimate.period - form - tree,form - - - - - - - diff --git a/stock_demand_estimate/views/stock_demand_estimate_view.xml b/stock_demand_estimate/views/stock_demand_estimate_view.xml index 2b2f0f981..343ba25a2 100644 --- a/stock_demand_estimate/views/stock_demand_estimate_view.xml +++ b/stock_demand_estimate/views/stock_demand_estimate_view.xml @@ -8,7 +8,7 @@ stock.demand.estimate - + @@ -25,7 +25,7 @@ stock.demand.estimate - + diff --git a/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py b/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py index 8d97c95d2..dc4c8f405 100644 --- a/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py +++ b/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py @@ -8,21 +8,16 @@ from openerp import api, fields, models, _ import openerp.addons.decimal_precision as dp from openerp.exceptions import Warning as UserError -_PERIOD_SELECTION = [ - ('monthly', 'Monthly'), - ('weekly', 'Weekly') -] - class StockDemandEstimateSheet(models.TransientModel): _name = 'stock.demand.estimate.sheet' _description = 'Stock Demand Estimate Sheet' - def _default_date_from(self): - return self.env.context.get('date_from', False) + def _default_date_start(self): + return self.env.context.get('date_start', False) - def _default_date_to(self): - return self.env.context.get('date_to', False) + def _default_date_end(self): + return self.env.context.get('date_end', False) def _default_location_id(self): location_id = self.env.context.get('location_id', False) @@ -32,13 +27,24 @@ class StockDemandEstimateSheet(models.TransientModel): return False def _default_estimate_ids(self): - date_from = self.env.context.get('date_from', False) - date_to = self.env.context.get('date_to', False) - location_id = self.env.context.get('location_id', False) - product_ids = self.env.context.get('product_ids', False) - domain = [('date_from', '>=', date_from), - ('date_to', '<=', date_to)] - periods = self.env['stock.demand.estimate.period'].search( + date_start = self.env.context.get('default_date_start', False) + date_end = self.env.context.get('default_date_end', False) + date_range_type_id = self.env.context.get('default_date_range_type_id', + False) + location_id = self.env.context.get('default_location_id', False) + product_ids = self.env.context.get('default_product_ids', False) + domain = [('type_id', '=', date_range_type_id), '|', '&', + ('date_start', '>=', date_start), + ('date_start', '<=', date_end), + '&', + ('date_end', '>=', date_start), + ('date_end', '<=', date_end)] + periods = self.env['date.range'].search( + domain) + domain = [('type_id', '=', date_range_type_id), + ('date_start', '<=', date_start), + ('date_end', '>=', date_start)] + periods |= self.env['date.range'].search( domain) products = self.env['product.product'].browse(product_ids) @@ -52,13 +58,13 @@ class StockDemandEstimateSheet(models.TransientModel): for period in periods: estimates = self.env['stock.demand.estimate'].search( [('product_id', '=', product.id), - ('period_id', '=', period.id), + ('date_range_id', '=', period.id), ('location_id', '=', location_id)]) if estimates: lines.append((0, 0, { 'value_x': period.name, 'value_y': name_y, - 'period_id': period.id, + 'date_range_id': period.id, 'product_id': product.id, 'product_uom': estimates[0].product_uom.id, 'location_id': location_id, @@ -69,7 +75,7 @@ class StockDemandEstimateSheet(models.TransientModel): lines.append((0, 0, { 'value_x': period.name, 'value_y': name_y, - 'period_id': period.id, + 'date_range_id': period.id, 'product_id': product.id, 'product_uom': product.uom_id.id, 'location_id': location_id, @@ -77,13 +83,13 @@ class StockDemandEstimateSheet(models.TransientModel): })) return lines - date_from = fields.Date(string="Date From", readonly=True, - default=_default_date_from) - date_to = fields.Date(string="Date From", readonly=True, - default=_default_date_to) + date_start = fields.Date(string="Date From", readonly=True) + date_end = fields.Date(string="Date From", readonly=True) + date_range_type_id = fields.Many2one(string='Date Range Type', + comodel_name='date.range.type', + readonly=True) location_id = fields.Many2one(comodel_name="stock.location", - string="Location", readonly=True, - default=_default_location_id) + string="Location", readonly=True) line_ids = fields.Many2many( string="Estimates", comodel_name='stock.demand.estimate.sheet.line', @@ -93,7 +99,7 @@ class StockDemandEstimateSheet(models.TransientModel): @api.model def _prepare_estimate_data(self, line): return { - 'period_id': line.period_id.id, + 'date_range_id': line.date_range_id.id, 'product_id': line.product_id.id, 'location_id': line.location_id.id, 'product_uom_qty': line.product_uom_qty, @@ -129,7 +135,7 @@ class StockDemandEstimateSheetLine(models.TransientModel): _description = 'Stock Demand Estimate Sheet Line' estimate_id = fields.Many2one(comodel_name='stock.demand.estimate') - period_id = fields.Many2one( + date_range_id = fields.Many2one( comodel_name='stock.demand.estimate.period', string='Period') location_id = fields.Many2one(comodel_name='stock.location', @@ -146,8 +152,11 @@ class DemandEstimateWizard(models.TransientModel): _name = 'stock.demand.estimate.wizard' _description = 'Stock Demand Estimate Wizard' - date_from = fields.Date(string="Date From", required=True) - date_to = fields.Date(string="Date To", required=True) + date_start = fields.Date(string="Date From", required=True) + date_end = fields.Date(string="Date To", required=True) + date_range_type_id = fields.Many2one(string='Date Range Type', + comodel_name='date.range.type', + required=True) location_id = fields.Many2one(comodel_name="stock.location", string="Location", required=True) product_ids = fields.Many2many( @@ -158,8 +167,9 @@ class DemandEstimateWizard(models.TransientModel): def _prepare_demand_estimate_sheet(self): self.ensure_one() return { - 'date_from': self.date_from, - 'date_to': self.date_to, + 'date_start': self.date_start, + 'date_end': self.date_end, + 'date_range_type_id': self.date_range_type_id.id, 'location_id': self.location_id.id, } @@ -170,10 +180,11 @@ class DemandEstimateWizard(models.TransientModel): raise UserError(_('You must select at lease one product.')) context = { - 'date_from': self.date_from, - 'date_to': self.date_to, - 'location_id': self.location_id.id, - 'product_ids': self.product_ids.ids + 'default_date_start': self.date_start, + 'default_date_end': self.date_end, + 'default_date_range_type_id': self.date_range_type_id.id, + 'default_location_id': self.location_id.id, + 'default_product_ids': self.product_ids.ids } res = { 'context': context, diff --git a/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml b/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml index af5926770..5753a5a3b 100644 --- a/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml +++ b/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml @@ -10,11 +10,12 @@
- -
+ + @@ -47,10 +48,11 @@ - -
+ From 4cef761d3fdd8e83cafe63a23386825b52ebf8fb Mon Sep 17 00:00:00 2001 From: Jordi Ballester Date: Tue, 30 May 2017 17:33:17 +0200 Subject: [PATCH 03/43] [IMP] stock_demand_estimate: add test cases --- stock_demand_estimate/README.rst | 6 +- stock_demand_estimate/__openerp__.py | 6 +- stock_demand_estimate/models/date_range.py | 9 +- .../models/stock_demand_estimate.py | 15 +- stock_demand_estimate/tests/__init__.py | 6 + .../tests/test_stock_demand_estimate.py | 135 ++++++++++++++++++ .../wizards/stock_demand_estimate_wizard.py | 30 ++-- .../stock_demand_estimate_wizard_view.xml | 3 +- 8 files changed, 170 insertions(+), 40 deletions(-) create mode 100644 stock_demand_estimate/tests/__init__.py create mode 100644 stock_demand_estimate/tests/test_stock_demand_estimate.py diff --git a/stock_demand_estimate/README.rst b/stock_demand_estimate/README.rst index 2fba92c0f..b640d0e95 100644 --- a/stock_demand_estimate/README.rst +++ b/stock_demand_estimate/README.rst @@ -28,18 +28,15 @@ Usage Go to 'Warehouse / Configuration / Demand Estimate Periods' and define your estimating periods (monthly or weekly). - Go to 'Warehouse / Demand Planning / Create Demand Estimates' to create or update your demand estimates. Go to 'Warehouse / Demand Planning / Demand Estimates' to review the estimates created. - .. 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/8.0 - + :target: https://runbot.odoo-community.org/runbot/153/9.0 Bug Tracker =========== @@ -62,7 +59,6 @@ Contributors * Jordi Ballester Alomar - Maintainer ---------- diff --git a/stock_demand_estimate/__openerp__.py b/stock_demand_estimate/__openerp__.py index d2b165a19..04f151bda 100644 --- a/stock_demand_estimate/__openerp__.py +++ b/stock_demand_estimate/__openerp__.py @@ -5,8 +5,8 @@ { "name": "Stock Demand Estimate", "summary": "Allows to create demand estimates.", - "version": "8.0.1.0.0", - "author": "Eficent Business and IT Consulting Services S.L," + "version": "9.0.1.0.0", + "author": "Eficent, " "Odoo Community Association (OCA)", "website": "https://www.odoo-community.org", "category": "Warehouse Management", @@ -21,5 +21,5 @@ ], "license": "AGPL-3", 'installable': True, - 'application': True, + 'application': False, } diff --git a/stock_demand_estimate/models/date_range.py b/stock_demand_estimate/models/date_range.py index 34321dc34..7f8ab153e 100644 --- a/stock_demand_estimate/models/date_range.py +++ b/stock_demand_estimate/models/date_range.py @@ -3,8 +3,6 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from openerp import api, fields, models -from openerp.tools.translate import _ -from openerp.exceptions import ValidationError class DateRange(models.Model): @@ -15,8 +13,9 @@ class DateRange(models.Model): def _compute_days(self): for rec in self: if rec.date_start and rec.date_end: - rec.days = (fields.Date.from_string(rec.date_start) - - fields.Date.from_string(rec.date_end)).days + 1 + rec.days = abs((fields.Date.from_string( + rec.date_end) - fields.Date.from_string( + rec.date_start)).days) + 1 days = fields.Float(string="Days between dates", - compute='_compute_days', store=True, readonly=True) + compute='_compute_days', readonly=True) diff --git a/stock_demand_estimate/models/stock_demand_estimate.py b/stock_demand_estimate/models/stock_demand_estimate.py index 8afcd8770..1ef7eaf70 100644 --- a/stock_demand_estimate/models/stock_demand_estimate.py +++ b/stock_demand_estimate/models/stock_demand_estimate.py @@ -22,7 +22,7 @@ class StockDemandEstimate(models.Model): rec.product_id.uom_id.id, rec.product_uom_qty, rec.product_uom.id) - def _set_product_qty(self): + def _inverse_product_qty(self): raise UserError(_('The requested operation cannot be ' 'processed because of a programming error ' 'setting the `product_qty` field instead ' @@ -36,7 +36,7 @@ class StockDemandEstimate(models.Model): date_range_id = fields.Many2one( comodel_name="date.range", string="Estimating Period", - required=True) + required=True, ondelete='restrict') product_id = fields.Many2one(comodel_name="product.product", string="Product", required=True) product_uom = fields.Many2one(comodel_name="product.uom", @@ -47,7 +47,7 @@ class StockDemandEstimate(models.Model): string="Quantity", digits_compute=dp.get_precision('Product Unit of Measure')) product_qty = fields.Float('Real Quantity', compute='_compute_product_qty', - inverse='_set_product_qty', digits=0, + inverse='_inverse_product_qty', digits=0, store=True, help='Quantity in the default UoM of the ' 'product', readonly=True) @@ -62,8 +62,8 @@ class StockDemandEstimate(models.Model): def name_get(self): res = [] for rec in self: - name = "%s - %s - %s" % (rec.date_range_id.name, rec.product_id.name, - rec.location_id.name) + name = "%s - %s - %s" % (rec.date_range_id.name, + rec.product_id.name, rec.location_id.name) res.append((rec.id, name)) return res @@ -77,11 +77,10 @@ class StockDemandEstimate(models.Model): # We need only the periods that overlap # the dates introduced by the user. - if (date_start <= period_date_start <= date_end - or date_start <= period_date_end <= date_end): + if (date_start <= period_date_start <= date_end or date_start <= + period_date_end <= date_end): overlap_date_start = max(period_date_start, date_start) overlap_date_end = min(period_date_end, date_end) days = (abs(overlap_date_end-overlap_date_start)).days + 1 return days * self.daily_qty return 0.0 - diff --git a/stock_demand_estimate/tests/__init__.py b/stock_demand_estimate/tests/__init__.py new file mode 100644 index 000000000..311ebdf8c --- /dev/null +++ b/stock_demand_estimate/tests/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 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_demand_estimate diff --git a/stock_demand_estimate/tests/test_stock_demand_estimate.py b/stock_demand_estimate/tests/test_stock_demand_estimate.py new file mode 100644 index 000000000..1f3336a92 --- /dev/null +++ b/stock_demand_estimate/tests/test_stock_demand_estimate.py @@ -0,0 +1,135 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 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.tests import common +from dateutil.rrule import MONTHLY +from openerp.exceptions import ValidationError + + +class TestStockDemandEstimate(common.TransactionCase): + + def setUp(self): + super(TestStockDemandEstimate, self).setUp() + self.res_users_model = self.env['res.users'] + self.product_model = self.env['product.product'] + self.stock_location_model = self.env['stock.location'] + + self.g_stock_manager = self.env.ref('stock.group_stock_manager') + self.g_stock_user = self.env.ref('stock.group_stock_user') + self.company = self.env.ref('base.main_company') + + # Create users: + self.manager = self._create_user( + 'user_1', [self.g_stock_manager], self.company).id + self.user = self._create_user( + 'user_2', [self.g_stock_user], self.company).id + self.drt_monthly = self.env['date.range.type'].create( + {'name': 'Month', + 'allow_overlap': False}) + + generator = self.env['date.range.generator'] + generator = generator.create({ + 'date_start': '1943-01-01', + 'name_prefix': '1943-', + 'type_id': self.drt_monthly.id, + 'duration_count': 1, + 'unit_of_time': MONTHLY, + 'count': 12}) + generator.action_apply() + + # Create a product: + self.product1 = self.product_model.create({ + 'name': 'Test Product 1', + 'type': 'product', + 'default_code': 'PROD1', + }) + # Create a location: + self.location = self.stock_location_model.create({ + 'name': 'Place', + 'usage': 'production' + }) + + def _create_user(self, login, groups, company): + group_ids = [group.id for group in groups] + user = self.res_users_model.create({ + 'name': login, + 'login': login, + 'password': 'demo', + 'email': 'example@yourcompany.com', + 'company_id': company.id, + 'company_ids': [(4, company.id)], + 'groups_id': [(6, 0, group_ids)] + }) + return user + + def test_demand_estimate(self): + """Tests creation of demand estimates.""" + sheets = self.env['stock.demand.estimate.sheet'].search([]) + for sheet in sheets: + sheet.unlink() + wiz = self.env['stock.demand.estimate.wizard'] + wiz = wiz.create({ + 'date_start': '1943-01-01', + 'date_end': '1943-12-31', + 'location_id': self.location.id, + 'date_range_type_id': self.drt_monthly.id, + 'product_ids': [(6, 0, [self.product1.id])]}) + wiz.create_sheet() + sheets = self.env['stock.demand.estimate.sheet'].search([]) + for sheet in sheets: + + self.assertEquals(len(sheet.line_ids), 12, + 'There should be 12 lines.') + self.assertEquals(sheet.date_start, '1943-01-01', + 'The date start should be 1943-01-01') + self.assertEquals(sheet.date_end, '1943-12-31', + 'The date end should be 1943-12-31') + self.assertEquals(sheet.location_id.id, self.location.id, + 'Wrong location') + self.assertEquals(sheet.product_ids.ids, [self.product1.id], + 'Wrong products') + for line in sheet.line_ids: + line.product_uom_qty = 1 + self.assertEquals(line.product_id.id, self.product1.id, + 'The product does not match in the line') + self.assertEquals(line.location_id.id, self.location.id, + 'The product does not match in the line') + sheet.button_validate() + estimates = self.env['stock.demand.estimate'].search([( + 'date_range_type_id', '=', self.drt_monthly)]) + self.assertEquals(len(estimates), 12, 'There should be 12 ' + 'estimate records.') + for estimate in estimates: + self.assertEquals(estimate.product_id.id, self.product1.id, + 'The product does not match in the estimate') + self.assertEquals(estimate.location_id.id, self.location.id, + 'The product does not match in the estimate') + + sheets = self.env['stock.demand.estimate.sheet'].search([]) + for sheet in sheets: + sheet.unlink() + wiz = self.env['stock.demand.estimate.wizard'] + wiz = wiz.create({ + 'date_start': '1943-01-01', + 'date_end': '1943-12-31', + 'location_id': self.location.id, + 'date_range_type_id': self.drt_monthly.id, + 'product_ids': [(6, 0, [self.product1.id])]}) + wiz.create_sheet() + sheets = self.env['stock.demand.estimate.sheet'].search([]) + for sheet in sheets: + for line in sheet.line_ids: + self.assertEquals(line.product_uom_qty, 1, + 'The quantity should be 1') + + def test_invalid_dates(self): + + wiz = self.env['stock.demand.estimate.wizard'] + with self.assertRaises(ValidationError): + wiz.create({ + 'date_start': '1943-12-31', + 'date_end': '1943-01-01', + 'location_id': self.location.id, + 'date_range_type_id': self.drt_monthly.id, + 'product_ids': [(6, 0, [self.product1.id])]}) diff --git a/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py b/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py index dc4c8f405..ebab92e02 100644 --- a/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py +++ b/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py @@ -6,33 +6,20 @@ from openerp import api, fields, models, _ import openerp.addons.decimal_precision as dp -from openerp.exceptions import Warning as UserError +from openerp.exceptions import UserError, ValidationError class StockDemandEstimateSheet(models.TransientModel): _name = 'stock.demand.estimate.sheet' _description = 'Stock Demand Estimate Sheet' - def _default_date_start(self): - return self.env.context.get('date_start', False) - - def _default_date_end(self): - return self.env.context.get('date_end', False) - - def _default_location_id(self): - location_id = self.env.context.get('location_id', False) - if location_id: - return self.env['stock.location'].browse(location_id) - else: - return False - def _default_estimate_ids(self): date_start = self.env.context.get('default_date_start', False) date_end = self.env.context.get('default_date_end', False) date_range_type_id = self.env.context.get('default_date_range_type_id', False) location_id = self.env.context.get('default_location_id', False) - product_ids = self.env.context.get('default_product_ids', False) + product_ids = self.env.context.get('product_ids', False) domain = [('type_id', '=', date_range_type_id), '|', '&', ('date_start', '>=', date_start), ('date_start', '<=', date_end), @@ -136,7 +123,7 @@ class StockDemandEstimateSheetLine(models.TransientModel): estimate_id = fields.Many2one(comodel_name='stock.demand.estimate') date_range_id = fields.Many2one( - comodel_name='stock.demand.estimate.period', + comodel_name='date.range', string='Period') location_id = fields.Many2one(comodel_name='stock.location', string="Stock Location") @@ -163,6 +150,13 @@ class DemandEstimateWizard(models.TransientModel): comodel_name="product.product", string="Products") + @api.one + @api.constrains('date_start', 'date_end') + def _check_start_end_dates(self): + if self.date_start > self.date_end: + raise ValidationError(_( + 'The start date cannot be later than the end date.')) + @api.multi def _prepare_demand_estimate_sheet(self): self.ensure_one() @@ -177,14 +171,14 @@ class DemandEstimateWizard(models.TransientModel): def create_sheet(self): self.ensure_one() if not self.product_ids: - raise UserError(_('You must select at lease one product.')) + raise UserError(_('You must select at least one product.')) context = { 'default_date_start': self.date_start, 'default_date_end': self.date_end, 'default_date_range_type_id': self.date_range_type_id.id, 'default_location_id': self.location_id.id, - 'default_product_ids': self.product_ids.ids + 'product_ids': self.product_ids.ids } res = { 'context': context, diff --git a/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml b/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml index 5753a5a3b..64a046ba3 100644 --- a/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml +++ b/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml @@ -20,7 +20,8 @@
- + Date: Thu, 22 Jun 2017 11:00:50 +0200 Subject: [PATCH 04/43] [MIG] stock_demand_estimate: migrate to v10 --- stock_demand_estimate/README.rst | 6 ++--- .../{__openerp__.py => __manifest__.py} | 2 +- stock_demand_estimate/models/date_range.py | 2 +- .../models/stock_demand_estimate.py | 23 ++++++++++--------- .../security/stock_security.xml | 7 ++---- .../tests/test_stock_demand_estimate.py | 4 ++-- .../views/stock_demand_estimate_view.xml | 6 ++--- .../wizards/stock_demand_estimate_wizard.py | 19 +++++++++++---- .../stock_demand_estimate_wizard_view.xml | 16 +++++++++---- 9 files changed, 48 insertions(+), 37 deletions(-) rename stock_demand_estimate/{__openerp__.py => __manifest__.py} (96%) diff --git a/stock_demand_estimate/README.rst b/stock_demand_estimate/README.rst index b640d0e95..436eacf48 100644 --- a/stock_demand_estimate/README.rst +++ b/stock_demand_estimate/README.rst @@ -17,9 +17,9 @@ Installation This module relies on: * The OCA module '2D matrix for x2many fields', and can be downloaded from - Github: https://github.com/OCA/web/tree/9.0/web_widget_x2many_2d_matrix + Github: https://github.com/OCA/web/tree/10.0/web_widget_x2many_2d_matrix * The OCA module 'Date Range', and can be downloaded from - Github: https://github.com/OCA/server-tools/tree/9.0/date_range + Github: https://github.com/OCA/server-tools/tree/10.0/date_range Usage @@ -36,7 +36,7 @@ estimates created. .. 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 =========== diff --git a/stock_demand_estimate/__openerp__.py b/stock_demand_estimate/__manifest__.py similarity index 96% rename from stock_demand_estimate/__openerp__.py rename to stock_demand_estimate/__manifest__.py index 04f151bda..8a17a7823 100644 --- a/stock_demand_estimate/__openerp__.py +++ b/stock_demand_estimate/__manifest__.py @@ -5,7 +5,7 @@ { "name": "Stock Demand Estimate", "summary": "Allows to create demand estimates.", - "version": "9.0.1.0.0", + "version": "10.0.1.0.0", "author": "Eficent, " "Odoo Community Association (OCA)", "website": "https://www.odoo-community.org", diff --git a/stock_demand_estimate/models/date_range.py b/stock_demand_estimate/models/date_range.py index 7f8ab153e..2d6a49bdb 100644 --- a/stock_demand_estimate/models/date_range.py +++ b/stock_demand_estimate/models/date_range.py @@ -2,7 +2,7 @@ # © 2016 ACSONE SA/NV () # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp import api, fields, models +from odoo import api, fields, models class DateRange(models.Model): diff --git a/stock_demand_estimate/models/stock_demand_estimate.py b/stock_demand_estimate/models/stock_demand_estimate.py index 1ef7eaf70..d2ff19fee 100644 --- a/stock_demand_estimate/models/stock_demand_estimate.py +++ b/stock_demand_estimate/models/stock_demand_estimate.py @@ -4,9 +4,9 @@ # © 2016 Aleph Objects, Inc. (https://www.alephobjects.com/) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from openerp import api, fields, models, _ -import openerp.addons.decimal_precision as dp -from openerp.exceptions import Warning as UserError +from odoo import api, fields, models, _ +import odoo.addons.decimal_precision as dp +from odoo.exceptions import Warning as UserError class StockDemandEstimate(models.Model): @@ -15,14 +15,14 @@ class StockDemandEstimate(models.Model): @api.multi @api.depends('product_id', 'product_uom', 'product_uom_qty') - def _compute_product_qty(self): + def _compute_product_quantity(self): for rec in self: if rec.product_uom: - rec.product_qty = rec.product_uom._compute_qty( - rec.product_id.uom_id.id, rec.product_uom_qty, - rec.product_uom.id) + rec.product_qty = rec.product_uom._compute_quantity( + rec.product_uom_qty, + rec.product_id.uom_id) - def _inverse_product_qty(self): + def _inverse_product_quantity(self): raise UserError(_('The requested operation cannot be ' 'processed because of a programming error ' 'setting the `product_qty` field instead ' @@ -45,9 +45,10 @@ class StockDemandEstimate(models.Model): string="Location", required=True) product_uom_qty = fields.Float( string="Quantity", - digits_compute=dp.get_precision('Product Unit of Measure')) - product_qty = fields.Float('Real Quantity', compute='_compute_product_qty', - inverse='_inverse_product_qty', digits=0, + digits=dp.get_precision('Product Unit of Measure')) + product_qty = fields.Float('Real Quantity', + compute='_compute_product_quantity', + inverse='_inverse_product_quantity', digits=0, store=True, help='Quantity in the default UoM of the ' 'product', readonly=True) diff --git a/stock_demand_estimate/security/stock_security.xml b/stock_demand_estimate/security/stock_security.xml index 7dc10eb89..d26124b0f 100644 --- a/stock_demand_estimate/security/stock_security.xml +++ b/stock_demand_estimate/security/stock_security.xml @@ -1,7 +1,5 @@ - - - + Stock demand estimate multi-company @@ -10,5 +8,4 @@ ['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])] - - + diff --git a/stock_demand_estimate/tests/test_stock_demand_estimate.py b/stock_demand_estimate/tests/test_stock_demand_estimate.py index 1f3336a92..52f694bb4 100644 --- a/stock_demand_estimate/tests/test_stock_demand_estimate.py +++ b/stock_demand_estimate/tests/test_stock_demand_estimate.py @@ -2,9 +2,9 @@ # Copyright 2017 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.tests import common +from odoo.tests import common from dateutil.rrule import MONTHLY -from openerp.exceptions import ValidationError +from odoo.exceptions import ValidationError class TestStockDemandEstimate(common.TransactionCase): diff --git a/stock_demand_estimate/views/stock_demand_estimate_view.xml b/stock_demand_estimate/views/stock_demand_estimate_view.xml index 343ba25a2..45e084004 100644 --- a/stock_demand_estimate/views/stock_demand_estimate_view.xml +++ b/stock_demand_estimate/views/stock_demand_estimate_view.xml @@ -1,6 +1,5 @@ - - + @@ -51,5 +50,4 @@ parent="menu_stock_demand_planning" action="stock_demand_estimate_form_action"/> - - + diff --git a/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py b/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py index ebab92e02..d4abacc22 100644 --- a/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py +++ b/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py @@ -4,9 +4,9 @@ # © 2016 Aleph Objects, Inc. (https://www.alephobjects.com/) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). -from openerp import api, fields, models, _ -import openerp.addons.decimal_precision as dp -from openerp.exceptions import UserError, ValidationError +from odoo import api, fields, models, _ +import odoo.addons.decimal_precision as dp +from odoo.exceptions import UserError, ValidationError class StockDemandEstimateSheet(models.TransientModel): @@ -80,7 +80,7 @@ class StockDemandEstimateSheet(models.TransientModel): line_ids = fields.Many2many( string="Estimates", comodel_name='stock.demand.estimate.sheet.line', - rel='stock_demand_estimate_line_rel', + relation='stock_demand_estimate_line_rel', default=_default_estimate_ids) @api.model @@ -132,7 +132,7 @@ class StockDemandEstimateSheetLine(models.TransientModel): value_x = fields.Char(string='Period') value_y = fields.Char(string='Product') product_uom_qty = fields.Float( - string="Quantity", digits_compute=dp.get_precision('Product UoM')) + string="Quantity", digits=dp.get_precision('Product UoM')) class DemandEstimateWizard(models.TransientModel): @@ -150,6 +150,15 @@ class DemandEstimateWizard(models.TransientModel): comodel_name="product.product", string="Products") + @api.onchange('date_range_type_id') + def _onchange_date_range_type_id(self): + if self.date_range_type_id.company_id: + return { + 'domain': { + 'location_id': [('company_id', '=', + self.date_range_type_id.company_id.id)]}} + return {} + @api.one @api.constrains('date_start', 'date_end') def _check_start_end_dates(self): diff --git a/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml b/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml index 64a046ba3..1b072a7fd 100644 --- a/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml +++ b/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml @@ -1,6 +1,5 @@ - - + @@ -26,7 +25,15 @@ widget="x2many_2d_matrix" field_x_axis="value_x" field_y_axis="value_y" - field_value="product_uom_qty"/> + field_value="product_uom_qty" + x_axis_clickable="0" + y_axis_clickable="0"> + + + + + +
+
+ + + +
+
+ From b368bfd5d47a0cd431c211970d3ad47e79973a0c Mon Sep 17 00:00:00 2001 From: mreficent Date: Thu, 19 Apr 2018 15:55:18 +0200 Subject: [PATCH 07/43] [FIX] stock_demand_estimate: division by zero in _compute_daily_qty --- stock_demand_estimate/__manifest__.py | 2 +- stock_demand_estimate/models/stock_demand_estimate.py | 6 +++++- stock_demand_estimate/views/stock_demand_estimate_view.xml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/stock_demand_estimate/__manifest__.py b/stock_demand_estimate/__manifest__.py index ad326cd4b..075dd1cc9 100644 --- a/stock_demand_estimate/__manifest__.py +++ b/stock_demand_estimate/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Stock Demand Estimate", "summary": "Allows to create demand estimates.", - "version": "11.0.1.0.0", + "version": "11.0.1.1.0", "author": "Eficent, " "Odoo Community Association (OCA)", "website": "https://github.com/OCA/stock-logistics-warehouse", diff --git a/stock_demand_estimate/models/stock_demand_estimate.py b/stock_demand_estimate/models/stock_demand_estimate.py index 1259e1a72..7cf73e526 100644 --- a/stock_demand_estimate/models/stock_demand_estimate.py +++ b/stock_demand_estimate/models/stock_demand_estimate.py @@ -62,7 +62,10 @@ class StockDemandEstimate(models.Model): @api.depends('product_qty', 'date_range_id.days') def _compute_daily_qty(self): for rec in self: - rec.daily_qty = rec.product_qty / rec.date_range_id.days + if rec.date_range_id.days: + rec.daily_qty = rec.product_qty / rec.date_range_id.days + else: + rec.daily_qty = 0.0 @api.multi @api.depends('product_id', 'product_uom', 'product_uom_qty') @@ -94,6 +97,7 @@ class StockDemandEstimate(models.Model): @api.model def get_quantity_by_date_range(self, date_start, date_end): + """To be used in other modules""" # Check if the dates overlap with the period period_date_start = fields.Date.from_string( self.date_range_id.date_start diff --git a/stock_demand_estimate/views/stock_demand_estimate_view.xml b/stock_demand_estimate/views/stock_demand_estimate_view.xml index 45e084004..f6e412c91 100644 --- a/stock_demand_estimate/views/stock_demand_estimate_view.xml +++ b/stock_demand_estimate/views/stock_demand_estimate_view.xml @@ -6,7 +6,7 @@ stock.demand.estimate.tree stock.demand.estimate - + From bdc7a62a2b591b1ed37182c1f2bdf7f0f3754b12 Mon Sep 17 00:00:00 2001 From: Lois Rilo Date: Thu, 21 Jun 2018 12:10:12 +0200 Subject: [PATCH 08/43] [11.0] stock_demand_estimate: add simple pivot view --- stock_demand_estimate/README.rst | 3 +- stock_demand_estimate/__manifest__.py | 2 +- .../views/stock_demand_estimate_view.xml | 100 ++++++++++-------- 3 files changed, 59 insertions(+), 46 deletions(-) diff --git a/stock_demand_estimate/README.rst b/stock_demand_estimate/README.rst index 4076d5886..5814c3a6c 100644 --- a/stock_demand_estimate/README.rst +++ b/stock_demand_estimate/README.rst @@ -1,5 +1,5 @@ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.png - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 ===================== @@ -57,6 +57,7 @@ Contributors ------------ * Jordi Ballester Alomar +* Lois Rilo Maintainer ---------- diff --git a/stock_demand_estimate/__manifest__.py b/stock_demand_estimate/__manifest__.py index 075dd1cc9..6c33f7337 100644 --- a/stock_demand_estimate/__manifest__.py +++ b/stock_demand_estimate/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Stock Demand Estimate", "summary": "Allows to create demand estimates.", - "version": "11.0.1.1.0", + "version": "11.0.1.2.0", "author": "Eficent, " "Odoo Community Association (OCA)", "website": "https://github.com/OCA/stock-logistics-warehouse", diff --git a/stock_demand_estimate/views/stock_demand_estimate_view.xml b/stock_demand_estimate/views/stock_demand_estimate_view.xml index f6e412c91..dcdf7159c 100644 --- a/stock_demand_estimate/views/stock_demand_estimate_view.xml +++ b/stock_demand_estimate/views/stock_demand_estimate_view.xml @@ -1,53 +1,65 @@ - - stock.demand.estimate.tree - stock.demand.estimate - - - - - - - - - - - - + + stock.demand.estimate.tree + stock.demand.estimate + + + + + + + + + + + + - - stock.demand.estimate.search - stock.demand.estimate - - - - - - - - + + stock.demand.estimate.pivot + stock.demand.estimate + + + + + + + + - - Stock Demand Estimates - ir.actions.act_window - stock.demand.estimate - form - tree,form - - + + stock.demand.estimate.search + stock.demand.estimate + + + + + + + + - + + Stock Demand Estimates + ir.actions.act_window + stock.demand.estimate + form + tree,pivot + + - + + + From e4296cf537b9fc457319c5466fc5f2623c58bc42 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Thu, 21 Jun 2018 13:48:14 +0000 Subject: [PATCH 09/43] [UPD] Update stock_demand_estimate.pot Update translation files Updated by Update PO files to match POT (msgmerge) hook in Weblate. --- stock_demand_estimate/i18n/am.po | 51 +-- stock_demand_estimate/i18n/ar.po | 54 ++-- stock_demand_estimate/i18n/bg.po | 51 +-- stock_demand_estimate/i18n/bs.po | 54 ++-- stock_demand_estimate/i18n/ca.po | 51 +-- stock_demand_estimate/i18n/ca_ES.po | 54 ++-- stock_demand_estimate/i18n/cs.po | 51 +-- stock_demand_estimate/i18n/da.po | 51 +-- stock_demand_estimate/i18n/de.po | 52 +-- stock_demand_estimate/i18n/el_GR.po | 54 ++-- stock_demand_estimate/i18n/en_AU.po | 54 ++-- stock_demand_estimate/i18n/en_GB.po | 54 ++-- stock_demand_estimate/i18n/es.po | 52 +-- stock_demand_estimate/i18n/es_AR.po | 54 ++-- stock_demand_estimate/i18n/es_CL.po | 54 ++-- stock_demand_estimate/i18n/es_CO.po | 54 ++-- stock_demand_estimate/i18n/es_CR.po | 54 ++-- stock_demand_estimate/i18n/es_DO.po | 54 ++-- stock_demand_estimate/i18n/es_EC.po | 54 ++-- stock_demand_estimate/i18n/es_ES.po | 54 ++-- stock_demand_estimate/i18n/es_MX.po | 54 ++-- stock_demand_estimate/i18n/es_PE.po | 54 ++-- stock_demand_estimate/i18n/es_PY.po | 54 ++-- stock_demand_estimate/i18n/es_VE.po | 54 ++-- stock_demand_estimate/i18n/et.po | 51 +-- stock_demand_estimate/i18n/eu.po | 51 +-- stock_demand_estimate/i18n/fa.po | 51 +-- stock_demand_estimate/i18n/fi.po | 51 +-- stock_demand_estimate/i18n/fr.po | 52 +-- stock_demand_estimate/i18n/fr_CA.po | 54 ++-- stock_demand_estimate/i18n/fr_CH.po | 54 ++-- stock_demand_estimate/i18n/fr_FR.po | 54 ++-- stock_demand_estimate/i18n/gl.po | 51 +-- stock_demand_estimate/i18n/gl_ES.po | 54 ++-- stock_demand_estimate/i18n/he.po | 51 +-- stock_demand_estimate/i18n/hi.po | 51 +-- stock_demand_estimate/i18n/hr.po | 54 ++-- stock_demand_estimate/i18n/hr_HR.po | 57 ++-- stock_demand_estimate/i18n/hu.po | 51 +-- stock_demand_estimate/i18n/id.po | 51 +-- stock_demand_estimate/i18n/it.po | 51 +-- stock_demand_estimate/i18n/ja.po | 51 +-- stock_demand_estimate/i18n/ko.po | 51 +-- stock_demand_estimate/i18n/lo.po | 51 +-- stock_demand_estimate/i18n/lt.po | 54 ++-- stock_demand_estimate/i18n/lt_LT.po | 57 ++-- stock_demand_estimate/i18n/lv.po | 54 ++-- stock_demand_estimate/i18n/mk.po | 51 +-- stock_demand_estimate/i18n/mn.po | 51 +-- stock_demand_estimate/i18n/nb.po | 54 ++-- stock_demand_estimate/i18n/nb_NO.po | 54 ++-- stock_demand_estimate/i18n/nl.po | 52 +-- stock_demand_estimate/i18n/nl_BE.po | 54 ++-- stock_demand_estimate/i18n/nl_NL.po | 54 ++-- stock_demand_estimate/i18n/pl.po | 55 ++-- stock_demand_estimate/i18n/pt.po | 51 +-- stock_demand_estimate/i18n/pt_BR.po | 55 ++-- stock_demand_estimate/i18n/pt_PT.po | 54 ++-- stock_demand_estimate/i18n/ro.po | 54 ++-- stock_demand_estimate/i18n/ru.po | 55 ++-- stock_demand_estimate/i18n/sk.po | 51 +-- stock_demand_estimate/i18n/sl.po | 55 ++-- stock_demand_estimate/i18n/sr.po | 54 ++-- stock_demand_estimate/i18n/sr@latin.po | 57 ++-- .../i18n/stock_demand_estimate.pot | 302 ++++++++++++++++++ stock_demand_estimate/i18n/sv.po | 51 +-- stock_demand_estimate/i18n/th.po | 51 +-- stock_demand_estimate/i18n/tr.po | 51 +-- stock_demand_estimate/i18n/tr_TR.po | 54 ++-- stock_demand_estimate/i18n/uk.po | 54 ++-- stock_demand_estimate/i18n/vi.po | 51 +-- stock_demand_estimate/i18n/vi_VN.po | 54 ++-- stock_demand_estimate/i18n/zh_CN.po | 54 ++-- stock_demand_estimate/i18n/zh_TW.po | 54 ++-- 74 files changed, 2738 insertions(+), 1433 deletions(-) create mode 100644 stock_demand_estimate/i18n/stock_demand_estimate.pot diff --git a/stock_demand_estimate/i18n/am.po b/stock_demand_estimate/i18n/am.po index 0c1d38c81..9e02be37a 100644 --- a/stock_demand_estimate/i18n/am.po +++ b/stock_demand_estimate/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/ar.po b/stock_demand_estimate/i18n/ar.po index c632bde2b..4da5de598 100644 --- a/stock_demand_estimate/i18n/ar.po +++ b/stock_demand_estimate/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ar\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 && n%100<=99 ? 4 : 5;\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 && n%100<=99 ? 4 : 5;\n" #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +53,37 @@ msgid "Created on" msgstr "أنشئ في" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "اسم العرض" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/bg.po b/stock_demand_estimate/i18n/bg.po index 62b32aa8b..2e74a68bb 100644 --- a/stock_demand_estimate/i18n/bg.po +++ b/stock_demand_estimate/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Създадено на" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Име за показване" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/bs.po b/stock_demand_estimate/i18n/bs.po index e6a3d7476..ec38a8ef7 100644 --- a/stock_demand_estimate/i18n/bs.po +++ b/stock_demand_estimate/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bs\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_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Kreirano" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Prikaži naziv" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/ca.po b/stock_demand_estimate/i18n/ca.po index e70b644a2..cfb4c0bde 100644 --- a/stock_demand_estimate/i18n/ca.po +++ b/stock_demand_estimate/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Creat el" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Veure el nom" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "Ubicació " #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "Producte" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/ca_ES.po b/stock_demand_estimate/i18n/ca_ES.po index cbda27928..33848f32d 100644 --- a/stock_demand_estimate/i18n/ca_ES.po +++ b/stock_demand_estimate/i18n/ca_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/ca_ES/)\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/" +"ca_ES/)\n" +"Language: ca_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/cs.po b/stock_demand_estimate/i18n/cs.po index 64ff1b4f9..f5285d273 100644 --- a/stock_demand_estimate/i18n/cs.po +++ b/stock_demand_estimate/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Vytvořeno" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Zobrazovaný název" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/da.po b/stock_demand_estimate/i18n/da.po index 82fecfc0d..cd9e76718 100644 --- a/stock_demand_estimate/i18n/da.po +++ b/stock_demand_estimate/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Oprettet den" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Vist navn" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "Postnr/by " #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/de.po b/stock_demand_estimate/i18n/de.po index 304181b38..1f554f7a4 100644 --- a/stock_demand_estimate/i18n/de.po +++ b/stock_demand_estimate/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate @@ -52,23 +52,38 @@ msgid "Created on" msgstr "Angelegt am" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "Datum ab" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "Datum bis" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#, fuzzy +msgid "Date to" +msgstr "Datum bis" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Anzeigename" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "Standort" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "Produkt" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/el_GR.po b/stock_demand_estimate/i18n/el_GR.po index 76be9baa4..9ae3df381 100644 --- a/stock_demand_estimate/i18n/el_GR.po +++ b/stock_demand_estimate/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: 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_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Δημιουργήθηκε στις" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "Προϊόν" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/en_AU.po b/stock_demand_estimate/i18n/en_AU.po index 3190fe9cf..2df352364 100644 --- a/stock_demand_estimate/i18n/en_AU.po +++ b/stock_demand_estimate/i18n/en_AU.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: English (Australia) (https://www.transifex.com/oca/teams/23907/en_AU/)\n" +"Language-Team: English (Australia) (https://www.transifex.com/oca/" +"teams/23907/en_AU/)\n" +"Language: en_AU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_AU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/en_GB.po b/stock_demand_estimate/i18n/en_GB.po index 0f40a2337..ebfcf5fc7 100644 --- a/stock_demand_estimate/i18n/en_GB.po +++ b/stock_demand_estimate/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Created on" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Display Name" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/es.po b/stock_demand_estimate/i18n/es.po index 4dd15fa23..f11781bab 100644 --- a/stock_demand_estimate/i18n/es.po +++ b/stock_demand_estimate/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate @@ -52,23 +52,38 @@ msgid "Created on" msgstr "Creado el" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "Fecha desde" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "Fecha hasta" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#, fuzzy +msgid "Date to" +msgstr "Fecha hasta" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Nombre mostrado" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "Localización" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "Producto" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/es_AR.po b/stock_demand_estimate/i18n/es_AR.po index 80eacac48..a209737d8 100644 --- a/stock_demand_estimate/i18n/es_AR.po +++ b/stock_demand_estimate/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Mostrar Nombre" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/es_CL.po b/stock_demand_estimate/i18n/es_CL.po index 3593599ae..49a8dc198 100644 --- a/stock_demand_estimate/i18n/es_CL.po +++ b/stock_demand_estimate/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Nombre mostrado" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/es_CO.po b/stock_demand_estimate/i18n/es_CO.po index 5a7009dea..b7cecae51 100644 --- a/stock_demand_estimate/i18n/es_CO.po +++ b/stock_demand_estimate/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Creado" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Nombre Público" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/es_CR.po b/stock_demand_estimate/i18n/es_CR.po index dd553d179..0a4841d62 100644 --- a/stock_demand_estimate/i18n/es_CR.po +++ b/stock_demand_estimate/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/es_DO.po b/stock_demand_estimate/i18n/es_DO.po index 4d85d8362..51e89fbeb 100644 --- a/stock_demand_estimate/i18n/es_DO.po +++ b/stock_demand_estimate/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Nombre mostrado" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/es_EC.po b/stock_demand_estimate/i18n/es_EC.po index 279a821c8..a6a90cb13 100644 --- a/stock_demand_estimate/i18n/es_EC.po +++ b/stock_demand_estimate/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Nombre mostrado" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/es_ES.po b/stock_demand_estimate/i18n/es_ES.po index 870ef41e6..210bb9829 100644 --- a/stock_demand_estimate/i18n/es_ES.po +++ b/stock_demand_estimate/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: 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_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Nombre para mostrar" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "Ubicación" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "Producto" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/es_MX.po b/stock_demand_estimate/i18n/es_MX.po index df8987220..cc393a890 100644 --- a/stock_demand_estimate/i18n/es_MX.po +++ b/stock_demand_estimate/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: 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_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Nombre desplegado" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/es_PE.po b/stock_demand_estimate/i18n/es_PE.po index 44bb82c93..18adb8eb7 100644 --- a/stock_demand_estimate/i18n/es_PE.po +++ b/stock_demand_estimate/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Nombre a Mostrar" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/es_PY.po b/stock_demand_estimate/i18n/es_PY.po index 5f854d08a..497aa8850 100644 --- a/stock_demand_estimate/i18n/es_PY.po +++ b/stock_demand_estimate/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/es_VE.po b/stock_demand_estimate/i18n/es_VE.po index 6f2b437eb..c09cc4434 100644 --- a/stock_demand_estimate/i18n/es_VE.po +++ b/stock_demand_estimate/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Mostrar nombre" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/et.po b/stock_demand_estimate/i18n/et.po index 24868c1c7..c42a2284b 100644 --- a/stock_demand_estimate/i18n/et.po +++ b/stock_demand_estimate/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Loodud" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Näidatav nimi" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/eu.po b/stock_demand_estimate/i18n/eu.po index f5a2f1f74..964dd8539 100644 --- a/stock_demand_estimate/i18n/eu.po +++ b/stock_demand_estimate/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Created on" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Izena erakutsi" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "Produktua" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/fa.po b/stock_demand_estimate/i18n/fa.po index 7b2dd5958..bdf18b66d 100644 --- a/stock_demand_estimate/i18n/fa.po +++ b/stock_demand_estimate/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "ایجاد شده در" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "نام نمایشی" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/fi.po b/stock_demand_estimate/i18n/fi.po index 1abdadb01..ca16bb6e8 100644 --- a/stock_demand_estimate/i18n/fi.po +++ b/stock_demand_estimate/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Luotu" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Nimi" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "Sijainti" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "Tuote" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/fr.po b/stock_demand_estimate/i18n/fr.po index 76b2cd8ed..99ec85945 100644 --- a/stock_demand_estimate/i18n/fr.po +++ b/stock_demand_estimate/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate @@ -52,23 +52,38 @@ msgid "Created on" msgstr "Créé le" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "Date de" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "Date de fin" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#, fuzzy +msgid "Date to" +msgstr "Date de fin" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Nom affiché" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "Emplacement" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "Article" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/fr_CA.po b/stock_demand_estimate/i18n/fr_CA.po index 2ba38e66f..99ce90149 100644 --- a/stock_demand_estimate/i18n/fr_CA.po +++ b/stock_demand_estimate/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Créé le" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Afficher le nom" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/fr_CH.po b/stock_demand_estimate/i18n/fr_CH.po index d83613cb5..3d5e25d35 100644 --- a/stock_demand_estimate/i18n/fr_CH.po +++ b/stock_demand_estimate/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: 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_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Créé le" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Nom affiché" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "Produit" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/fr_FR.po b/stock_demand_estimate/i18n/fr_FR.po index 7d443ca8a..626571712 100644 --- a/stock_demand_estimate/i18n/fr_FR.po +++ b/stock_demand_estimate/i18n/fr_FR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: 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_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "Produit" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/gl.po b/stock_demand_estimate/i18n/gl.po index 90407ed00..b3a93f339 100644 --- a/stock_demand_estimate/i18n/gl.po +++ b/stock_demand_estimate/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "Localidade" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "Produto" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/gl_ES.po b/stock_demand_estimate/i18n/gl_ES.po index 6bee79e2e..0da5fa0cd 100644 --- a/stock_demand_estimate/i18n/gl_ES.po +++ b/stock_demand_estimate/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-05 03:49+0000\n" "PO-Revision-Date: 2018-01-05 03:49+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/he.po b/stock_demand_estimate/i18n/he.po index 1b62f533c..c42d498da 100644 --- a/stock_demand_estimate/i18n/he.po +++ b/stock_demand_estimate/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "נוצר ב-" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "השם המוצג" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/hi.po b/stock_demand_estimate/i18n/hi.po index d63541d2c..bd84c83d2 100644 --- a/stock_demand_estimate/i18n/hi.po +++ b/stock_demand_estimate/i18n/hi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Hindi (https://www.transifex.com/oca/teams/23907/hi/)\n" +"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/hr.po b/stock_demand_estimate/i18n/hr.po index ed67e7588..410f553e6 100644 --- a/stock_demand_estimate/i18n/hr.po +++ b/stock_demand_estimate/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Datum kreiranja" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Naziv za prikaz" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "Lokacija" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "Proizvod" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/hr_HR.po b/stock_demand_estimate/i18n/hr_HR.po index b72f0dc9b..d0f727ce8 100644 --- a/stock_demand_estimate/i18n/hr_HR.po +++ b/stock_demand_estimate/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,12 +11,14 @@ msgstr "" "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: 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_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +54,37 @@ msgid "Created on" msgstr "Kreirano" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +104,14 @@ msgid "Display Name" msgstr "Naziv" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +172,7 @@ msgstr "Lokacija" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +189,7 @@ msgid "Product" msgstr "Proizvod" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +222,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +250,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +263,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +271,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +293,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/hu.po b/stock_demand_estimate/i18n/hu.po index 67b965299..4d0452e63 100644 --- a/stock_demand_estimate/i18n/hu.po +++ b/stock_demand_estimate/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Létrehozás dátuma" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Név megjelenítése" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/id.po b/stock_demand_estimate/i18n/id.po index 5d0b51bec..adf34ad8e 100644 --- a/stock_demand_estimate/i18n/id.po +++ b/stock_demand_estimate/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Dibuat pada" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Nama Tampilan" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/it.po b/stock_demand_estimate/i18n/it.po index fa296e497..298a9817e 100644 --- a/stock_demand_estimate/i18n/it.po +++ b/stock_demand_estimate/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Creato il" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Nome da visualizzare" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "Locazione" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "Prodotto" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/ja.po b/stock_demand_estimate/i18n/ja.po index 45f9cffa9..cee16fca0 100644 --- a/stock_demand_estimate/i18n/ja.po +++ b/stock_demand_estimate/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "作成日" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "表示名" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/ko.po b/stock_demand_estimate/i18n/ko.po index 92971687f..7946a5efb 100644 --- a/stock_demand_estimate/i18n/ko.po +++ b/stock_demand_estimate/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "작성일" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "표시 이름" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/lo.po b/stock_demand_estimate/i18n/lo.po index ad17e218e..a0180f28c 100644 --- a/stock_demand_estimate/i18n/lo.po +++ b/stock_demand_estimate/i18n/lo.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n" +"Language: lo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lo\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/lt.po b/stock_demand_estimate/i18n/lt.po index d0ad51a34..8974c2ddf 100644 --- a/stock_demand_estimate/i18n/lt.po +++ b/stock_demand_estimate/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (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" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Sukurta" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Vaizduojamas pavadinimas" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/lt_LT.po b/stock_demand_estimate/i18n/lt_LT.po index d71ea6f7b..68f76ab67 100644 --- a/stock_demand_estimate/i18n/lt_LT.po +++ b/stock_demand_estimate/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,12 +11,14 @@ msgstr "" "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: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (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" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +54,37 @@ msgid "Created on" msgstr "Sukurta" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +104,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +172,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +189,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +222,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +250,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +263,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +271,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +293,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/lv.po b/stock_demand_estimate/i18n/lv.po index aa4f8285b..e1f24664c 100644 --- a/stock_demand_estimate/i18n/lv.po +++ b/stock_demand_estimate/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Izveidots" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/mk.po b/stock_demand_estimate/i18n/mk.po index 5237d3c97..6e2c54852 100644 --- a/stock_demand_estimate/i18n/mk.po +++ b/stock_demand_estimate/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Креирано на" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Прикажи име" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/mn.po b/stock_demand_estimate/i18n/mn.po index a153b4c41..54ce84f4d 100644 --- a/stock_demand_estimate/i18n/mn.po +++ b/stock_demand_estimate/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Үүсгэсэн" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Дэлгэцийн Нэр" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/nb.po b/stock_demand_estimate/i18n/nb.po index 822dce251..a4b9275f3 100644 --- a/stock_demand_estimate/i18n/nb.po +++ b/stock_demand_estimate/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Opprettet den" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Visnings navn" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/nb_NO.po b/stock_demand_estimate/i18n/nb_NO.po index df70d12a9..1d4c3d2eb 100644 --- a/stock_demand_estimate/i18n/nb_NO.po +++ b/stock_demand_estimate/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Laget den" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Vis navn" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/nl.po b/stock_demand_estimate/i18n/nl.po index d98c72e2b..c1ccdc563 100644 --- a/stock_demand_estimate/i18n/nl.po +++ b/stock_demand_estimate/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate @@ -52,23 +52,38 @@ msgid "Created on" msgstr "Aangemaakt op" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "Datum van" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "Datum tot" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#, fuzzy +msgid "Date to" +msgstr "Datum tot" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Te tonen naam" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "Locatie" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "Product" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/nl_BE.po b/stock_demand_estimate/i18n/nl_BE.po index ada296433..5226b3de1 100644 --- a/stock_demand_estimate/i18n/nl_BE.po +++ b/stock_demand_estimate/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-05 03:49+0000\n" "PO-Revision-Date: 2018-01-05 03:49+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Gemaakt op" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Schermnaam" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/nl_NL.po b/stock_demand_estimate/i18n/nl_NL.po index ca5f868c8..73767d105 100644 --- a/stock_demand_estimate/i18n/nl_NL.po +++ b/stock_demand_estimate/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # Peter Hageman , 2018 # OCA Transbot , 2018 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2018-01-05 03:49+0000\n" "PO-Revision-Date: 2018-01-05 03:49+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate @@ -53,23 +54,37 @@ msgid "Created on" msgstr "Aangemaakt op" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -89,14 +104,14 @@ msgid "Display Name" msgstr "Weergavenaam" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -157,6 +172,7 @@ msgstr "Locatie" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -173,6 +189,7 @@ msgid "Product" msgstr "Product" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -205,6 +222,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +250,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -245,7 +263,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -253,14 +271,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -274,16 +293,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/pl.po b/stock_demand_estimate/i18n/pl.po index 6e6418bb3..6fb703ce7 100644 --- a/stock_demand_estimate/i18n/pl.po +++ b/stock_demand_estimate/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +54,37 @@ msgid "Created on" msgstr "Utworzono" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +104,14 @@ msgid "Display Name" msgstr "Wyświetlana nazwa " #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +172,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +189,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +222,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +250,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +263,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +271,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +293,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/pt.po b/stock_demand_estimate/i18n/pt.po index 3e74057d7..1e0b2d4dd 100644 --- a/stock_demand_estimate/i18n/pt.po +++ b/stock_demand_estimate/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Criado em" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Nome a Apresentar" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "Localização" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "Produto" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/pt_BR.po b/stock_demand_estimate/i18n/pt_BR.po index 1e0bd5cdf..010a7a224 100644 --- a/stock_demand_estimate/i18n/pt_BR.po +++ b/stock_demand_estimate/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: 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_demand_estimate @@ -52,23 +53,38 @@ msgid "Created on" msgstr "Criado em" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "Data a partir" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#, fuzzy +msgid "Date to" +msgstr "Data a partir" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +104,14 @@ msgid "Display Name" msgstr "Mostrar Nome" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +172,7 @@ msgstr "Localização" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +189,7 @@ msgid "Product" msgstr "Produto" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +222,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +250,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +263,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +271,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +293,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/pt_PT.po b/stock_demand_estimate/i18n/pt_PT.po index 7f272422a..9caa7fa69 100644 --- a/stock_demand_estimate/i18n/pt_PT.po +++ b/stock_demand_estimate/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Criado em" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Nome a Apresentar" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "Localização" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/ro.po b/stock_demand_estimate/i18n/ro.po index 669e28463..d514d3581 100644 --- a/stock_demand_estimate/i18n/ro.po +++ b/stock_demand_estimate/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Creat la" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Nume Afişat" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "Produs" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/ru.po b/stock_demand_estimate/i18n/ru.po index 27ed86235..82fe73cbc 100644 --- a/stock_demand_estimate/i18n/ru.po +++ b/stock_demand_estimate/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,13 @@ 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_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +54,37 @@ msgid "Created on" msgstr "Создан" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +104,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +172,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +189,7 @@ msgid "Product" msgstr "Товар/Услуга" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +222,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +250,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +263,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +271,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +293,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/sk.po b/stock_demand_estimate/i18n/sk.po index ae599b6d2..244c83453 100644 --- a/stock_demand_estimate/i18n/sk.po +++ b/stock_demand_estimate/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Vytvorené" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Zobraziť meno" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/sl.po b/stock_demand_estimate/i18n/sl.po index 63c7ef3a9..d5a76bc92 100644 --- a/stock_demand_estimate/i18n/sl.po +++ b/stock_demand_estimate/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +53,38 @@ msgid "Created on" msgstr "Ustvarjeno" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "Od datuma" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "Do datuma" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#, fuzzy +msgid "Date to" +msgstr "Do datuma" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +104,14 @@ msgid "Display Name" msgstr "Prikazni naziv" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +172,7 @@ msgstr "Lokacija" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +189,7 @@ msgid "Product" msgstr "Proizvod" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +222,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +250,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +263,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +271,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +293,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/sr.po b/stock_demand_estimate/i18n/sr.po index 5c236c56d..600d90971 100644 --- a/stock_demand_estimate/i18n/sr.po +++ b/stock_demand_estimate/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sr\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_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Kreiran" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/sr@latin.po b/stock_demand_estimate/i18n/sr@latin.po index f5f2c33f4..38a8da9c8 100644 --- a/stock_demand_estimate/i18n/sr@latin.po +++ b/stock_demand_estimate/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,12 +11,14 @@ msgstr "" "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: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sr@latin\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_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +54,37 @@ msgid "Created on" msgstr "Kreiran" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +104,14 @@ msgid "Display Name" msgstr "Ime za prikaz" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +172,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +189,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +222,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +250,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +263,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +271,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +293,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/stock_demand_estimate.pot b/stock_demand_estimate/i18n/stock_demand_estimate.pot new file mode 100644 index 000000000..87ba00e8c --- /dev/null +++ b/stock_demand_estimate/i18n/stock_demand_estimate.pot @@ -0,0 +1,302 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_demand_estimate +# +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_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +msgid "Cancel" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +msgid "Company" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard +#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +msgid "Create Stock Demand Estimates" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +msgid "Created by" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +msgid "Created on" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +msgid "Date From" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +msgid "Date Range Type" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +msgid "Date To" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +msgid "Days between dates" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +msgid "Demand Planning" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" +msgstr "" + +#. module: stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +msgid "Estimated quantity" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +msgid "Estimates" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +msgid "Estimating Period" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +msgid "ID" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +msgid "Last Updated on" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +msgid "Location" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +msgid "Period" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +msgid "Prepare" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +msgid "Product" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +msgid "Products" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +msgid "Quantity" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +msgid "Quantity / Day" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +msgid "Quantity in the default UoM of the product" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +msgid "Real Quantity" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +msgid "Search Stock Demand Estimates" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +msgid "Stock Demand Estimate" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate +msgid "Stock Demand Estimate Line" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +msgid "Stock Demand Estimate Sheet" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet_line +msgid "Stock Demand Estimate Sheet Line" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +msgid "Stock Demand Estimate Wizard" +msgstr "" + +#. module: stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action +#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#, python-format +msgid "Stock Demand Estimates" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +msgid "Stock Location" +msgstr "" + +#. module: stock_demand_estimate +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#, python-format +msgid "The requested operation cannot be processed because of a programming error setting the `product_qty` field instead of the `product_uom_qty`." +msgstr "" + +#. module: stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#, python-format +msgid "The start date cannot be later than the end date." +msgstr "" + +#. module: stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +msgid "Unit of measure" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +msgid "Validate" +msgstr "" + +#. module: stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#, python-format +msgid "You must select at least one product." +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +msgid "or" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +msgid "to" +msgstr "" + diff --git a/stock_demand_estimate/i18n/sv.po b/stock_demand_estimate/i18n/sv.po index 96648ce2a..5662c1b3b 100644 --- a/stock_demand_estimate/i18n/sv.po +++ b/stock_demand_estimate/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Skapad den" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Visa namn" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/th.po b/stock_demand_estimate/i18n/th.po index da0b247e7..58890ea7d 100644 --- a/stock_demand_estimate/i18n/th.po +++ b/stock_demand_estimate/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "สร้างเมื่อ" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "ชื่อที่ใช้แสดง" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/tr.po b/stock_demand_estimate/i18n/tr.po index dbf31c20d..b6d124368 100644 --- a/stock_demand_estimate/i18n/tr.po +++ b/stock_demand_estimate/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\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_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Oluşturuldu" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Görünen İsim" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "Ürün" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/tr_TR.po b/stock_demand_estimate/i18n/tr_TR.po index 365c79c8a..0d47e547a 100644 --- a/stock_demand_estimate/i18n/tr_TR.po +++ b/stock_demand_estimate/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: 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_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Oluşturulma tarihi" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Görünen ad" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "Konum" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "Ürün" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/uk.po b/stock_demand_estimate/i18n/uk.po index c2c856821..38af58d18 100644 --- a/stock_demand_estimate/i18n/uk.po +++ b/stock_demand_estimate/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-01-16 14:35+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: uk\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_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Дата створення" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "Назва для відображення" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/vi.po b/stock_demand_estimate/i18n/vi.po index 4a07ac380..ab075bd25 100644 --- a/stock_demand_estimate/i18n/vi.po +++ b/stock_demand_estimate/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-05 03:49+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate @@ -52,23 +52,37 @@ msgid "Created on" msgstr "Được tạo vào" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +102,14 @@ msgid "Display Name" msgstr "Tên hiển thị" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +170,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +187,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +220,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +248,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +261,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +269,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +291,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/vi_VN.po b/stock_demand_estimate/i18n/vi_VN.po index 257407400..4122a64d0 100644 --- a/stock_demand_estimate/i18n/vi_VN.po +++ b/stock_demand_estimate/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: 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_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "Tạo vào" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "Sản phẩm" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/zh_CN.po b/stock_demand_estimate/i18n/zh_CN.po index d489def49..34a918746 100644 --- a/stock_demand_estimate/i18n/zh_CN.po +++ b/stock_demand_estimate/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: 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_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "创建时间" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "显示名称" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "产品" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" diff --git a/stock_demand_estimate/i18n/zh_TW.po b/stock_demand_estimate/i18n/zh_TW.po index abfd08a58..4a4e38b96 100644 --- a/stock_demand_estimate/i18n/zh_TW.po +++ b/stock_demand_estimate/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * stock_demand_estimate -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate @@ -52,23 +53,37 @@ msgid "Created on" msgstr "建立於" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start msgid "Date From" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model,name:stock_demand_estimate.model_date_range +msgid "Date Range" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id msgid "Date Range Type" msgstr "" +#. module: stock_demand_estimate +#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +msgid "Date Ranges" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end msgid "Date To" msgstr "" +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +msgid "Date to" +msgstr "" + #. module: stock_demand_estimate #: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days msgid "Days between dates" @@ -88,14 +103,14 @@ msgid "Display Name" msgstr "顯示名稱" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:194 -#, python-format -msgid "Estimate Sheet" +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id -msgid "Estimate id" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#, python-format +msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate @@ -156,6 +171,7 @@ msgstr "" #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form msgid "Period" msgstr "" @@ -172,6 +188,7 @@ msgid "Product" msgstr "" #. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids #: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "Products" @@ -204,6 +221,7 @@ msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate +#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot #: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree msgid "Stock Demand Estimate" msgstr "" @@ -231,7 +249,7 @@ msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:110 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 #: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action #: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate #, python-format @@ -244,7 +262,7 @@ msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:26 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -252,14 +270,15 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:166 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form -msgid "Timesheet Period" +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#, python-format +msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate @@ -273,16 +292,11 @@ msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:183 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 #, python-format msgid "You must select at least one product." msgstr "" -#. module: stock_demand_estimate -#: model:ir.model,name:stock_demand_estimate.model_date_range -msgid "date.range" -msgstr "" - #. module: stock_demand_estimate #: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form msgid "or" From e644bdc9747b36d25757607e9c675a687e409477 Mon Sep 17 00:00:00 2001 From: mreficent Date: Tue, 19 Mar 2019 19:24:59 +0100 Subject: [PATCH 10/43] [MIG] stock_demand_estimate: Migration to 12.0 --- stock_demand_estimate/README.rst | 14 ++-- stock_demand_estimate/__init__.py | 2 - stock_demand_estimate/__manifest__.py | 3 +- stock_demand_estimate/models/__init__.py | 2 - stock_demand_estimate/models/date_range.py | 4 +- .../models/stock_demand_estimate.py | 9 +-- stock_demand_estimate/readme/CONTRIBUTORS.rst | 2 + stock_demand_estimate/readme/DESCRIPTION.rst | 4 + stock_demand_estimate/readme/INSTALL.rst | 6 ++ stock_demand_estimate/readme/USAGE.rst | 7 ++ .../security/stock_security.xml | 2 +- stock_demand_estimate/tests/__init__.py | 2 - .../tests/test_stock_demand_estimate.py | 9 ++- stock_demand_estimate/views/date_range.xml | 13 ++-- .../views/stock_demand_estimate_view.xml | 22 +++--- stock_demand_estimate/wizards/__init__.py | 2 - .../wizards/stock_demand_estimate_wizard.py | 74 ++++++++++--------- .../stock_demand_estimate_wizard_view.xml | 17 ++--- 18 files changed, 102 insertions(+), 92 deletions(-) create mode 100644 stock_demand_estimate/readme/CONTRIBUTORS.rst create mode 100644 stock_demand_estimate/readme/DESCRIPTION.rst create mode 100644 stock_demand_estimate/readme/INSTALL.rst create mode 100644 stock_demand_estimate/readme/USAGE.rst diff --git a/stock_demand_estimate/README.rst b/stock_demand_estimate/README.rst index 5814c3a6c..4ae5d51bd 100644 --- a/stock_demand_estimate/README.rst +++ b/stock_demand_estimate/README.rst @@ -1,5 +1,5 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.png - :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: https://www.gnu.org/licenses/agpl :alt: License: AGPL-3 ===================== @@ -17,9 +17,9 @@ Installation This module relies on: * The OCA module '2D matrix for x2many fields', and can be downloaded from - Github: https://github.com/OCA/web/tree/11.0/web_widget_x2many_2d_matrix + Github: https://github.com/OCA/web/tree/12.0/web_widget_x2many_2d_matrix * The OCA module 'Date Range', and can be downloaded from - Github: https://github.com/OCA/server-ux/tree/11.0/date_range + Github: https://github.com/OCA/server-ux/tree/12.0/date_range Usage @@ -35,7 +35,7 @@ estimates created. .. 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 + :target: https://runbot.odoo-community.org/runbot/153/12.0 Bug Tracker =========== @@ -43,7 +43,7 @@ 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. +help us smash it by providing detailed and welcomed feedback. Credits ======= @@ -51,7 +51,7 @@ Credits Images ------ -* Odoo Community Association: `Icon `_. +* Odoo Community Association: `Icon `_. Contributors ------------ diff --git a/stock_demand_estimate/__init__.py b/stock_demand_estimate/__init__.py index db2f7970e..e1e144406 100644 --- a/stock_demand_estimate/__init__.py +++ b/stock_demand_estimate/__init__.py @@ -1,5 +1,3 @@ -# 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_demand_estimate/__manifest__.py b/stock_demand_estimate/__manifest__.py index 6c33f7337..da4e4e337 100644 --- a/stock_demand_estimate/__manifest__.py +++ b/stock_demand_estimate/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Stock Demand Estimate", "summary": "Allows to create demand estimates.", - "version": "11.0.1.2.0", + "version": "12.0.1.0.0", "author": "Eficent, " "Odoo Community Association (OCA)", "website": "https://github.com/OCA/stock-logistics-warehouse", @@ -22,4 +22,5 @@ "wizards/stock_demand_estimate_wizard_view.xml", ], "license": "AGPL-3", + "installable": True, } diff --git a/stock_demand_estimate/models/__init__.py b/stock_demand_estimate/models/__init__.py index 595f15d26..796276209 100644 --- a/stock_demand_estimate/models/__init__.py +++ b/stock_demand_estimate/models/__init__.py @@ -1,5 +1,3 @@ -# 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 stock_demand_estimate diff --git a/stock_demand_estimate/models/date_range.py b/stock_demand_estimate/models/date_range.py index a33594d4a..4fd1daba2 100644 --- a/stock_demand_estimate/models/date_range.py +++ b/stock_demand_estimate/models/date_range.py @@ -18,6 +18,6 @@ class DateRange(models.Model): def _compute_days(self): for rec in self.filtered(lambda x: x.date_start and x.date_end): rec.days = abs(( - fields.Date.from_string(rec.date_end) - - fields.Date.from_string(rec.date_start) + rec.date_end - + rec.date_start ).days) + 1 diff --git a/stock_demand_estimate/models/stock_demand_estimate.py b/stock_demand_estimate/models/stock_demand_estimate.py index 7cf73e526..068073642 100644 --- a/stock_demand_estimate/models/stock_demand_estimate.py +++ b/stock_demand_estimate/models/stock_demand_estimate.py @@ -24,7 +24,7 @@ class StockDemandEstimate(models.Model): required=True, ) product_uom = fields.Many2one( - comodel_name="product.uom", + comodel_name="uom.uom", string="Unit of measure", ) location_id = fields.Many2one( @@ -43,7 +43,6 @@ class StockDemandEstimate(models.Model): digits=0, store=True, help='Quantity in the default UoM of the product', - readonly=True, ) daily_qty = fields.Float( string='Quantity / Day', @@ -99,10 +98,8 @@ class StockDemandEstimate(models.Model): def get_quantity_by_date_range(self, date_start, date_end): """To be used in other modules""" # Check if the dates overlap with the period - period_date_start = fields.Date.from_string( - self.date_range_id.date_start - ) - period_date_end = fields.Date.from_string(self.date_range_id.date_end) + period_date_start = self.date_range_id.date_start + period_date_end = self.date_range_id.date_end # We need only the periods that overlap # the dates introduced by the user. diff --git a/stock_demand_estimate/readme/CONTRIBUTORS.rst b/stock_demand_estimate/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..daeadd46d --- /dev/null +++ b/stock_demand_estimate/readme/CONTRIBUTORS.rst @@ -0,0 +1,2 @@ +* Jordi Ballester Alomar +* Lois Rilo diff --git a/stock_demand_estimate/readme/DESCRIPTION.rst b/stock_demand_estimate/readme/DESCRIPTION.rst new file mode 100644 index 000000000..9f8401d71 --- /dev/null +++ b/stock_demand_estimate/readme/DESCRIPTION.rst @@ -0,0 +1,4 @@ +This module allows to create demand estimates for a given product and +location, on configurable time periods. + +The module does not provide in itself any specific usage of the estimates. diff --git a/stock_demand_estimate/readme/INSTALL.rst b/stock_demand_estimate/readme/INSTALL.rst new file mode 100644 index 000000000..7d7d64dce --- /dev/null +++ b/stock_demand_estimate/readme/INSTALL.rst @@ -0,0 +1,6 @@ +This module relies on: + +* The OCA module '2D matrix for x2many fields', and can be downloaded from + Github: https://github.com/OCA/web/tree/12.0/web_widget_x2many_2d_matrix +* The OCA module 'Date Range', and can be downloaded from + Github: https://github.com/OCA/server-ux/tree/12.0/date_range diff --git a/stock_demand_estimate/readme/USAGE.rst b/stock_demand_estimate/readme/USAGE.rst new file mode 100644 index 000000000..dacb48d45 --- /dev/null +++ b/stock_demand_estimate/readme/USAGE.rst @@ -0,0 +1,7 @@ +Go to 'Inventory / Configuration / Date Ranges' and define your estimating periods. + +Go to 'Inventory / Demand Planning / Create Demand Estimates' to create or +update your demand estimates. + +Go to 'Inventory / Demand Planning / Demand Estimates' to review the +estimates created. diff --git a/stock_demand_estimate/security/stock_security.xml b/stock_demand_estimate/security/stock_security.xml index d26124b0f..24d61ad29 100644 --- a/stock_demand_estimate/security/stock_security.xml +++ b/stock_demand_estimate/security/stock_security.xml @@ -1,7 +1,7 @@ - + Stock demand estimate multi-company diff --git a/stock_demand_estimate/tests/__init__.py b/stock_demand_estimate/tests/__init__.py index 216a1ed7a..c8d75c468 100644 --- a/stock_demand_estimate/tests/__init__.py +++ b/stock_demand_estimate/tests/__init__.py @@ -1,5 +1,3 @@ -# Copyright 2017 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_demand_estimate diff --git a/stock_demand_estimate/tests/test_stock_demand_estimate.py b/stock_demand_estimate/tests/test_stock_demand_estimate.py index 97d2d362b..26033121e 100644 --- a/stock_demand_estimate/tests/test_stock_demand_estimate.py +++ b/stock_demand_estimate/tests/test_stock_demand_estimate.py @@ -2,6 +2,7 @@ # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from dateutil.rrule import MONTHLY +from odoo import fields from odoo.exceptions import ValidationError from odoo.tests.common import SavepointCase @@ -93,12 +94,12 @@ class TestStockDemandEstimate(SavepointCase): 'There should be 12 lines.', ) self.assertEqual( - sheet.date_start, + fields.Date.to_string(sheet.date_start), '1943-01-01', 'The date start should be 1943-01-01', ) self.assertEqual( - sheet.date_end, + fields.Date.to_string(sheet.date_end), '1943-12-31', 'The date end should be 1943-12-31', ) @@ -152,7 +153,7 @@ class TestStockDemandEstimate(SavepointCase): 'date_end': '1943-12-31', 'location_id': self.location.id, 'date_range_type_id': self.drt_monthly.id, - 'product_ids': [(6, 0, [self.product1.id])] + 'product_ids': [(6, 0, [self.product1.id])], }) wiz.create_sheet() sheets = self.env['stock.demand.estimate.sheet'].search([]) @@ -173,5 +174,5 @@ class TestStockDemandEstimate(SavepointCase): 'date_end': '1943-01-01', 'location_id': self.location.id, 'date_range_type_id': self.drt_monthly.id, - 'product_ids': [(6, 0, [self.product1.id])] + 'product_ids': [(6, 0, [self.product1.id])], }) diff --git a/stock_demand_estimate/views/date_range.xml b/stock_demand_estimate/views/date_range.xml index c33e48198..dbd9544dc 100644 --- a/stock_demand_estimate/views/date_range.xml +++ b/stock_demand_estimate/views/date_range.xml @@ -1,11 +1,10 @@ - + - \ No newline at end of file + diff --git a/stock_demand_estimate/views/stock_demand_estimate_view.xml b/stock_demand_estimate/views/stock_demand_estimate_view.xml index dcdf7159c..6d6ef7c7c 100644 --- a/stock_demand_estimate/views/stock_demand_estimate_view.xml +++ b/stock_demand_estimate/views/stock_demand_estimate_view.xml @@ -1,8 +1,8 @@ - + stock.demand.estimate.tree stock.demand.estimate @@ -18,7 +18,7 @@ - + stock.demand.estimate.pivot stock.demand.estimate @@ -30,7 +30,7 @@ - stock.demand.estimate.search stock.demand.estimate @@ -43,23 +43,23 @@ - + Stock Demand Estimates ir.actions.act_window stock.demand.estimate form tree,pivot + ref="stock_demand_estimate_view_search"/> - + id="stock_demand_estimate_menu" + parent="stock_demand_planning_menu" + action="stock_demand_estimate_action"/> diff --git a/stock_demand_estimate/wizards/__init__.py b/stock_demand_estimate/wizards/__init__.py index 4dbc3b980..efaf6f4ee 100644 --- a/stock_demand_estimate/wizards/__init__.py +++ b/stock_demand_estimate/wizards/__init__.py @@ -1,5 +1,3 @@ -# 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 stock_demand_estimate_wizard diff --git a/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py b/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py index 76980af0c..cd317b005 100644 --- a/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py +++ b/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py @@ -5,7 +5,7 @@ from odoo import api, fields, models, _ from odoo.osv import expression -import odoo.addons.decimal_precision as dp +from odoo.addons import decimal_precision as dp from odoo.exceptions import UserError, ValidationError @@ -43,39 +43,41 @@ class StockDemandEstimateSheet(models.TransientModel): @api.onchange('date_start', 'date_end', 'date_range_type_id',) def _onchange_dates(self): - if not all([self.date_start, self.date_end, self.date_range_type_id]): - return - ranges = self._get_ranges() - if not ranges: - raise UserError(_('There is no ranges created.')) - estimates = self.env['stock.demand.estimate'].search([ - ('product_id', 'in', self.product_ids.ids), - ('date_range_id', 'in', ranges.ids), - ('location_id', '=', self.location_id.id), - ]) - lines = [] - for product in self.product_ids: - for _range in ranges: - estimate = estimates.filtered( - lambda x: (x.date_range_id == _range and - x.product_id == product) - ) - if estimate: - uom_id = estimate[0].product_uom.id - uom_qty = estimate[0].product_uom_qty - estimate_id = estimate[0].id - else: - uom_id = product.uom_id.id - uom_qty = 0.0 - estimate_id = None - lines.append((0, 0, self._get_default_estimate_line( - _range, - product, - uom_id, - uom_qty, - estimate_id=estimate_id, - ))) - self.line_ids = lines + for sheet in self: + if not all([sheet.date_start, sheet.date_end, + sheet.date_range_type_id]): + return + ranges = sheet._get_ranges() + if not ranges: + raise UserError(_('There is no ranges created.')) + estimates = self.env['stock.demand.estimate'].search([ + ('product_id', 'in', sheet.product_ids.ids), + ('date_range_id', 'in', ranges.ids), + ('location_id', '=', sheet.location_id.id), + ]) + lines = [] + for product in sheet.product_ids: + for _range in ranges: + estimate = estimates.filtered( + lambda x: (x.date_range_id == _range and + x.product_id == product) + ) + if estimate: + uom_id = estimate[0].product_uom.id + uom_qty = estimate[0].product_uom_qty + estimate_id = estimate[0].id + else: + uom_id = product.uom_id.id + uom_qty = 0.0 + estimate_id = None + lines.append((0, 0, sheet._get_default_estimate_line( + _range, + product, + uom_id, + uom_qty, + estimate_id=estimate_id, + ))) + sheet.line_ids = lines def _get_ranges(self): domain_1 = [ @@ -168,10 +170,10 @@ class StockDemandEstimateSheetLine(models.TransientModel): string='Product', ) value_x = fields.Char( - string='Period', + string='Period Name', ) value_y = fields.Char( - string='Product', + string='Product Name', ) product_uom_qty = fields.Float( string="Quantity", diff --git a/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml b/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml index 6a0878045..e08995276 100644 --- a/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml +++ b/stock_demand_estimate/wizards/stock_demand_estimate_wizard_view.xml @@ -1,8 +1,8 @@ - + stock.demand.estimate.sheet.form stock.demand.estimate.sheet @@ -47,8 +47,8 @@ - + stock.demand.estimate.wizard.form stock.demand.estimate.wizard @@ -84,11 +84,10 @@ view_mode="form" target="new" key2="client_action_multi" - id="action_stock_demand_estimate_wizard"/> + id="stock_demand_estimate_wizard_action"/> - + From 75bd9baf68de039cf052e2705d56b15b6b2f7df6 Mon Sep 17 00:00:00 2001 From: "Denis Roussel (ACSONE)" Date: Tue, 2 Apr 2019 13:02:21 +0200 Subject: [PATCH 11/43] [IMP] stock_demand_estimate: use of first() Co-Authored-By: mreficent --- stock_demand_estimate/wizards/stock_demand_estimate_wizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py b/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py index cd317b005..ff5b7e554 100644 --- a/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py +++ b/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py @@ -63,7 +63,7 @@ class StockDemandEstimateSheet(models.TransientModel): x.product_id == product) ) if estimate: - uom_id = estimate[0].product_uom.id + uom_id = fields.first(estimate).product_uom.id uom_qty = estimate[0].product_uom_qty estimate_id = estimate[0].id else: From bd2e49ebef7cf80a05aae548ff40488c8cff6ef1 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Sat, 11 May 2019 17:28:28 +0000 Subject: [PATCH 12/43] [UPD] README.rst --- stock_demand_estimate/README.rst | 67 ++- .../static/description/index.html | 442 ++++++++++++++++++ 2 files changed, 487 insertions(+), 22 deletions(-) create mode 100644 stock_demand_estimate/static/description/index.html diff --git a/stock_demand_estimate/README.rst b/stock_demand_estimate/README.rst index 4ae5d51bd..22e5412f8 100644 --- a/stock_demand_estimate/README.rst +++ b/stock_demand_estimate/README.rst @@ -1,16 +1,40 @@ -.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png - :target: https://www.gnu.org/licenses/agpl - :alt: License: AGPL-3 - ===================== Stock Demand Estimate ===================== +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-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_demand_estimate + :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_demand_estimate + :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 to create demand estimates for a given product and location, on configurable time periods. The module does not provide in itself any specific usage of the estimates. +**Table of contents** + +.. contents:: + :local: + Installation ============ @@ -21,7 +45,6 @@ This module relies on: * The OCA module 'Date Range', and can be downloaded from Github: https://github.com/OCA/server-ux/tree/12.0/date_range - Usage ===== @@ -33,43 +56,43 @@ update your demand estimates. Go to 'Inventory / Demand Planning / Demand Estimates' to review the estimates created. -.. 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/12.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 smash it by providing 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 `_. +* Eficent Contributors ------------- +~~~~~~~~~~~~ * Jordi Ballester Alomar * Lois Rilo -Maintainer ----------- +Maintainers +~~~~~~~~~~~ + +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_demand_estimate/static/description/index.html b/stock_demand_estimate/static/description/index.html new file mode 100644 index 000000000..9ea65258b --- /dev/null +++ b/stock_demand_estimate/static/description/index.html @@ -0,0 +1,442 @@ + + + + + + +Stock Demand Estimate + + + +
+

Stock Demand Estimate

+ + +

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

+

This module allows to create demand estimates for a given product and +location, on configurable time periods.

+

The module does not provide in itself any specific usage of the estimates.

+

Table of contents

+ +
+

Installation

+

This module relies on:

+ +
+
+

Usage

+

Go to ‘Inventory / Configuration / Date Ranges’ and define your estimating periods.

+

Go to ‘Inventory / Demand Planning / Create Demand Estimates’ to create or +update your demand estimates.

+

Go to ‘Inventory / Demand Planning / Demand Estimates’ to review the +estimates created.

+
+
+

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

+
    +
  • Eficent
  • +
+
+
+

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.

+
+
+
+ + From 2e63e996a4c7961ed35ee994ff6bbba73855266e Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 11 May 2019 17:37:05 +0000 Subject: [PATCH 13/43] [UPD] Update stock_demand_estimate.pot --- .../i18n/stock_demand_estimate.pot | 178 +++++++++--------- 1 file changed, 93 insertions(+), 85 deletions(-) diff --git a/stock_demand_estimate/i18n/stock_demand_estimate.pot b/stock_demand_estimate/i18n/stock_demand_estimate.pot index 87ba00e8c..d84ed39b4 100644 --- a/stock_demand_estimate/i18n/stock_demand_estimate.pot +++ b/stock_demand_estimate/i18n/stock_demand_estimate.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,41 +14,41 @@ msgstr "" "Plural-Forms: \n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -58,165 +58,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -227,7 +235,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -238,65 +246,65 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "The requested operation cannot be processed because of a programming error setting the `product_qty` field instead of the `product_uom_qty`." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" From d050ab1bedf3ddccd3a2fe94bae43b428089315f Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Mon, 20 May 2019 21:05:35 +0000 Subject: [PATCH 14/43] 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_demand_estimate Translate-URL: https://translation.odoo-community.org/projects/stock-logistics-warehouse-12-0/stock-logistics-warehouse-12-0-stock_demand_estimate/ --- stock_demand_estimate/i18n/am.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/ar.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/bg.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/bs.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/ca.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/ca_ES.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/cs.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/da.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/de.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/el_GR.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/en_AU.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/en_GB.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/es.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/es_AR.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/es_CL.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/es_CO.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/es_CR.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/es_DO.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/es_EC.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/es_ES.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/es_MX.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/es_PE.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/es_PY.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/es_VE.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/et.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/eu.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/fa.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/fi.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/fr.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/fr_CA.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/fr_CH.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/fr_FR.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/gl.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/gl_ES.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/he.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/hi.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/hr.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/hr_HR.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/hu.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/id.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/it.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/ja.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/ko.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/lo.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/lt.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/lt_LT.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/lv.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/mk.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/mn.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/nb.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/nb_NO.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/nl.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/nl_BE.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/nl_NL.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/pl.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/pt.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/pt_BR.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/pt_PT.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/ro.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/ru.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/sk.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/sl.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/sr.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/sr@latin.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/sv.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/th.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/tr.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/tr_TR.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/uk.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/vi.po | 176 ++++++++++++------------ stock_demand_estimate/i18n/vi_VN.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/zh_CN.po | 178 +++++++++++++------------ stock_demand_estimate/i18n/zh_TW.po | 176 ++++++++++++------------ 73 files changed, 6766 insertions(+), 6132 deletions(-) diff --git a/stock_demand_estimate/i18n/am.po b/stock_demand_estimate/i18n/am.po index 9e02be37a..4c2b59fd6 100644 --- a/stock_demand_estimate/i18n/am.po +++ b/stock_demand_estimate/i18n/am.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "o" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/ar.po b/stock_demand_estimate/i18n/ar.po index 4da5de598..12ef33b00 100644 --- a/stock_demand_estimate/i18n/ar.po +++ b/stock_demand_estimate/i18n/ar.po @@ -20,41 +20,41 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "إلغاء" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "الشركة" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "أنشئ بواسطة" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "أنشئ في" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "اسم العرض" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "المعرف" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "آخر تعديل في" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "آخر تحديث بواسطة" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "آخر تحديث في" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "أو" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/bg.po b/stock_demand_estimate/i18n/bg.po index 2e74a68bb..d36eb4057 100644 --- a/stock_demand_estimate/i18n/bg.po +++ b/stock_demand_estimate/i18n/bg.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Откажи" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Фирма" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Създадено от" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Създадено на" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Име за показване" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Последно променено на" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Последно обновено от" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Последно обновено на" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "или" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/bs.po b/stock_demand_estimate/i18n/bs.po index ec38a8ef7..3c0f022f9 100644 --- a/stock_demand_estimate/i18n/bs.po +++ b/stock_demand_estimate/i18n/bs.po @@ -20,41 +20,41 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Otkaži" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Kompanija" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Kreirao" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Kreirano" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Prikaži naziv" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Zadnje mijenjano" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Zadnji ažurirao" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Zadnje ažurirano" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ili" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/ca.po b/stock_demand_estimate/i18n/ca.po index cfb4c0bde..bfa8aa7fc 100644 --- a/stock_demand_estimate/i18n/ca.po +++ b/stock_demand_estimate/i18n/ca.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancel·la" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Companyia" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creat per" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creat el" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Veure el nom" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Darrera modificació el" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Darrera Actualització per" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Darrera Actualització el" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Ubicació " #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Producte" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Producte" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Quantitat" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +242,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +253,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +279,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "o" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/ca_ES.po b/stock_demand_estimate/i18n/ca_ES.po index 33848f32d..4a92fa24f 100644 --- a/stock_demand_estimate/i18n/ca_ES.po +++ b/stock_demand_estimate/i18n/ca_ES.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancel·la" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Companyia" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/cs.po b/stock_demand_estimate/i18n/cs.po index f5285d273..b39961887 100644 --- a/stock_demand_estimate/i18n/cs.po +++ b/stock_demand_estimate/i18n/cs.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Zrušit" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Společnost" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Vytvořil(a)" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Vytvořeno" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Zobrazovaný název" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Naposled upraveno" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Naposled upraveno" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Naposled upraveno" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "nebo" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/da.po b/stock_demand_estimate/i18n/da.po index cd9e76718..187b24678 100644 --- a/stock_demand_estimate/i18n/da.po +++ b/stock_demand_estimate/i18n/da.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Annuller" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Virksomhed" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Oprettet af" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Oprettet den" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Vist navn" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "Id" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Sidst ændret den" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Sidst opdateret af" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Sidst opdateret den" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Postnr/by " #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "eller" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/de.po b/stock_demand_estimate/i18n/de.po index 1f554f7a4..b49a9ee80 100644 --- a/stock_demand_estimate/i18n/de.po +++ b/stock_demand_estimate/i18n/de.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Abbrechen" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Unternehmen" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Angelegt durch" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Angelegt am" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "Datum ab" @@ -63,166 +63,176 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "Datum bis" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end #, fuzzy msgid "Date to" msgstr "Datum bis" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Anzeigename" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Zuletzt geändert am" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Zuletzt aktualisiert durch" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Zuletzt aktualisiert am" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Standort" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Produkt" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Produkt" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Menge" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "oder" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/el_GR.po b/stock_demand_estimate/i18n/el_GR.po index 9ae3df381..32cee6fb7 100644 --- a/stock_demand_estimate/i18n/el_GR.po +++ b/stock_demand_estimate/i18n/el_GR.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Άκυρο" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Εταιρεία" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Δημιουργήθηκε από " #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Δημιουργήθηκε στις" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "Κωδικός" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Τελευταία ενημέρωση από" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Τελευταία ενημέρωση στις" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Προϊόν" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Προϊόν" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Ποσότητα" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ή" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/en_AU.po b/stock_demand_estimate/i18n/en_AU.po index 2df352364..e6de1f845 100644 --- a/stock_demand_estimate/i18n/en_AU.po +++ b/stock_demand_estimate/i18n/en_AU.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancel" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "or" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/en_GB.po b/stock_demand_estimate/i18n/en_GB.po index ebfcf5fc7..5024f1fe6 100644 --- a/stock_demand_estimate/i18n/en_GB.po +++ b/stock_demand_estimate/i18n/en_GB.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancel" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Company" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Created by" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Created on" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Display Name" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Last Modified on" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Last Updated by" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Last Updated on" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "or" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/es.po b/stock_demand_estimate/i18n/es.po index f11781bab..55481c549 100644 --- a/stock_demand_estimate/i18n/es.po +++ b/stock_demand_estimate/i18n/es.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Compañia" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado el" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "Fecha desde" @@ -63,166 +63,176 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "Fecha hasta" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end #, fuzzy msgid "Date to" msgstr "Fecha hasta" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Última modificación el" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Actualizado por última vez por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Actualizado por última vez el" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Localización" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Producto" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Producto" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Cantidad" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "o" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/es_AR.po b/stock_demand_estimate/i18n/es_AR.po index a209737d8..a3676d6f4 100644 --- a/stock_demand_estimate/i18n/es_AR.po +++ b/stock_demand_estimate/i18n/es_AR.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Mostrar Nombre" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Última actualización realizada por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Última actualización el" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "o" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/es_CL.po b/stock_demand_estimate/i18n/es_CL.po index 49a8dc198..693119694 100644 --- a/stock_demand_estimate/i18n/es_CL.po +++ b/stock_demand_estimate/i18n/es_CL.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID (identificación)" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Última actualización de" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "o" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/es_CO.po b/stock_demand_estimate/i18n/es_CO.po index b7cecae51..ec30a515a 100644 --- a/stock_demand_estimate/i18n/es_CO.po +++ b/stock_demand_estimate/i18n/es_CO.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nombre Público" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Última Modificación el" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Actualizado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Actualizado" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "o" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/es_CR.po b/stock_demand_estimate/i18n/es_CR.po index 0a4841d62..cb03ff7e5 100644 --- a/stock_demand_estimate/i18n/es_CR.po +++ b/stock_demand_estimate/i18n/es_CR.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Compañía" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "o" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/es_DO.po b/stock_demand_estimate/i18n/es_DO.po index 51e89fbeb..0236bbc30 100644 --- a/stock_demand_estimate/i18n/es_DO.po +++ b/stock_demand_estimate/i18n/es_DO.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Última actualización de" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "o" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/es_EC.po b/stock_demand_estimate/i18n/es_EC.po index a6a90cb13..120e517a4 100644 --- a/stock_demand_estimate/i18n/es_EC.po +++ b/stock_demand_estimate/i18n/es_EC.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Compañia" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID (identificación)" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Última actualización de" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "o" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/es_ES.po b/stock_demand_estimate/i18n/es_ES.po index 210bb9829..5fda4c828 100644 --- a/stock_demand_estimate/i18n/es_ES.po +++ b/stock_demand_estimate/i18n/es_ES.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Compañía" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nombre para mostrar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Última modificación en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Última actualización por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Ubicación" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Producto" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Producto" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "o" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/es_MX.po b/stock_demand_estimate/i18n/es_MX.po index cc393a890..e0d433221 100644 --- a/stock_demand_estimate/i18n/es_MX.po +++ b/stock_demand_estimate/i18n/es_MX.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Compañía" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nombre desplegado" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Ultima modificacion realizada" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Ultima actualizacion por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Ultima actualización realizada" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ó" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/es_PE.po b/stock_demand_estimate/i18n/es_PE.po index 18adb8eb7..b7408af8e 100644 --- a/stock_demand_estimate/i18n/es_PE.po +++ b/stock_demand_estimate/i18n/es_PE.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nombre a Mostrar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Ultima Modificación en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Actualizado última vez por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Ultima Actualización" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "o" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/es_PY.po b/stock_demand_estimate/i18n/es_PY.po index 497aa8850..2125cde79 100644 --- a/stock_demand_estimate/i18n/es_PY.po +++ b/stock_demand_estimate/i18n/es_PY.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Ultima actualización por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Ultima actualización en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/es_VE.po b/stock_demand_estimate/i18n/es_VE.po index c09cc4434..fdc3e929f 100644 --- a/stock_demand_estimate/i18n/es_VE.po +++ b/stock_demand_estimate/i18n/es_VE.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Mostrar nombre" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Modificada por última vez" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Última actualización realizada por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Ultima actualizacion en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/et.po b/stock_demand_estimate/i18n/et.po index c42a2284b..0a0a32165 100644 --- a/stock_demand_estimate/i18n/et.po +++ b/stock_demand_estimate/i18n/et.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Loobu" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Ettevõte" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Loonud" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Loodud" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Näidatav nimi" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Viimati muudetud" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Viimati uuendatud" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Viimati uuendatud" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "või" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/eu.po b/stock_demand_estimate/i18n/eu.po index 964dd8539..ed2405b17 100644 --- a/stock_demand_estimate/i18n/eu.po +++ b/stock_demand_estimate/i18n/eu.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Ezeztatu" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Enpresa" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Nork sortua" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Created on" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Izena erakutsi" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Last Updated by" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Last Updated on" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Produktua" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Produktua" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +242,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +253,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +279,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "edo" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/fa.po b/stock_demand_estimate/i18n/fa.po index bdf18b66d..b313bdc15 100644 --- a/stock_demand_estimate/i18n/fa.po +++ b/stock_demand_estimate/i18n/fa.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "لغو" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "ایجاد شده توسط" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "ایجاد شده در" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "نام نمایشی" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "شناسه" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "تاریخ آخرین به‌روزرسانی" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "آخرین به روز رسانی توسط" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "آخرین به روز رسانی در" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "یا" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/fi.po b/stock_demand_estimate/i18n/fi.po index ca16bb6e8..266aeeaff 100644 --- a/stock_demand_estimate/i18n/fi.po +++ b/stock_demand_estimate/i18n/fi.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Peruuta" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Yritys" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Luonut" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Luotu" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nimi" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Viimeksi muokattu" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Viimeksi päivittänyt" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Viimeksi päivitetty" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Sijainti" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Tuote" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Tuote" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Määrä" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +242,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +253,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +279,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "tai" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/fr.po b/stock_demand_estimate/i18n/fr.po index 99ec85945..ef2b2f6f4 100644 --- a/stock_demand_estimate/i18n/fr.po +++ b/stock_demand_estimate/i18n/fr.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Annuler" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Société" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Créé par" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Créé le" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "Date de" @@ -63,166 +63,176 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "Date de fin" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end #, fuzzy msgid "Date to" msgstr "Date de fin" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nom affiché" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Modifié le" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Dernière màj par" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Dernière màj le" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Emplacement" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Article" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Article" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Quantité" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ou" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/fr_CA.po b/stock_demand_estimate/i18n/fr_CA.po index 99ce90149..58298ed81 100644 --- a/stock_demand_estimate/i18n/fr_CA.po +++ b/stock_demand_estimate/i18n/fr_CA.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Annuler" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Créé par" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Créé le" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Afficher le nom" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "Identifiant" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Dernière mise à jour par" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Dernière mise à jour le" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ou" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/fr_CH.po b/stock_demand_estimate/i18n/fr_CH.po index 3d5e25d35..6d1a118b0 100644 --- a/stock_demand_estimate/i18n/fr_CH.po +++ b/stock_demand_estimate/i18n/fr_CH.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Annuler" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Créé par" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Créé le" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nom affiché" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Dernière modification le" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Modifié par" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Modifié le" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Produit" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Produit" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ou" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/fr_FR.po b/stock_demand_estimate/i18n/fr_FR.po index 626571712..7f703665a 100644 --- a/stock_demand_estimate/i18n/fr_FR.po +++ b/stock_demand_estimate/i18n/fr_FR.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Annuler" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Produit" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Produit" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Quantité" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/gl.po b/stock_demand_estimate/i18n/gl.po index b3a93f339..b6ae33b90 100644 --- a/stock_demand_estimate/i18n/gl.po +++ b/stock_demand_estimate/i18n/gl.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Compañía" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creado en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Modificado por última vez o" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "ültima actualización por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Última actualización en" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Localidade" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Produto" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Produto" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Cantidade" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +242,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +253,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +279,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ou" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/gl_ES.po b/stock_demand_estimate/i18n/gl_ES.po index 0da5fa0cd..01c9dce04 100644 --- a/stock_demand_estimate/i18n/gl_ES.po +++ b/stock_demand_estimate/i18n/gl_ES.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/he.po b/stock_demand_estimate/i18n/he.po index c42d498da..3a08805fd 100644 --- a/stock_demand_estimate/i18n/he.po +++ b/stock_demand_estimate/i18n/he.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "בטל" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "נוצר על ידי" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "נוצר ב-" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "השם המוצג" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "מזהה" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "תאריך שינוי אחרון" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "עודכן לאחרונה על ידי" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "עודכן לאחרונה על" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "או" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/hi.po b/stock_demand_estimate/i18n/hi.po index bd84c83d2..961a8d9ad 100644 --- a/stock_demand_estimate/i18n/hi.po +++ b/stock_demand_estimate/i18n/hi.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "रद्द" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/hr.po b/stock_demand_estimate/i18n/hr.po index 410f553e6..baf28ff89 100644 --- a/stock_demand_estimate/i18n/hr.po +++ b/stock_demand_estimate/i18n/hr.po @@ -20,41 +20,41 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Odustani" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Poduzeće" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Kreirao" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Datum kreiranja" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Naziv za prikaz" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Zadnja promjena" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Promijenio" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Vrijeme promjene" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Lokacija" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Proizvod" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Proizvod" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Količina" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ili" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/hr_HR.po b/stock_demand_estimate/i18n/hr_HR.po index d0f727ce8..826a00565 100644 --- a/stock_demand_estimate/i18n/hr_HR.po +++ b/stock_demand_estimate/i18n/hr_HR.po @@ -21,41 +21,41 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Otkaži" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Poduzeće" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Kreirao" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Kreirano" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -65,165 +65,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Naziv" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Zadnje modificirano" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Zadnji ažurirao" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Zadnje ažurirano" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Lokacija" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Proizvod" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Proizvod" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Količina" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -234,7 +244,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -245,25 +255,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -271,40 +281,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/hu.po b/stock_demand_estimate/i18n/hu.po index 4d0452e63..a9b9b7c28 100644 --- a/stock_demand_estimate/i18n/hu.po +++ b/stock_demand_estimate/i18n/hu.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Mégsem" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Vállalat" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Készítette" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Létrehozás dátuma" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Név megjelenítése" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Utolsó frissítés dátuma" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Utoljára frissítve, által" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Utoljára frissítve " #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "vagy" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/id.po b/stock_demand_estimate/i18n/id.po index adf34ad8e..709f6ab3e 100644 --- a/stock_demand_estimate/i18n/id.po +++ b/stock_demand_estimate/i18n/id.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Batalkan" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Perusahaan" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Dibuat oleh" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Dibuat pada" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nama Tampilan" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Terakhir Dimodifikasi pada" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Diperbaharui oleh" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Diperbaharui pada" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "atau" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/it.po b/stock_demand_estimate/i18n/it.po index 298a9817e..e108be2f0 100644 --- a/stock_demand_estimate/i18n/it.po +++ b/stock_demand_estimate/i18n/it.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancella" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Azienda" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creato da" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creato il" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nome da visualizzare" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Ultima modifica il" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Autore ultimo aggiornamento" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Data ultimo aggiornamento" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Locazione" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Prodotto" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Prodotto" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Quantià" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +242,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +253,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +279,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "o" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/ja.po b/stock_demand_estimate/i18n/ja.po index cee16fca0..fe136b8c3 100644 --- a/stock_demand_estimate/i18n/ja.po +++ b/stock_demand_estimate/i18n/ja.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "キャンセル" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "会社" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "作成者" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "作成日" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "表示名" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "最終更新日" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "最終更新者" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "最終更新日" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "または" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/ko.po b/stock_demand_estimate/i18n/ko.po index 7946a5efb..cae7f0ad6 100644 --- a/stock_demand_estimate/i18n/ko.po +++ b/stock_demand_estimate/i18n/ko.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "취소" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "작성자" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "작성일" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "표시 이름" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "최근 수정" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "최근 갱신한 사람" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "최근 갱신 날짜" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "또는" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/lo.po b/stock_demand_estimate/i18n/lo.po index a0180f28c..93d644551 100644 --- a/stock_demand_estimate/i18n/lo.po +++ b/stock_demand_estimate/i18n/lo.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "ຍົກເລີອກ" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ຫຼື" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/lt.po b/stock_demand_estimate/i18n/lt.po index 8974c2ddf..18adf65a3 100644 --- a/stock_demand_estimate/i18n/lt.po +++ b/stock_demand_estimate/i18n/lt.po @@ -20,41 +20,41 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Atšaukti" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Įmonė" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Sukūrė" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Sukurta" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Vaizduojamas pavadinimas" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Paskutinį kartą keista" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Paskutinį kartą atnaujino" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Paskutinį kartą atnaujinta" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "arba" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/lt_LT.po b/stock_demand_estimate/i18n/lt_LT.po index 68f76ab67..89790bb59 100644 --- a/stock_demand_estimate/i18n/lt_LT.po +++ b/stock_demand_estimate/i18n/lt_LT.po @@ -21,41 +21,41 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Atšaukti" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Sukūrė" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Sukurta" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -65,165 +65,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Paskutinį kartą atnaujino" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Paskutinį kartą atnaujinta" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -234,7 +242,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -245,25 +253,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -271,40 +279,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "arba" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/lv.po b/stock_demand_estimate/i18n/lv.po index e1f24664c..12e9ae0ac 100644 --- a/stock_demand_estimate/i18n/lv.po +++ b/stock_demand_estimate/i18n/lv.po @@ -20,41 +20,41 @@ msgstr "" "2);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Atcelt" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Uzņēmums" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Izveidoja" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Izveidots" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Pēdējo reizi atjaunoja" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Pēdējās izmaiņas" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "vai" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/mk.po b/stock_demand_estimate/i18n/mk.po index 6e2c54852..a91356d43 100644 --- a/stock_demand_estimate/i18n/mk.po +++ b/stock_demand_estimate/i18n/mk.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Откажи" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Компанија" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Креирано од" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Креирано на" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Прикажи име" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Последна промена на" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Последно ажурирање од" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Последно ажурирање на" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "или" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/mn.po b/stock_demand_estimate/i18n/mn.po index 54ce84f4d..3c5296468 100644 --- a/stock_demand_estimate/i18n/mn.po +++ b/stock_demand_estimate/i18n/mn.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Цуцлах" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Компани" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Үүсгэгч" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Үүсгэсэн" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Дэлгэцийн Нэр" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Сүүлийн засвар хийсэн огноо" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Сүүлийн засвар хийсэн" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Сүүлийн засвар хийсэн огноо" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "эсвэл" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/nb.po b/stock_demand_estimate/i18n/nb.po index a4b9275f3..c3ceadd2b 100644 --- a/stock_demand_estimate/i18n/nb.po +++ b/stock_demand_estimate/i18n/nb.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Avbryt" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Firma" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Opprettet av" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Opprettet den" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Visnings navn" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Sist oppdatert " #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Sist oppdatert av" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Sist oppdatert" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "eller" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/nb_NO.po b/stock_demand_estimate/i18n/nb_NO.po index 1d4c3d2eb..d455129f1 100644 --- a/stock_demand_estimate/i18n/nb_NO.po +++ b/stock_demand_estimate/i18n/nb_NO.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Lukk" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Firma" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Laget av" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Laget den" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Vis navn" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Sist endret den" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Sist oppdatert av" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Sist oppdatert den" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/nl.po b/stock_demand_estimate/i18n/nl.po index c1ccdc563..8499ea731 100644 --- a/stock_demand_estimate/i18n/nl.po +++ b/stock_demand_estimate/i18n/nl.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Annuleer" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Bedrijf" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Aangemaakt door" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Aangemaakt op" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "Datum van" @@ -63,166 +63,176 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "Datum tot" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end #, fuzzy msgid "Date to" msgstr "Datum tot" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Te tonen naam" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Laatst bijgewerkt op" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Laatst bijgewerkt door" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Locatie" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Product" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Product" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Hoeveelheid" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "of" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/nl_BE.po b/stock_demand_estimate/i18n/nl_BE.po index 5226b3de1..5e77905f0 100644 --- a/stock_demand_estimate/i18n/nl_BE.po +++ b/stock_demand_estimate/i18n/nl_BE.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Bedrijf" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Gemaakt door" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Gemaakt op" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Schermnaam" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Laatst Aangepast op" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Laatst bijgewerkt door" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Hoeveelheid" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/nl_NL.po b/stock_demand_estimate/i18n/nl_NL.po index 73767d105..ee98d50a1 100644 --- a/stock_demand_estimate/i18n/nl_NL.po +++ b/stock_demand_estimate/i18n/nl_NL.po @@ -21,41 +21,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Aangemaakt door" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Aangemaakt op" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -65,165 +65,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Weergavenaam" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Laatst aangepast op" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Laatst bijgewerkt door" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Locatie" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Product" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Product" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Aantal" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -234,7 +244,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -245,25 +255,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -271,40 +281,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/pl.po b/stock_demand_estimate/i18n/pl.po index 6fb703ce7..d71218ce0 100644 --- a/stock_demand_estimate/i18n/pl.po +++ b/stock_demand_estimate/i18n/pl.po @@ -21,41 +21,41 @@ msgstr "" "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Anuluj" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Firma" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Utworzone przez" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Utworzono" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -65,165 +65,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Wyświetlana nazwa " #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Ostatnio modyfikowano" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Ostatnio modyfikowane przez" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Ostatnia zmiana" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -234,7 +242,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -245,25 +253,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -271,40 +279,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "lub" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/pt.po b/stock_demand_estimate/i18n/pt.po index 1e0b2d4dd..a3868e98e 100644 --- a/stock_demand_estimate/i18n/pt.po +++ b/stock_demand_estimate/i18n/pt.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Empresa" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Criado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Criado em" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nome a Apresentar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Modificado a última vez por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Atualizado pela última vez por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Atualizado pela última vez em" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Localização" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Produto" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Produto" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Quantidade" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +242,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +253,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +279,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ou" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/pt_BR.po b/stock_demand_estimate/i18n/pt_BR.po index 010a7a224..f3ca3ce7e 100644 --- a/stock_demand_estimate/i18n/pt_BR.po +++ b/stock_demand_estimate/i18n/pt_BR.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Empresa" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Criado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Criado em" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "Data a partir" @@ -64,166 +64,176 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end #, fuzzy msgid "Date to" msgstr "Data a partir" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Mostrar Nome" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Última Modificação em" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Última atualização por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Última atualização em" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Localização" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Produto" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Produto" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Quantidade" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -234,7 +244,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -245,25 +255,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -271,40 +281,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ou" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/pt_PT.po b/stock_demand_estimate/i18n/pt_PT.po index 9caa7fa69..fb2f7abcf 100644 --- a/stock_demand_estimate/i18n/pt_PT.po +++ b/stock_demand_estimate/i18n/pt_PT.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Cancelar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Empresa" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Criado por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Criado em" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nome a Apresentar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Última Modificação em" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Atualizado pela última vez por" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Atualizado pela última vez em" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Localização" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ou" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/ro.po b/stock_demand_estimate/i18n/ro.po index d514d3581..e6add01a2 100644 --- a/stock_demand_estimate/i18n/ro.po +++ b/stock_demand_estimate/i18n/ro.po @@ -20,41 +20,41 @@ msgstr "" "2:1));\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Anuleaza" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Companie" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Creat de" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Creat la" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Nume Afişat" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Ultima actualizare în" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Ultima actualizare făcută de" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Ultima actualizare la" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Produs" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Produs" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Cantitate" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "sau" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/ru.po b/stock_demand_estimate/i18n/ru.po index 82fe73cbc..39ca4ee12 100644 --- a/stock_demand_estimate/i18n/ru.po +++ b/stock_demand_estimate/i18n/ru.po @@ -21,41 +21,41 @@ msgstr "" "%100>=11 && n%100<=14)? 2 : 3);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Отменена" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Компания" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Создано" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Создан" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -65,165 +65,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Последний раз обновлено" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Последний раз обновлено" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Товар/Услуга" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Товар/Услуга" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Кол-во" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -234,7 +244,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -245,25 +255,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -271,40 +281,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "или" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/sk.po b/stock_demand_estimate/i18n/sk.po index 244c83453..3b997a18a 100644 --- a/stock_demand_estimate/i18n/sk.po +++ b/stock_demand_estimate/i18n/sk.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Zrušiť" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Spoločnosť" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Vytvoril" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Vytvorené" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Zobraziť meno" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Posledná modifikácia" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Naposledy upravoval" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Naposledy upravované" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "alebo" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/sl.po b/stock_demand_estimate/i18n/sl.po index d5a76bc92..8d0f28ccc 100644 --- a/stock_demand_estimate/i18n/sl.po +++ b/stock_demand_estimate/i18n/sl.po @@ -20,41 +20,41 @@ msgstr "" "%100==4 ? 2 : 3);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Preklic" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Družba" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Ustvaril" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Ustvarjeno" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "Od datuma" @@ -64,166 +64,176 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "Do datuma" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end #, fuzzy msgid "Date to" msgstr "Do datuma" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Prikazni naziv" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Zadnjič spremenjeno" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Zadnjič posodobil" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Zadnjič posodobljeno" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Lokacija" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Proizvod" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Proizvod" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Količina" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "Količina v privzeti EM za ta proizvod" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -234,7 +244,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -245,25 +255,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -271,40 +281,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ali" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/sr.po b/stock_demand_estimate/i18n/sr.po index 600d90971..4a95568db 100644 --- a/stock_demand_estimate/i18n/sr.po +++ b/stock_demand_estimate/i18n/sr.po @@ -20,41 +20,41 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Otkaži" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Kreiran" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/sr@latin.po b/stock_demand_estimate/i18n/sr@latin.po index 38a8da9c8..92b523c5b 100644 --- a/stock_demand_estimate/i18n/sr@latin.po +++ b/stock_demand_estimate/i18n/sr@latin.po @@ -21,41 +21,41 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Otkaži" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Kreirao" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Kreiran" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -65,165 +65,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Ime za prikaz" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Zadnja izmjena" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Zadnja izmjena" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Zadnja izmjena" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -234,7 +242,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -245,25 +253,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -271,40 +279,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ili" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/sv.po b/stock_demand_estimate/i18n/sv.po index 5662c1b3b..e148839ca 100644 --- a/stock_demand_estimate/i18n/sv.po +++ b/stock_demand_estimate/i18n/sv.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Avbryt" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Bolag" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Skapad av" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Skapad den" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Visa namn" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Senast redigerad" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Senast uppdaterad av" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Senast uppdaterad" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "eller" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/th.po b/stock_demand_estimate/i18n/th.po index 58890ea7d..3a0b5ca42 100644 --- a/stock_demand_estimate/i18n/th.po +++ b/stock_demand_estimate/i18n/th.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "ยกเลิก" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "บริษัท" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "สร้างโดย" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "สร้างเมื่อ" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "ชื่อที่ใช้แสดง" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "รหัส" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "แก้ไขครั้งสุดท้ายเมื่อ" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "อัพเดทครั้งสุดท้ายโดย" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "อัพเดทครั้งสุดท้ายเมื่อ" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "หรือ" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/tr.po b/stock_demand_estimate/i18n/tr.po index b6d124368..a0db6819d 100644 --- a/stock_demand_estimate/i18n/tr.po +++ b/stock_demand_estimate/i18n/tr.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Vazgeç" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Şirket" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Oluşturan" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Oluşturuldu" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Görünen İsim" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Son değişiklik" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Son güncelleyen" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Son güncellenme" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Ürün" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Ürün" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +242,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +253,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +279,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ya da" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/tr_TR.po b/stock_demand_estimate/i18n/tr_TR.po index 0d47e547a..1fe73a1ec 100644 --- a/stock_demand_estimate/i18n/tr_TR.po +++ b/stock_demand_estimate/i18n/tr_TR.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "İptal et" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "Firma" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Oluşturan" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Oluşturulma tarihi" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Görünen ad" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "Kimlik" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "En son güncelleme tarihi" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "En son güncelleyen " #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "En son güncelleme tarihi" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "Konum" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Ürün" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Ürün" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "Miktar" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "ya da " #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/uk.po b/stock_demand_estimate/i18n/uk.po index 38af58d18..a34ce86d4 100644 --- a/stock_demand_estimate/i18n/uk.po +++ b/stock_demand_estimate/i18n/uk.po @@ -20,41 +20,41 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Скасувати" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Створив" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Дата створення" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Назва для відображення" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Остання модифікація" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Востаннє оновив" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Останнє оновлення" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "або" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/vi.po b/stock_demand_estimate/i18n/vi.po index ab075bd25..fdbe69831 100644 --- a/stock_demand_estimate/i18n/vi.po +++ b/stock_demand_estimate/i18n/vi.po @@ -19,41 +19,41 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Được tạo bởi" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Được tạo vào" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -63,165 +63,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "Tên hiển thị" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "Sửa lần cuối vào" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Last Updated by" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Cập nhật lần cuối vào" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -232,7 +240,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -243,25 +251,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -269,40 +277,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/vi_VN.po b/stock_demand_estimate/i18n/vi_VN.po index 4122a64d0..2fbc20065 100644 --- a/stock_demand_estimate/i18n/vi_VN.po +++ b/stock_demand_estimate/i18n/vi_VN.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "Hủy" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "Tạo bởi" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "Tạo vào" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "Cập nhật lần cuối bởi" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "Cập nhật lần cuối vào" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "Sản phẩm" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "Sản phẩm" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "hoặc" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/zh_CN.po b/stock_demand_estimate/i18n/zh_CN.po index 34a918746..c639bf92a 100644 --- a/stock_demand_estimate/i18n/zh_CN.po +++ b/stock_demand_estimate/i18n/zh_CN.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "取消" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "公司" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "创建者" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "创建时间" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,175 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "显示名称" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "ID" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "最后修改时间" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "最后更新者" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "最后更新时间" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "产品" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +#, fuzzy +#| msgid "Product" +msgid "Product Name" +msgstr "产品" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +243,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +254,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +280,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "或" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" diff --git a/stock_demand_estimate/i18n/zh_TW.po b/stock_demand_estimate/i18n/zh_TW.po index 4a4e38b96..da3ead188 100644 --- a/stock_demand_estimate/i18n/zh_TW.po +++ b/stock_demand_estimate/i18n/zh_TW.po @@ -20,41 +20,41 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Cancel" msgstr "刪除" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_company_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__company_id msgid "Company" msgstr "公司" #. module: stock_demand_estimate -#: model:ir.actions.act_window,name:stock_demand_estimate.action_stock_demand_estimate_wizard -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate_wizard +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_wizard_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_wizard_menu msgid "Create Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_uid msgid "Created by" msgstr "建立者" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_create_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__create_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__create_date msgid "Created on" msgstr "建立於" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_start -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_start +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_start msgid "Date From" msgstr "" @@ -64,165 +64,173 @@ msgid "Date Range" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_range_type_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_range_type_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_range_type_id msgid "Date Range Type" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menuitem_date_range +#: model:ir.ui.menu,name:stock_demand_estimate.date_range_menu msgid "Date Ranges" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__date_end msgid "Date To" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_date_end +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__date_end msgid "Date to" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range_days +#: model:ir.model.fields,field_description:stock_demand_estimate.field_date_range__days msgid "Days between dates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_planning +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_planning_menu msgid "Demand Planning" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_display_name -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__display_name +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__display_name msgid "Display Name" msgstr "顯示名稱" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_estimate_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__estimate_id msgid "Estimate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:254 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:256 #, python-format msgid "Estimate Sheet" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Estimated quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__line_ids msgid "Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_date_range_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__date_range_id msgid "Estimating Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__id msgid "ID" msgstr "編號" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line___last_update -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard___last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line____last_update +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard____last_update msgid "Last Modified on" msgstr "最後修改:" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_uid -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_uid +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_uid msgid "Last Updated by" msgstr "最後更新:" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_write_date -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__write_date +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__write_date msgid "Last Updated on" msgstr "最後更新於" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_location_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__location_id msgid "Location" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_date_range_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_x -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__date_range_id +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Period" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_x +msgid "Period Name" +msgstr "" + +#. module: stock_demand_estimate +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Prepare" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_id -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_value_y +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_id msgid "Product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_product_ids -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard_product_ids -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__value_y +msgid "Product Name" +msgstr "" + +#. module: stock_demand_estimate +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet__product_ids +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_wizard__product_ids +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Products" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom_qty -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__product_uom_qty msgid "Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_daily_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__daily_qty msgid "Quantity / Day" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,help:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Quantity in the default UoM of the product" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_qty +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_qty msgid "Real Quantity" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_search +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_search msgid "Search Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_pivot -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_tree +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_pivot +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_view_tree msgid "Stock Demand Estimate" msgstr "" @@ -233,7 +241,7 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_sheet -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Stock Demand Estimate Sheet" msgstr "" @@ -244,25 +252,25 @@ msgstr "" #. module: stock_demand_estimate #: model:ir.model,name:stock_demand_estimate.model_stock_demand_estimate_wizard -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "Stock Demand Estimate Wizard" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:141 -#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_form_action -#: model:ir.ui.menu,name:stock_demand_estimate.menu_stock_demand_estimate +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:143 +#: model:ir.actions.act_window,name:stock_demand_estimate.stock_demand_estimate_action +#: model:ir.ui.menu,name:stock_demand_estimate.stock_demand_estimate_menu #, python-format msgid "Stock Demand Estimates" msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line_location_id +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_sheet_line__location_id msgid "Stock Location" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:80 +#: code:addons/stock_demand_estimate/models/stock_demand_estimate.py:79 #, python-format msgid "" "The requested operation cannot be processed because of a programming error " @@ -270,40 +278,40 @@ msgid "" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:224 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:226 #, python-format msgid "The start date cannot be later than the end date." msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:50 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:52 #, python-format msgid "There is no ranges created." msgstr "" #. module: stock_demand_estimate -#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate_product_uom +#: model:ir.model.fields,field_description:stock_demand_estimate.field_stock_demand_estimate__product_uom msgid "Unit of measure" msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "Validate" msgstr "" #. module: stock_demand_estimate -#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:241 +#: code:addons/stock_demand_estimate/wizards/stock_demand_estimate_wizard.py:243 #, python-format msgid "You must select at least one product." msgstr "" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form msgid "or" msgstr "或" #. module: stock_demand_estimate -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_demand_estimate_wizard_form -#: model:ir.ui.view,arch_db:stock_demand_estimate.view_stock_demand_estimate_sheet_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.demand_estimate_wizard_view_form +#: model_terms:ir.ui.view,arch_db:stock_demand_estimate.stock_demand_estimate_sheet_view_form msgid "to" msgstr "" From 7ef0e18347f3d20c63ed2506658cf7e1f4a79e15 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 29 Jul 2019 03:43:10 +0000 Subject: [PATCH 15/43] [UPD] README.rst --- stock_demand_estimate/static/description/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stock_demand_estimate/static/description/index.html b/stock_demand_estimate/static/description/index.html index 9ea65258b..ecd2bd4fc 100644 --- a/stock_demand_estimate/static/description/index.html +++ b/stock_demand_estimate/static/description/index.html @@ -3,7 +3,7 @@ - + Stock Demand Estimate