diff --git a/_addons_installation/__init__.py b/_addons_installation/__init__.py new file mode 100755 index 0000000..79c4460 --- /dev/null +++ b/_addons_installation/__init__.py @@ -0,0 +1,20 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Copyright (C) 2009 Gábor Dukai +# Modified by Almacom (Thailand) Ltd. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## diff --git a/_addons_installation/__openerp__.py b/_addons_installation/__openerp__.py new file mode 100755 index 0000000..fd4bf6f --- /dev/null +++ b/_addons_installation/__openerp__.py @@ -0,0 +1,54 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Copyright (C) 2009 Gábor Dukai +# Modified by Almacom (Thailand) Ltd. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## +{ + "name" : "SQP Addons Installation", + "version" : "1.0", + "author" : "kittiu", + "website" : "http://ecosoft.co.th", + "description": """ +Install all requried modules +""", + "depends" : [ + # ecosoft-addons + 'account_billing','account_thai_wht','account_debitnote', + 'advance_and_additional_discount','create_invoice_line_percentage', + 'doc_nodelete','line_sequence','mrp_sale_rel','payment_register', + 'product_flexible_search','product_pricelist_last_invoice', + 'product_uom_bycategory','purchase_requisition_double_validation', + 'report_menu_restriction','security_enhanced','split_quotation_ab', + 'stock_simplified_move','hide_print_button', + # revised-addons + 'account_refund_original','jasper_reports','picking_invoice_rel', + 'web_m2o_enhanced','web_export_view', + # sqp-addons + 'ac_report_font_thai','ext_account_voucher','ext_mrp','ext_product', + 'ext_purchase','ext_sale','fix_account_validate','fix_stock','jrxml_reports', + 'mrp_production_status','product_bom_template','product_tag','purchase_subcontract', + 'stock_supply_list' + ], + + "auto_install": False, + "application": False, + "installable": True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + diff --git a/_patch/addons/product/product.py b/_patch/addons/product/product.py new file mode 100644 index 0000000..3a3f02b --- /dev/null +++ b/_patch/addons/product/product.py @@ -0,0 +1,950 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import math +import re + +from openerp import tools, SUPERUSER_ID +from openerp.osv import osv, fields +from openerp.tools.translate import _ + +import openerp.addons.decimal_precision as dp +from openerp.tools.float_utils import float_round, float_compare + +def ean_checksum(eancode): + """returns the checksum of an ean string of length 13, returns -1 if the string has the wrong length""" + if len(eancode) <> 13: + return -1 + oddsum=0 + evensum=0 + total=0 + eanvalue=eancode + reversevalue = eanvalue[::-1] + finalean=reversevalue[1:] + + for i in range(len(finalean)): + if i % 2 == 0: + oddsum += int(finalean[i]) + else: + evensum += int(finalean[i]) + total=(oddsum * 3) + evensum + + check = int(10 - math.ceil(total % 10.0)) %10 + return check + +def check_ean(eancode): + """returns True if eancode is a valid ean13 string, or null""" + if not eancode: + return True + if len(eancode) <> 13: + return False + try: + int(eancode) + except: + return False + return ean_checksum(eancode) == int(eancode[-1]) + +def sanitize_ean13(ean13): + """Creates and returns a valid ean13 from an invalid one""" + if not ean13: + return "0000000000000" + ean13 = re.sub("[A-Za-z]","0",ean13); + ean13 = re.sub("[^0-9]","",ean13); + ean13 = ean13[:13] + if len(ean13) < 13: + ean13 = ean13 + '0' * (13-len(ean13)) + return ean13[:-1] + str(ean_checksum(ean13)) + +#---------------------------------------------------------- +# UOM +#---------------------------------------------------------- + +class product_uom_categ(osv.osv): + _name = 'product.uom.categ' + _description = 'Product uom categ' + _columns = { + 'name': fields.char('Name', size=64, required=True, translate=True), + } +product_uom_categ() + +class product_uom(osv.osv): + _name = 'product.uom' + _description = 'Product Unit of Measure' + + def _compute_factor_inv(self, factor): + return factor and (1.0 / factor) or 0.0 + + def _factor_inv(self, cursor, user, ids, name, arg, context=None): + res = {} + for uom in self.browse(cursor, user, ids, context=context): + res[uom.id] = self._compute_factor_inv(uom.factor) + return res + + def _factor_inv_write(self, cursor, user, id, name, value, arg, context=None): + return self.write(cursor, user, id, {'factor': self._compute_factor_inv(value)}, context=context) + + def name_create(self, cr, uid, name, context=None): + """ The UoM category and factor are required, so we'll have to add temporary values + for imported UoMs """ + uom_categ = self.pool.get('product.uom.categ') + # look for the category based on the english name, i.e. no context on purpose! + # TODO: should find a way to have it translated but not created until actually used + categ_misc = 'Unsorted/Imported Units' + categ_id = uom_categ.search(cr, uid, [('name', '=', categ_misc)]) + if categ_id: + categ_id = categ_id[0] + else: + categ_id, _ = uom_categ.name_create(cr, uid, categ_misc) + uom_id = self.create(cr, uid, {self._rec_name: name, + 'category_id': categ_id, + 'factor': 1}) + return self.name_get(cr, uid, [uom_id], context=context)[0] + + def create(self, cr, uid, data, context=None): + if 'factor_inv' in data: + if data['factor_inv'] <> 1: + data['factor'] = self._compute_factor_inv(data['factor_inv']) + del(data['factor_inv']) + return super(product_uom, self).create(cr, uid, data, context) + + _order = "name" + _columns = { + 'name': fields.char('Unit of Measure', size=64, required=True, translate=True), + 'category_id': fields.many2one('product.uom.categ', 'Category', required=True, ondelete='cascade', + help="Conversion between Units of Measure can only occur if they belong to the same category. The conversion will be made based on the ratios."), + 'factor': fields.float('Ratio', required=True,digits=(12, 12), + help='How much bigger or smaller this unit is compared to the reference Unit of Measure for this category:\n'\ + '1 * (reference unit) = ratio * (this unit)'), + 'factor_inv': fields.function(_factor_inv, digits=(12,12), + fnct_inv=_factor_inv_write, + string='Ratio', + help='How many times this Unit of Measure is bigger than the reference Unit of Measure in this category:\n'\ + '1 * (this unit) = ratio * (reference unit)', required=True), + 'rounding': fields.float('Rounding Precision', digits_compute=dp.get_precision('Product Unit of Measure'), required=True, + help="The computed quantity will be a multiple of this value. "\ + "Use 1.0 for a Unit of Measure that cannot be further split, such as a piece."), + 'active': fields.boolean('Active', help="By unchecking the active field you can disable a unit of measure without deleting it."), + 'uom_type': fields.selection([('bigger','Bigger than the reference Unit of Measure'), + ('reference','Reference Unit of Measure for this category'), + ('smaller','Smaller than the reference Unit of Measure')],'Type', required=1), + } + + _defaults = { + 'active': 1, + 'rounding': 0.01, + 'uom_type': 'reference', + } + + _sql_constraints = [ + ('factor_gt_zero', 'CHECK (factor!=0)', 'The conversion ratio for a unit of measure cannot be 0!') + ] + + def _compute_qty(self, cr, uid, from_uom_id, qty, to_uom_id=False, round=True, rounding_method='UP'): + if not from_uom_id or not qty or not to_uom_id: + return qty + uoms = self.browse(cr, uid, [from_uom_id, to_uom_id]) + if uoms[0].id == from_uom_id: + from_unit, to_unit = uoms[0], uoms[-1] + else: + from_unit, to_unit = uoms[-1], uoms[0] + return self._compute_qty_obj(cr, uid, from_unit, qty, to_unit, round=round, rounding_method=rounding_method) + + def _compute_qty_obj(self, cr, uid, from_unit, qty, to_unit, round=True, rounding_method='UP', context=None): + if context is None: + context = {} + if from_unit.category_id.id != to_unit.category_id.id: + if context.get('raise-exception', True): + raise osv.except_osv(_('Error!'), _('Conversion from Product UoM %s to Default UoM %s is not possible as they both belong to different Category!.') % (from_unit.name,to_unit.name,)) + else: + return qty + amount = qty/from_unit.factor + if to_unit: + amount = amount * to_unit.factor + if round: + amount = float_round(amount, precision_rounding=to_unit.rounding, rounding_method=rounding_method) + return amount + + def _compute_price(self, cr, uid, from_uom_id, price, to_uom_id=False): + if not from_uom_id or not price or not to_uom_id: + return price + uoms = self.browse(cr, uid, [from_uom_id, to_uom_id]) + if uoms[0].id == from_uom_id: + from_unit, to_unit = uoms[0], uoms[-1] + else: + from_unit, to_unit = uoms[-1], uoms[0] + if from_unit.category_id.id <> to_unit.category_id.id: + return price + amount = price * from_unit.factor + if to_uom_id: + amount = amount / to_unit.factor + return amount + + def onchange_type(self, cursor, user, ids, value): + if value == 'reference': + return {'value': {'factor': 1, 'factor_inv': 1}} + return {} + + def write(self, cr, uid, ids, vals, context=None): + if 'category_id' in vals: + for uom in self.browse(cr, uid, ids, context=context): + if uom.category_id.id != vals['category_id']: + raise osv.except_osv(_('Warning!'),_("Cannot change the category of existing Unit of Measure '%s'.") % (uom.name,)) + return super(product_uom, self).write(cr, uid, ids, vals, context=context) + +product_uom() + + +class product_ul(osv.osv): + _name = "product.ul" + _description = "Shipping Unit" + _columns = { + 'name' : fields.char('Name', size=64,select=True, required=True, translate=True), + 'type' : fields.selection([('unit','Unit'),('pack','Pack'),('box', 'Box'), ('pallet', 'Pallet')], 'Type', required=True), + } +product_ul() + + +#---------------------------------------------------------- +# Categories +#---------------------------------------------------------- +class product_category(osv.osv): + + def name_get(self, cr, uid, ids, context=None): + if isinstance(ids, (list, tuple)) and not len(ids): + return [] + if isinstance(ids, (long, int)): + ids = [ids] + reads = self.read(cr, uid, ids, ['name','parent_id'], context=context) + res = [] + for record in reads: + name = record['name'] + if record['parent_id']: + name = record['parent_id'][1]+' / '+name + res.append((record['id'], name)) + return res + + def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, context=None): + res = self.name_get(cr, uid, ids, context=context) + return dict(res) + + _name = "product.category" + _description = "Product Category" + _columns = { + 'name': fields.char('Name', size=64, required=True, translate=True, select=True), + 'complete_name': fields.function(_name_get_fnc, type="char", string='Name'), + 'parent_id': fields.many2one('product.category','Parent Category', select=True, ondelete='cascade'), + 'child_id': fields.one2many('product.category', 'parent_id', string='Child Categories'), + 'sequence': fields.integer('Sequence', select=True, help="Gives the sequence order when displaying a list of product categories."), + 'type': fields.selection([('view','View'), ('normal','Normal')], 'Category Type', help="A category of the view type is a virtual category that can be used as the parent of another category to create a hierarchical structure."), + 'parent_left': fields.integer('Left Parent', select=1), + 'parent_right': fields.integer('Right Parent', select=1), + } + + + _defaults = { + 'type' : lambda *a : 'normal', + } + + _parent_name = "parent_id" + _parent_store = True + _parent_order = 'sequence, name' + _order = 'parent_left' + + def _check_recursion(self, cr, uid, ids, context=None): + level = 100 + while len(ids): + cr.execute('select distinct parent_id from product_category where id IN %s',(tuple(ids),)) + ids = filter(None, map(lambda x:x[0], cr.fetchall())) + if not level: + return False + level -= 1 + return True + + _constraints = [ + (_check_recursion, 'Error ! You cannot create recursive categories.', ['parent_id']) + ] + def child_get(self, cr, uid, ids): + return [ids] + +product_category() + + +#---------------------------------------------------------- +# Products +#---------------------------------------------------------- +class product_template(osv.osv): + _name = "product.template" + _description = "Product Template" + + _columns = { + 'name': fields.char('Name', size=128, required=True, translate=True, select=True), + 'product_manager': fields.many2one('res.users','Product Manager'), + 'description': fields.text('Description',translate=True), + 'description_purchase': fields.text('Purchase Description',translate=True), + 'description_sale': fields.text('Sale Description',translate=True), + 'type': fields.selection([('consu', 'Consumable'),('service','Service')], 'Product Type', required=True, help="Consumable are product where you don't manage stock, a service is a non-material product provided by a company or an individual."), + 'produce_delay': fields.float('Manufacturing Lead Time', help="Average delay in days to produce this product. In the case of multi-level BOM, the manufacturing lead times of the components will be added."), + 'rental': fields.boolean('Can be Rent'), + 'categ_id': fields.many2one('product.category','Category', required=True, change_default=True, domain="[('type','=','normal')]" ,help="Select category for the current product"), + 'list_price': fields.float('Sale Price', digits_compute=dp.get_precision('Product Price'), help="Base price to compute the customer price. Sometimes called the catalog price."), + 'standard_price': fields.float('Cost', digits_compute=dp.get_precision('Product Price'), help="Cost price of the product used for standard stock valuation in accounting and used as a base price on purchase orders.", groups="base.group_user"), + 'volume': fields.float('Volume', help="The volume in m3."), + 'weight': fields.float('Gross Weight', digits_compute=dp.get_precision('Stock Weight'), help="The gross weight in Kg."), + 'weight_net': fields.float('Net Weight', digits_compute=dp.get_precision('Stock Weight'), help="The net weight in Kg."), + 'cost_method': fields.selection([('standard','Standard Price'), ('average','Average Price')], 'Costing Method', required=True, + help="Standard Price: The cost price is manually updated at the end of a specific period (usually every year). \nAverage Price: The cost price is recomputed at each incoming shipment."), + 'warranty': fields.float('Warranty'), + 'sale_ok': fields.boolean('Can be Sold', help="Specify if the product can be selected in a sales order line."), + 'state': fields.selection([('',''), + ('draft', 'In Development'), + ('sellable','Normal'), + ('end','End of Lifecycle'), + ('obsolete','Obsolete')], 'Status'), + 'uom_id': fields.many2one('product.uom', 'Unit of Measure', required=True, help="Default Unit of Measure used for all stock operation."), + 'uom_po_id': fields.many2one('product.uom', 'Purchase Unit of Measure', required=True, help="Default Unit of Measure used for purchase orders. It must be in the same category than the default unit of measure."), + 'uos_id' : fields.many2one('product.uom', 'Unit of Sale', + help='Sepcify a unit of measure here if invoicing is made in another unit of measure than inventory. Keep empty to use the default unit of measure.'), + 'uos_coeff': fields.float('Unit of Measure -> UOS Coeff', digits_compute= dp.get_precision('Product UoS'), + help='Coefficient to convert default Unit of Measure to Unit of Sale\n' + ' uos = uom * coeff'), + 'mes_type': fields.selection((('fixed', 'Fixed'), ('variable', 'Variable')), 'Measure Type'), + 'seller_ids': fields.one2many('product.supplierinfo', 'product_id', 'Supplier'), + 'company_id': fields.many2one('res.company', 'Company', select=1), + } + + def _get_uom_id(self, cr, uid, *args): + cr.execute('select id from product_uom order by id limit 1') + res = cr.fetchone() + return res and res[0] or False + + def _default_category(self, cr, uid, context=None): + if context is None: + context = {} + if 'categ_id' in context and context['categ_id']: + return context['categ_id'] + md = self.pool.get('ir.model.data') + res = False + try: + res = md.get_object_reference(cr, uid, 'product', 'product_category_all')[1] + except ValueError: + res = False + return res + + def onchange_uom(self, cursor, user, ids, uom_id, uom_po_id): + if uom_id: + return {'value': {'uom_po_id': uom_id}} + return {} + + def write(self, cr, uid, ids, vals, context=None): + if 'uom_po_id' in vals: + new_uom = self.pool.get('product.uom').browse(cr, uid, vals['uom_po_id'], context=context) + for product in self.browse(cr, uid, ids, context=context): + old_uom = product.uom_po_id + if old_uom.category_id.id != new_uom.category_id.id: + raise osv.except_osv(_('Unit of Measure categories Mismatch!'), _("New Unit of Measure '%s' must belong to same Unit of Measure category '%s' as of old Unit of Measure '%s'. If you need to change the unit of measure, you may deactivate this product from the 'Procurements' tab and create a new one.") % (new_uom.name, old_uom.category_id.name, old_uom.name,)) + return super(product_template, self).write(cr, uid, ids, vals, context=context) + + _defaults = { + 'company_id': lambda s,cr,uid,c: s.pool.get('res.company')._company_default_get(cr, uid, 'product.template', context=c), + 'list_price': 1, + 'cost_method': 'standard', + 'standard_price': 0.0, + 'sale_ok': 1, + 'produce_delay': 1, + 'uom_id': _get_uom_id, + 'uom_po_id': _get_uom_id, + 'uos_coeff' : 1.0, + 'mes_type' : 'fixed', + 'categ_id' : _default_category, + 'type' : 'consu', + } + + def _check_uom(self, cursor, user, ids, context=None): + for product in self.browse(cursor, user, ids, context=context): + if product.uom_id.category_id.id <> product.uom_po_id.category_id.id: + return False + return True + + def _check_uos(self, cursor, user, ids, context=None): + for product in self.browse(cursor, user, ids, context=context): + if product.uos_id \ + and product.uos_id.category_id.id \ + == product.uom_id.category_id.id: + return False + return True + + _constraints = [ + (_check_uom, 'Error: The default Unit of Measure and the purchase Unit of Measure must be in the same category.', ['uom_id']), + ] + + def name_get(self, cr, user, ids, context=None): + if context is None: + context = {} + if 'partner_id' in context: + pass + return super(product_template, self).name_get(cr, user, ids, context) + +product_template() + +class product_product(osv.osv): + def view_header_get(self, cr, uid, view_id, view_type, context=None): + if context is None: + context = {} + res = super(product_product, self).view_header_get(cr, uid, view_id, view_type, context) + if (context.get('categ_id', False)): + return _('Products: ')+self.pool.get('product.category').browse(cr, uid, context['categ_id'], context=context).name + return res + + def _product_price(self, cr, uid, ids, name, arg, context=None): + res = {} + if context is None: + context = {} + quantity = context.get('quantity') or 1.0 + pricelist = context.get('pricelist', False) + partner = context.get('partner', False) + if pricelist: + # Support context pricelists specified as display_name or ID for compatibility + if isinstance(pricelist, basestring): + pricelist_ids = self.pool.get('product.pricelist').name_search( + cr, uid, pricelist, operator='=', context=context, limit=1) + pricelist = pricelist_ids[0][0] if pricelist_ids else pricelist + for id in ids: + try: + price = self.pool.get('product.pricelist').price_get(cr,uid,[pricelist], id, quantity, partner=partner, context=context)[pricelist] + except: + price = 0.0 + res[id] = price + for id in ids: + res.setdefault(id, 0.0) + return res + + def _get_product_available_func(states, what): + def _product_available(self, cr, uid, ids, name, arg, context=None): + return {}.fromkeys(ids, 0.0) + return _product_available + + _product_qty_available = _get_product_available_func(('done',), ('in', 'out')) + _product_virtual_available = _get_product_available_func(('confirmed','waiting','assigned','done'), ('in', 'out')) + _product_outgoing_qty = _get_product_available_func(('confirmed','waiting','assigned'), ('out',)) + _product_incoming_qty = _get_product_available_func(('confirmed','waiting','assigned'), ('in',)) + + def _product_lst_price(self, cr, uid, ids, name, arg, context=None): + res = {} + product_uom_obj = self.pool.get('product.uom') + for id in ids: + res.setdefault(id, 0.0) + for product in self.browse(cr, uid, ids, context=context): + if 'uom' in context: + uom = product.uos_id or product.uom_id + res[product.id] = product_uom_obj._compute_price(cr, uid, + uom.id, product.list_price, context['uom']) + else: + res[product.id] = product.list_price + res[product.id] = (res[product.id] or 0.0) * (product.price_margin or 1.0) + product.price_extra + return res + + def _get_partner_code_name(self, cr, uid, ids, product, partner_id, context=None): + for supinfo in product.seller_ids: + if supinfo.name.id == partner_id: + return {'code': supinfo.product_code or product.default_code, 'name': supinfo.product_name or product.name, 'variants': ''} + res = {'code': product.default_code, 'name': product.name, 'variants': product.variants} + return res + + def _product_code(self, cr, uid, ids, name, arg, context=None): + res = {} + if context is None: + context = {} + for p in self.browse(cr, uid, ids, context=context): + res[p.id] = self._get_partner_code_name(cr, uid, [], p, context.get('partner_id', None), context=context)['code'] + return res + + def _product_partner_ref(self, cr, uid, ids, name, arg, context=None): + res = {} + if context is None: + context = {} + for p in self.browse(cr, uid, ids, context=context): + data = self._get_partner_code_name(cr, uid, [], p, context.get('partner_id', None), context=context) + if not data['variants']: + data['variants'] = p.variants + if not data['code']: + data['code'] = p.code + if not data['name']: + data['name'] = p.name + res[p.id] = (data['code'] and ('['+data['code']+'] ') or '') + \ + (data['name'] or '') + (data['variants'] and (' - '+data['variants']) or '') + return res + + + def _get_main_product_supplier(self, cr, uid, product, context=None): + """Determines the main (best) product supplier for ``product``, + returning the corresponding ``supplierinfo`` record, or False + if none were found. The default strategy is to select the + supplier with the highest priority (i.e. smallest sequence). + + :param browse_record product: product to supply + :rtype: product.supplierinfo browse_record or False + """ + sellers = [(seller_info.sequence, seller_info) + for seller_info in product.seller_ids or [] + if seller_info and isinstance(seller_info.sequence, (int, long))] + return sellers and sellers[0][1] or False + + def _calc_seller(self, cr, uid, ids, fields, arg, context=None): + result = {} + for product in self.browse(cr, uid, ids, context=context): + main_supplier = self._get_main_product_supplier(cr, uid, product, context=context) + result[product.id] = { + 'seller_info_id': main_supplier and main_supplier.id or False, + 'seller_delay': main_supplier.delay if main_supplier else 1, + 'seller_qty': main_supplier and main_supplier.qty or 0.0, + 'seller_id': main_supplier and main_supplier.name.id or False + } + return result + + + def _get_image(self, cr, uid, ids, name, args, context=None): + result = dict.fromkeys(ids, False) + for obj in self.browse(cr, uid, ids, context=context): + result[obj.id] = tools.image_get_resized_images(obj.image, avoid_resize_medium=True) + return result + + def _set_image(self, cr, uid, id, name, value, args, context=None): + return self.write(cr, uid, [id], {'image': tools.image_resize_image_big(value)}, context=context) + + _defaults = { + 'active': lambda *a: 1, + 'price_extra': lambda *a: 0.0, + 'price_margin': lambda *a: 1.0, + 'color': 0, + } + + _name = "product.product" + _description = "Product" + _table = "product_product" + _inherits = {'product.template': 'product_tmpl_id'} + _inherit = ['mail.thread'] + _order = 'default_code,name_template' + _columns = { + 'qty_available': fields.function(_product_qty_available, type='float', string='Quantity On Hand'), + 'virtual_available': fields.function(_product_virtual_available, type='float', string='Quantity Available'), + 'incoming_qty': fields.function(_product_incoming_qty, type='float', string='Incoming'), + 'outgoing_qty': fields.function(_product_outgoing_qty, type='float', string='Outgoing'), + 'price': fields.function(_product_price, type='float', string='Price', digits_compute=dp.get_precision('Product Price')), + 'lst_price' : fields.function(_product_lst_price, type='float', string='Public Price', digits_compute=dp.get_precision('Product Price')), + 'code': fields.function(_product_code, type='char', string='Internal Reference'), + 'partner_ref' : fields.function(_product_partner_ref, type='char', string='Customer ref'), + 'default_code' : fields.char('Internal Reference', size=64, select=True), + 'active': fields.boolean('Active', help="If unchecked, it will allow you to hide the product without removing it."), + 'variants': fields.char('Variants', size=64), + 'product_tmpl_id': fields.many2one('product.template', 'Product Template', required=True, ondelete="cascade", select=True), + 'ean13': fields.char('EAN13 Barcode', size=13, help="International Article Number used for product identification."), + 'packaging' : fields.one2many('product.packaging', 'product_id', 'Logistical Units', help="Gives the different ways to package the same product. This has no impact on the picking order and is mainly used if you use the EDI module."), + 'price_extra': fields.float('Variant Price Extra', digits_compute=dp.get_precision('Product Price')), + 'price_margin': fields.float('Variant Price Margin', digits_compute=dp.get_precision('Product Price')), + 'pricelist_id': fields.dummy(string='Pricelist', relation='product.pricelist', type='many2one'), + 'name_template': fields.related('product_tmpl_id', 'name', string="Template Name", type='char', size=128, store=True, select=True), + 'color': fields.integer('Color Index'), + # image: all image fields are base64 encoded and PIL-supported + 'image': fields.binary("Image", + help="This field holds the image used as image for the product, limited to 1024x1024px."), + 'image_medium': fields.function(_get_image, fnct_inv=_set_image, + string="Medium-sized image", type="binary", multi="_get_image", + store={ + 'product.product': (lambda self, cr, uid, ids, c={}: ids, ['image'], 10), + }, + help="Medium-sized image of the product. It is automatically "\ + "resized as a 128x128px image, with aspect ratio preserved, "\ + "only when the image exceeds one of those sizes. Use this field in form views or some kanban views."), + 'image_small': fields.function(_get_image, fnct_inv=_set_image, + string="Small-sized image", type="binary", multi="_get_image", + store={ + 'product.product': (lambda self, cr, uid, ids, c={}: ids, ['image'], 10), + }, + help="Small-sized image of the product. It is automatically "\ + "resized as a 64x64px image, with aspect ratio preserved. "\ + "Use this field anywhere a small image is required."), + 'seller_info_id': fields.function(_calc_seller, type='many2one', relation="product.supplierinfo", string="Supplier Info", multi="seller_info"), + 'seller_delay': fields.function(_calc_seller, type='integer', string='Supplier Lead Time', multi="seller_info", help="This is the average delay in days between the purchase order confirmation and the reception of goods for this product and for the default supplier. It is used by the scheduler to order requests based on reordering delays."), + 'seller_qty': fields.function(_calc_seller, type='float', string='Supplier Quantity', multi="seller_info", help="This is minimum quantity to purchase from Main Supplier."), + 'seller_id': fields.function(_calc_seller, type='many2one', relation="res.partner", string='Main Supplier', help="Main Supplier who has highest priority in Supplier List.", multi="seller_info"), + } + def unlink(self, cr, uid, ids, context=None): + unlink_ids = [] + unlink_product_tmpl_ids = [] + for product in self.browse(cr, uid, ids, context=context): + tmpl_id = product.product_tmpl_id.id + # Check if the product is last product of this template + other_product_ids = self.search(cr, uid, [('product_tmpl_id', '=', tmpl_id), ('id', '!=', product.id)], context=context) + if not other_product_ids: + unlink_product_tmpl_ids.append(tmpl_id) + unlink_ids.append(product.id) + res = super(product_product, self).unlink(cr, uid, unlink_ids, context=context) + # delete templates after calling super, as deleting template could lead to deleting + # products due to ondelete='cascade' + self.pool.get('product.template').unlink(cr, uid, unlink_product_tmpl_ids, context=context) + return res + + def onchange_uom(self, cursor, user, ids, uom_id, uom_po_id): + if uom_id and uom_po_id: + uom_obj=self.pool.get('product.uom') + uom=uom_obj.browse(cursor,user,[uom_id])[0] + uom_po=uom_obj.browse(cursor,user,[uom_po_id])[0] + if uom.category_id.id != uom_po.category_id.id: + return {'value': {'uom_po_id': uom_id}} + return False + + def _check_ean_key(self, cr, uid, ids, context=None): + for product in self.read(cr, uid, ids, ['ean13'], context=context): + res = check_ean(product['ean13']) + return res + + + _constraints = [(_check_ean_key, 'You provided an invalid "EAN13 Barcode" reference. You may use the "Internal Reference" field instead.', ['ean13'])] + + def on_order(self, cr, uid, ids, orderline, quantity): + pass + + def name_get(self, cr, user, ids, context=None): + if context is None: + context = {} + if isinstance(ids, (int, long)): + ids = [ids] + if not len(ids): + return [] + def _name_get(d): + name = d.get('name','') + code = d.get('default_code',False) + if code: + name = '[%s] %s' % (code,name) + if d.get('variants'): + name = name + ' - %s' % (d['variants'],) + return (d['id'], name) + + partner_id = context.get('partner_id', False) + + result = [] + for product in self.browse(cr, user, ids, context=context): + sellers = filter(lambda x: x.name.id == partner_id, product.seller_ids) + if sellers: + for s in sellers: + mydict = { + 'id': product.id, + 'name': s.product_name or product.name, + 'default_code': s.product_code or product.default_code, + 'variants': product.variants + } + result.append(_name_get(mydict)) + else: + mydict = { + 'id': product.id, + 'name': product.name, + 'default_code': product.default_code, + 'variants': product.variants + } + result.append(_name_get(mydict)) + return result + + def name_search(self, cr, user, name='', args=None, operator='ilike', context=None, limit=100): + if not args: + args = [] + if name: + ids = self.search(cr, user, [('default_code','=',name)]+ args, limit=limit, context=context) + if not ids: + ids = self.search(cr, user, [('ean13','=',name)]+ args, limit=limit, context=context) + if not ids: + # Do not merge the 2 next lines into one single search, SQL search performance would be abysmal + # on a database with thousands of matching products, due to the huge merge+unique needed for the + # OR operator (and given the fact that the 'name' lookup results come from the ir.translation table + # Performing a quick memory merge of ids in Python will give much better performance + ids = set() + ids.update(self.search(cr, user, args + [('default_code',operator,name)], limit=limit, context=context)) + if not limit or len(ids) < limit: + # we may underrun the limit because of dupes in the results, that's fine + ids.update(self.search(cr, user, args + [('name',operator,name)], limit=(limit and (limit-len(ids)) or False) , context=context)) + ids = list(ids) + if not ids: + ptrn = re.compile('(\[(.*?)\])') + res = ptrn.search(name) + if res: + ids = self.search(cr, user, [('default_code','=', res.group(2))] + args, limit=limit, context=context) + else: + ids = self.search(cr, user, args, limit=limit, context=context) + result = self.name_get(cr, user, ids, context=context) + return result + + # + # Could be overrided for variants matrices prices + # + def price_get(self, cr, uid, ids, ptype='list_price', context=None): + if context is None: + context = {} + + if 'currency_id' in context: + pricetype_obj = self.pool.get('product.price.type') + price_type_id = pricetype_obj.search(cr, uid, [('field','=',ptype)])[0] + price_type_currency_id = pricetype_obj.browse(cr,uid,price_type_id).currency_id.id + + res = {} + product_uom_obj = self.pool.get('product.uom') + for product in self.browse(cr, SUPERUSER_ID, ids, context=context): + res[product.id] = product[ptype] or 0.0 + if ptype == 'list_price': + res[product.id] = (res[product.id] * (product.price_margin or 1.0)) + \ + product.price_extra + if 'uom' in context: + uom = product.uom_id or product.uos_id + res[product.id] = product_uom_obj._compute_price(cr, uid, + uom.id, res[product.id], context['uom']) + # Convert from price_type currency to asked one + if 'currency_id' in context: + # Take the price_type currency from the product field + # This is right cause a field cannot be in more than one currency + res[product.id] = self.pool.get('res.currency').compute(cr, uid, price_type_currency_id, + context['currency_id'], res[product.id],context=context) + + return res + + def copy(self, cr, uid, id, default=None, context=None): + if context is None: + context={} + + if not default: + default = {} + + product = self.read(cr, uid, id, ['name'], context=context) + default = default.copy() + default.update(name=_("%s (copy)") % (product['name'])) + + if context.get('variant',False): + fields = ['product_tmpl_id', 'active', 'variants', 'default_code', + 'price_margin', 'price_extra'] + data = self.read(cr, uid, id, fields=fields, context=context) + for f in fields: + if f in default: + data[f] = default[f] + data['product_tmpl_id'] = data.get('product_tmpl_id', False) \ + and data['product_tmpl_id'][0] + del data['id'] + return self.create(cr, uid, data) + else: + return super(product_product, self).copy(cr, uid, id, default=default, + context=context) + + def search(self, cr, uid, args, offset=0, limit=None, order=None, context=None, count=False): + if context is None: + context = {} + if context and context.get('search_default_categ_id', False): + args.append((('categ_id', 'child_of', context['search_default_categ_id']))) + return super(product_product, self).search(cr, uid, args, offset=offset, limit=limit, order=order, context=context, count=count) + +product_product() + +class product_packaging(osv.osv): + _name = "product.packaging" + _description = "Packaging" + _rec_name = 'ean' + _order = 'sequence' + _columns = { + 'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of packaging."), + 'name' : fields.text('Description', size=64), + 'qty' : fields.float('Quantity by Package', + help="The total number of products you can put by pallet or box."), + 'ul' : fields.many2one('product.ul', 'Type of Package', required=True), + 'ul_qty' : fields.integer('Package by layer', help='The number of packages by layer'), + 'rows' : fields.integer('Number of Layers', required=True, + help='The number of layers on a pallet or box'), + 'product_id' : fields.many2one('product.product', 'Product', select=1, ondelete='cascade', required=True), + 'ean' : fields.char('EAN', size=14, + help="The EAN code of the package unit."), + 'code' : fields.char('Code', size=14, + help="The code of the transport unit."), + 'weight': fields.float('Total Package Weight', + help='The weight of a full package, pallet or box.'), + 'weight_ul': fields.float('Empty Package Weight'), + 'height': fields.float('Height', help='The height of the package'), + 'width': fields.float('Width', help='The width of the package'), + 'length': fields.float('Length', help='The length of the package'), + } + + + def _check_ean_key(self, cr, uid, ids, context=None): + for pack in self.browse(cr, uid, ids, context=context): + res = check_ean(pack.ean) + return res + + _constraints = [(_check_ean_key, 'Error: Invalid ean code', ['ean'])] + + def name_get(self, cr, uid, ids, context=None): + if not len(ids): + return [] + res = [] + for pckg in self.browse(cr, uid, ids, context=context): + p_name = pckg.ean and '[' + pckg.ean + '] ' or '' + p_name += pckg.ul.name + res.append((pckg.id,p_name)) + return res + + def _get_1st_ul(self, cr, uid, context=None): + cr.execute('select id from product_ul order by id asc limit 1') + res = cr.fetchone() + return (res and res[0]) or False + + _defaults = { + 'rows' : lambda *a : 3, + 'sequence' : lambda *a : 1, + 'ul' : _get_1st_ul, + } + + def checksum(ean): + salt = '31' * 6 + '3' + sum = 0 + for ean_part, salt_part in zip(ean, salt): + sum += int(ean_part) * int(salt_part) + return (10 - (sum % 10)) % 10 + checksum = staticmethod(checksum) + +product_packaging() + + +class product_supplierinfo(osv.osv): + _name = "product.supplierinfo" + _description = "Information about a product supplier" + def _calc_qty(self, cr, uid, ids, fields, arg, context=None): + result = {} + product_uom_pool = self.pool.get('product.uom') + for supplier_info in self.browse(cr, uid, ids, context=context): + for field in fields: + result[supplier_info.id] = {field:False} + qty = supplier_info.min_qty + result[supplier_info.id]['qty'] = qty + return result + + _columns = { + 'name' : fields.many2one('res.partner', 'Supplier', required=True,domain = [('supplier','=',True)], ondelete='cascade', help="Supplier of this product"), + 'product_name': fields.char('Supplier Product Name', size=128, help="This supplier's product name will be used when printing a request for quotation. Keep empty to use the internal one."), + 'product_code': fields.char('Supplier Product Code', size=64, help="This supplier's product code will be used when printing a request for quotation. Keep empty to use the internal one."), + 'sequence' : fields.integer('Sequence', help="Assigns the priority to the list of product supplier."), + 'product_uom': fields.related('product_id', 'uom_po_id', type='many2one', relation='product.uom', string="Supplier Unit of Measure", readonly="1", help="This comes from the product form."), + 'min_qty': fields.float('Minimal Quantity', required=True, help="The minimal quantity to purchase to this supplier, expressed in the supplier Product Unit of Measure if not empty, in the default unit of measure of the product otherwise."), + 'qty': fields.function(_calc_qty, store=True, type='float', string='Quantity', multi="qty", help="This is a quantity which is converted into Default Unit of Measure."), + 'product_id' : fields.many2one('product.template', 'Product', required=True, ondelete='cascade', select=True), + 'delay' : fields.integer('Delivery Lead Time', required=True, help="Lead time in days between the confirmation of the purchase order and the reception of the products in your warehouse. Used by the scheduler for automatic computation of the purchase order planning."), + 'pricelist_ids': fields.one2many('pricelist.partnerinfo', 'suppinfo_id', 'Supplier Pricelist'), + 'company_id':fields.many2one('res.company','Company',select=1), + } + _defaults = { + 'qty': lambda *a: 0.0, + 'sequence': lambda *a: 1, + 'delay': lambda *a: 1, + 'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'product.supplierinfo', context=c), + } + def price_get(self, cr, uid, supplier_ids, product_id, product_qty=1, context=None): + """ + Calculate price from supplier pricelist. + @param supplier_ids: Ids of res.partner object. + @param product_id: Id of product. + @param product_qty: specify quantity to purchase. + """ + if type(supplier_ids) in (int,long,): + supplier_ids = [supplier_ids] + res = {} + product_pool = self.pool.get('product.product') + partner_pool = self.pool.get('res.partner') + pricelist_pool = self.pool.get('product.pricelist') + currency_pool = self.pool.get('res.currency') + currency_id = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.currency_id.id + for supplier in partner_pool.browse(cr, uid, supplier_ids, context=context): + # Compute price from standard price of product + price = product_pool.price_get(cr, uid, [product_id], 'standard_price', context=context)[product_id] + + # Compute price from Purchase pricelist of supplier + pricelist_id = supplier.property_product_pricelist_purchase.id + if pricelist_id: + price = pricelist_pool.price_get(cr, uid, [pricelist_id], product_id, product_qty, context=context).setdefault(pricelist_id, 0) + price = currency_pool.compute(cr, uid, pricelist_pool.browse(cr, uid, pricelist_id).currency_id.id, currency_id, price) + + # Compute price from supplier pricelist which are in Supplier Information + supplier_info_ids = self.search(cr, uid, [('name','=',supplier.id),('product_id','=',product_id)]) + if supplier_info_ids: + cr.execute('SELECT * ' \ + 'FROM pricelist_partnerinfo ' \ + 'WHERE suppinfo_id IN %s' \ + 'AND min_quantity <= %s ' \ + 'ORDER BY min_quantity DESC LIMIT 1', (tuple(supplier_info_ids),product_qty,)) + res2 = cr.dictfetchone() + if res2: + price = res2['price'] + res[supplier.id] = price + return res + _order = 'sequence' +product_supplierinfo() + + +class pricelist_partnerinfo(osv.osv): + _name = 'pricelist.partnerinfo' + _columns = { + 'name': fields.char('Description', size=64), + 'suppinfo_id': fields.many2one('product.supplierinfo', 'Partner Information', required=True, ondelete='cascade'), + 'min_quantity': fields.float('Quantity', required=True, help="The minimal quantity to trigger this rule, expressed in the supplier Unit of Measure if any or in the default Unit of Measure of the product otherrwise."), + 'price': fields.float('Unit Price', required=True, digits_compute=dp.get_precision('Product Price'), help="This price will be considered as a price for the supplier Unit of Measure if any or the default Unit of Measure of the product otherwise"), + } + _order = 'min_quantity asc' +pricelist_partnerinfo() + +class res_currency(osv.osv): + _inherit = 'res.currency' + + def _check_main_currency_rounding(self, cr, uid, ids, context=None): + cr.execute('SELECT digits FROM decimal_precision WHERE name like %s',('Account',)) + digits = cr.fetchone() + if digits and len(digits): + digits = digits[0] + main_currency = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.currency_id + for currency_id in ids: + if currency_id == main_currency.id: + if main_currency.rounding < 10 ** -digits: + return False + return True + + _constraints = [ + (_check_main_currency_rounding, 'Error! You cannot define a rounding factor for the company\'s main currency that is smaller than the decimal precision of \'Account\'.', ['rounding']), + ] + +class decimal_precision(osv.osv): + _inherit = 'decimal.precision' + + def _check_main_currency_rounding(self, cr, uid, ids, context=None): + cr.execute('SELECT id, digits FROM decimal_precision WHERE name like %s',('Account',)) + res = cr.fetchone() + if res and len(res): + account_precision_id, digits = res + main_currency = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.currency_id + for decimal_precision in ids: + if decimal_precision == account_precision_id: + if main_currency.rounding < 10 ** -digits: + return False + return True + + _constraints = [ + (_check_main_currency_rounding, 'Error! You cannot define the decimal precision of \'Account\' as greater than the rounding factor of the company\'s main currency', ['digits']), + ] + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/_patch/server/openerp/tools/float_utils.py b/_patch/server/openerp/tools/float_utils.py new file mode 100755 index 0000000..9f7b499 --- /dev/null +++ b/_patch/server/openerp/tools/float_utils.py @@ -0,0 +1,205 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Business Applications +# Copyright (c) 2011 OpenERP S.A. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import math + +def _float_check_precision(precision_digits=None, precision_rounding=None): + assert (precision_digits is not None or precision_rounding is not None) and \ + not (precision_digits and precision_rounding),\ + "exactly one of precision_digits and precision_rounding must be specified" + if precision_digits is not None: + return 10 ** -precision_digits + return precision_rounding + +def float_round(value, precision_digits=None, precision_rounding=None, rounding_method='HALF-UP'): + """Return ``value`` rounded to ``precision_digits`` decimal digits, + minimizing IEEE-754 floating point representation errors, and applying + the tie-breaking rule selected with ``rounding_method``, by default + HALF-UP (away from zero). + Precision must be given by ``precision_digits`` or ``precision_rounding``, + not both! + + :param float value: the value to round + :param int precision_digits: number of fractional digits to round to. + :param float precision_rounding: decimal number representing the minimum + non-zero value at the desired precision (for example, 0.01 for a + 2-digit precision). + :param rounding_method: the rounding method used: 'HALF-UP' or 'UP', the first + one rounding up to the closest number with the rule that number>=0.5 is + rounded up to 1, and the latest one always rounding up. + :return: rounded float + """ + rounding_factor = _float_check_precision(precision_digits=precision_digits, + precision_rounding=precision_rounding) + if rounding_factor == 0 or value == 0: return 0.0 + + # NORMALIZE - ROUND - DENORMALIZE + # In order to easily support rounding to arbitrary 'steps' (e.g. coin values), + # we normalize the value before rounding it as an integer, and de-normalize + # after rounding: e.g. float_round(1.3, precision_rounding=.5) == 1.5 + + # TIE-BREAKING: HALF-UP (for normal rounding) + # We want to apply HALF-UP tie-breaking rules, i.e. 0.5 rounds away from 0. + # Due to IEE754 float/double representation limits, the approximation of the + # real value may be slightly below the tie limit, resulting in an error of + # 1 unit in the last place (ulp) after rounding. + # For example 2.675 == 2.6749999999999998. + # To correct this, we add a very small epsilon value, scaled to the + # the order of magnitude of the value, to tip the tie-break in the right + # direction. + # Credit: discussion with OpenERP community members on bug 882036 + + normalized_value = value / rounding_factor # normalize + epsilon_magnitude = math.log(abs(normalized_value), 2) + epsilon = 2**(epsilon_magnitude-53) + if rounding_method == 'HALF-UP': + normalized_value += cmp(normalized_value,0) * epsilon + rounded_value = round(normalized_value) # round to integer + + # TIE-BREAKING: UP (for ceiling operations) + # When rounding the value up, we instead subtract the epsilon value + # as the the approximation of the real value may be slightly *above* the + # tie limit, this would result in incorrectly rounding up to the next number + # The math.ceil operation is applied on the absolute value in order to + # round "away from zero" and not "towards infinity", then the sign is + # restored. + + elif rounding_method == 'UP': + sign = cmp(normalized_value, 0) + normalized_value -= sign*epsilon + rounded_value = math.ceil(abs(normalized_value))*sign # ceil to integer + + result = rounded_value * rounding_factor # de-normalize + return result + +def float_is_zero(value, precision_digits=None, precision_rounding=None): + """Returns true if ``value`` is small enough to be treated as + zero at the given precision (smaller than the corresponding *epsilon*). + The precision (``10**-precision_digits`` or ``precision_rounding``) + is used as the zero *epsilon*: values less than that are considered + to be zero. + Precision must be given by ``precision_digits`` or ``precision_rounding``, + not both! + + Warning: ``float_is_zero(value1-value2)`` is not equivalent to + ``float_compare(value1,value2) == 0``, as the former will round after + computing the difference, while the latter will round before, giving + different results for e.g. 0.006 and 0.002 at 2 digits precision. + + :param int precision_digits: number of fractional digits to round to. + :param float precision_rounding: decimal number representing the minimum + non-zero value at the desired precision (for example, 0.01 for a + 2-digit precision). + :param float value: value to compare with the precision's zero + :return: True if ``value`` is considered zero + """ + epsilon = _float_check_precision(precision_digits=precision_digits, + precision_rounding=precision_rounding) + return abs(float_round(value, precision_rounding=epsilon)) < epsilon + +def float_compare(value1, value2, precision_digits=None, precision_rounding=None): + """Compare ``value1`` and ``value2`` after rounding them according to the + given precision. A value is considered lower/greater than another value + if their rounded value is different. This is not the same as having a + non-zero difference! + Precision must be given by ``precision_digits`` or ``precision_rounding``, + not both! + + Example: 1.432 and 1.431 are equal at 2 digits precision, + so this method would return 0 + However 0.006 and 0.002 are considered different (this method returns 1) + because they respectively round to 0.01 and 0.0, even though + 0.006-0.002 = 0.004 which would be considered zero at 2 digits precision. + + Warning: ``float_is_zero(value1-value2)`` is not equivalent to + ``float_compare(value1,value2) == 0``, as the former will round after + computing the difference, while the latter will round before, giving + different results for e.g. 0.006 and 0.002 at 2 digits precision. + + :param int precision_digits: number of fractional digits to round to. + :param float precision_rounding: decimal number representing the minimum + non-zero value at the desired precision (for example, 0.01 for a + 2-digit precision). + :param float value1: first value to compare + :param float value2: second value to compare + :return: (resp.) -1, 0 or 1, if ``value1`` is (resp.) lower than, + equal to, or greater than ``value2``, at the given precision. + """ + rounding_factor = _float_check_precision(precision_digits=precision_digits, + precision_rounding=precision_rounding) + value1 = float_round(value1, precision_rounding=rounding_factor) + value2 = float_round(value2, precision_rounding=rounding_factor) + delta = value1 - value2 + if float_is_zero(delta, precision_rounding=rounding_factor): return 0 + return -1 if delta < 0.0 else 1 + +def float_repr(value, precision_digits): + """Returns a string representation of a float with the + the given number of fractional digits. This should not be + used to perform a rounding operation (this is done via + :meth:`~.float_round`), but only to produce a suitable + string representation for a float. + + :param int precision_digits: number of fractional digits to + include in the output + """ + # Can't use str() here because it seems to have an intrisic + # rounding to 12 significant digits, which causes a loss of + # precision. e.g. str(123456789.1234) == str(123456789.123)!! + return ("%%.%sf" % precision_digits) % value + + +if __name__ == "__main__": + + import time + start = time.time() + count = 0 + errors = 0 + + def try_round(amount, expected, precision_digits=3): + global count, errors; count += 1 + result = float_repr(float_round(amount, precision_digits=precision_digits), + precision_digits=precision_digits) + if result != expected: + errors += 1 + print '###!!! Rounding error: got %s , expected %s' % (result, expected) + + # Extended float range test, inspired by Cloves Almeida's test on bug #882036. + fractions = [.0, .015, .01499, .675, .67499, .4555, .4555, .45555] + expecteds = ['.00', '.02', '.01', '.68', '.67', '.46', '.456', '.4556'] + precisions = [2, 2, 2, 2, 2, 2, 3, 4] + for magnitude in range(7): + for i in xrange(len(fractions)): + frac, exp, prec = fractions[i], expecteds[i], precisions[i] + for sign in [-1,1]: + for x in xrange(0,10000,97): + n = x * 10**magnitude + f = sign * (n + frac) + f_exp = ('-' if f != 0 and sign == -1 else '') + str(n) + exp + try_round(f, f_exp, precision_digits=prec) + + stop = time.time() + + # Micro-bench results: + # 47130 round calls in 0.422306060791 secs, with Python 2.6.7 on Core i3 x64 + # with decimal: + # 47130 round calls in 6.612248100021 secs, with Python 2.6.7 on Core i3 x64 + print count, " round calls, ", errors, "errors, done in ", (stop-start), 'secs' diff --git a/amount_to_word/__init__.py b/amount_to_word/__init__.py new file mode 100755 index 0000000..1e371e0 --- /dev/null +++ b/amount_to_word/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import amount_to_word + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/amount_to_word/__openerp__.py b/amount_to_word/__openerp__.py new file mode 100755 index 0000000..2eae4e0 --- /dev/null +++ b/amount_to_word/__openerp__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : 'Amount to Word for Various Fields', + 'version' : '1.0', + 'author' : 'Ecosoft', + 'summary': '', + 'description': """ + +Fields include, + +* Invoice Amount + + """, + 'category': 'Tools', + 'sequence': 4, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['account'], + 'demo' : [], + 'data' : ['account_invoice_view.xml' + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/amount_to_word/account_invoice_view.xml b/amount_to_word/account_invoice_view.xml new file mode 100755 index 0000000..15cfd9f --- /dev/null +++ b/amount_to_word/account_invoice_view.xml @@ -0,0 +1,15 @@ + + + + + invoice.form.ext. + account.invoice + + + + + + + + + diff --git a/amount_to_word/amount_to_word.py b/amount_to_word/amount_to_word.py new file mode 100755 index 0000000..c9ee48a --- /dev/null +++ b/amount_to_word/amount_to_word.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import netsvc +from osv import osv, fields +from openerp.tools.amount_to_text_en import amount_to_text + +class account_invoice(osv.osv): + + def _amount_total_text(self, cursor, user, ids, name, arg, context=None): + res = {} + for invoice in self.browse(cursor, user, ids, context=context): + a = 'Baht' + b = 'Satang' + if invoice.currency_id.name == 'USD': + a = 'Dollar' + b = 'Cent' + if invoice.currency_id.name == 'EUR': + a = 'Euro' + b = 'Cent' + res[invoice.id] = amount_to_text(invoice.amount_total, 'en', a).replace('Cent', b).replace('Cents', b) + return res + + _inherit = 'account.invoice' + _columns = { + 'amount_total_text': fields.function(_amount_total_text, string='Amount Total (Text)', type='char'), + } + +account_invoice() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_account_billing/__init__.py b/ext_account_billing/__init__.py new file mode 100755 index 0000000..dc36dda --- /dev/null +++ b/ext_account_billing/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import account_billing + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_account_billing/__openerp__.py b/ext_account_billing/__openerp__.py new file mode 100755 index 0000000..1ee72ba --- /dev/null +++ b/ext_account_billing/__openerp__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : 'Account Billing Extension', + 'version' : '1.0', + 'author' : 'Ecosoft', + 'summary': 'Miscellenous Extension to Billing', + 'description': """ + +This module includes: + +* Remove date condition when list Billing lines. + + """, + 'category': 'Accounting & Finance', + 'sequence': 4, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['account_billing'], + 'demo' : [], + 'data' : [], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_account_billing/account_billing.py b/ext_account_billing/account_billing.py new file mode 100755 index 0000000..4c01f49 --- /dev/null +++ b/ext_account_billing/account_billing.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import netsvc +from osv import osv, fields + +class account_billing(osv.osv): + + _inherit = 'account.billing' + + def onchange_partner_id(self, cr, uid, ids, partner_id, journal_id, amount, currency_id, date, context=None): + if context is None: + context = {} + # Additional Condition for Matching Billing Date + #context.update({'billing_date_condition': ['|',('date_maturity', '=', False),('date_maturity', '<=', date)]}) + if not journal_id: + return {} + res = self.recompute_billing_lines(cr, uid, ids, partner_id, journal_id, amount, currency_id, date, context=context) + vals = self.recompute_payment_rate(cr, uid, ids, res, currency_id, date, journal_id, amount, context=context) + for key in vals.keys(): + res[key].update(vals[key]) + + return res + +account_billing() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_account_voucher/__init__.py b/ext_account_voucher/__init__.py new file mode 100755 index 0000000..44d3e09 --- /dev/null +++ b/ext_account_voucher/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import account_voucher +import account_invoice + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_account_voucher/__openerp__.py b/ext_account_voucher/__openerp__.py new file mode 100755 index 0000000..cd14e3e --- /dev/null +++ b/ext_account_voucher/__openerp__.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : 'Payment Extension', + 'version' : '1.0', + 'author' : 'Ecosoft', + 'summary': 'Miscellenous Extension to Payment', + 'description': """ + +This module includes: + +* Supplier Invoice, make Supplier Invoice Number field editable +* Adding "Supplier Invoice Number" into Supplier Payment's Line + + """, + 'category': 'Accounting & Finance', + 'sequence': 4, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['account','account_voucher','account_transfer'], + 'demo' : [], + 'data' : [ + 'voucher_payment_receipt_view.xml', + 'account_invoice_view.xml', + 'reports/custom_reports.xml' + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_account_voucher/account_invoice.py b/ext_account_voucher/account_invoice.py new file mode 100755 index 0000000..80f75c0 --- /dev/null +++ b/ext_account_voucher/account_invoice.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import netsvc +from osv import osv, fields + +class account_invoice(osv.osv): + + _inherit = 'account.invoice' + _columns = { + 'note': fields.text('Note'), + 'supplier_invoice_number': fields.char('Supplier Invoice Number', size=64, help="The reference of this invoice as provided by the supplier.", readonly=False), + 'print_text_in_english': fields.boolean('Print Amount Text in English'), + 'date_due': fields.date('Due Date', readonly=False, select=True, + help="If you use payment terms, the due date will be computed automatically at the generation "\ + "of accounting entries. The payment term may compute several due dates, for example 50% now and 50% in one month, but if you want to force a due date, make sure that the payment term is not set on the invoice. If you keep the payment term and the due date empty, it means direct payment."), + } + + # go from canceled state to draft state, should also set state from 2binvoiced to invoiced + def action_cancel_draft(self, cr, uid, ids, *args): + res = super(account_invoice, self).action_cancel_draft(cr, uid, ids, *args) + for invoice in self.browse(cr, uid, ids): + for picking in invoice.picking_ids: + if picking.invoice_state == '2binvoiced': + self.pool.get('stock.picking').write(cr, uid, picking.id, {'invoice_state': 'invoiced'}) + return res + +account_invoice() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_account_voucher/account_invoice_view.xml b/ext_account_voucher/account_invoice_view.xml new file mode 100755 index 0000000..4d7f04a --- /dev/null +++ b/ext_account_voucher/account_invoice_view.xml @@ -0,0 +1,28 @@ + + + + + invoice.form.ext. + account.invoice + + + + + + + + + + + + account.invoice.tree_ext + account.invoice + + + + + + + + + diff --git a/ext_account_voucher/account_voucher.py b/ext_account_voucher/account_voucher.py new file mode 100755 index 0000000..7ab7966 --- /dev/null +++ b/ext_account_voucher/account_voucher.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import netsvc +from osv import osv, fields +from tools.translate import _ +import time + +class account_voucher_line(osv.osv): + + def _supplier_invoice_number(self, cursor, user, ids, name, arg, context=None): + res = dict.fromkeys(ids, False) + cursor.execute("""SELECT vl.id, i.supplier_invoice_number + FROM account_voucher_line vl + inner join account_move_line ml on vl.move_line_id = ml.id + left outer join account_invoice i on ml.move_id = i.move_id + WHERE vl.id IN %s""",(tuple(ids),)) + for line_id, supplier_invoice_number in cursor.fetchall(): + res[line_id] = supplier_invoice_number + return res + + _inherit = 'account.voucher.line' + + _columns = { + 'supplier_invoice_number': fields.function(_supplier_invoice_number, string='Supplier Invoice Number', type='char'), + } + +account_voucher_line() + + +class account_voucher(osv.osv): + + _inherit = 'account.voucher' + + _columns = { + 'type':fields.selection([ + ('sale','Sale'), + ('purchase','Purchase'), + ('payment','Payment'), + ('receipt','Receipt'), + ('transfer','Transfer'), + ],'Default Type', readonly=True, change_default=True, states={'draft':[('readonly',False)]}), + 'date_doc':fields.date('Cheque Date', readonly=True, select=True, states={'draft':[('readonly',False)]}, help="Document Date"), + 'number_cheque':fields.char('Cheque No.', size=64), + 'reference': fields.char('Ref #', size=64, readonly=False, help="Transaction reference number."), + 'journal_id':fields.many2one('account.journal', 'Journal', readonly=False, required=True), + } + _defaults = { + 'date_doc': lambda *a: time.strftime('%Y-%m-%d'), + } + +account_voucher() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_account_voucher/reports/WithholdingCert.png b/ext_account_voucher/reports/WithholdingCert.png new file mode 100755 index 0000000..88677bf Binary files /dev/null and b/ext_account_voucher/reports/WithholdingCert.png differ diff --git a/ext_account_voucher/reports/custom_reports.xml b/ext_account_voucher/reports/custom_reports.xml new file mode 100755 index 0000000..4faf4ef --- /dev/null +++ b/ext_account_voucher/reports/custom_reports.xml @@ -0,0 +1,21 @@ + + + + + + + True + pdf + context.get('type',False)<>'payment' + + + + diff --git a/ext_account_voucher/reports/withholding_cert.jrxml b/ext_account_voucher/reports/withholding_cert.jrxml new file mode 100755 index 0000000..08d3311 --- /dev/null +++ b/ext_account_voucher/reports/withholding_cert.jrxml @@ -0,0 +1,362 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ext_account_voucher/voucher_payment_receipt_view.xml b/ext_account_voucher/voucher_payment_receipt_view.xml new file mode 100755 index 0000000..e21eb4b --- /dev/null +++ b/ext_account_voucher/voucher_payment_receipt_view.xml @@ -0,0 +1,72 @@ + + + + + account.voucher.payment.check.form + account.voucher + + + + + + + + + + + + + + + + + + + view.vendor.receipt.form + account.voucher + + + + False + [('id', 'in', (12,10))] + + + + + account.voucher.receipt.dialog.form + account.voucher + + 30 + + + False + [('id', 'in', (12,10))] + + + + + view.voucher.tree.ext + account.voucher + + + + + + + + + + view.voucher.filter.vendor.pay.ext + account.voucher + + + + + + + + + + + + diff --git a/ext_hr_expense_tax/__init__.py b/ext_hr_expense_tax/__init__.py new file mode 100755 index 0000000..a5fd7ba --- /dev/null +++ b/ext_hr_expense_tax/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import hr_expense + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_hr_expense_tax/__openerp__.py b/ext_hr_expense_tax/__openerp__.py new file mode 100755 index 0000000..ecec99d --- /dev/null +++ b/ext_hr_expense_tax/__openerp__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : 'HR Expense Extension for SQP', + 'version' : '1.0', + 'author' : 'Ecosoft', + 'summary': 'HR Expense Extensions for SQP', + 'description': """ + +* Adding Employee SQP field. + + """, + 'category': 'Human Resources', + 'sequence': 30, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['hr_expense','hr_expense_tax'], + 'demo' : [], + 'data' : ['hr_expense_view.xml', + 'hr_expense_report.xml' + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_hr_expense_tax/hr_expense.py b/ext_hr_expense_tax/hr_expense.py new file mode 100755 index 0000000..a80a03d --- /dev/null +++ b/ext_hr_expense_tax/hr_expense.py @@ -0,0 +1,60 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import fields, osv +from openerp.tools.translate import _ +from openerp import netsvc +import openerp.addons.decimal_precision as dp + + +def _sqp_employee_get(obj, cr, uid, context=None): + if context is None: + context = {} + ids = obj.pool.get('hr.employee').search(cr, uid, [('user_id', '=', uid)], context=context) + if ids: + return ids[0] + return False + +class hr_expense_expense(osv.osv): + + _inherit = 'hr.expense.expense' + + _columns = { + 'employee_id': fields.many2one('hr.employee', "Employee Account", required=True, readonly=True), + 'sqp_employee_id': fields.many2one('hr.employee', "Employee (SQP)", required=True, readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}), + } + + _defaults = { + 'sqp_employee_id': _sqp_employee_get, + } + +hr_expense_expense() + + +class hr_expense_line(osv.osv): + + _inherit = 'hr.expense.line' + _columns = { + 'cost_order_id': fields.many2one('sale.order', 'Sales Order', domain="[('state','not in',('draft','sent','cancel'))]", help="For Invoice without Purchase Order reference, user can directly assign the cost to Sales Order here."), + } + +hr_expense_line() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_hr_expense_tax/hr_expense_report.xml b/ext_hr_expense_tax/hr_expense_report.xml new file mode 100755 index 0000000..5c0459f --- /dev/null +++ b/ext_hr_expense_tax/hr_expense_report.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/ext_hr_expense_tax/hr_expense_view.xml b/ext_hr_expense_tax/hr_expense_view.xml new file mode 100755 index 0000000..34ff2d5 --- /dev/null +++ b/ext_hr_expense_tax/hr_expense_view.xml @@ -0,0 +1,48 @@ + + + + + view.expenses.form.ext + + hr.expense.expense + + + + + + + + + + + + + view.expenses.tree.ext + + hr.expense.expense + + + + + + + + + + + view.hr.expense.filter.ext + + hr.expense.expense + + + + + + + + + + + + + diff --git a/ext_hr_expense_tax/report/expense.rml b/ext_hr_expense_tax/report/expense.rml new file mode 100755 index 0000000..ff53204 --- /dev/null +++ b/ext_hr_expense_tax/report/expense.rml @@ -0,0 +1,312 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Date + + + Name + + + Ref. + + + Total + + + VAT + + + WHT + + + Net Total + + + + + [[ repeatIn(objects,'o') ]] + + + + HR Expenses + + [[ o.number or '' ]] + + + + + + + + Employee + + + Date + + + Description + + + Validated By + + + + + + + [[ o.sqp_employee_id.name ]] + + + [[ formatLang(o.date,date=True) ]] + + + [[ o.name ]] + + + [[ o.user_valid.name ]] + + + + + + + + + + Date + + + Name + + + Ref. + + + Total + + + VAT + + + WHT + + + Net Total + + + + + + +
+ [[ repeatIn(o.line_ids,'line') ]] + + + + [[ formatLang(line.date_value,date=True) ]] + + + [[ line.name or '' ]] [[ line.description or '' ]] + + + [[ line.ref or '' ]] + + + [[ formatLang(line.total_amount) ]] + + + [[ formatLang(line.tax_amount) ]] + + + [[ formatLang(line.wht_amount) ]] + + + [[ formatLang(line.total_net_amount, currency_obj=o.currency_id) ]] + + + + + + + + + + [[ line.analytic_account and line.analytic_account.complete_name or removeParentNode('tr') ]] + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + Total: + + + [[ formatLang(o.amount, currency_obj=o.currency_id) ]] + + + + + + + [[ o.note or '' ]] + + + + Certified honest and conform, + (Date and signature) + + + + + + + This document must be dated and signed for reimbursement +
+
+
diff --git a/ext_invoice_expense_tax/__init__.py b/ext_invoice_expense_tax/__init__.py new file mode 100755 index 0000000..06f6018 --- /dev/null +++ b/ext_invoice_expense_tax/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import invoice_expense + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_invoice_expense_tax/__openerp__.py b/ext_invoice_expense_tax/__openerp__.py new file mode 100755 index 0000000..49e9d02 --- /dev/null +++ b/ext_invoice_expense_tax/__openerp__.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : "Extensions for Invoice Expense Tax", + 'author' : 'Kitti U.', + 'summary': '', + 'description': """ + +New Fields +========== + +* Due Date +* Ref Sales Order +* Ref Project Name +* Ref Purchase Order + +""", + 'category': 'Accounting & Finance', + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['web_m2o_enhanced','invoice_expense_tax'], + 'demo' : [], + 'data' : [ + 'invoice_expense_view.xml', + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_invoice_expense_tax/invoice_expense.py b/ext_invoice_expense_tax/invoice_expense.py new file mode 100755 index 0000000..f445b77 --- /dev/null +++ b/ext_invoice_expense_tax/invoice_expense.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import types +import netsvc +from osv import osv, fields +import openerp.addons.decimal_precision as dp + +class invoice_expense_expense(osv.osv): + + _inherit = "invoice.expense.expense" + _columns = { + 'ref_order_id': fields.many2one('sale.order', 'Ref Sales Order', domain="[('state','not in',('draft','sent','cancel'))]", readonly=False), + 'ref_project_name': fields.char('Ref Project Name', size=128, readonly=False), + 'ref_purchase_id': fields.many2one('purchase.order', 'Ref Purchase Order', domain="[('state','not in',('draft','sent','confirmed'))]", readonly=False), + } + + def onchange_ref_order_id(self, cr, uid, ids, ref_order_id, context=None): + v = {} + if ref_order_id: + order = self.pool.get('sale.order').browse(cr, uid, ref_order_id, context=context) + if order.ref_project_name: + v['ref_project_name'] = order.ref_project_name + return {'value': v} + +invoice_expense_expense() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_invoice_expense_tax/invoice_expense_view.xml b/ext_invoice_expense_tax/invoice_expense_view.xml new file mode 100755 index 0000000..40cb1d0 --- /dev/null +++ b/ext_invoice_expense_tax/invoice_expense_view.xml @@ -0,0 +1,19 @@ + + + + + view.expenses.form.ext + invoice.expense.expense + + + + + + + + + + + + + \ No newline at end of file diff --git a/ext_mrp/__init__.py b/ext_mrp/__init__.py new file mode 100755 index 0000000..a7727d8 --- /dev/null +++ b/ext_mrp/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import mrp +import stock + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_mrp/__openerp__.py b/ext_mrp/__openerp__.py new file mode 100755 index 0000000..9a99eae --- /dev/null +++ b/ext_mrp/__openerp__.py @@ -0,0 +1,86 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : "Extensions for MRP Module", + 'author' : 'Kitti U.', + 'summary': '', + 'description': """ +New Windows +=========== + +Sales Order menu for manufacturing people (readonly and no price related information) + +* Add Create Product/BOM from SO Line + +Change menu name for Super MO (MO with no parents) + +* A button to view all Child MOs +* Menu Super MO -> MO +* Menu Manufacturing Order -> Sub-MO + +Create DO from MO +================= +* New "Create Delivery Order" button for Super MO when -- 1) SO exits, 2) State in (Confirmed, Ready) 3) Target DO not exist +* Once DO is created, Target Delivery Order will be filled with new DO +* Once MO is done, should trigger DO to state Ready to Deliver + +MO Form +======= + +For SQP Only, in order to manage its stock movement + +* Super MO (product Project) --> Always set Source Location / Destination Location = Production / Production +* Sub MO (produce W1, W2) --> Always set Source Location / Destination Location = Production / Factory FG + +Allow adding RM in confirmed MO + +* Only available for Super MO +* Default Location --> Always set Source Location / Destination Location = Production / Production +* Only Parts listed for product selection. + +MO +== + +* Use Product's sequence as ordering sequence in Status Tracking tab. +* When remove Product to Consume, do not remove it from Scheduled Product +* When create DO from MO, use MO's schedule date for DO. +* Allow cancel MO and all its Sub MOs (only when all Sub-MO are not produced +* Validation, Super MO must have 1 level of Sub-MO only. + +""", + 'category': 'Manufacturing', + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['mrp','mrp_sale_rel','ext_sale','mrp_change_rm','mrp_quick_bom'], + 'demo' : [], + 'data' : [ + 'sale_view.xml', + 'mrp_view.xml', + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_mrp/mrp.py b/ext_mrp/mrp.py new file mode 100755 index 0000000..777f8d9 --- /dev/null +++ b/ext_mrp/mrp.py @@ -0,0 +1,309 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +import time + +from datetime import datetime, timedelta +from openerp.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_DATETIME_FORMAT, DATETIME_FORMATS_MAP, float_compare +from dateutil.relativedelta import relativedelta +import netsvc +from osv import osv, fields +from tools.translate import _ + +class mrp_production(osv.osv): + + _inherit = 'mrp.production' + + def _mrp_production_exists(self, cursor, user, ids, name, arg, context=None): + res = {} + for production in self.browse(cursor, user, ids, context=context): + res[production.id] = False + cursor.execute('''SELECT COUNT(1) from mrp_production + where parent_id = %s''', + (production.id,)) + if cursor.fetchone()[0]: + res[production.id] = True + return res + + def _check_submo_valid(self, cr, uid, ids, context=None): + for mo in self.browse(cr, uid, ids, context=context): + if mo.state in ('confirmed', 'ready'): + # For Super MO, must have only 1 level of sub-MO + if not mo.parent_id: + if len(mo.child_ids) == 0: + return False + for mo in mo.child_ids: + if len(mo.child_ids) > 0: + return False + # For Sub-MO, must have no Sub-MO + elif mo.parent_id: + if len(mo.child_ids) > 0: + return False + return True + + _columns = { + 'target_picking_id': fields.many2one('stock.picking.out', 'Target Delivery Order', required=False, readonly=True, states={'draft': [('readonly', False)]}), + 'mrp_production_exists': fields.function(_mrp_production_exists, string='MO Exists', + type='boolean', help="It indicates that MO has at least one child."), + 'child_ids': fields.one2many('mrp.production', 'parent_id', 'Sub MO', readonly=True), + 'sale_picking_ids': fields.related('order_id', 'picking_ids', type='one2many', relation='stock.picking.out', string='Pickings of related SO', readonly=True), + 'partner_id': fields.related('order_id', 'partner_id', type='many2one', relation='res.partner', string='Customer', readonly=True, store=True), + 'is_printed': fields.boolean('Printed'), + 'note': fields.text('Remark'), + 'short_note': fields.char('Short Note', size=256, required=False, readonly=False), + } + _constraints = [ + (_check_submo_valid, + '\n 1) MO must have 1 level of Sub-MO\n 2) Sub-MO must have no Sub-MO', + ['child_ids'])] + + def action_view_child_mrp_production(self, cr, uid, ids, context=None): + ''' + This function returns an action that display childs MOs of given MO ids. It can either be a in a list or in a form view, if there is only one invoice to show. + ''' + if context is None: + context = {} + mod_obj = self.pool.get('ir.model.data') + act_obj = self.pool.get('ir.actions.act_window') + + result = mod_obj.get_object_reference(cr, uid, 'mrp', 'mrp_production_action') + id = result and result[1] or False + result = act_obj.read(cr, uid, [id], context=context)[0] + #compute the number of MOs to display + mo_ids = [] + production = self.pool.get('mrp.production') + mo_ids = production.search(cr, uid, [('parent_id', 'child_of', ids)]) + + mo_ids.remove(ids[0]) + #choose the view_mode accordingly + if len(mo_ids)>1: + result['domain'] = "[('id','in',["+','.join(map(str, mo_ids))+"])]" + else: + res = mod_obj.get_object_reference(cr, uid, 'mrp', 'mrp_production_form_view') + result['views'] = [(res and res[1] or False, 'form')] + result['res_id'] = mo_ids and mo_ids[0] or False + # Remove search Default Product + result['context'] = {'search_default_product_id': False} + return result + + # Cancel MO and sub-MOs + def action_cancel(self, cr, uid, ids, context=None): + if context is None: + context = {} + move_obj = self.pool.get('stock.move') + stock_picking_obj = self.pool.get('stock.picking') + for production in self.browse(cr, uid, ids, context=context): + # Cancel MOs + if production.state in ('ready','confirmed') and production.picking_id.state in ('confirmed','assigned'): + nids = move_obj.search(cr, uid, [ ('picking_id','=',production.picking_id.id) ] ) + move_obj.action_cancel(cr, uid, nids) + if production.move_created_ids: + move_obj.action_cancel(cr, uid, [x.id for x in production.move_created_ids]) + if production.move_lines: + move_obj.action_cancel(cr, uid, [x.id for x in production.move_lines]) + if production.move_prod_id: + move_obj.action_cancel(cr, uid, [production.move_prod_id.id]) + stock_picking_obj.write(cr, uid, [production.picking_id.id], {'state': 'cancel'}) + # Cancel all sub MOs + for sub_mo in production.child_ids: + if sub_mo.state in ('ready','confirmed') and sub_mo.picking_id.state in ('confirmed','assigned'): + nids = move_obj.search(cr, uid, [ ('picking_id','=',sub_mo.picking_id.id) ] ) + move_obj.action_cancel(cr, uid, nids) + if sub_mo.move_created_ids: + move_obj.action_cancel(cr, uid, [x.id for x in sub_mo.move_created_ids]) + if sub_mo.move_lines: + move_obj.action_cancel(cr, uid, [x.id for x in sub_mo.move_lines]) + if sub_mo.move_prod_id: + move_obj.action_cancel(cr, uid, [sub_mo.move_prod_id.id]) + stock_picking_obj.write(cr, uid, [sub_mo.picking_id.id], {'state': 'cancel'}) + super(mrp_production, self).action_cancel(cr, uid, [x.id for x in production.child_ids], context=context) + + return super(mrp_production, self).action_cancel(cr, uid, ids, context=context) + + def copy(self, cr, uid, id, default=None, context=None): + if default is None: + default = {} + default.update({ + 'child_ids': [], + 'status_lines': [], + 'target_picking_id': False, + }) + return super(mrp_production, self).copy(cr, uid, id, default, context) + + def _get_date_planned(self, cr, uid, order, line, start_date, context=None): + date_planned = datetime.strptime(start_date, DEFAULT_SERVER_DATE_FORMAT) #+ relativedelta(days=line.delay or 0.0) # MO Line has not delay yet. + date_planned = (date_planned - timedelta(days=order.company_id.security_lead)).strftime(DEFAULT_SERVER_DATETIME_FORMAT) + return date_planned + + def _prepare_production_picking(self, cr, uid, production, context=None): + pick_name = self.pool.get('ir.sequence').get(cr, uid, 'stock.picking.out') + return { + 'name': pick_name, + 'origin': production.name, + 'date': time.strftime("%Y-%m-%d %H:%M:%S"), + 'type': 'out', + 'ref_order_id': production.order_id and production.order_id.id, + 'ref_project_name': production.order_id and self.pool.get('sale.order').browse(cr, uid, production.order_id.id, context=context).ref_project_name or False, + 'state': 'draft', + 'move_type': production.order_id and production.order_id.picking_policy or 'direct', + 'sale_id': production.order_id and production.order_id.id or False, + 'partner_id': production.order_id and production.order_id.partner_shipping_id.id or False, + 'note': False, + 'invoice_state': 'none', + 'company_id': production.company_id.id, + } + + def _prepare_production_line_move(self, cr, uid, production, line, picking_id, date_planned, context=None): + location_id = production.order_id and production.order_id.shop_id.warehouse_id.lot_stock_id.id or False + output_id = production.order_id and production.order_id.shop_id.warehouse_id.lot_output_id.id or False + return { + 'name': line.name, + 'picking_id': picking_id, + 'product_id': line.product_id.id, + 'date': time.strftime("%Y-%m-%d %H:%M:%S"), + 'date_expected': date_planned, + 'product_qty': line.product_qty, + 'product_uom': line.product_uom.id, + 'product_uos_qty': (line.product_uos and line.product_uos_qty) or line.product_qty, + 'product_uos': (line.product_uos and line.product_uos.id)\ + or line.product_uom.id, + 'product_packaging': False, #line.product_packaging.id, + 'partner_id': production.order_id and production.order_id.partner_shipping_id.id or False, + 'location_id': location_id, + 'location_dest_id': output_id, + 'sale_line_id': False, + 'tracking_id': False, + 'state': 'draft', + #'state': 'waiting', + 'company_id': production.company_id.id, + 'price_unit': line.product_id.standard_price or 0.0 + } + + def _create_picking(self, cr, uid, production, production_lines, picking_id=False, context=None): + + move_obj = self.pool.get('stock.move') + picking_obj = self.pool.get('stock.picking') + sale_obj = self.pool.get('sale.order') + + for line in production_lines: + #date_planned = self._get_date_planned(cr, uid, production.order_id, production.order_id.order_line, production.order_id.date_order , context=context) + # Simply use date in MO's scheduled + date_planned = production.date_planned + if line.product_id: + if line.product_id.type in ('product', 'consu'): + if not picking_id: + picking_id = picking_obj.create(cr, uid, self._prepare_production_picking(cr, uid, production, context=context)) + move_id = move_obj.create(cr, uid, self._prepare_production_line_move(cr, uid, production, line, picking_id, date_planned, context=context)) + else: + # a service has no stock move + move_id = False + # If Ref Order exists, reference this new Picking back to DO. + if production.order_id: + picking_obj.write(cr, uid, [picking_id], {'sale_id': production.order_id.id}) + # As DO is created, do not mark SO as done. + sale_obj.write(cr, uid, [production.order_id.id], {'shipped': False}) + # If state of MO already done, make DO as ready. + if production.state == 'done': + picking_obj.draft_force_assign(cr, uid, [picking_id]) + picking_obj.force_assign(cr, uid, [picking_id]) + return picking_id + + def action_ship_create(self, cr, uid, ids, context=None): + for production in self.browse(cr, uid, ids, context=context): + if not production.target_picking_id and not production.sale_picking_ids: + picking_id = self._create_picking(cr, uid, production, production.product_lines, None, context=context) + if picking_id: + self.write(cr, uid, [production.id], {'target_picking_id': picking_id}) + return True + + def action_confirm(self, cr, uid, ids, context=None): + # For Super MO only, If the DO is not yet created for it, do it now. + for production in self.browse(cr, uid, ids): + # 1) Assign Target Delivery Order when not yet created, + picking_id = False + if not production.parent_id and not production.target_picking_id: + # 1.1) SO of type "On Demand", always create DO from MO + if production.order_id.order_policy == 'manual': + picking_id = self._create_picking(cr, uid, production, production.product_lines, None, context=context) + # 1.2) Other SO type, reference if DO exists, + elif production.sale_picking_ids and len(production.sale_picking_ids) > 0: + picking_id = production.sale_picking_ids[0].id + if picking_id: + self.write(cr, uid, [production.id], {'target_picking_id': picking_id}) + # 2) If DO is created from SO (Standard AHU), we need to update all. + if not production.parent_id and production.order_id.order_policy != 'manual': + self.pool.get('stock.picking').write(cr, uid, [x.id for x in production.sale_picking_ids], {'origin': production.name}) + + res = super(mrp_production, self).action_confirm(cr, uid, ids, context=context) + return res + + def action_produce(self, cr, uid, production_id, production_qty, production_mode, context=None): + res = super(mrp_production, self).action_produce(cr, uid, production_id, production_qty, production_mode, context=context) + production = self.browse(cr, uid, production_id) + # Make its related picking Ready to Deliver + picking_obj = self.pool.get('stock.picking') + picking_id = production.target_picking_id and production.target_picking_id.id + if picking_id: + picking_obj.draft_force_assign(cr, uid, [picking_id]) + picking_obj.force_assign(cr, uid, [picking_id]) + return res + + # Force RW and FG location +# def write(self, cr, uid, ids, vals, context=None): +# res = super(mrp_production, self).write(cr, uid, ids, vals, context=context) +# location_model, location_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'stock', 'location_production') +# prod_obj = self.pool.get('mrp.production') +# prod_obj.write(cr, uid, ids, {'location_src_id': location_id, 'location_dest_id': location_id}, context=context) +# return res + + def create(self, cr, uid, vals, context=None): + res = super(mrp_production, self).create(cr, uid, vals, context=context) + # Default hard coded location for SQP + location_model, location_factoryfg_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'sqp_config_2', 'stock_location_factory_fg') + location_model, location_prod_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'stock', 'location_production') + prod_obj = self.pool.get('mrp.production') + production = prod_obj.browse(cr, uid, res, context=context) + if not production.parent_id: # Super MO + prod_obj.write(cr, uid, [res], {'location_src_id': location_prod_id, 'location_dest_id': location_prod_id}, context=context) + else: # Sub-MO + order_id = vals.get('order_id', False) + if order_id: + order = self.pool.get('sale.order').browse(cr, uid, order_id) + location_factoryfg_id = order.shop_id.warehouse_id and order.shop_id.warehouse_id.lot_stock_id.id or location_factoryfg_id + prod_obj.write(cr, uid, [res], {'location_src_id': location_prod_id, 'location_dest_id': location_factoryfg_id}, context=context) + return res + + + def action_ready(self, cr, uid, ids, context=None): + """ Changes the production state to Ready and location id of stock move. + @return: True + """ + self.write(cr, uid, ids, {'state': 'ready'}) + + for production in self.browse(cr, uid, ids, context=context): + if not production.move_created_ids: + produce_move_id = self._make_production_produce_line(cr, uid, production, context=context) + for scheduled in production.product_lines: + self._make_production_line_procurement(cr, uid, scheduled, False, context=context) + + return True +mrp_production() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_mrp/mrp_view.xml b/ext_mrp/mrp_view.xml new file mode 100755 index 0000000..ecf3289 --- /dev/null +++ b/ext_mrp/mrp_view.xml @@ -0,0 +1,150 @@ + + + + + view.mrp.production.filter.ext + mrp.production + + + + + + + + + + + + + + + Sub-MO + + + [('parent_id','!=',False)] + + + + MO + ir.actions.act_window + mrp.production + form + tree,form,calendar,graph,gantt + + + {} + [('parent_id','=',False)] + +

+ Click to create a manufacturing order. +

+ A manufacuring order, based on a bill of materials, will + consume raw materials and produce finished products. +

+ Manufacturing orders are usually proposed automatically based + on customer requirements or automated rules like the minimum + stock rule. +

+
+
+ + + + mrp.production.form.view.ext + mrp.production + + + + + + + + + + + + + + + + + + + + + + + + mrp.change.rm.production.form.view.ext + mrp.production + form + + + + + + date + + + date + + + + + + + + + view.purchase.requisition.tree.ext + purchase.requisition + + + + date + + + date + + + + + +
+
\ No newline at end of file diff --git a/ext_purchase/purchase_view.xml b/ext_purchase/purchase_view.xml new file mode 100755 index 0000000..1983b04 --- /dev/null +++ b/ext_purchase/purchase_view.xml @@ -0,0 +1,55 @@ + + + + + purchase.order.form.ext + purchase.order + + + + + [('supplier','=',True),('is_company','=',True)] + + + + + + + + + + + + + + + + purchase.order.tree.ext + purchase.order + + + + + + + + + + + + view.purchase.order.filter.ext + purchase.order + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ext_purchase/security/ir.model.access.csv b/ext_purchase/security/ir.model.access.csv new file mode 100755 index 0000000..88de7ab --- /dev/null +++ b/ext_purchase/security/ir.model.access.csv @@ -0,0 +1,9 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +purchase_requisition.requisition_user,purchase_requisition.requisition_user,model_purchase_requisition,purchase_requisition.group_purchase_requisition_user,1,1,1,1 +purchase_requisition.requisition_manager,purchase_requisition.requisition_manager,model_purchase_requisition,purchase_requisition.group_purchase_requisition_manager,1,1,1,1 +purchase_requisition.requisition_line_user,purchase_requisition.requisition_line_user,model_purchase_requisition_line,purchase_requisition.group_purchase_requisition_user,1,1,1,1 +purchase_requisition.requisition_line_manager,purchase_requisition.requisition_line_manager,model_purchase_requisition_line,purchase_requisition.group_purchase_requisition_manager,1,1,1,1 +purchase_requisition.purchase_user,purchase_requisition.purchase_user,model_purchase_order,purchase_requisition.group_purchase_requisition_user,1,0,0,0 +purchase_requisition.purchase_manager,purchase_requisition.purchase_manager,model_purchase_order,purchase_requisition.group_purchase_requisition_manager,1,0,0,0 +purchase_requisition.purchase_line_user,purchase_requisition.purchase_line_user,purchase.model_purchase_order_line,purchase_requisition.group_purchase_requisition_user,1,0,0,0 +purchase_requisition.purchase_line_manager,purchase_requisition.purchase_line_manager,purchase.model_purchase_order_line,purchase_requisition.group_purchase_requisition_manager,1,0,0,0 diff --git a/ext_purchase/stock.py b/ext_purchase/stock.py new file mode 100755 index 0000000..53fcf53 --- /dev/null +++ b/ext_purchase/stock.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import netsvc +from osv import osv, fields + +class stock_picking_in(osv.osv): + _inherit = 'stock.picking.in' + _columns = { + 'ref_order_id': fields.many2one('sale.order', 'Ref Sales Order', domain="[('state','not in',('draft','sent','cancel'))]", ondelete='set null', select=True), + 'ref_project_name': fields.char('Ref Project Name', size=64, readonly=False), + } + +stock_picking_in() + +class stock_picking(osv.osv): + _inherit = 'stock.picking' + _columns = { + 'ref_order_id': fields.many2one('sale.order', 'Ref Sales Order', domain="[('state','not in',('draft','sent','cancel'))]", ondelete='set null', select=True), + 'ref_project_name': fields.char('Ref Project Name', size=64, readonly=False), + } + # Enhancement issue #1006 + def create(self, cr, uid, vals, context=None): + res = super(stock_picking, self).create(cr, uid, vals, context=context) + if vals.get('purchase_id',False): + self.pool.get('purchase.order').update_ref_incoming_shipment(cr, uid, [vals.get('purchase_id',False)], context) + return res + +stock_picking() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_purchase/stock_view.xml b/ext_purchase/stock_view.xml new file mode 100755 index 0000000..9f631e2 --- /dev/null +++ b/ext_purchase/stock_view.xml @@ -0,0 +1,16 @@ + + + + + Incoming Picking Inherited + stock.picking.in + + + + + + + + + + \ No newline at end of file diff --git a/ext_sale/__init__.py b/ext_sale/__init__.py new file mode 100755 index 0000000..ea7b196 --- /dev/null +++ b/ext_sale/__init__.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import sale +import product +import wizard +import sale_stock + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_sale/__openerp__.py b/ext_sale/__openerp__.py new file mode 100755 index 0000000..f38737d --- /dev/null +++ b/ext_sale/__openerp__.py @@ -0,0 +1,66 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : "Extensions for Sales Module", + 'author' : 'Kitti U.', + 'summary': '', + 'description': """ +Features +======== + +* Adding new version field in Sales Order +* When print Quotation / Sales Order --> create attachment with version number +* 4 Document Sequence, +* * Quotation / Quotation International (QD/QI) +* * Sales Order / Sales Order International (SD/SI) +* Number of Sets (X Units) +* New Project Reference field +* New Additional Discount Amt to be used to calculate % +* If SO mark as International, only list product marked as international. + +* ***For SO for Standard AHU products only***, although it is make to order, do not generate MO from SO. It will be generated manually later on. + +""", + 'category': 'Sales', + 'sequence': 8, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['document', + 'sale', + 'advance_and_additional_discount','product_tag'], + 'demo' : [], + 'data' : [ + 'sale_report.xml', + 'sale_view.xml', + 'product_view.xml', + #'sale_sequence.xml', + 'data/ir.values.csv', + + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_sale/data/ir.values.csv b/ext_sale/data/ir.values.csv new file mode 100755 index 0000000..a4aa624 --- /dev/null +++ b/ext_sale/data/ir.values.csv @@ -0,0 +1,7 @@ +id,name,model,key,key2,user_id,value +ir_value_sale_order_note,note,sale.order,Default,,,"S'Customer PO No. :\nTerm of Payment :\nDelivery :\nValidity :\nRemark :\n\nWe look forward to receive your early instructions.\nVery truly yours,\n\n\n\nVisak Thunyavan\nManaging Director.' +p0 +." +ir_value_sale_order_header_msg,header_msg,sale.order,Default,,,"S'
Heat Insulation Sandwich Panel
Product of Square Panel System Co., Ltd.
Specification :
  • Density : 38~40 kg/m3
  • Core material  : Polyurethane Foam ( PU )
  • Surface material : Color steel sheet (T) 0.45 mm.
  • Color Steel Sheet - Outside : Off white
  • Color Steel Sheet - Inside : Off white
  • Panel Thickness : ______ mm. (External)
  • Joint : Slip Joint
' +p0 +." diff --git a/ext_sale/product.py b/ext_sale/product.py new file mode 100755 index 0000000..cecb706 --- /dev/null +++ b/ext_sale/product.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import netsvc +from osv import osv, fields + +class product_product(osv.osv): + + _inherit = "product.product" + _columns = { + 'is_international': fields.boolean('International', required=False, change_default=True), + } + _defaults = { + 'is_international': False, + } +product_product() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_sale/product_view.xml b/ext_sale/product_view.xml new file mode 100755 index 0000000..45c24a6 --- /dev/null +++ b/ext_sale/product_view.xml @@ -0,0 +1,18 @@ + + + + + product.normal.form.view.ext + + product.product + + + + + + + + + + \ No newline at end of file diff --git a/ext_sale/sale.py b/ext_sale/sale.py new file mode 100755 index 0000000..5e0c861 --- /dev/null +++ b/ext_sale/sale.py @@ -0,0 +1,198 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +import time + +import types +import netsvc +from osv import osv, fields +import openerp.addons.decimal_precision as dp + +class sale_order(osv.osv): + + def _amount_untaxed_pset(self, cr, uid, ids, field_name, arg, context=None): + res = {} + if context is None: + context = {} + for order in self.browse(cr, uid, ids, context=context): + amount = order.amount_untaxed / (order.number_of_set == 0 and 1 or order.number_of_set) + res[order.id] = amount + return res + + def _search_mrp_created(self, cr, uid, obj, name, args, domain=None, context=None): + if not len(args): + return [] + for arg in args: + if arg[1] == '=': + if not arg[2]: + ids = self.search(cr, uid,[('ref_mo_ids','=',False)], context=context) + else: + ids = self.search(cr, uid,[('ref_mo_ids','<>',False)], context=context) + else: + return [] + return [('id', 'in', [id for id in ids])] + + def _mrp_created(self, cr, uid, ids, name, arg, context=None): + res = dict.fromkeys(ids,False) + for order in self.browse(cr, uid, ids, context=context): + if order.ref_mo_ids: + res[order.id] =True + return res + + _inherit = "sale.order" + _columns = { + 'header_msg': fields.html('Header Message', readonly=False), + 'doc_version': fields.integer('Version', required=True, readonly=True, states={'draft': [('readonly', False)]}), + 'ref_quote_no': fields.char('Ref Quotate Number', size=64, readonly=True), + 'number_of_set': fields.integer('Number of Sets', readonly=True, states={'draft': [('readonly', False)]}), + 'amount_untaxed_pset': fields.function(_amount_untaxed_pset, digits_compute=dp.get_precision('Account'), string='Untaxed Amount/Set'), + 'ref_attention_name': fields.char('Attention', size=128, readonly=False), + 'ref_project_name': fields.char('Ref Project Name', size=128, readonly=False), + 'is_international': fields.boolean('International', change_default=True, help='This check book will have affect on Document Sequence Number'), + 'add_disc_amt_ex':fields.float('Additional Discount Amt (Ex)',digits=(4,2), readonly=True, states={'draft': [('readonly', False)]}), + 'note2': fields.text('Note'), + 'ref_mo_ids':fields.one2many('mrp.production', 'order_id', 'Reference MO', readonly=True), + 'mrp_created': fields.function(_mrp_created, string='MO Created', + type='boolean',fnct_search=_search_mrp_created, help="It indicates that sale order has at least one MO."), + 'tag_no': fields.text('TAG No.'), + } + _defaults = { + 'doc_version' : 1, + 'number_of_set' : 1, + } + + def action_button_confirm(self, cr, uid, ids, context=None): + assert len(ids) == 1, 'This option should only be used for a single id at a time.' + self.write(cr, uid, ids, {'ref_quote_no': self.browse(cr, uid, ids[0]).name, + 'date_order': time.strftime("%Y-%m-%d")}) + order = self.browse(cr, uid, ids[0]) + if order.is_international: + new_name = self.pool.get('ir.sequence').get(cr, uid, 'confirmed.sale.order.inter') + else: + new_name = self.pool.get('ir.sequence').get(cr, uid, 'confirmed.sale.order') + self.write(cr, uid, ids, {'name': new_name}) + super(sale_order, self).action_button_confirm(cr, uid, ids, context=context) + + def copy(self, cr, uid, id, default=None, context=None): + if context is None: + context = {} + if default is None: + default = {} + default.update({'ref_mo_ids':[]}) + context.update({'is_copied': True}) + return super(sale_order, self).copy(cr, uid, id, default, context) + + def create(self, cr, uid, vals, context=None): + # On creation, set number_of_set to 1. This will set number_of_set field visible. + if not context.get('is_copied', False): + vals.update({'number_of_set': 1}) + is_international = vals.get('is_international', False) + if is_international: + new_name = self.pool.get('ir.sequence').get(cr, uid, 'sale.order.inter') + vals['name'] = new_name + return super(sale_order, self).create(cr, uid, vals, context=context) + + def write(self, cr, uid, ids, vals, context=None): + res = super(sale_order, self).write(cr, uid, ids, vals, context=context) + # if % = 0 and add_disc_amt_ex > 0, recalculate using add_disc_amt_ex + if not isinstance(ids, types.ListType): # Make it a list + ids = [ids] + if not vals.get('add_disc') and vals.get('add_disc_amt_ex'): + amount_untaxed = self.read(cr, uid, ids, ['amount_untaxed'])[0]['amount_untaxed'] + if amount_untaxed: + add_disc = (vals.get('add_disc_amt_ex') / amount_untaxed) * 100 + vals['add_disc'] = add_disc + res = super(sale_order, self).write(cr, uid, ids, vals, context=context) + # else just set add_disc_amt_ex = add_disc_amt + else: + for id in ids: + value = self.read(cr, uid, [id], ['add_disc_amt']) + super(sale_order, self).write(cr, uid, [value[0]['id']], {'add_disc_amt_ex': value[0]['add_disc_amt']}) + return res + + def onchange_number_of_set(self, cr, uid, ids, number_of_set, context=None): + if context is None: + context = {} + number_of_set = number_of_set < 1 and 1 or number_of_set + self.recompute_order_lines(cr, uid, ids, number_of_set, context=context) + return {'value': {'number_of_set': number_of_set}} + + def recompute_order_lines(self, cr, uid, ids, number_of_set, context=None): + if context is None: + context = {} +# res = { +# 'value': {'order_line': [] }, +# } + if len(ids) > 0: + line_pool = self.pool.get('sale.order.line') + order = self.browse(cr, uid, ids[0], context=context) + for line in order.order_line: + line_pool.write(cr, uid, [line.id], {'product_uom_qty': line.product_uom_qty_pset * number_of_set, + 'number_of_set': number_of_set }) + return True + + def _prepare_order_picking(self, cr, uid, order, context=None): + res = super(sale_order, self)._prepare_order_picking(cr, uid, order, context=context) + res.update({'ref_order_id': order.id, + 'ref_project_name': order.ref_project_name}) + return res + +sale_order() + +class sale_order_line(osv.osv): + + def _amount_line_per_set(self, cr, uid, ids, field_name, arg, context=None): + res = {} + if context is None: + context = {} + number_of_set = 0 + for line in self.browse(cr, uid, ids, context=context): + number_of_set = number_of_set == 0 and line.order_id.number_of_set or number_of_set + price = line.price_subtotal / (number_of_set == 0 and 1 or number_of_set) + res[line.id] = price + return res + + _inherit = "sale.order.line" + _columns = { + 'product_uom_qty_pset': fields.float('Quantity/Set', digits_compute= dp.get_precision('Product UoS'), required=True, readonly=True), + 'price_subtotal_pset': fields.function(_amount_line_per_set, string='Subtotal/Set', digits_compute= dp.get_precision('Account')), + } + _defaults = { + 'product_uom_qty_pset' : 1, + } + def create(self, cr, uid, vals, context=None): + order_obj = self.pool.get('sale.order') + order = order_obj.browse(cr, uid, vals['order_id']) + vals.update({'product_uom_qty_pset': vals['product_uom_qty'] / order.number_of_set}) + return super(sale_order_line, self).create(cr, uid, vals, context=context) + + def write(self, cr, uid, ids, vals, context=None): + if ids: + number_of_set = vals.get('number_of_set', False) or \ + self.pool.get('sale.order.line').browse(cr, uid, ids[0]).order_id.number_of_set or 1.0 + if vals.get('product_uom_qty_pset', False) and not vals.get('product_uom_qty', False): + vals.update({'product_uom_qty': vals['product_uom_qty_pset'] * number_of_set}) + if vals.get('product_uom_qty', False) and not vals.get('product_uom_qty_pset', False): + vals.update({'product_uom_qty_pset': vals['product_uom_qty'] / number_of_set}) + return super(sale_order_line, self).write(cr, uid, ids, vals, context=context) + +sale_order_line() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_sale/sale_report.xml b/ext_sale/sale_report.xml new file mode 100755 index 0000000..8fa112f --- /dev/null +++ b/ext_sale/sale_report.xml @@ -0,0 +1,10 @@ + + + + + + + \ No newline at end of file diff --git a/ext_sale/sale_stock.py b/ext_sale/sale_stock.py new file mode 100755 index 0000000..dc60849 --- /dev/null +++ b/ext_sale/sale_stock.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import netsvc +from osv import osv, fields + +class sale_order(osv.osv): + + _inherit = "sale.order" + + def _prepare_order_line_procurement(self, cr, uid, order, line, move_id, date_planned, context=None): + res = super(sale_order, self)._prepare_order_line_procurement(cr, uid, order, line, move_id, date_planned, context=context) + # For SO for Standard AHU products only***, although it is make to order, + # do not generate MO from SO. It will be generated manually later on. + if order.product_tag_id.id == 1: # Sales Order with Standard AHU + res.update({'procure_method':'make_to_stock'}) + return res + +sale_order() + + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_sale/sale_view.xml b/ext_sale/sale_view.xml new file mode 100755 index 0000000..4121c2d --- /dev/null +++ b/ext_sale/sale_view.xml @@ -0,0 +1,137 @@ + + + + + + view.quotation.tree.ext + sale.order + + + + + + + + + + + + + + + + view.quotation.tree.ext + sale.order + + + + + + + + + + + + + + + + sale.order.list.select.ext + sale.order + + + + + + + + + + + + view.order.form.ext + sale.order + + + + + + + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + view.order.form.ext2 + sale.order + + + + + [('is_international', '=', parent.is_international),('tag_ids', 'in', parent.product_tag_id),'|',('partner_id', '=', False),('partner_id', '=', parent.partner_id)] + + + [('is_international', '=', parent.is_international),('tag_ids', 'in', parent.product_tag_id),'|',('partner_id', '=', False),('partner_id', '=', parent.partner_id)] + + + + + + + view.order.additional.discount.ext + sale.order + + + + + + + True + + + + +
+
\ No newline at end of file diff --git a/ext_sale/wizard/__init__.py b/ext_sale/wizard/__init__.py new file mode 100755 index 0000000..597ceaa --- /dev/null +++ b/ext_sale/wizard/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import sale_make_invoice_advance + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_sale/wizard/sale_make_invoice_advance.py b/ext_sale/wizard/sale_make_invoice_advance.py new file mode 100755 index 0000000..08656c6 --- /dev/null +++ b/ext_sale/wizard/sale_make_invoice_advance.py @@ -0,0 +1,59 @@ +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import fields, osv + + +class sale_advance_payment_inv(osv.osv_memory): + + _inherit = "sale.advance.payment.inv" + + def _get_advance_payment_method(self, cr, uid, context=None): + res = [] + if context.get('active_model', False) == 'sale.order': + sale_id = context.get('active_id', False) + if sale_id: + sale = self.pool.get('sale.order').browse(cr, uid, sale_id) + # Advance option not available when, There are at least 1 non-cancelled invoice created + num_valid_invoice = 0 + for i in sale.invoice_ids: + if i.state not in ['cancel']: + num_valid_invoice += 1 + # Remove these 2 options from according to SQP requirement + if sale.order_policy == 'manual' and (num_valid_invoice or not context.get('advance_type', False)): + res.append(('line_percentage', 'Line Percentage')) + if not num_valid_invoice and context.get('advance_type', False): + res.append(('percentage', 'Percentage')) + res.append(('fixed', 'Fixed price (deposit)')) + + return res + + _columns = { + 'advance_payment_method': fields.selection(_get_advance_payment_method, + 'What do you want to invoice?', required=True, + help="""Use All to create the final invoice. + Use Percentage to invoice a percentage of the total amount. + Use Fixed Price to invoice a specific amound in advance. + Use Some Order Lines to invoice a selection of the sales order lines."""), + } + +sale_advance_payment_inv() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_sale_commission_calc/__init__.py b/ext_sale_commission_calc/__init__.py new file mode 100755 index 0000000..c05b5d8 --- /dev/null +++ b/ext_sale_commission_calc/__init__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import sale +import commission_calc +import commission_rule + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_sale_commission_calc/__openerp__.py b/ext_sale_commission_calc/__openerp__.py new file mode 100755 index 0000000..07ab940 --- /dev/null +++ b/ext_sale_commission_calc/__openerp__.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': "Sales Commission Calculations Extension for SQP", + 'author': 'Ecosoft', + 'summary': '', + 'description': """ + +Release Commission only when payment reach "Final Amount" in Sales Order +------------------------------------------------------------------------ + +New field "Final Amount" in Sales Order, will be used as trigger that, the SO give the green light for commission. + +""", + 'category': 'Sales', + 'sequence': 20, + 'website': 'http://www.ecosoft.co.th', + 'images': [], + 'depends': ['sale', + 'sale_commission_calc', + 'sale_commission_calc_extension'], + 'demo': [ + ], + 'data': [ + 'sale_view.xml', + 'commission_rule_view.xml', + 'commission_calc_view.xml', + ], + 'test': [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_sale_commission_calc/commission_calc.py b/ext_sale_commission_calc/commission_calc.py new file mode 100755 index 0000000..7ce7b95 --- /dev/null +++ b/ext_sale_commission_calc/commission_calc.py @@ -0,0 +1,134 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import fields, osv + + +class commission_worksheet(osv.osv): + + _inherit = 'commission.worksheet' + + def _get_base_amount(self, invoice): + # Case with Additional Discount + tax_amt = 0.0 + for tax in invoice.tax_line: + tax_amt += tax.amount + base_amt = invoice.amount_total - tax_amt + return base_amt + + def _prepare_worksheet_line(self, worksheet, invoice, base_amt, commission_amt, context=None): + res = super(commission_worksheet, self)._prepare_worksheet_line(worksheet, invoice, base_amt, commission_amt, context=context) + res.update({ + 'invoice_amt': invoice.amount_total, # For SQP, amount total will be the full amount. + 'amount_net': base_amt, # Additional field. + }) + return res + +commission_worksheet() + + +class commission_worksheet_line(osv.osv): + + _inherit = 'commission.worksheet.line' + + def _check_commission_line_status(self, cr, uid, line, params, context=None): + res = super(commission_worksheet_line, self)._check_commission_line_status(cr, uid, line, params, context=context) + if not line.force and not line.unlocked: + res.update({'commission_state': 'draft'}) + return res + + def _update_commission_state(self, cr, uid, line, unlocked, context=None): + if not line.force: + params = self._get_commission_params(cr, uid, [line.id], context=context) + commission_state = super(commission_worksheet_line, self)._check_commission_line_status(cr, uid, line, params, context=context)['commission_state'] + if not unlocked: + commission_state = 'draft' + if commission_state != line.commission_state: + cr.execute('update commission_worksheet_line set commission_state = %s where id = %s', (commission_state, line.id)) + return True + + def _get_order(self, cr, uid, ids, field_name, arg, context=None): + res = {} + # Worksheet Lines + for line in self.browse(cr, uid, ids, context): + order = line.invoice_id.sale_order_ids and line.invoice_id.sale_order_ids[0] or False + # This line will be unlocked when, SO's Final Amount = all paid invoice amount + unlocked = False + if order: + inv_amt = 0.0 + for invoice in order.invoice_ids: + inv_amt += invoice.state == 'paid' and invoice.amount_total or 0.0 + if order.amount_final <= inv_amt: + unlocked = True + # -- + res[line.id] = { + 'order_id': order and order.id or False, + 'amount_init': order and (order.amount_total - order.amount_tax) or False, + 'amount_final': order and order.amount_final or False, + 'unlocked': unlocked, + } + # Final check status again. + self._update_commission_state(cr, uid, line, unlocked, context=context) + return res + + def _get_unlock(self, cr, uid, ids, field_name, arg, context=None): + res = {} + # Worksheet Lines + for line in self.browse(cr, uid, ids, context): + order = line.invoice_id.sale_order_ids and line.invoice_id.sale_order_ids[0] or False + res[line.id] = { + 'order_id': order and order.id or False, + 'amount_init': order and (order.amount_total - order.amount_tax) or False, + 'amount_final': order and order.amount_final or False, + } + return res + + def _line_from_order(self, cr, uid, ids, context=None): + wks_line_obj = self.pool.get('commission.worksheet.line') + for order in self.browse(cr, uid, ids, context=context): + worksheet_ids = wks_line_obj.search(cr, uid, [('order_id', '=', order.id)], context=context) + return worksheet_ids + + _columns = { + 'order_id': fields.function(_get_order, type='many2one', relation='sale.order', string='Sales Order', multi='get_order', + store={ + 'commission.worksheet.line': (lambda self, cr, uid, ids, c={}: ids, None, 5) + }), + 'amount_init': fields.function(_get_order, type='float', string='Order Amount', multi='get_order', + store={ + 'commission.worksheet.line': (lambda self, cr, uid, ids, c={}: ids, None, 5) + }), + 'amount_final': fields.function(_get_order, type='float', string='Final Amount', multi='get_order', + store={ + 'sale.order': (_line_from_order, ['amount_final'], 10), # Possible to be updated from sale.order + 'commission.worksheet.line': (lambda self, cr, uid, ids, c={}: ids, None, 5) + }), + 'unlocked': fields.function(_get_order, type='boolean', string='Unlocked', multi='get_order', + store={ + 'sale.order': (_line_from_order, ['amount_final'], 10), # Possible to be updated from sale.order + 'commission.worksheet.line': (lambda self, cr, uid, ids, c={}: ids, None, 5) + }), + 'amount_net': fields.float('Untaxed', readonly=True), + } + +commission_worksheet_line() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_sale_commission_calc/commission_calc_view.xml b/ext_sale_commission_calc/commission_calc_view.xml new file mode 100755 index 0000000..15bbcb3 --- /dev/null +++ b/ext_sale_commission_calc/commission_calc_view.xml @@ -0,0 +1,23 @@ + + + + + view.commission.worksheet.form.ext + + commission.worksheet + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ext_sale_commission_calc/commission_rule.py b/ext_sale_commission_calc/commission_rule.py new file mode 100755 index 0000000..f29f658 --- /dev/null +++ b/ext_sale_commission_calc/commission_rule.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from openerp.osv import osv + +# Available commission rule +COMMISSION_RULE = [('percent_fixed', 'Fixed Commission Rate')] + + +class commission_rule(osv.osv): + + _inherit = "commission.rule" + _defaults = { + 'type': 'percent_fixed' + } + +commission_rule() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_sale_commission_calc/commission_rule_view.xml b/ext_sale_commission_calc/commission_rule_view.xml new file mode 100755 index 0000000..fa16c4b --- /dev/null +++ b/ext_sale_commission_calc/commission_rule_view.xml @@ -0,0 +1,17 @@ + + + + + view.commission.rule.form.ext + commission.rule + + + + + True + + + + + + \ No newline at end of file diff --git a/ext_sale_commission_calc/sale.py b/ext_sale_commission_calc/sale.py new file mode 100755 index 0000000..6d41bcc --- /dev/null +++ b/ext_sale_commission_calc/sale.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from openerp.osv import osv, fields +import openerp.addons.decimal_precision as dp + + +class sale_order(osv.osv): + + _inherit = "sale.order" + _columns = { + 'amount_final': fields.float('Final Amount', digits_compute=dp.get_precision('Account'), readonly=False), + } + + def action_button_confirm(self, cr, uid, ids, context=None): + res = super(sale_order, self).action_button_confirm(cr, uid, ids, context=context) + for order in self.browse(cr, uid, ids): + self.write(cr, uid, [order.id], {'amount_final': order.amount_net}) + return res + +sale_order() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_sale_commission_calc/sale_view.xml b/ext_sale_commission_calc/sale_view.xml new file mode 100755 index 0000000..ca40525 --- /dev/null +++ b/ext_sale_commission_calc/sale_view.xml @@ -0,0 +1,20 @@ + + + + + view.order.form.ext + sale.order + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ext_stock/__init__.py b/ext_stock/__init__.py new file mode 100755 index 0000000..8683fe8 --- /dev/null +++ b/ext_stock/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +import stock +import product + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_stock/__openerp__.py b/ext_stock/__openerp__.py new file mode 100755 index 0000000..a078a39 --- /dev/null +++ b/ext_stock/__openerp__.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : "Extensions for Stock Module (SQP)", + 'author' : 'Ecosoft', + 'summary': '', + 'description': """ +Features +======== + +* Adding new "Purchase Order Ref." in Simplified Internal Move Line window. +* Adding new "Sales Order Ref." in header. +* If schedule date is updated by user, make sure it will change all the move line's schedule date. +* Simplified Internal Move, do not show recorded auto generated from MO. + +""", + 'category': 'Stock', + 'sequence': 8, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['stock','stock_simplified_move','sale_stock','hr','web_m2o_enhanced'], + 'demo' : [], + 'data' : [ + 'stock_view.xml', + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_stock/product.py b/ext_stock/product.py new file mode 100755 index 0000000..7b233e1 --- /dev/null +++ b/ext_stock/product.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import osv, fields +from openerp.tools.translate import _ + +class product_template(osv.osv): + _name = 'product.template' + _inherit = 'product.template' + _columns = { + # Change Label + 'loc_rack': fields.char('Shelf', size=16), + 'loc_row': fields.char('Zone', size=16), + 'loc_case': fields.char('Warehouse', size=16), + } + +product_template() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_stock/stock.py b/ext_stock/stock.py new file mode 100755 index 0000000..6a6f098 --- /dev/null +++ b/ext_stock/stock.py @@ -0,0 +1,146 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import osv, fields + + +class stock_move(osv.osv): + + _inherit = "stock.move" + _columns = { + 'purchase_id': fields.many2one('purchase.order', 'Purchase Order Ref.'), + 'note': fields.text('Remark'), + } + +stock_move() + + +class stock_picking(osv.osv): + + _inherit = "stock.picking" + + _columns = { + 'ref_order_id': fields.many2one('sale.order', 'Ref Sales Order', domain="[('state','not in',('draft','sent','cancel'))]", ondelete='set null', select=True), + 'ref_project_name': fields.char('Ref Project Name', size=64, readonly=False), + 'department_id': fields.many2one('hr.department', 'Department', readonly=False), + 'car_plate': fields.char('Car Plate', size=64, readonly=False), + 'ref_order_tag_no': fields.related('ref_order_id', 'tag_no', type='text', relation='sale.order', string='TAG No. from Order', store=False, readonly=True), + 'tag_no': fields.text('TAG No.'), + } + + def onchange_ref_order_id(self, cr, uid, ids, ref_order_id, context=None): + v = {} + if ref_order_id: + order = self.pool.get('sale.order').browse(cr, uid, ref_order_id, context=context) + if order.ref_project_name: + v['ref_project_name'] = order.ref_project_name + return {'value': v} + +stock_picking() + + +class stock_picking_out(osv.osv): + + _inherit = "stock.picking.out" + + def get_min_max_date(self, cr, uid, ids, field_name, arg, context=None): + return super(stock_picking_out, self).get_min_max_date(cr, uid, ids, field_name, arg, context=context) + + # Override + def _set_maximum_date(self, cr, uid, ids, name, value, arg, context=None): + """ Calculates planned date if it is greater than 'value'. + @param name: Name of field + @param value: Value of field + @param arg: User defined argument + @return: True or False + """ + if not value: + return False + if isinstance(ids, (int, long)): + ids = [ids] + for pick in self.browse(cr, uid, ids, context=context): + sql_str = """update stock_move set + date_expected='%s' + where + picking_id=%d """ % (value, pick.id) + # Remove +# if pick.max_date: +# sql_str += " and (date_expected='" + pick.max_date + "')" + cr.execute(sql_str) + return True + + # Override + def _set_minimum_date(self, cr, uid, ids, name, value, arg, context=None): + """ Calculates planned date if it is less than 'value'. + @param name: Name of field + @param value: Value of field + @param arg: User defined argument + @return: True or False + """ + if not value: + return False + if isinstance(ids, (int, long)): + ids = [ids] + for pick in self.browse(cr, uid, ids, context=context): + sql_str = """update stock_move set + date_expected='%s' + where + picking_id=%s """ % (value, pick.id) + # Remove +# if pick.min_date: +# sql_str += " and (date_expected='" + pick.min_date + "')" + cr.execute(sql_str) + return True + + _columns = { + 'car_plate': fields.char('Car Plate', size=64, readonly=False), + 'min_date': fields.function(get_min_max_date, fnct_inv=_set_minimum_date, multi="min_max_date", + store=True, type='datetime', string='Scheduled Time', select=1, help="Scheduled time for the shipment to be processed"), + 'max_date': fields.function(get_min_max_date, fnct_inv=_set_maximum_date, multi="min_max_date", + store=True, type='datetime', string='Max. Expected Date', select=2), + 'ref_order_tag_no': fields.related('ref_order_id', 'tag_no', type='text', relation='sale.order', string='TAG No. from Order', store=False, readonly=True), + 'tag_no': fields.text('TAG No.'), + } + + def copy(self, cr, uid, id, default=None, context=None): + if default is None: + default = {} + default = default.copy() + picking_obj = self.browse(cr, uid, id, context=context) + if ('name' not in default) or (picking_obj.name == '/'): + # For supply list + if picking_obj.is_supply_list: + default['name'] = self.pool.get('ir.sequence').get(cr, uid, 'stock.picking.supplylist') + res = super(stock_picking_out, self).copy(cr, uid, id, default=default, context=context) + return res + + def create(self, cr, user, vals, context=None): + if ('name' not in vals) or (vals.get('name') == '/'): + # For supply list + seq_obj_name = vals.get('is_supply_list', False) and 'stock.picking.supplylist' or False + if seq_obj_name: + vals['name'] = self.pool.get('ir.sequence').get(cr, user, seq_obj_name) + new_id = super(stock_picking_out, self).create(cr, user, vals, context) + return new_id + +stock_picking_out() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_stock/stock_view.xml b/ext_stock/stock_view.xml new file mode 100755 index 0000000..297f454 --- /dev/null +++ b/ext_stock/stock_view.xml @@ -0,0 +1,141 @@ + + + + + view.move.form.ext.sqp + + stock.move + + + + + + + + + + + + + + + + view.simplified.move.form.ext + + stock.picking + + + + + + + + + + + + + + view.move.picking.tree.ext + + stock.move + + + + + + + + + + + + + + + view.picking.form.ext + + stock.picking.out + + + + + + + + + + + + + + + + + + + + + stock.picking.form + stock.picking + + + + + + + + + stock.picking.out.tree + stock.picking + + + + + + + + + + + [('type','=','internal'),('location_id','!=',False),('location_dest_id','!=','False')] + + + + + + stock.picking.cancel.out.form + stock.picking.out + + + + + + + + stock.picking.cancel.in.form + stock.picking.in + + + + + + + + stock.picking.cancel.form + stock.picking + + + + + + + + + \ No newline at end of file diff --git a/ext_stock_balance_reorder/__init__.py b/ext_stock_balance_reorder/__init__.py new file mode 100755 index 0000000..9dab807 --- /dev/null +++ b/ext_stock_balance_reorder/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import product + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_stock_balance_reorder/__openerp__.py b/ext_stock_balance_reorder/__openerp__.py new file mode 100755 index 0000000..8a4d006 --- /dev/null +++ b/ext_stock_balance_reorder/__openerp__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 Ecosoft Co., Ltd. (http://ecosoft.co.th). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : 'Extension to Stock Balance Reorder (SQP)', + 'version' : '1.0', + 'author' : 'Ecosoft', + 'summary': 'Enhance Location Structure report for In/Out/Safety/Reorder', + 'description': """ + +Adding columns specific to SQP + +* MO Out = products reserved in MO with status "confirmed" + +Also have MO Out to reflect Reorder (Forecast - Safety - MO Out) + + """, + 'category': 'Warehouse Management', + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['product','stock_balance_reorder'], + 'demo' : [], + 'data' : ['product_view.xml', + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_stock_balance_reorder/product.py b/ext_stock_balance_reorder/product.py new file mode 100755 index 0000000..e58bad3 --- /dev/null +++ b/ext_stock_balance_reorder/product.py @@ -0,0 +1,256 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import netsvc +from osv import osv, fields +from tools.translate import _ +import openerp.addons.decimal_precision as dp +from lxml import etree + +class product_product(osv.osv): + + # Overwrite method + def get_product_safety(self, cr, uid, ids, context=None): + if context is None: + context = {} + + location_obj = self.pool.get('stock.location') + warehouse_obj = self.pool.get('stock.warehouse') + shop_obj = self.pool.get('sale.shop') + + states = context.get('states',[]) + what = context.get('what',()) + if not ids: + ids = self.search(cr, uid, []) + res = {}.fromkeys(ids, 0.0) + if not ids: + return res + + if context.get('shop', False): + warehouse_id = shop_obj.read(cr, uid, int(context['shop']), ['warehouse_id'])['warehouse_id'][0] + if warehouse_id: + context['warehouse'] = warehouse_id + + if context.get('warehouse', False): + lot_id = warehouse_obj.read(cr, uid, int(context['warehouse']), ['lot_stock_id'])['lot_stock_id'][0] + if lot_id: + context['location'] = lot_id + + if context.get('location', False): + if type(context['location']) == type(1): + location_ids = [context['location']] + elif type(context['location']) in (type(''), type(u'')): + location_ids = location_obj.search(cr, uid, [('name','ilike',context['location'])], context=context) + else: + location_ids = context['location'] + else: + location_ids = [] + wids = warehouse_obj.search(cr, uid, [], context=context) + if not wids: + return res + for w in warehouse_obj.browse(cr, uid, wids, context=context): + location_ids.append(w.lot_stock_id.id) + + # build the list of ids of children of the location given by id + if context.get('compute_child',True): + child_location_ids = location_obj.search(cr, uid, [('location_id', 'child_of', location_ids)]) + location_ids = child_location_ids or location_ids + + # this will be a dictionary of the product UoM by product id + product2uom = {} + uom_ids = [] + for product in self.read(cr, uid, ids, ['uom_id'], context=context): + product2uom[product['id']] = product['uom_id'][0] + uom_ids.append(product['uom_id'][0]) + # this will be a dictionary of the UoM resources we need for conversion purposes, by UoM id + uoms_o = {} + for uom in self.pool.get('product.uom').browse(cr, uid, uom_ids, context=context): + uoms_o[uom.id] = uom + + results_safety = [] + results_in = [] + results_out = [] + results_mo_resv = [] + + from_date = context.get('from_date',False) + to_date = context.get('to_date',False) + date_str = False + date_values = False + where = [tuple(location_ids),tuple(location_ids),tuple(ids),tuple(states)] + if from_date and to_date: + date_str = "date>=%s and date<=%s" + where.append(tuple([from_date])) + where.append(tuple([to_date])) + elif from_date: + date_str = "date>=%s" + date_values = [from_date] + elif to_date: + date_str = "date<=%s" + date_values = [to_date] + if date_values: + where.append(tuple(date_values)) + + prodlot_id = context.get('prodlot_id', False) + prodlot_clause = '' + if prodlot_id: + prodlot_clause = ' and prodlot_id = %s ' + where += [prodlot_id] + + # Calculate Safety + if 'safety' in what: + cr.execute( + 'select sum(product_min_qty), product_id, product_uom '\ + 'from stock_warehouse_orderpoint '\ + 'where location_id IN %s '\ + 'and product_id IN %s '\ + 'and active = True '\ + 'group by product_id, product_uom ', tuple([tuple(location_ids), tuple(ids)])) + results_safety = cr.fetchall() + if 'in' in what: + cr.execute( + 'select sum(product_qty), product_id, product_uom '\ + 'from stock_move '\ + 'where location_id NOT IN %s '\ + 'and location_dest_id IN %s '\ + 'and product_id IN %s '\ + "and state in %s " + (date_str and "and "+date_str+" " or '') + " "\ + + prodlot_clause + + 'group by product_id,product_uom',tuple(where)) + results_in = cr.fetchall() + if 'out' in what: + cr.execute( + 'select sum(product_qty), product_id, product_uom '\ + 'from stock_move '\ + 'where location_id IN %s '\ + 'and location_dest_id NOT IN %s '\ + 'and product_id IN %s '\ + "and state in %s " + (date_str and "and "+date_str+" " or '') + " "\ + + prodlot_clause + + 'group by product_id,product_uom',tuple(where)) + results_out = cr.fetchall() + # Additional Column + if 'mo_resv' in what: + cr.execute( + 'select sum(sm.product_qty), sm.product_id, sm.product_uom from stock_move sm '\ + 'join mrp_production mrp on sm.picking_id = mrp.picking_id '\ + "where sm.state not in ('cancel','done') "\ + "and mrp.state = 'confirmed' "\ + 'and sm.product_id IN %s '\ + 'group by sm.product_id, sm.product_uom', tuple([tuple(ids),])) + results_mo_resv = cr.fetchall() + + # Get the missing UoM resources + uom_obj = self.pool.get('product.uom') + uoms = map(lambda x: x[2], results_safety) + map(lambda x: x[2], results_in) + \ + map(lambda x: x[2], results_out) + map(lambda x: x[2], results_mo_resv) + if context.get('uom', False): + uoms += [context['uom']] + uoms = filter(lambda x: x not in uoms_o.keys(), uoms) + if uoms: + uoms = uom_obj.browse(cr, uid, list(set(uoms)), context=context) + for o in uoms: + uoms_o[o.id] = o + + #TOCHECK: before change uom of product, stock move line are in old uom. + context.update({'raise-exception': False}) + # Count the safety quantities + for amount, prod_id, prod_uom in results_safety: + amount = uom_obj._compute_qty_obj(cr, uid, uoms_o[prod_uom], amount, + uoms_o[context.get('uom', False) or product2uom[prod_id]], context=context) + res[prod_id] -= amount + # Count the incoming quantities + for amount, prod_id, prod_uom in results_in: + amount = uom_obj._compute_qty_obj(cr, uid, uoms_o[prod_uom], amount, + uoms_o[context.get('uom', False) or product2uom[prod_id]], context=context) + res[prod_id] += amount + # Count the outgoing quantities + for amount, prod_id, prod_uom in results_out: + amount = uom_obj._compute_qty_obj(cr, uid, uoms_o[prod_uom], amount, + uoms_o[context.get('uom', False) or product2uom[prod_id]], context=context) + res[prod_id] -= amount + # Count the MO Out + for amount, prod_id, prod_uom in results_mo_resv: + amount = uom_obj._compute_qty_obj(cr, uid, uoms_o[prod_uom], amount, + uoms_o[context.get('uom', False) or product2uom[prod_id]], context=context) + res[prod_id] -= amount + + return res + + # Overwrite method + def _product_safety(self, cr, uid, ids, field_names=None, arg=False, context=None): + + if not field_names: + field_names = [] + if context is None: + context = {} + res = {} + for id in ids: + res[id] = {}.fromkeys(field_names, 0.0) + for f in field_names: + c = context.copy() + if f == 'qty_safety': + c.update({ 'what': ('safety') }) + if f == 'qty_reorder': + c.update({ 'states': ('confirmed','waiting','assigned','done'), 'what': ('in', 'out', 'safety', 'mo_resv') }) + # Additional Column + if f == 'qty_mo_resv': + c.update({ 'what': ('mo_resv') }) + # -- + safety_stock = self.get_product_safety(cr, uid, ids, context=c) + for id in ids: + if f == 'qty_safety': + res[id][f] = -safety_stock.get(id, 0.0) # show safety in positive value + else: + res[id][f] = safety_stock.get(id, 0.0) + return res + + def _search_product_reorder(self, cr, uid, obj, name, args, context=None): + for arg in args: + # domain = qty_reorder < 0 + if arg[0] == 'qty_reorder' and arg[1] == '<' and arg[2] == 0: + c = context.copy() + c.update({ 'states': ('confirmed','waiting','assigned','done'), 'what': ('in', 'out', 'safety', 'mo_resv') }) + safety_stock = self.get_product_safety(cr, uid, ids=None, context=c) + res = [] + for id in safety_stock: + if safety_stock.get(id, 0.0) < 0.0: + res.append(id) + return [('id', 'in', res)] + + _inherit = "product.product" + _columns = { + 'qty_safety': fields.function(_product_safety, multi='qty_safety', + type='float', digits_compute=dp.get_precision('Product Unit of Measure'), + string='Safety Stock', + help="Quantity of Orderpoint of each product in given location."), + 'qty_reorder': fields.function(_product_safety, multi='qty_safety', + type='float', fnct_search=_search_product_reorder, digits_compute=dp.get_precision('Product Unit of Measure'), + string='Reorder', + help="Quantity of suggested reorder based on Future - Safety"), + # Additional column + 'qty_mo_resv': fields.function(_product_safety, multi='qty_safety', + type='float', digits_compute=dp.get_precision('Product Unit of Measure'), + string='MO Out', + help="Quantity of product to be reserved for production (regardless of location)"), + } + +product_product() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_stock_balance_reorder/product_view.xml b/ext_stock_balance_reorder/product_view.xml new file mode 100755 index 0000000..f1c05b8 --- /dev/null +++ b/ext_stock_balance_reorder/product_view.xml @@ -0,0 +1,17 @@ + + + + + product.product.tree.view.ext2 + product.product + + + + + + + + + + + diff --git a/ext_stock_check_availability/__init__.py b/ext_stock_check_availability/__init__.py new file mode 100755 index 0000000..cb3a89e --- /dev/null +++ b/ext_stock_check_availability/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_stock_check_availability/__openerp__.py b/ext_stock_check_availability/__openerp__.py new file mode 100755 index 0000000..9590794 --- /dev/null +++ b/ext_stock_check_availability/__openerp__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': "Extensions for Stock Check Availability", + 'author': 'ECOSOFT', + 'summary': '', + 'description': """ +Features +======== + +* Add check MO's parts + +""", + 'category': 'Sales', + 'sequence': 8, + 'website': 'http://www.ecosoft.co.th', + 'images': [], + 'depends': [ + 'stock_check_availability'], + 'demo': [], + 'data': [ + 'action_view.xml' + ], + 'test': [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/ext_stock_check_availability/action_view.xml b/ext_stock_check_availability/action_view.xml new file mode 100755 index 0000000..627ed8e --- /dev/null +++ b/ext_stock_check_availability/action_view.xml @@ -0,0 +1,24 @@ + + + + + + + + \ No newline at end of file diff --git a/fix_account_validate/__init__.py b/fix_account_validate/__init__.py new file mode 100755 index 0000000..383559e --- /dev/null +++ b/fix_account_validate/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import account + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/fix_account_validate/__openerp__.py b/fix_account_validate/__openerp__.py new file mode 100755 index 0000000..b42582d --- /dev/null +++ b/fix_account_validate/__openerp__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : 'FIX Acct Validation digits for MH (Based on Rev 9162)', + 'version' : '1.0', + 'author' : 'Kitti U.', + 'summary': 'Changing validatio digit from 10**-4 to 10**-3 otherwise Invoice can not be validated', + 'description': """ + +This module overwrite method validate() in account.account, to allow account posting diff < 10**-3 instead of 10**-4 + + """, + 'category': 'Accounting & Finance', + 'sequence': 4, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['account'], + 'demo' : [], + 'data' : [ + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/fix_account_validate/account.py b/fix_account_validate/account.py new file mode 100755 index 0000000..b921c71 --- /dev/null +++ b/fix_account_validate/account.py @@ -0,0 +1,133 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import fields, osv + +class account_move(osv.osv): + + _inherit = 'account.move' + + # kittiu: Change power 4 to power 2 when validation. See below. + # This is the method overwrite of account.validate() + # + # Validate a balanced move. If it is a centralised journal, create a move. + # + def validate(self, cr, uid, ids, context=None): + if context and ('__last_update' in context): + del context['__last_update'] + + valid_moves = [] #Maintains a list of moves which can be responsible to create analytic entries + obj_analytic_line = self.pool.get('account.analytic.line') + obj_move_line = self.pool.get('account.move.line') + for move in self.browse(cr, uid, ids, context): + # Unlink old analytic lines on move_lines + for obj_line in move.line_id: + for obj in obj_line.analytic_lines: + obj_analytic_line.unlink(cr,uid,obj.id) + + journal = move.journal_id + amount = 0 + line_ids = [] + line_draft_ids = [] + company_id = None + for line in move.line_id: + amount += line.debit - line.credit + line_ids.append(line.id) + if line.state=='draft': + line_draft_ids.append(line.id) + + if not company_id: + company_id = line.account_id.company_id.id + if not company_id == line.account_id.company_id.id: + raise osv.except_osv(_('Error!'), _("Cannot create moves for different companies.")) + + if line.account_id.currency_id and line.currency_id: + if line.account_id.currency_id.id != line.currency_id.id and (line.account_id.currency_id.id != line.account_id.company_id.currency_id.id): + raise osv.except_osv(_('Error!'), _("""Cannot create move with currency different from ..""") % (line.account_id.code, line.account_id.name)) + + # kittiu, change from -4 to -2 + if abs(amount) < 10 ** -2: + # -- kittiu + # If the move is balanced + # Add to the list of valid moves + # (analytic lines will be created later for valid moves) + valid_moves.append(move) + + # Check whether the move lines are confirmed + + if not line_draft_ids: + continue + # Update the move lines (set them as valid) + + obj_move_line.write(cr, uid, line_draft_ids, { + 'state': 'valid' + }, context, check=False) + + account = {} + account2 = {} + + if journal.type in ('purchase','sale'): + for line in move.line_id: + code = amount = 0 + key = (line.account_id.id, line.tax_code_id.id) + if key in account2: + code = account2[key][0] + amount = account2[key][1] * (line.debit + line.credit) + elif line.account_id.id in account: + code = account[line.account_id.id][0] + amount = account[line.account_id.id][1] * (line.debit + line.credit) + if (code or amount) and not (line.tax_code_id or line.tax_amount): + obj_move_line.write(cr, uid, [line.id], { + 'tax_code_id': code, + 'tax_amount': amount + }, context, check=False) + elif journal.centralisation: + # If the move is not balanced, it must be centralised... + + # Add to the list of valid moves + # (analytic lines will be created later for valid moves) + valid_moves.append(move) + + # + # Update the move lines (set them as valid) + # + self._centralise(cr, uid, move, 'debit', context=context) + self._centralise(cr, uid, move, 'credit', context=context) + obj_move_line.write(cr, uid, line_draft_ids, { + 'state': 'valid' + }, context, check=False) + else: + # We can't validate it (it's unbalanced) + # Setting the lines as draft + obj_move_line.write(cr, uid, line_ids, { + 'state': 'draft' + }, context, check=False) + # Create analytic lines for the valid moves + for record in valid_moves: + obj_move_line.create_analytic_lines(cr, uid, [line.id for line in record.line_id], context) + + valid_moves = [move.id for move in valid_moves] + return len(valid_moves) > 0 and valid_moves or False + + +account_move() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/fix_invoice_duedate/__init__.py b/fix_invoice_duedate/__init__.py new file mode 100755 index 0000000..383559e --- /dev/null +++ b/fix_invoice_duedate/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import account + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/fix_invoice_duedate/__openerp__.py b/fix_invoice_duedate/__openerp__.py new file mode 100755 index 0000000..b479b88 --- /dev/null +++ b/fix_invoice_duedate/__openerp__.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : 'FIX Invoice Due Date', + 'version' : '1.0', + 'author' : 'Kitti U.', + 'summary': 'if Due Date exists, do not overwrite with Payment Term', + 'description': """ + +In Supplier Invoice, according to existing logic, +* When Validate, system will always use Payment Term + Invoice Date = Due Date +* No matter what is specified on screen, account_move_line's due date (date_maturity) will be calculated from Payment Term + +We want to change it such that, +* If user already assign Due Date, just use it and do not recalc. +* Always and Always use Due Date on screen to set the account_move_line's due date (date_maturity) + + """, + 'category': 'Accounting & Finance', + 'sequence': 4, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['account'], + 'demo' : [], + 'data' : [ + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/fix_invoice_duedate/account.py b/fix_invoice_duedate/account.py new file mode 100755 index 0000000..6253e73 --- /dev/null +++ b/fix_invoice_duedate/account.py @@ -0,0 +1,205 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +import time +from openerp.osv import fields, osv + +class account_invoice(osv.osv): + + _inherit = 'account.invoice' + + def action_date_assign(self, cr, uid, ids, *args): + for inv in self.browse(cr, uid, ids): + if not inv.date_due: + res = self.onchange_payment_term_date_invoice(cr, uid, inv.id, inv.payment_term.id, inv.date_invoice) + if res and res['value']: + self.write(cr, uid, [inv.id], res['value']) + return True + + # A complete override method. + def action_move_create(self, cr, uid, ids, context=None): + """Creates invoice related analytics and financial move lines""" + ait_obj = self.pool.get('account.invoice.tax') + cur_obj = self.pool.get('res.currency') + period_obj = self.pool.get('account.period') + payment_term_obj = self.pool.get('account.payment.term') + journal_obj = self.pool.get('account.journal') + move_obj = self.pool.get('account.move') + if context is None: + context = {} + for inv in self.browse(cr, uid, ids, context=context): + if not inv.journal_id.sequence_id: + raise osv.except_osv(_('Error!'), _('Please define sequence on the journal related to this invoice.')) + if not inv.invoice_line: + raise osv.except_osv(_('No Invoice Lines!'), _('Please create some invoice lines.')) + if inv.move_id: + continue + + ctx = context.copy() + ctx.update({'lang': inv.partner_id.lang}) + if not inv.date_invoice: + self.write(cr, uid, [inv.id], {'date_invoice': fields.date.context_today(self,cr,uid,context=context)}, context=ctx) + company_currency = self.pool['res.company'].browse(cr, uid, inv.company_id.id).currency_id.id + # create the analytical lines + # one move line per invoice line + iml = self._get_analytic_lines(cr, uid, inv.id, context=ctx) + # check if taxes are all computed + compute_taxes = ait_obj.compute(cr, uid, inv.id, context=ctx) + self.check_tax_lines(cr, uid, inv, compute_taxes, ait_obj) + + # I disabled the check_total feature + group_check_total_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'account', 'group_supplier_inv_check_total')[1] + group_check_total = self.pool.get('res.groups').browse(cr, uid, group_check_total_id, context=context) + if group_check_total and uid in [x.id for x in group_check_total.users]: + if (inv.type in ('in_invoice', 'in_refund') and abs(inv.check_total - inv.amount_total) >= (inv.currency_id.rounding/2.0)): + raise osv.except_osv(_('Bad Total!'), _('Please verify the price of the invoice!\nThe encoded total does not match the computed total.')) + + if inv.payment_term: + total_fixed = total_percent = 0 + for line in inv.payment_term.line_ids: + if line.value == 'fixed': + total_fixed += line.value_amount + if line.value == 'procent': + total_percent += line.value_amount + total_fixed = (total_fixed * 100) / (inv.amount_total or 1.0) + if (total_fixed + total_percent) > 100: + raise osv.except_osv(_('Error!'), _("Cannot create the invoice.\nThe related payment term is probably misconfigured as it gives a computed amount greater than the total invoiced amount. In order to avoid rounding issues, the latest line of your payment term must be of type 'balance'.")) + + # one move line per tax line + iml += ait_obj.move_line_get(cr, uid, inv.id) + + entry_type = '' + if inv.type in ('in_invoice', 'in_refund'): + ref = inv.reference + entry_type = 'journal_pur_voucher' + if inv.type == 'in_refund': + entry_type = 'cont_voucher' + else: + ref = self._convert_ref(cr, uid, inv.number) + entry_type = 'journal_sale_vou' + if inv.type == 'out_refund': + entry_type = 'cont_voucher' + + diff_currency_p = inv.currency_id.id <> company_currency + # create one move line for the total and possibly adjust the other lines amount + total = 0 + total_currency = 0 + total, total_currency, iml = self.compute_invoice_totals(cr, uid, inv, company_currency, ref, iml, context=ctx) + acc_id = inv.account_id.id + + name = inv['name'] or inv['supplier_invoice_number'] or '/' + totlines = False + if inv.payment_term: + totlines = payment_term_obj.compute(cr, + uid, inv.payment_term.id, total, inv.date_invoice or False, context=ctx) + if totlines: + res_amount_currency = total_currency + i = 0 + ctx.update({'date': inv.date_invoice}) + for t in totlines: + if inv.currency_id.id != company_currency: + amount_currency = cur_obj.compute(cr, uid, company_currency, inv.currency_id.id, t[1], context=ctx) + else: + amount_currency = False + + # last line add the diff + res_amount_currency -= amount_currency or 0 + i += 1 + if i == len(totlines): + amount_currency += res_amount_currency + + iml.append({ + 'type': 'dest', + 'name': name, + 'price': t[1], + 'account_id': acc_id, + # ecosoft, kittiu + #'date_maturity': t[0], + 'date_maturity': inv.date_due or t[0], + # -- + 'amount_currency': diff_currency_p \ + and amount_currency or False, + 'currency_id': diff_currency_p \ + and inv.currency_id.id or False, + 'ref': ref, + }) + else: + iml.append({ + 'type': 'dest', + 'name': name, + 'price': total, + 'account_id': acc_id, + 'date_maturity': inv.date_due or False, + 'amount_currency': diff_currency_p \ + and total_currency or False, + 'currency_id': diff_currency_p \ + and inv.currency_id.id or False, + 'ref': ref + }) + + date = inv.date_invoice or time.strftime('%Y-%m-%d') + + part = self.pool.get("res.partner")._find_accounting_partner(inv.partner_id) + + line = map(lambda x:(0,0,self.line_get_convert(cr, uid, x, part.id, date, context=ctx)),iml) + + line = self.group_lines(cr, uid, iml, line, inv) + + journal_id = inv.journal_id.id + journal = journal_obj.browse(cr, uid, journal_id, context=ctx) + if journal.centralisation: + raise osv.except_osv(_('User Error!'), + _('You cannot create an invoice on a centralized journal. Uncheck the centralized counterpart box in the related journal from the configuration menu.')) + + line = self.finalize_invoice_move_lines(cr, uid, inv, line) + + move = { + 'ref': inv.reference and inv.reference or inv.name, + 'line_id': line, + 'journal_id': journal_id, + 'date': date, + 'narration': inv.comment, + 'company_id': inv.company_id.id, + } + period_id = inv.period_id and inv.period_id.id or False + ctx.update(company_id=inv.company_id.id, + account_period_prefer_normal=True) + if not period_id: + period_ids = period_obj.find(cr, uid, inv.date_invoice, context=ctx) + period_id = period_ids and period_ids[0] or False + if period_id: + move['period_id'] = period_id + for i in line: + i[2]['period_id'] = period_id + + ctx.update(invoice=inv) + move_id = move_obj.create(cr, uid, move, context=ctx) + new_move_name = move_obj.browse(cr, uid, move_id, context=ctx).name + # make the invoice point to that move + self.write(cr, uid, [inv.id], {'move_id': move_id,'period_id':period_id, 'move_name':new_move_name}, context=ctx) + # Pass invoice in context in method post: used if you want to get the same + # account move reference when creating the same invoice after a cancelled one: + move_obj.post(cr, uid, [move_id], context=ctx) + self._log_event(cr, uid, ids) + return True + +account_invoice() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/fix_mrp/__init__.py b/fix_mrp/__init__.py new file mode 100755 index 0000000..a4a5d90 --- /dev/null +++ b/fix_mrp/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/fix_mrp/__openerp__.py b/fix_mrp/__openerp__.py new file mode 100755 index 0000000..8014ebb --- /dev/null +++ b/fix_mrp/__openerp__.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : 'Fix MRP', + 'version' : '1.0', + 'author' : 'Kitti U.', + 'summary': '', + 'description': """ + +1) Bug #1097: Error clicking on Bill of Material in Product window, when product is accessed after group_by + +* Open Product window +* Then do the group by Sales Order. +* Clicking on a product (that already has BOM). +* Then click on Bill of Material button (of that product) +* Error occur + +""", + 'category': 'Manufacturing', + #'sequence': 4, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['mrp'], + 'demo' : [], + 'data' : ['mrp_view.xml' + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/fix_mrp/mrp_view.xml b/fix_mrp/mrp_view.xml new file mode 100755 index 0000000..4604e41 --- /dev/null +++ b/fix_mrp/mrp_view.xml @@ -0,0 +1,8 @@ + + + + + {'group_by': False, 'default_product_id': active_id, 'search_default_product_id': active_id} + + + \ No newline at end of file diff --git a/fix_stock/__init__.py b/fix_stock/__init__.py new file mode 100755 index 0000000..87206b5 --- /dev/null +++ b/fix_stock/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import stock + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/fix_stock/__openerp__.py b/fix_stock/__openerp__.py new file mode 100755 index 0000000..585db0b --- /dev/null +++ b/fix_stock/__openerp__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : 'Fix Stock Related Issues', + 'version' : '1.0', + 'author' : 'Kitti U.', + 'summary': '', + 'description': """ +* Feature #1025: For MO, to allow consume materials > qty in BOM. + """, + 'category': 'Warehouse Management', + #'sequence': 4, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['stock'], + 'demo' : [], + 'data' : [ + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/fix_stock/stock.py b/fix_stock/stock.py new file mode 100755 index 0000000..6e9c1b4 --- /dev/null +++ b/fix_stock/stock.py @@ -0,0 +1,95 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import fields, osv +from openerp.tools.translate import _ + +class stock_move(osv.osv): + + _inherit = 'stock.move' + + + def action_consume(self, cr, uid, ids, quantity, location_id=False, context=None): + """ Consumed product with specific quatity from specific source location + @param cr: the database cursor + @param uid: the user id + @param ids: ids of stock move object to be consumed + @param quantity : specify consume quantity + @param location_id : specify source location + @param context: context arguments + @return: Consumed lines + """ + #quantity should in MOVE UOM + if context is None: + context = {} + if quantity <= 0: + raise osv.except_osv(_('Warning!'), _('Please provide proper quantity.')) + res = [] + for move in self.browse(cr, uid, ids, context=context): + move_qty = move.product_qty + if move_qty <= 0: + raise osv.except_osv(_('Error!'), _('Cannot consume a move with negative or zero quantity.')) + quantity_rest = move.product_qty + quantity_rest -= quantity + uos_qty_rest = quantity_rest / move_qty * move.product_uos_qty + # kittiu +# if quantity_rest <= 0: +# quantity_rest = 0 +# uos_qty_rest = 0 +# quantity = move.product_qty + if quantity_rest <= 0: + quantity = move.product_qty - quantity_rest + quantity_rest = 0 + uos_qty_rest = 0 + # --kittiu + uos_qty = quantity / move_qty * move.product_uos_qty + if quantity_rest > 0: + default_val = { + 'product_qty': quantity, + 'product_uos_qty': uos_qty, + 'state': move.state, + 'location_id': location_id or move.location_id.id, + } + current_move = self.copy(cr, uid, move.id, default_val) + res += [current_move] + update_val = {} + update_val['product_qty'] = quantity_rest + update_val['product_uos_qty'] = uos_qty_rest + self.write(cr, uid, [move.id], update_val) + + else: + quantity_rest = quantity + uos_qty_rest = uos_qty + res += [move.id] + update_val = { + 'product_qty' : quantity_rest, + 'product_uos_qty' : uos_qty_rest, + 'location_id': location_id or move.location_id.id, + } + self.write(cr, uid, [move.id], update_val) + + self.action_done(cr, uid, res, context=context) + + return res + +stock_move() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/jrxml_reports/__init__.py b/jrxml_reports/__init__.py new file mode 100755 index 0000000..521cc28 --- /dev/null +++ b/jrxml_reports/__init__.py @@ -0,0 +1,28 @@ +############################################################################## +# +# Copyright (c) 2008-2012 NaN Projectes de Programari Lliure, S.L. +# http://www.NaN-tic.com +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +############################################################################## + diff --git a/jrxml_reports/__openerp__.py b/jrxml_reports/__openerp__.py new file mode 100755 index 0000000..c744121 --- /dev/null +++ b/jrxml_reports/__openerp__.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'Customized Jasper Reports', + 'version': '1.0', + 'category': 'Reports', + 'summary': '', + 'description': '', + 'author': 'kittiu', + 'website': 'http://www.ecosoft.co.th', + 'images': [], + 'depends': ['jasper_reports','report_menu_restriction'], + 'data': [ + 'custom_reports.xml', + ], + 'demo': [], + 'test': [], + 'installable': True, + 'active': True, +} +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/jrxml_reports/custom_reports.xml b/jrxml_reports/custom_reports.xml new file mode 100755 index 0000000..90ced1a --- /dev/null +++ b/jrxml_reports/custom_reports.xml @@ -0,0 +1,476 @@ + + + + + + True + pdf + + + + + True + pdf + + + + + True + pdf + + + + + + + True + pdf + + context.get('type',False)<>'out_invoice' + + + + + + + True + pdf + context.get('type',False)<>'receipt' + + + + + + + True + pdf + context.get('type',False)!='receipt' + + + + + + True + pdf + + + + + + + True + pdf + + + + + + + True + pdf + + + + + + + True + pdf + + + + + + + + True + pdf + + + + + True + pdf + + + + + + + True + pdf + not context.get('is_supply_list',False) + + + + + + + True + pdf + context.get('is_supply_list',False) + + + + True + pdf + True + context.get('is_supply_list',False) + + + + + + + True + pdf + not context.get('is_subcontract',False) + + + + + + + True + pdf + not context.get('simplified_move',False) + + + + + + + True + xls + context.get('is_supply_list',False) + + + + + + + + True + xls + context.get('is_supply_list',False) + + + + + + True + xls + context.get('is_supply_list',False) + + + + + + True + pdf + + + + + + + True + pdf + + + + + + + True + pdf + + + + + + + + True + pdf + context.get('type',False)<>'out_refund' + + + + + + + + True + pdf + context.get('type',False)<>'out_invoice' + + + + + + True + pdf + + + + diff --git a/jrxml_reports/custom_reports/billing.jpg b/jrxml_reports/custom_reports/billing.jpg new file mode 100755 index 0000000..41c7e10 Binary files /dev/null and b/jrxml_reports/custom_reports/billing.jpg differ diff --git a/jrxml_reports/custom_reports/iso.jpg b/jrxml_reports/custom_reports/iso.jpg new file mode 100755 index 0000000..b964faf Binary files /dev/null and b/jrxml_reports/custom_reports/iso.jpg differ diff --git a/jrxml_reports/custom_reports/leaf_banner_green.png b/jrxml_reports/custom_reports/leaf_banner_green.png new file mode 100755 index 0000000..0086056 Binary files /dev/null and b/jrxml_reports/custom_reports/leaf_banner_green.png differ diff --git a/jrxml_reports/custom_reports/receipt.jpg b/jrxml_reports/custom_reports/receipt.jpg new file mode 100755 index 0000000..e99f559 Binary files /dev/null and b/jrxml_reports/custom_reports/receipt.jpg differ diff --git a/jrxml_reports/custom_reports/shipment_panel.jpg b/jrxml_reports/custom_reports/shipment_panel.jpg new file mode 100755 index 0000000..6838151 Binary files /dev/null and b/jrxml_reports/custom_reports/shipment_panel.jpg differ diff --git a/jrxml_reports/custom_reports/sqp.account.invoice.xml b/jrxml_reports/custom_reports/sqp.account.invoice.xml new file mode 100755 index 0000000..e4f9758 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp.account.invoice.xml @@ -0,0 +1 @@ +11active12345.6712345.671active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.67code112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbol1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345.67112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbolcurrency_mode12345.6712345.67112345.6712345.6712345.67display_detail12345name12345signstyle_overwritetype12345.6712345namenote1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671234512345reconcileshortcut1active12345.67applicable_type12345.67child_dependdescriptiondomaininclude_base_amountnameprice_includepython_applicablepython_computepython_compute_inv12345.6712345.671234512345.67typetype_tax_usetype12345.671close_methodcodenamenotereport_type12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:5612345.6712345.6712345.6712345.6712345.6712345.6712345.67comment1account_no1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzip1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcitycompany_registry1address_formatcodename112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbol112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbolcustom_footeremailexpects_chart_of_accounts1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.67fax1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.67logologo_web12345.67nameoverdue_msgpaper_format1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezippaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.671codenamestreetstreet2tax_calculation_rounding_method1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56112345activebase1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip2009-12-31 00:00:00nameposition12345.6712009-12-31 00:00:0012345.6712345.67symbol12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0011active1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipnamenote112009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56internal_number1112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345.67112345.6712345.6712345.6712345.6712345.6712345.6712345.67comment2009-12-31 00:00:002009-12-31 00:00:00internal_numbermessage_is_followermessage_summarymessage_unreadmove_namenamenumberoriginpaypal_urlportal_payment_optionsreconciledreferencereference_type12345.67sentstatesupplier_invoice_numbertype1active12345.67applicable_type12345.67child_dependdescriptiondomaininclude_base_amountnameprice_includepython_applicablepython_computepython_compute_inv12345.6712345.671234512345.67typetype_tax_usenameorigin1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip12345.6712345.671activecode12345cost_methoddefault_code12345descriptiondescription_purchasedescription_saleean13imageimage_mediumimage_small12345.67is_one_time_use12345.67loc_caseloc_rackloc_row12345.67mes_typemessage_is_followermessage_summarymessage_unreadnamename_template12345.67partner_ref12345.6712345.6712345.67procure_method12345.67purchase_ok12345.6712345rental12345.67sale_ok1234512345.6712345.67statesupply_methodtrack_incomingtrack_outgoingtrack_productiontype12345.67valuationvariants12345.6712345.6712345.6712345.6712345.6712345.67123451active12345.6712345.67name12345.67uom_type12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:5611active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.67allow_date1activecodenametypecash_control112345.67centralisationcode1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbol1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.67entry_postedgroup_invoice_lines1commentfull_nameis_portalnameshare1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.67name1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activecodeimplementationname123451234512345prefixsuffixtype1close_methodcodenamenotereport_typeupdate_posted1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipwith_last_closing_balance12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:561active1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzipbirthdate1activecomplete_namename12345123451activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipcity12345comment1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcontact_address112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1address_formatcodename1address_formatcodename12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_small112345.67nameorigin12345.6712345.6712345.6712345is_companylang2009-12-31 12:34:561activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_out1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipphone1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1activenametype1activenametype1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activenamenote12345112345.6712345.6712345.6712345.6712345.6712345.672009-12-31 00:00:002009-12-31 00:00:00invoice_methodinvoiced12345.67message_is_followermessage_summarymessage_unread2009-12-31 00:00:00namenotesoriginpartner_refshipped12345.67stateref1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0012345header_msginvoice_existsinvoice_quantityinvoiced12345.67is_internationalmessage_is_followermessage_summarymessage_unreadnamenote12345order_policyoriginpaypal_url12345.67picking_policyportal_payment_optionsref_attention_nameref_project_nameref_quote_noshippedstate2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_valid1codenamestreetstreet2supplier1domainnameshortcuttypetztz_offsetuse_parent_address1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56112009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:561activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipbody1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtype2009-12-31 12:34:56email_frommessage_idmodel1readstarred1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtype1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsiteziprecord_name12345starredsubject1defaultdescriptionnamerelation_fieldres_modelto_readtype1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56message_is_followermessage_summarymessage_unread112345.6712345.671account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip2009-12-31 00:00:001allow_datecash_controlcentralisationcodeentry_postedgroup_invoice_linesnametypeupdate_postedwith_last_closing_balance112345.6712345.6712345.6712345.67blockedcentralisation12345.672009-12-31 00:00:002009-12-31 00:00:002009-12-31 00:00:0012345.67namenarration12345.67reconcilerefstate12345.67namenarration1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1code2009-12-31 00:00:002009-12-31 00:00:00namespecialstaterefstateto_check12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:5611active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671active12345.67applicable_type12345.67child_dependdescriptiondomaininclude_base_amountnameprice_includepython_applicablepython_computepython_compute_inv12345.6712345.671234512345.67typetype_tax_use12345.6712345.6712345.67112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype112345.6712345.67code2009-12-31 00:00:00nameref12345.6712345.67blockedcentralisation1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345.67112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbol2009-12-31 00:00:002009-12-31 00:00:002009-12-31 00:00:0012345.67112345.6712345.6712345.6712345.6712345.6712345.6712345.67comment2009-12-31 00:00:002009-12-31 00:00:00internal_numbermessage_is_followermessage_summarymessage_unreadmove_namenamenumberoriginpaypal_urlportal_payment_optionsreconciledreferencereference_type12345.67sentstatesupplier_invoice_numbertype1allow_datecash_controlcentralisationcodeentry_postedgroup_invoice_linesnametypeupdate_postedwith_last_closing_balance112345.6712345.672009-12-31 00:00:00namenarrationrefstateto_checknamenarration1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1code2009-12-31 00:00:002009-12-31 00:00:00namespecialstate1activecode12345cost_methoddefault_code12345descriptiondescription_purchasedescription_saleean13imageimage_mediumimage_small12345.67is_one_time_use12345.67loc_caseloc_rackloc_row12345.67mes_typemessage_is_followermessage_summarymessage_unreadnamename_template12345.67partner_ref12345.6712345.6712345.67procure_method12345.67purchase_ok12345.6712345rental12345.67sale_ok1234512345.6712345.67statesupply_methodtrack_incomingtrack_outgoingtrack_productiontype12345.67valuationvariants12345.6712345.6712345.6712345.6712345.671active12345.6712345.67name12345.67uom_type12345.67reconcile12009-12-31 00:00:00nameopening_reconciliationtype12009-12-31 00:00:00nameopening_reconciliationtyperefstate112345.6712345.6712345.672009-12-31 12:34:562009-12-31 00:00:0012345.6712345.67message_is_followermessage_summarymessage_unreadnamestate12345.6712345.671codeinfonamenotprintable1234512345.6712345.6712345.6712009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56move_namenamenumberorigin1acc_number1activebiccityemailfaxnamephonestreetstreet2zipbank_bicbank_namecity1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip1address_formatcodename112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbolfooter1allow_datecash_controlcentralisationcodeentry_postedgroup_invoice_linesnametypeupdate_postedwith_last_closing_balancenameowner_name1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip12345state1codenamestreetzip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:561active1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzipbirthdate1activecomplete_namename12345123451activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipcity12345comment1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcontact_address112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1address_formatcodename1address_formatcodename12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_small112345.67nameorigin12345.6712345.6712345.6712345is_companylang2009-12-31 12:34:561activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_out1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipphone1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1activenametype1activenametype1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activenamenote12345112345.6712345.6712345.6712345.6712345.6712345.672009-12-31 00:00:002009-12-31 00:00:00invoice_methodinvoiced12345.67message_is_followermessage_summarymessage_unread2009-12-31 00:00:00namenotesoriginpartner_refshipped12345.67stateref1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0012345header_msginvoice_existsinvoice_quantityinvoiced12345.67is_internationalmessage_is_followermessage_summarymessage_unreadnamenote12345order_policyoriginpaypal_url12345.67picking_policyportal_payment_optionsref_attention_nameref_project_nameref_quote_noshippedstate2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_valid1codenamestreetstreet2supplier1domainnameshortcuttypetztz_offsetuse_parent_address1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:5611active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671active12345.67applicable_type12345.67child_dependdescriptiondomaininclude_base_amountnameprice_includepython_applicablepython_computepython_compute_inv12345.6712345.671234512345.67typetype_tax_use12345.6712345.6712345.67112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype112345.6712345.67code2009-12-31 00:00:00nameref12345.6712345.67blockedcentralisation1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345.67112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbol2009-12-31 00:00:002009-12-31 00:00:002009-12-31 00:00:0012345.67112345.6712345.6712345.6712345.6712345.6712345.6712345.67comment2009-12-31 00:00:002009-12-31 00:00:00internal_numbermessage_is_followermessage_summarymessage_unreadmove_namenamenumberoriginpaypal_urlportal_payment_optionsreconciledreferencereference_type12345.67sentstatesupplier_invoice_numbertype1allow_datecash_controlcentralisationcodeentry_postedgroup_invoice_linesnametypeupdate_postedwith_last_closing_balance112345.6712345.672009-12-31 00:00:00namenarrationrefstateto_checknamenarration1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1code2009-12-31 00:00:002009-12-31 00:00:00namespecialstate1activecode12345cost_methoddefault_code12345descriptiondescription_purchasedescription_saleean13imageimage_mediumimage_small12345.67is_one_time_use12345.67loc_caseloc_rackloc_row12345.67mes_typemessage_is_followermessage_summarymessage_unreadnamename_template12345.67partner_ref12345.6712345.6712345.67procure_method12345.67purchase_ok12345.6712345rental12345.67sale_ok1234512345.6712345.67statesupply_methodtrack_incomingtrack_outgoingtrack_productiontype12345.67valuationvariants12345.6712345.6712345.6712345.6712345.671active12345.6712345.67name12345.67uom_type12345.67reconcile12009-12-31 00:00:00nameopening_reconciliationtype12009-12-31 00:00:00nameopening_reconciliationtyperefstate112345.6712345.6712345.672009-12-31 12:34:562009-12-31 00:00:0012345.6712345.67message_is_followermessage_summarymessage_unreadnamestate12345.6712345.671codeinfonamenotprintable1234512345.6712345.6712345.6712009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:561active11234512345value12345.67namenote12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56paypal_url1code1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip2009-12-31 00:00:002009-12-31 00:00:001code2009-12-31 00:00:002009-12-31 00:00:00namestatenamespecialstate12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56portal_payment_optionsreconciledreferencereference_type12345.67sentstatesupplier_invoice_number1112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.6712345.6712345.6712345.671codeinfonamenotprintable1234512345.6712345.6712345.671account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345.6712345.67112345.6712345.6712345.6712345.6712345.6712345.6712345.67comment2009-12-31 00:00:002009-12-31 00:00:00internal_numbermessage_is_followermessage_summarymessage_unreadmove_namenamenumberoriginpaypal_urlportal_payment_optionsreconciledreferencereference_type12345.67sentstatesupplier_invoice_numbertypemanualname1234512345.671codeinfonamenotprintable1234512345.6712345.6712345.6712009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56type11helpnametypeusageactivealias_defaultsalias_domain123451alias_defaultsalias_domain12345alias_name1infomodelmodulesnameosv_memorystatealias_name1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzipbirthdate1activecomplete_namename12345123451activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipcity12345comment1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcontact_address112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1address_formatcodename1address_formatcodename12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunction1commentfull_nameis_portalnamesharehas_image12345imageimage_mediumimage_small112345.67nameorigin12345.6712345.6712345.6712345is_companylang2009-12-31 12:34:56login2009-12-31 00:00:001helpnametypeusage1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_out1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezippasswordphone1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1activenametype1activenametype1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activenamenote12345112345.6712345.6712345.6712345.6712345.6712345.672009-12-31 00:00:002009-12-31 00:00:00invoice_methodinvoiced12345.67message_is_followermessage_summarymessage_unread2009-12-31 00:00:00namenotesoriginpartner_refshipped12345.67stateref1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0012345header_msginvoice_existsinvoice_quantityinvoiced12345.67is_internationalmessage_is_followermessage_summarymessage_unreadnamenote12345order_policyoriginpaypal_url12345.67picking_policyportal_payment_optionsref_attention_nameref_project_nameref_quote_noshippedstatesharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstate1codenamestreetstreet2supplier1domainnameshortcuttypetztz_offsetuse_parent_addressuser_email1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:5611account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip2009-12-31 12:34:561activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipdatasdatas_fnamedb_datasdescription12345file_typeindex_contentname12009-12-31 12:34:56domainnameresource_find_all12345ressource_treetype2009-12-31 12:34:561activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip12345res_modelres_namestore_fnametypeurl1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip2009-12-31 12:34:561activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:5611helpnametypeusageactivealias_defaultsalias_domain123451alias_defaultsalias_domain12345alias_name1infomodelmodulesnameosv_memorystatealias_name1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzipbirthdate1activecomplete_namename12345123451activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipcity12345comment1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcontact_address112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1address_formatcodename1address_formatcodename12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunction1commentfull_nameis_portalnamesharehas_image12345imageimage_mediumimage_small112345.67nameorigin12345.6712345.6712345.6712345is_companylang2009-12-31 12:34:56login2009-12-31 00:00:001helpnametypeusage1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_out1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezippasswordphone1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1activenametype1activenametype1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activenamenote12345112345.6712345.6712345.6712345.6712345.6712345.672009-12-31 00:00:002009-12-31 00:00:00invoice_methodinvoiced12345.67message_is_followermessage_summarymessage_unread2009-12-31 00:00:00namenotesoriginpartner_refshipped12345.67stateref1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0012345header_msginvoice_existsinvoice_quantityinvoiced12345.67is_internationalmessage_is_followermessage_summarymessage_unreadnamenote12345order_policyoriginpaypal_url12345.67picking_policyportal_payment_optionsref_attention_nameref_project_nameref_quote_noshippedstatesharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstate1codenamestreetstreet2supplier1domainnameshortcuttypetztz_offsetuse_parent_addressuser_email1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56111 \ No newline at end of file diff --git a/jrxml_reports/custom_reports/sqp.sale.order.xml b/jrxml_reports/custom_reports/sqp.sale.order.xml new file mode 100755 index 0000000..f482237 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp.sale.order.xml @@ -0,0 +1 @@ +112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref1account_no1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzip1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcitycompany_registry1address_formatcodename112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbol112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbolcustom_footeremailexpects_chart_of_accounts1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.67fax1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.67logologo_web12345.67nameoverdue_msgpaper_format1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezippaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.671codenamestreetstreet2tax_calculation_rounding_method1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:562009-12-31 12:34:56112345activebase1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip2009-12-31 00:00:00nameposition12345.6712009-12-31 00:00:0012345.6712345.67symbol12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:001234511active1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipnamenote112009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56header_msg1activecodename12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56invoice_exists11active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.6712345.6712345.6712345.6712345.6712345.6712345.6712345.67comment1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbol2009-12-31 00:00:002009-12-31 00:00:001activenamenoteinternal_number112345.67nameorigin12345.6712345.6712345.67123451allow_datecash_controlcentralisationcodeentry_postedgroup_invoice_linesnametypeupdate_postedwith_last_closing_balance1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unread112345.6712345.672009-12-31 00:00:00namenarrationrefstateto_check112345.6712345.6712345.6712345.67blockedcentralisation12345.672009-12-31 00:00:002009-12-31 00:00:002009-12-31 00:00:0012345.67namenarration12345.67reconcilerefstate12345.67move_namenamenumberorigin1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzip1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip112345.6712345.6712345.6712345.67blockedcentralisation12345.672009-12-31 00:00:002009-12-31 00:00:002009-12-31 00:00:0012345.67namenarration12345.67reconcilerefstate12345.671activenamenotepaypal_url1code2009-12-31 00:00:002009-12-31 00:00:00namespecialstateportal_payment_optionsreconciledreferencereference_type12345.67sentstatesupplier_invoice_number112345.6712345.6712345.6712345.6712345.67manualname1234512345.67type1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56invoice_quantityinvoiced12345.671active1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzipbirthdate1activecomplete_namename12345123451activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipcity12345comment1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcontact_address112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1address_formatcodename1address_formatcodename12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_small112345.67nameorigin12345.6712345.6712345.6712345is_companylang2009-12-31 12:34:561activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_out1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipphone1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1activenametype1activenametype1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activenamenote12345112345.6712345.6712345.6712345.6712345.6712345.672009-12-31 00:00:002009-12-31 00:00:00invoice_methodinvoiced12345.67message_is_followermessage_summarymessage_unread2009-12-31 00:00:00namenotesoriginpartner_refshipped12345.67stateref1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0012345header_msginvoice_existsinvoice_quantityinvoiced12345.67message_is_followermessage_summarymessage_unreadnamenote12345order_policyoriginpaypal_url12345.67picking_policyportal_payment_optionsref_attention_nameref_project_nameref_quote_noshippedstate2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_valid1codenamestreetstreet2supplier1domainnameshortcuttypetztz_offsetuse_parent_address1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56112009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:561activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipbody1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtype2009-12-31 12:34:56email_frommessage_idmodel1readstarred1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtype1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsiteziprecord_name12345starredsubject1defaultdescriptionnamerelation_fieldres_modelto_readtype1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadnamenote1234511activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345.6712345.67112345.67nameorigin12345.6712345.6712345.6712345invoiced1auto_validate2009-12-31 12:34:562009-12-31 12:34:562009-12-31 12:34:56namenoteorigin12345.67priority12345.6712345.67scrappedstatetypename12345112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0012345header_msginvoice_existsinvoice_quantityinvoiced12345.67message_is_followermessage_summarymessage_unreadnamenote12345order_policyoriginpaypal_url12345.67picking_policyportal_payment_optionsref_attention_nameref_project_nameref_quote_noshippedstate1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip12345.6712345.6712345.671close_move2009-12-31 12:34:562009-12-31 12:34:56messagemessage_is_followermessage_summarymessage_unreadnamenoteoriginpriorityprocure_method12345.6712345.67state1activecode12345cost_methoddefault_code12345descriptiondescription_purchasedescription_saleean13imageimage_mediumimage_small12345.67is_one_time_use12345.67loc_caseloc_rackloc_row12345.67mes_typemessage_is_followermessage_summarymessage_unreadnamename_template12345.67partner_ref12345.6712345.6712345.67procure_method12345.67purchase_ok12345.6712345rental12345.67sale_ok1234512345.6712345.67statesupply_methodtrack_incomingtrack_outgoingtrack_productiontype12345.67valuationvariants12345.6712345.6712345.6712345.6712345.671codeean12345.6712345.67name12345.6712345123451234512345.6712345.6712345.671active12345.6712345.67name12345.67uom_type12345.6712345.671active12345.6712345.67name12345.67uom_type12345.671compositiondescriptionname1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip12345state1active12345.67applicable_type12345.67child_dependdescriptiondomaininclude_base_amountnameprice_includepython_applicablepython_computepython_compute_inv12345.6712345.671234512345.67typetype_tax_use12345.67type12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56order_policyorigin1active1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzipbirthdate1activecomplete_namename12345123451activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipcity12345comment1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcontact_address112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1address_formatcodename1address_formatcodename12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_small112345.67nameorigin12345.6712345.6712345.6712345is_companylang2009-12-31 12:34:561activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_out1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipphone1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1activenametype1activenametype1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activenamenote12345112345.6712345.6712345.6712345.6712345.6712345.672009-12-31 00:00:002009-12-31 00:00:00invoice_methodinvoiced12345.67message_is_followermessage_summarymessage_unread2009-12-31 00:00:00namenotesoriginpartner_refshipped12345.67stateref1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0012345header_msginvoice_existsinvoice_quantityinvoiced12345.67message_is_followermessage_summarymessage_unreadnamenote12345order_policyoriginpaypal_url12345.67picking_policyportal_payment_optionsref_attention_nameref_project_nameref_quote_noshippedstate2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_valid1codenamestreetstreet2supplier1domainnameshortcuttypetztz_offsetuse_parent_address1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:561active1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzipbirthdate1activecomplete_namename12345123451activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipcity12345comment1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcontact_address112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1address_formatcodename1address_formatcodename12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_small112345.67nameorigin12345.6712345.6712345.6712345is_companylang2009-12-31 12:34:561activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_out1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipphone1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1activenametype1activenametype1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activenamenote12345112345.6712345.6712345.6712345.6712345.6712345.672009-12-31 00:00:002009-12-31 00:00:00invoice_methodinvoiced12345.67message_is_followermessage_summarymessage_unread2009-12-31 00:00:00namenotesoriginpartner_refshipped12345.67stateref1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0012345header_msginvoice_existsinvoice_quantityinvoiced12345.67message_is_followermessage_summarymessage_unreadnamenote12345order_policyoriginpaypal_url12345.67picking_policyportal_payment_optionsref_attention_nameref_project_nameref_quote_noshippedstate2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_valid1codenamestreetstreet2supplier1domainnameshortcuttypetztz_offsetuse_parent_address1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:561active1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzipbirthdate1activecomplete_namename12345123451activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipcity12345comment1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcontact_address112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1address_formatcodename1address_formatcodename12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_small112345.67nameorigin12345.6712345.6712345.6712345is_companylang2009-12-31 12:34:561activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_out1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipphone1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1activenametype1activenametype1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activenamenote12345112345.6712345.6712345.6712345.6712345.6712345.672009-12-31 00:00:002009-12-31 00:00:00invoice_methodinvoiced12345.67message_is_followermessage_summarymessage_unread2009-12-31 00:00:00namenotesoriginpartner_refshipped12345.67stateref1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0012345header_msginvoice_existsinvoice_quantityinvoiced12345.67message_is_followermessage_summarymessage_unreadnamenote12345order_policyoriginpaypal_url12345.67picking_policyportal_payment_optionsref_attention_nameref_project_nameref_quote_noshippedstate2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_valid1codenamestreetstreet2supplier1domainnameshortcuttypetztz_offsetuse_parent_address1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:561active11234512345value12345.67namenote12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56paypal_url12345.671auto_picking1auto_picking2009-12-31 12:34:562009-12-31 12:34:56invoice_state2009-12-31 12:34:56message_is_followermessage_summarymessage_unread2009-12-31 12:34:56move_typenamenoteoriginprintedstatetype1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip2009-12-31 12:34:562009-12-31 12:34:56invoice_state1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage2009-12-31 12:34:561activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unread2009-12-31 12:34:561auto_validate2009-12-31 12:34:562009-12-31 12:34:562009-12-31 12:34:56namenoteorigin12345.67priority12345.6712345.67scrappedstatetypemove_typenamenoteorigin1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipprinted1activecode12345cost_methoddefault_code12345descriptiondescription_purchasedescription_saleean13imageimage_mediumimage_small12345.67is_one_time_use12345.67loc_caseloc_rackloc_row12345.67mes_typemessage_is_followermessage_summarymessage_unreadnamename_template12345.67partner_ref12345.6712345.6712345.67procure_method12345.67purchase_ok12345.6712345rental12345.67sale_ok1234512345.6712345.67statesupply_methodtrack_incomingtrack_outgoingtrack_productiontype12345.67valuationvariants12345.6712345.6712345.6712345.6712345.67112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0012345header_msginvoice_existsinvoice_quantityinvoiced12345.67message_is_followermessage_summarymessage_unreadnamenote12345order_policyoriginpaypal_url12345.67picking_policyportal_payment_optionsref_attention_nameref_project_nameref_quote_noshippedstatestate1nametype12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56picking_policyportal_payment_options1active1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbolnametype1active2009-12-31 00:00:002009-12-31 00:00:00name12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:561namenote1activecode12345cost_methoddefault_code12345descriptiondescription_purchasedescription_saleean13imageimage_mediumimage_small12345.67is_one_time_use12345.67loc_caseloc_rackloc_row12345.67mes_typemessage_is_followermessage_summarymessage_unreadnamename_template12345.67partner_ref12345.6712345.6712345.67procure_method12345.67purchase_ok12345.6712345rental12345.67sale_ok1234512345.6712345.67statesupply_methodtrack_incomingtrack_outgoingtrack_productiontype12345.67valuationvariants12345.6712345.6712345.6712345.6712345.6712009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56112345.67112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetypecode1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcomplete_name12345.67112345activebase2009-12-31 00:00:00nameposition12345.6712345.67symbol2009-12-31 00:00:002009-12-31 00:00:0012345.67description112345.6712345.67code2009-12-31 00:00:00nameref12345.671activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unreadname112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip12345.6712345.67state112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetypetype1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56ref_attention_nameref_project_nameref_quote_noshipped11account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipname1activenamenote1activenametype112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1name12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56state11helpnametypeusageactivealias_defaultsalias_domain123451alias_defaultsalias_domain12345alias_name1infomodelmodulesnameosv_memorystatealias_name1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzipbirthdate1activecomplete_namename12345123451activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipcity12345comment1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcontact_address112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1address_formatcodename1address_formatcodename12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunction1commentfull_nameis_portalnamesharehas_image12345imageimage_mediumimage_small112345.67nameorigin12345.6712345.6712345.6712345is_companylang2009-12-31 12:34:56login2009-12-31 00:00:001helpnametypeusage1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_out1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezippasswordphone1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1activenametype1activenametype1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activenamenote12345112345.6712345.6712345.6712345.6712345.6712345.672009-12-31 00:00:002009-12-31 00:00:00invoice_methodinvoiced12345.67message_is_followermessage_summarymessage_unread2009-12-31 00:00:00namenotesoriginpartner_refshipped12345.67stateref1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0012345header_msginvoice_existsinvoice_quantityinvoiced12345.67message_is_followermessage_summarymessage_unreadnamenote12345order_policyoriginpaypal_url12345.67picking_policyportal_payment_optionsref_attention_nameref_project_nameref_quote_noshippedstatesharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstate1codenamestreetstreet2supplier1domainnameshortcuttypetztz_offsetuse_parent_addressuser_email1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:5611account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip2009-12-31 12:34:561activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipdatasdatas_fnamedb_datasdescription12345file_typeindex_contentname12009-12-31 12:34:56domainnameresource_find_all12345ressource_treetype2009-12-31 12:34:561activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip12345res_modelres_namestore_fnametypeurl1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip2009-12-31 12:34:561activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:5611helpnametypeusageactivealias_defaultsalias_domain123451alias_defaultsalias_domain12345alias_name1infomodelmodulesnameosv_memorystatealias_name1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1acc_numberbank_bicbank_namecityfooternameowner_name12345statestreetzipbirthdate1activecomplete_namename12345123451activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezipcity12345comment1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezipcontact_address112345.67codecomplete_name12345.672009-12-31 00:00:002009-12-31 00:00:0012345.67descriptionmessage_is_followermessage_summarymessage_unreadname12345.6712345.67statetype1address_formatcodename1address_formatcodename12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunction1commentfull_nameis_portalnamesharehas_image12345imageimage_mediumimage_small112345.67nameorigin12345.6712345.6712345.6712345is_companylang2009-12-31 12:34:56login2009-12-31 00:00:001helpnametypeusage1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1body2009-12-31 12:34:56email_frommessage_idmodelrecord_name12345starredsubjectto_readtypemessage_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_out1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezip1activebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_imageimageimage_mediumimage_smallis_companylang2009-12-31 12:34:56message_is_followermessage_summarymessage_unreadmobilenamenotification_email_sendopt_outphone12345ref123452009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstreetstreet2suppliertypetztz_offsetuse_parent_addressvatwebsitezippasswordphone1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1active12345.6712345.67code12345.67currency_mode12345.6712345.6712345.6712345namenote1234512345reconcileshortcuttype12345.671activenamenote1activenametype1activenametype1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activechained_auto_packing12345chained_location_typechained_picking_typecommentcomplete_nameiconname1234512345123451234512345scrap_location12345.6712345.6712345.6712345.67usage1activenamenote12345112345.6712345.6712345.6712345.6712345.6712345.672009-12-31 00:00:002009-12-31 00:00:00invoice_methodinvoiced12345.67message_is_followermessage_summarymessage_unread2009-12-31 00:00:00namenotesoriginpartner_refshipped12345.67stateref1account_nocitycompany_registrycustom_footeremailexpects_chart_of_accountsfaxlogologo_web12345.67nameoverdue_msgpaper_formatpaypal_accountphone12345.67rml_footerrml_footer_readonlyrml_headerrml_header1rml_header2rml_header312345.6712345.67streetstreet2tax_calculation_rounding_methodvatwebsitezip12345112345.6712345.6712345.6712345.6712345.6712345.6712345.67client_order_ref2009-12-31 12:34:562009-12-31 00:00:002009-12-31 00:00:0012345header_msginvoice_existsinvoice_quantityinvoiced12345.67message_is_followermessage_summarymessage_unreadnamenote12345order_policyoriginpaypal_url12345.67picking_policyportal_payment_optionsref_attention_nameref_project_nameref_quote_noshippedstatesharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstate1codenamestreetstreet2supplier1domainnameshortcuttypetztz_offsetuse_parent_addressuser_email1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezip1activealias_defaultsalias_domain12345alias_namebirthdatecity12345commentcontact_address12345.6712345.67customer2009-12-31 00:00:0012345.6712345.67ean13emailemployeefaxfunctionhas_image12345imageimage_mediumimage_smallis_companylang2009-12-31 12:34:56login2009-12-31 00:00:00message_is_followermessage_summarymessage_unreadmobilenamenew_passwordnotification_email_sendopt_outpasswordphone12345ref12345sharesignature2009-12-31 12:34:56signup_tokensignup_typesignup_urlsignup_validstatestreetstreet2suppliertypetztz_offsetuse_parent_addressuser_emailvatwebsitezipvatwebsitezip12009-12-31 12:34:56datasdatas_fnamedb_datasdescription12345file_typeindex_contentname12345res_modelres_namestore_fnametypeurl2009-12-31 12:34:56111 \ No newline at end of file diff --git a/jrxml_reports/custom_reports/sqp_Internal_move_form.jrxml b/jrxml_reports/custom_reports/sqp_Internal_move_form.jrxml new file mode 100755 index 0000000..f7bbe1e --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_Internal_move_form.jrxml @@ -0,0 +1,390 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_billing.jrxml b/jrxml_reports/custom_reports/sqp_billing.jrxml new file mode 100755 index 0000000..d0acd2d --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_billing.jrxml @@ -0,0 +1,310 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_creditnote.jrxml b/jrxml_reports/custom_reports/sqp_creditnote.jrxml new file mode 100755 index 0000000..b05640e --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_creditnote.jrxml @@ -0,0 +1,743 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_creditnote_copy.jrxml b/jrxml_reports/custom_reports/sqp_creditnote_copy.jrxml new file mode 100755 index 0000000..d2ddbc4 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_creditnote_copy.jrxml @@ -0,0 +1,743 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_debitnote.jrxml b/jrxml_reports/custom_reports/sqp_debitnote.jrxml new file mode 100755 index 0000000..9dc4e01 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_debitnote.jrxml @@ -0,0 +1,737 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_excel_product_delivery.jrxml b/jrxml_reports/custom_reports/sqp_excel_product_delivery.jrxml new file mode 100755 index 0000000..5f34cc9 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_excel_product_delivery.jrxml @@ -0,0 +1,316 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 ? $F{panel_code}.substring( 0, $F{panel_code}.lastIndexOf( "|" ) ) : $F{panel_code}]]> + + + + + + <band height="15" splitType="Stretch"> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="129" y="0" width="73" height="15" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[MO]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="202" y="0" width="87" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[SO]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="289" y="0" width="108" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[Customer]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="0" y="0" width="129" height="15" backcolor="#F8210E"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[Project]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="397" y="0" width="86" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[Panel Code]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="525" y="0" width="40" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[L]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="566" y="0" width="40" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[T]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="484" y="0" width="40" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[W]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="611" y="0" width="56" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[Qty]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="668" y="0" width="42" height="15" backcolor="#F8210E"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[UOM]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="524" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="565" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="606" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="607" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="608" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="609" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="610" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" x="667" y="0" width="1" height="15"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="483" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="710" y="0" width="50" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[Color]]></text> + </staticText> + </band> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_excel_product_delivery2.jrxml b/jrxml_reports/custom_reports/sqp_excel_product_delivery2.jrxml new file mode 100755 index 0000000..7fd099a --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_excel_product_delivery2.jrxml @@ -0,0 +1,316 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <band height="15" splitType="Stretch"> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="129" y="0" width="73" height="15" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[MO]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="202" y="0" width="87" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[SO]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="289" y="0" width="108" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[Customer]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="0" y="0" width="129" height="15" backcolor="#F8210E"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[Project]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="397" y="0" width="86" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[Panel Code]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="525" y="0" width="40" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[L]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="566" y="0" width="40" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[T]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="484" y="0" width="40" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[W]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="611" y="0" width="56" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[Qty]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="668" y="0" width="42" height="15" backcolor="#F8210E"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[UOM]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="524" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="565" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="606" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="607" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="608" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="609" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="610" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" x="667" y="0" width="1" height="15"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="483" y="0" width="1" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[]]></text> + </staticText> + <staticText> + <reportElement style="table" stretchType="RelativeToTallestObject" mode="Opaque" x="710" y="0" width="50" height="15" forecolor="#000000" backcolor="#10FB3F"/> + <textElement textAlignment="Center"> + <font isBold="true"/> + </textElement> + <text><![CDATA[Color]]></text> + </staticText> + </band> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_label_product_delivery.jrxml b/jrxml_reports/custom_reports/sqp_label_product_delivery.jrxml new file mode 100755 index 0000000..33a130b --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_label_product_delivery.jrxml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_label_product_delivery_subreport.jrxml b/jrxml_reports/custom_reports/sqp_label_product_delivery_subreport.jrxml new file mode 100755 index 0000000..2404a74 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_label_product_delivery_subreport.jrxml @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_mo_material_use.jrxml b/jrxml_reports/custom_reports/sqp_mo_material_use.jrxml new file mode 100755 index 0000000..e68fa91 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_mo_material_use.jrxml @@ -0,0 +1,347 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_mo_material_use_summary.jrxml b/jrxml_reports/custom_reports/sqp_mo_material_use_summary.jrxml new file mode 100755 index 0000000..eab69d0 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_mo_material_use_summary.jrxml @@ -0,0 +1,372 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_order_job_cost_sheet.jrxml b/jrxml_reports/custom_reports/sqp_order_job_cost_sheet.jrxml new file mode 100755 index 0000000..8f3457d --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_order_job_cost_sheet.jrxml @@ -0,0 +1,587 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <band height="146" splitType="Stretch"> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="100" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{ref_project_name}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="0" y="100" width="70" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[โครงการ:]]></text> + </staticText> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="40" width="546" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[(new Scriptlet()).getAddress($F{street},$F{street2}, + $F{city},$F{state},$F{country},$F{zip})]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="0" y="0" width="70" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[เรียน:]]></text> + </staticText> + <staticText> + <reportElement x="0" y="20" width="70" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ในนาม:]]></text> + </staticText> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="0" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{ref_attention_name}]]></textFieldExpression> + </textField> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="20" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{partner_name}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="0" y="40" width="70" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ที่อยู่:]]></text> + </staticText> + <staticText> + <reportElement x="0" y="60" width="70" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[โทร:]]></text> + </staticText> + <staticText> + <reportElement x="0" y="80" width="70" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[โทรสาร:]]></text> + </staticText> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="80" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{fax}]]></textFieldExpression> + </textField> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="60" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{phone}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="0" y="120" width="102" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[เลขที่ใบสั่งขาย:]]></text> + </staticText> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="120" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{docno}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="616" y="0" width="186" height="20"/> + <textElement textAlignment="Right" verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="14" isBold="true" isUnderline="true" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[Progression Report]]></text> + </staticText> + <textField pattern="dd/MM/yy"> + <reportElement x="755" y="20" width="47" height="20" forecolor="#000000"/> + <textElement textAlignment="Right" verticalAlignment="Middle"> + <font size="10" isBold="false"/> + </textElement> + <textFieldExpression class="java.util.Date"><![CDATA[new java.util.Date()]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="685" y="20" width="70" height="20"/> + <textElement textAlignment="Right" verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[Printed:]]></text> + </staticText> + <staticText> + <reportElement x="617" y="126" width="186" height="20"/> + <textElement textAlignment="Right" verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="12" isBold="true" isUnderline="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[Square Panel Co., Ltd.]]></text> + </staticText> + <staticText> + <reportElement x="277" y="120" width="113" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[เลขที่ใบสั่งซื้อ:]]></text> + </staticText> + <textField isBlankWhenNull="true"> + <reportElement x="347" y="120" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{client_order_ref}]]></textFieldExpression> + </textField> + </band> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_order_progress.jrxml b/jrxml_reports/custom_reports/sqp_order_progress.jrxml new file mode 100755 index 0000000..ca8585b --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_order_progress.jrxml @@ -0,0 +1,587 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <band height="146" splitType="Stretch"> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="100" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{ref_project_name}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="0" y="100" width="70" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[โครงการ:]]></text> + </staticText> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="40" width="546" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[(new Scriptlet()).getAddress($F{street},$F{street2}, + $F{city},$F{state},$F{country},$F{zip})]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="0" y="0" width="70" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[เรียน:]]></text> + </staticText> + <staticText> + <reportElement x="0" y="20" width="70" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ในนาม:]]></text> + </staticText> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="0" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{ref_attention_name}]]></textFieldExpression> + </textField> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="20" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{partner_name}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="0" y="40" width="70" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ที่อยู่:]]></text> + </staticText> + <staticText> + <reportElement x="0" y="60" width="70" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[โทร:]]></text> + </staticText> + <staticText> + <reportElement x="0" y="80" width="70" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[โทรสาร:]]></text> + </staticText> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="80" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{fax}]]></textFieldExpression> + </textField> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="60" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{phone}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="0" y="120" width="102" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[เลขที่ใบสั่งขาย:]]></text> + </staticText> + <textField isBlankWhenNull="true"> + <reportElement x="70" y="120" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{docno}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="616" y="0" width="186" height="20"/> + <textElement textAlignment="Right" verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="14" isBold="true" isUnderline="true" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[Progression Report]]></text> + </staticText> + <textField pattern="dd/MM/yy"> + <reportElement x="755" y="20" width="47" height="20" forecolor="#000000"/> + <textElement textAlignment="Right" verticalAlignment="Middle"> + <font size="10" isBold="false"/> + </textElement> + <textFieldExpression class="java.util.Date"><![CDATA[new java.util.Date()]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="685" y="20" width="70" height="20"/> + <textElement textAlignment="Right" verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[Printed:]]></text> + </staticText> + <staticText> + <reportElement x="617" y="126" width="186" height="20"/> + <textElement textAlignment="Right" verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="12" isBold="true" isUnderline="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[Square Panel Co., Ltd.]]></text> + </staticText> + <staticText> + <reportElement x="277" y="120" width="113" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[เลขที่ใบสั่งซื้อ:]]></text> + </staticText> + <textField isBlankWhenNull="true"> + <reportElement x="347" y="120" width="200" height="20"/> + <textElement lineSpacing="Single"> + <font fontName="Monospaced" size="10" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{client_order_ref}]]></textFieldExpression> + </textField> + </band> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_order_progress_invoice1.jrxml b/jrxml_reports/custom_reports/sqp_order_progress_invoice1.jrxml new file mode 100755 index 0000000..bea86bf --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_order_progress_invoice1.jrxml @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_order_progress_invoice2.jrxml b/jrxml_reports/custom_reports/sqp_order_progress_invoice2.jrxml new file mode 100755 index 0000000..fb913f9 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_order_progress_invoice2.jrxml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_order_progress_invoice3.jrxml b/jrxml_reports/custom_reports/sqp_order_progress_invoice3.jrxml new file mode 100755 index 0000000..4154ccd --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_order_progress_invoice3.jrxml @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_order_progress_line.jrxml b/jrxml_reports/custom_reports/sqp_order_progress_line.jrxml new file mode 100755 index 0000000..f0ded09 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_order_progress_line.jrxml @@ -0,0 +1,415 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_payment_voucher.jrxml b/jrxml_reports/custom_reports/sqp_payment_voucher.jrxml new file mode 100755 index 0000000..af3a79f --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_payment_voucher.jrxml @@ -0,0 +1,452 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_progress_work_subcon.jrxml b/jrxml_reports/custom_reports/sqp_progress_work_subcon.jrxml new file mode 100755 index 0000000..2ce2c06 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_progress_work_subcon.jrxml @@ -0,0 +1,681 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_progress_work_subcon_subreport1.jrxml b/jrxml_reports/custom_reports/sqp_progress_work_subcon_subreport1.jrxml new file mode 100755 index 0000000..7507be9 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_progress_work_subcon_subreport1.jrxml @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + <band height="15" splitType="Stretch"> + <textField pattern="###0"> + <reportElement x="11" y="0" width="92" height="15"/> + <textElement textAlignment="Right"> + <font size="9"/> + </textElement> + <textFieldExpression class="java.lang.Number"><![CDATA[$F{num_invoiced} == null ? 0 : $F{num_invoiced}]]></textFieldExpression> + </textField> + <textField pattern="#,##0.00"> + <reportElement x="301" y="0" width="92" height="15"/> + <textElement textAlignment="Right"> + <font size="9"/> + </textElement> + <textFieldExpression class="java.lang.Number"><![CDATA[$F{total_invoiced} == null ? 0.0 : $F{total_invoiced}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="170" y="0" width="165" height="15"/> + <textElement textAlignment="Right" verticalAlignment="Top" lineSpacing="Single"> + <font fontName="Monospaced" size="9" isBold="false" isUnderline="false" pdfFontName="Garuda-Bold.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[จำนวนเงินทั้งสิ้น :]]></text> + </staticText> + <staticText> + <reportElement x="0" y="0" width="103" height="15"/> + <textElement verticalAlignment="Top" lineSpacing="Single"> + <font fontName="Monospaced" size="9" isBold="false" isUnderline="false" pdfFontName="Garuda-Bold.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ที่อนุมัติแล้ว :]]></text> + </staticText> + <staticText> + <reportElement x="405" y="0" width="55" height="15"/> + <textElement verticalAlignment="Top" lineSpacing="Single"> + <font fontName="Monospaced" size="9" isBold="false" isUnderline="false" pdfFontName="Garuda-Bold.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[บาท]]></text> + </staticText> + <staticText> + <reportElement x="115" y="0" width="55" height="15"/> + <textElement verticalAlignment="Top" lineSpacing="Single"> + <font fontName="Monospaced" size="9" isBold="false" isUnderline="false" pdfFontName="Garuda-Bold.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ครั้ง]]></text> + </staticText> + <textField pattern="#,##0.00"> + <reportElement x="131" y="0" width="92" height="15"/> + <textElement textAlignment="Right"> + <font size="9"/> + </textElement> + <textFieldExpression class="java.lang.Number"><![CDATA[$F{percent} == null ? 0.0 : $F{percent}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="225" y="0" width="55" height="15"/> + <textElement verticalAlignment="Top" lineSpacing="Single"> + <font fontName="Monospaced" size="9" isBold="false" isUnderline="false" pdfFontName="Garuda-Bold.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[%]]></text> + </staticText> + </band> + + diff --git a/jrxml_reports/custom_reports/sqp_progress_work_subcon_subreport2.jrxml b/jrxml_reports/custom_reports/sqp_progress_work_subcon_subreport2.jrxml new file mode 100755 index 0000000..0da5a0e --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_progress_work_subcon_subreport2.jrxml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + <band height="15" splitType="Stretch"> + <staticText> + <reportElement x="0" y="0" width="355" height="15"/> + <textElement verticalAlignment="Top" lineSpacing="Single"> + <font fontName="Monospaced" size="9" isBold="false" isUnderline="false" pdfFontName="Garuda-Bold.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ขออนุมัติครั้งนี้ : %]]></text> + </staticText> + <textField pattern="#,##0.00"> + <reportElement x="301" y="0" width="92" height="15"/> + <textElement textAlignment="Right"> + <font size="9"/> + </textElement> + <textFieldExpression class="java.lang.Number"><![CDATA[$F{total_invoiced} == null ? 0.0 : $F{total_invoiced}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="170" y="0" width="165" height="15"/> + <textElement textAlignment="Right" verticalAlignment="Top" lineSpacing="Single"> + <font fontName="Monospaced" size="9" isBold="false" isUnderline="false" pdfFontName="Garuda-Bold.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ขออนุมัติครั้งนี้จำนวน :]]></text> + </staticText> + <staticText> + <reportElement x="405" y="0" width="55" height="15"/> + <textElement verticalAlignment="Top" lineSpacing="Single"> + <font fontName="Monospaced" size="9" isBold="false" isUnderline="false" pdfFontName="Garuda-Bold.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[บาท]]></text> + </staticText> + <textField pattern="#,##0.00"> + <reportElement x="23" y="0" width="92" height="15"/> + <textElement textAlignment="Right"> + <font size="9"/> + </textElement> + <textFieldExpression class="java.lang.Number"><![CDATA[$F{percent} == null ? 0.0 : $F{percent}]]></textFieldExpression> + </textField> + </band> + + diff --git a/jrxml_reports/custom_reports/sqp_purchase_order.jrxml b/jrxml_reports/custom_reports/sqp_purchase_order.jrxml new file mode 100755 index 0000000..83eb1ce --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_purchase_order.jrxml @@ -0,0 +1,816 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_purchase_requisition.jrxml b/jrxml_reports/custom_reports/sqp_purchase_requisition.jrxml new file mode 100755 index 0000000..b982a3b --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_purchase_requisition.jrxml @@ -0,0 +1,406 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_qa_sampling.jrxml b/jrxml_reports/custom_reports/sqp_qa_sampling.jrxml new file mode 100755 index 0000000..5a2ffc8 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_qa_sampling.jrxml @@ -0,0 +1,797 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 ? $F{line_product_name}.substring( 0, $F{line_product_name}.lastIndexOf( "|" ) ) : $F{line_product_name}]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_receipt.jrxml b/jrxml_reports/custom_reports/sqp_receipt.jrxml new file mode 100755 index 0000000..38786fb --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_receipt.jrxml @@ -0,0 +1,305 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_sale_order.jrxml b/jrxml_reports/custom_reports/sqp_sale_order.jrxml new file mode 100755 index 0000000..6b0e83d --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_sale_order.jrxml @@ -0,0 +1,891 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_sale_order_nodiscount_col.jrxml b/jrxml_reports/custom_reports/sqp_sale_order_nodiscount_col.jrxml new file mode 100755 index 0000000..91d7126 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_sale_order_nodiscount_col.jrxml @@ -0,0 +1,846 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_shipment_panel_form.jrxml b/jrxml_reports/custom_reports/sqp_shipment_panel_form.jrxml new file mode 100755 index 0000000..a5c5446 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_shipment_panel_form.jrxml @@ -0,0 +1,264 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_shipment_panel_form_backup.jrxml b/jrxml_reports/custom_reports/sqp_shipment_panel_form_backup.jrxml new file mode 100755 index 0000000..19aca21 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_shipment_panel_form_backup.jrxml @@ -0,0 +1,446 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_shipment_panel_merged_old.jrxml b/jrxml_reports/custom_reports/sqp_shipment_panel_merged_old.jrxml new file mode 100755 index 0000000..3ca5db8 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_shipment_panel_merged_old.jrxml @@ -0,0 +1,295 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_small_logo.gif b/jrxml_reports/custom_reports/sqp_small_logo.gif new file mode 100755 index 0000000..26d5b7c Binary files /dev/null and b/jrxml_reports/custom_reports/sqp_small_logo.gif differ diff --git a/jrxml_reports/custom_reports/sqp_small_logo.png b/jrxml_reports/custom_reports/sqp_small_logo.png new file mode 100755 index 0000000..fa5fbbb Binary files /dev/null and b/jrxml_reports/custom_reports/sqp_small_logo.png differ diff --git a/jrxml_reports/custom_reports/sqp_super_mo_form.jrxml b/jrxml_reports/custom_reports/sqp_super_mo_form.jrxml new file mode 100755 index 0000000..92b6ba6 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_super_mo_form.jrxml @@ -0,0 +1,1006 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 ? $F{line_product_name}.substring( 0, $F{line_product_name}.lastIndexOf( "|" ) ) : $F{line_product_name}]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0]]> + + + + + + + + + 0]]> + + + + + + + + + + + + + + + + 0]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_super_mo_form_2.jrxml b/jrxml_reports/custom_reports/sqp_super_mo_form_2.jrxml new file mode 100755 index 0000000..6b76fc7 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_super_mo_form_2.jrxml @@ -0,0 +1,1006 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0]]> + + + + + + + + + 0]]> + + + + + + + + + + + + + + + + 0]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_supply_list_form.jrxml b/jrxml_reports/custom_reports/sqp_supply_list_form.jrxml new file mode 100755 index 0000000..f62f27f --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_supply_list_form.jrxml @@ -0,0 +1,481 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_tax_invoice.jrxml b/jrxml_reports/custom_reports/sqp_tax_invoice.jrxml new file mode 100755 index 0000000..0c16dc3 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_tax_invoice.jrxml @@ -0,0 +1,526 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 ? - $V{add_disc_amt} : null]]> + + + + + + + 0 ? "Additional Discount:" : null]]> + + + + + + + 0 ? "Advance Amount:" : null]]> + + + + + + + 0 ? - $V{amount_advance} : null]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 ? - $V{amount_deposit} : null]]> + + + + + + + 0 ? "Deposit Amount:" : null]]> + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/sqp_wip_transfer_form.jrxml b/jrxml_reports/custom_reports/sqp_wip_transfer_form.jrxml new file mode 100755 index 0000000..a8d97c4 --- /dev/null +++ b/jrxml_reports/custom_reports/sqp_wip_transfer_form.jrxml @@ -0,0 +1,598 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 ? $F{Panel Code}.substring( 0, $F{Panel Code}.lastIndexOf( "|" ) ) : $F{Panel Code}]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jrxml_reports/custom_reports/tax-invoice.jpg b/jrxml_reports/custom_reports/tax-invoice.jpg new file mode 100755 index 0000000..862c9e0 Binary files /dev/null and b/jrxml_reports/custom_reports/tax-invoice.jpg differ diff --git a/master_adjust/29dec13/account.invoice.1.csv b/master_adjust/29dec13/account.invoice.1.csv new file mode 100755 index 0000000..6ac7b15 --- /dev/null +++ b/master_adjust/29dec13/account.invoice.1.csv @@ -0,0 +1,32 @@ +"id","account_id","partner_id/id","date_invoice","invoice_line/product_id","invoice_line/name","invoice_line/uos_id","invoice_line/account_id","invoice_line/price_unit","invoice_line/invoice_line_tax_id" +"account_invoice_balance_1",100210,"res_partner_cust_67","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,106000,"Output VAT 7%" +"account_invoice_balance_2",100210,"res_partner_cust_7","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,950000,"Output VAT 7%" +"account_invoice_balance_3",100210,"res_partner_cust_4","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,476000,"Output VAT 7%" +"account_invoice_balance_4",100210,"res_partner_cust_24","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,200000,"Output VAT 7%" +"account_invoice_balance_5",100210,"res_partner_cust_16","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,1174448,"Output VAT 7%" +"account_invoice_balance_6",100210,"res_partner_cust_20","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,2487332,"Output VAT 7%" +"account_invoice_balance_7",100210,"res_partner_cust_50","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,334061,"Output VAT 7%" +"account_invoice_balance_8",100210,"res_partner_cust_28","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,2316611,"Output VAT 7%" +"account_invoice_balance_9",100210,"res_partner_cust_63","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,2600000,"Output VAT 7%" +"account_invoice_balance_10",100210,"res_partner_cust_88","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,31570,"Output VAT 7%" +"account_invoice_balance_11",100210,"res_partner_cust_90","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,13000,"Output VAT 7%" +"account_invoice_balance_12",100210,"res_partner_cust_98","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,2682673,"Output VAT 7%" +"account_invoice_balance_13",100210,"res_partner_cust_108","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,250000,"Output VAT 7%" +"account_invoice_balance_14",100210,"res_partner_cust_132","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,1243788,"Output VAT 7%" +"account_invoice_balance_15",100210,"res_partner_cust_142","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,60738,"Output VAT 7%" +"account_invoice_balance_16",100210,"res_partner_cust_146","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,183400,"Output VAT 7%" +"account_invoice_balance_17",100210,"res_partner_cust_161","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,2343925,"Output VAT 7%" +"account_invoice_balance_18",100210,"res_partner_cust_176","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,211000,"Output VAT 7%" +"account_invoice_balance_19",100210,"res_partner_cust_174","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,875520,"Output VAT 7%" +"account_invoice_balance_20",100210,"res_partner_cust_203","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,2843610,"Output VAT 7%" +"account_invoice_balance_21",100210,"res_partner_cust_202","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,261280,"Output VAT 7%" +"account_invoice_balance_22",100210,"res_partner_cust_225","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,180000,"Output VAT 7%" +"account_invoice_balance_23",100210,"res_partner_cust_234","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,207000,"Output VAT 7%" +"account_invoice_balance_24",100210,"res_partner_cust_227","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,1665026,"Output VAT 7%" +"account_invoice_balance_25",100210,"res_partner_cust_245","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,782087,"Output VAT 7%" +"account_invoice_balance_26",100210,"res_partner_cust_280","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,2050000,"Output VAT 7%" +"account_invoice_balance_27",100210,"res_partner_cust_274","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,24000,"Output VAT 7%" +"account_invoice_balance_28",100210,"res_partner_cust_266","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,5005666,"Output VAT 7%" +"account_invoice_balance_29",100210,"res_partner_cust_260","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,515800,"Output VAT 7%" +"account_invoice_balance_30",100210,"res_partner_cust_313","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,188408,"Output VAT 7%" +"account_invoice_balance_31",100210,"res_partner_rawmat_27","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,150000,"Output VAT 7%" diff --git a/master_adjust/29dec13/account.invoice.2.csv b/master_adjust/29dec13/account.invoice.2.csv new file mode 100755 index 0000000..f8923cf --- /dev/null +++ b/master_adjust/29dec13/account.invoice.2.csv @@ -0,0 +1,9 @@ +"id","account_id","partner_id","date_invoice","invoice_line/product_id","invoice_line/name","invoice_line/uos_id","invoice_line/account_id","invoice_line/price_unit","invoice_line/invoice_line_tax_id" +"account_invoice_balance_32",100210,"Industrial Foods Supply Co.,Ltd.","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,173700,"Output VAT 7%" +"account_invoice_balance_33",100210,"บริษัท ไอโซวอลล์ เอ็นจิเนียริ่ง (ไทยแลนด์) จำกัด","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,19674,"Output VAT 7%" +"account_invoice_balance_34",100210,"Metadec Co.,Ltd.","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,3942,"Output VAT 7%" +"account_invoice_balance_35",100210,"MPC Cool Co.,Ltd.","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,47610,"Output VAT 7%" +"account_invoice_balance_36",100210,"Patkol Public Company Limited","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,35000,"Output VAT 7%" +"account_invoice_balance_37",100210,"บริษัท เอ็กซ์เพรสอินเตอร์คูล จำกัด","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,585700,"Output VAT 7%" +"account_invoice_balance_38",100210,"มหาวิทยาลัย เทคโนโลยี พระจอมเกล้าธนบุรี","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,4200,"Output VAT 7%" +"account_invoice_balance_39",100210,"สถานสัตว์ทดลองเพื่อการวิจัย มหาวิทยาลัยนเรศวร","2013-12-29","[INV_BAL]","Invoice Balance (2013)","EA",401110,177570,"Output VAT 7%" diff --git a/master_adjust/29dec13/product.product.csv b/master_adjust/29dec13/product.product.csv new file mode 100755 index 0000000..f0b406e --- /dev/null +++ b/master_adjust/29dec13/product.product.csv @@ -0,0 +1,762 @@ +"id","name","default_code","categ_id","uom_id","uos_id","uos_coeff","loc_rack","loc_row","loc_case",, +"product.product_part_1","AL-U CAP 40X42X40 mm(NA.1)","SP01001","Aluminium","pcs","kg",3,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_2","AL-U CAP 40X42X40 mm(MF)","SP01002","Aluminium","pcs","kg",3,"01-07",,"โกดังอะลูมิเนียม",, +"product.product_part_3","AL-U CAP 40X42X40 mm(OW)","SP01003","Aluminium","pcs","kg",3,,,"โกดังอะลูมิเนียม",, +"product.product_part_4","AL-U CAP 40X42X40 mm(AP)","SP01004","Aluminium","pcs","kg",3,"01-23",,"โกดังอะลูมิเนียม",, +"product.product_part_5","AL-U CAP 25X42X25(NA.1)","SP01005","Aluminium","pcs","kg",3,"01-01",,"โกดังอะลูมิเนียม",, +"product.product_part_6","AL-U CAP 25X42X25(MF)","SP01006","Aluminium","pcs","kg",3,"01-15",,"โกดังอะลูมิเนียม",, +"product.product_part_7","AL-U CAP 25X42X25(OW)","SP01007","Aluminium","pcs","kg",3,"01-22",,"โกดังอะลูมิเนียม",, +"product.product_part_8","AL-U CAP 25X42X25(AP)","SP01008","Aluminium","pcs","kg",3,"01-23",,"โกดังอะลูมิเนียม",, +"product.product_part_9","AL ANGLE 40X40X2(NA.1)","SP01009","Aluminium","pcs","kg",2,"01-07",,"โกดังอะลูมิเนียม",, +"product.product_part_10","AL ANGLE 40X40X2(MF)","SP01010","Aluminium","pcs","kg",2,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_11","AL ANGLE 40X40X2(OW)","SP01011","Aluminium","pcs","kg",2,,,"โกดังอะลูมิเนียม",, +"product.product_part_12","AL ANGLE 40X40X2 (AP)","SP01012","Aluminium","pcs","kg",2,"01-15",,"โกดังอะลูมิเนียม",, +"product.product_part_13","AL ANGLE 40X80X2(MF)","SP01014","Aluminium","pcs","kg",3,"01-07",,"โกดังอะลูมิเนียม",, +"product.product_part_14","AL ANGLE 40X80X2(OW)","SP01015","Aluminium","pcs","kg",3,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_15","AL ANGLE 40X80X2(AP)","SP01016","Aluminium","pcs","kg",3,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_16","AL DIE 0202 เสาข้างสวิง(NA.1)","SP01017","Aluminium","pcs","kg",5,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_17","AL DIE 0202 เสาข้างสวิง(MF)","SP01018","Aluminium","pcs","kg",5,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_18","AL DIE 0202 เสาข้างสวิง(OW)","SP01019","Aluminium","pcs","kg",5,"01-16",,"โกดังอะลูมิเนียม",, +"product.product_part_19","AL DIE 0202 เสาข้างสวิง(AP)","SP01020","Aluminium","pcs","kg",5,"01-16",,"โกดังอะลูมิเนียม",, +"product.product_part_20","AL DIE 0203 เสาล่างสวิง(NA.1)","SP01021","Aluminium","pcs","kg",6,"01-02",,"โกดังอะลูมิเนียม",, +"product.product_part_21","AL DIE 0203 เสาล่างสวิง(MF)","SP01022","Aluminium","pcs","kg",6,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_22","AL DIE 0203 เสาล่างสวิง(OW)","SP01023","Aluminium","pcs","kg",6,"01-19",,"โกดังอะลูมิเนียม",, +"product.product_part_23","AL DIE 0203 เสาล่างสวิง(AP)","SP01024","Aluminium","pcs","kg",6,"01-19",,"โกดังอะลูมิเนียม",, +"product.product_part_24","AL DIE 0201 เสาบนสวิง(NA.1)","SP01025","Aluminium","pcs","kg",5,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_25","AL DIE 0201 เสาบนสวิง(MF)","SP01026","Aluminium","pcs","kg",5,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_26","AL DIE 0201 เสาบนสวิง(OW)","SP01027","Aluminium","pcs","kg",5,"01-19",,"โกดังอะลูมิเนียม",, +"product.product_part_27","AL DIE 0201 เสาบนสวิง(AP)","SP01028","Aluminium","pcs","kg",5,"01-19",,"โกดังอะลูมิเนียม",, +"product.product_part_28","AL DIE 0223 คิ้วลอยเทใหญ่(NA.1)","SP01033","Aluminium","pcs","kg",1,"01-09",,"โกดังอะลูมิเนียม",, +"product.product_part_29","AL DIE 0223 คิ้วลอยเทใหญ่(MF)","SP01034","Aluminium","pcs","kg",1,,,"โกดังอะลูมิเนียม",, +"product.product_part_30","AL DIE 0223 คิ้วลอยเทใหญ่(OW)","SP01035","Aluminium","pcs","kg",1,"01-11",,"โกดังอะลูมิเนียม",, +"product.product_part_31","AL DIE 0223 คิ้วลอยเทใหญ่(AP)","SP01036","Aluminium","pcs","kg",1,"01-11",,"โกดังอะลูมิเนียม",, +"product.product_part_32","AL DIE 0224 คิ้วลอยเทเล็ก(NA.1)","SP01037","Aluminium","pcs","kg",1,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_33","AL DIE 0224 คิ้วลอยเทเล็ก(MF)","SP01038","Aluminium","pcs","kg",1,,,"โกดังอะลูมิเนียม",, +"product.product_part_34","AL DIE 0224 คิ้วลอยเทเล็ก(OW)","SP01039","Aluminium","pcs","kg",1,"01-11",,"โกดังอะลูมิเนียม",, +"product.product_part_35","AL DIE 0224 คิ้วลอยเทเล็ก(AP)","SP01040","Aluminium","pcs","kg",1,"01-11",,"โกดังอะลูมิเนียม",, +"product.product_part_36","AL FLOOR BASE(I)(NA.1)","SP01045","Aluminium","pcs","kg",5,,,"โกดังอะลูมิเนียม",, +"product.product_part_37","AL FLOOR BASE(I)(MF)","SP01046","Aluminium","pcs","kg",5,"01-04",,"โกดังอะลูมิเนียม",, +"product.product_part_38","AL FLOOR BASE(I)(OW)","SP01047","Aluminium","pcs","kg",5,"01-05",,"โกดังอะลูมิเนียม",, +"product.product_part_39","AL FLOOR BASE(I)(AP)","SP01048","Aluminium","pcs","kg",5,"01-05",,"โกดังอะลูมิเนียม",, +"product.product_part_40","AL PROFILE FOR LIGHTING42 mm(NA.1)","SP01049","Aluminium","pcs","kg",3,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_41","AL PROFILE FOR LIGHTING 42 mm(MF)","SP01050","Aluminium","pcs","kg",3,"01-17",,"โกดังอะลูมิเนียม",, +"product.product_part_42","AL PROFILE FOR LIGHTING 42 mm(OW)","SP01051","Aluminium","pcs","kg",3,,,"โกดังอะลูมิเนียม",, +"product.product_part_43","AL PROFILE FOR LIGHTING 42 mm(AP)","SP01052","Aluminium","pcs","kg",3,"01-20",,"โกดังอะลูมิเนียม",, +"product.product_part_44","AL CAP FOR DOOR HEATER(NA.1)","SP01053","Aluminium","pcs","kg",1,,,"โกดังอะลูมิเนียม",, +"product.product_part_45","AL CAP FOR DOOR HEATER(MF)","SP01054","Aluminium","pcs","kg",1,,,"โกดังอะลูมิเนียม",, +"product.product_part_46","AL CAP FOR DOOR HEATER(OW)","SP01055","Aluminium","pcs","kg",1,"01-04",,"โกดังอะลูมิเนียม",, +"product.product_part_47","AL CAP FOR DOOR HEATER(AP)","SP01056","Aluminium","pcs","kg",1,"01-04",,"โกดังอะลูมิเนียม",, +"product.product_part_47-1","AL RAIL FOR CLEAN ROOM(OW)","SP01059","Aluminium","pcs","kg",,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_48","AL U CAP 30X75X30 mmCOLD ROOM(NA.1)","SP01061","Aluminium","pcs","kg",6,"01-07",,"โกดังอะลูมิเนียม",, +"product.product_part_49","AL U CAP 30X75X30 mmCOLD ROOM(MF)","SP01062","Aluminium","pcs","kg",6,,,"โกดังอะลูมิเนียม",, +"product.product_part_50","AL U CAP 30X75X30 mmCOLD ROOM(OW)","SP01063","Aluminium","pcs","kg",6,"01-07",,"โกดังอะลูมิเนียม",, +"product.product_part_51","AL U CAP 30X75X30 mmCOLD ROOM(AP)","SP01064","Aluminium","pcs","kg",6,,,"โกดังอะลูมิเนียม",, +"product.product_part_52","AL U CAP 30X100X30 mmCOLD ROOM(NA.1)","SP01065","Aluminium","pcs","kg",7,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_53","AL U CAP 30X100X30 mmCOLD ROOM(MF)","SP01066","Aluminium","pcs","kg",7,,,"โกดังอะลูมิเนียม",, +"product.product_part_54","AL U CAP 30X100X30 mmCOLD ROOM(OW)","SP01067","Aluminium","pcs","kg",7,,,"โกดังอะลูมิเนียม",, +"product.product_part_55","AL U CAP 30X100X30 mmCOLD ROOM(AP)","SP01068","Aluminium","pcs","kg",7,,,"โกดังอะลูมิเนียม",, +"product.product_part_56","AL SKIRT(NA.1)","SP01069","Aluminium","pcs","kg",1,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_57","AL SKIRT(MF)","SP01070","Aluminium","pcs","kg",1,,,"โกดังอะลูมิเนียม",, +"product.product_part_58","AL SKIRT(OW)","SP01071","Aluminium","pcs","kg",1,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_59","AL SKIRT(AP)","SP01072","Aluminium","pcs","kg",1,,,"โกดังอะลูมิเนียม",, +"product.product_part_60","AL T-BAR(NA.1)","SP01073","Aluminium","pcs","kg",3,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_61","AL T-BAR(MF)","SP01074","Aluminium","pcs","kg",3,,,"โกดังอะลูมิเนียม",, +"product.product_part_62","AL T-BAR(OW)","SP01075","Aluminium","pcs","kg",3,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_63","AL T-BAR(AP)","SP01076","Aluminium","pcs","kg",3,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_64","AL T - BAR NEW 50 mm(NA.1)","SP01081","Aluminium","pcs","kg",4,"01-02",,"โกดังอะลูมิเนียม",, +"product.product_part_65","AL T - BAR NEW 50 mm(MF)","SP01082","Aluminium","pcs","kg",4,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_66","AL T - BAR NEW 50 mm(OW)","SP01083","Aluminium","pcs","kg",4,"01-09",,"โกดังอะลูมิเนียม",, +"product.product_part_67","AL T - BAR NEW 50 mm(AP)","SP01084","Aluminium","pcs","kg",4,"01-09",,"โกดังอะลูมิเนียม",, +"product.product_part_68","AL CAP 40X50X40 mm(NA.1)","SP01093","Aluminium","pcs","kg",4,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_69","AL CAP 40X50X40 mm(MF)","SP01094","Aluminium","pcs","kg",4,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_70","AL CAP 40X50X40 mm(OW)","SP01095","Aluminium","pcs","kg",4,"01-04",,"โกดังอะลูมิเนียม",, +"product.product_part_71","AL CAP 40X50X40 mm(AP)","SP01096","Aluminium","pcs","kg",4,"01-04",,"โกดังอะลูมิเนียม",, +"product.product_part_72","AL FLOOR BASE 50 mm(I)(NA.1)","SP01097","Aluminium","pcs","kg",5,"01-01",,"โกดังอะลูมิเนียม",, +"product.product_part_73","AL FLOOR BASE 50 mm(I)(MF)","SP01098","Aluminium","pcs","kg",5,,,"โกดังอะลูมิเนียม",, +"product.product_part_74","AL FLOOR BASE 50 mm(I)(OW)","SP01099","Aluminium","pcs","kg",5,"01-01",,"โกดังอะลูมิเนียม",, +"product.product_part_75","AL FLOOR BASE 50 mm(I)(AP)","SP01100","Aluminium","pcs","kg",5,,,"โกดังอะลูมิเนียม",, +"product.product_part_76","AL FRAME 42 mm(MF)","SP01102","Aluminium","pcs","kg",1,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_77","AL INSERT FOR AL FRAME 42 mm(MF)","SP01106","Aluminium","pcs","kg",1,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_78","AL FOR PVC COVING(MF)","SP01110","Aluminium","pcs","kg",,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_79","AL DOOR FRAME(NON FLUSH)(NA.1)","SP01113","Aluminium","pcs","kg",,"01-09",,"โกดังอะลูมิเนียม",, +"product.product_part_80","AL DOOR FRAME(NON FLUSH)(MF)","SP01114","Aluminium","pcs","kg",,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_81","AL DOOR FRAME(NON FLUSH)(OW)","SP01115","Aluminium","pcs","kg",,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_82","AL DOOR FRAME(NON FLUSH)(AP)","SP01116","Aluminium","pcs","kg",,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_83","AL U CAP FOR DOOR(NA.1)","SP01117","Aluminium","pcs","kg",,"01-02",,"โกดังอะลูมิเนียม",, +"product.product_part_84","AL U CAP FOR DOOR(MF)","SP01118","Aluminium","pcs","kg",,,,"โกดังอะลูมิเนียม",, +"product.product_part_85","AL U CAP FOR DOOR(OW)","SP01119","Aluminium","pcs","kg",,"01-22",,"โกดังอะลูมิเนียม",, +"product.product_part_86","AL U CAP FOR DOOR(AP)","SP01120","Aluminium","pcs","kg",,"01-22",,"โกดังอะลูมิเนียม",, +"product.product_part_87","AL PROFILE FOR LIGHTING 75 mm(NA.1)","SP01129","Aluminium","pcs","kg",4,,,"โกดังอะลูมิเนียม",, +"product.product_part_88","AL PROFILE FOR LIGHTING 75 mm(MF)","SP01130","Aluminium","pcs","kg",4,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_89","AL PROFILE FOR LIGHTING 75 mm(OW)","SP01131","Aluminium","pcs","kg",4,"01-04",,"โกดังอะลูมิเนียม",, +"product.product_part_90","AL PROFILE FOR LIGHTING 75 mm(AP)","SP01132","Aluminium","pcs","kg",4,"01-04",,"โกดังอะลูมิเนียม",, +"product.product_part_91","AL PROFILE FOR DOOR PANEL(FLUSH)(NA.1)","SP01133","Aluminium","pcs","kg",2,,,"โกดังอะลูมิเนียม",, +"product.product_part_92","AL PROFILE FOR DOOR PANEL(FLUSH)(MF)","SP01134","Aluminium","pcs","kg",2,"01-17",,"โกดังอะลูมิเนียม",, +"product.product_part_93","AL PROFILE FOR DOOR PANEL(FLUSH)(OW)","SP01135","Aluminium","pcs","kg",2,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_94","AL PROFILE FOR DOOR PANEL(FLUSH)(AP)","SP01136","Aluminium","pcs","kg",2,"01-14",,"โกดังอะลูมิเนียม",, +"product.product_part_95","AL ANGLE 30X80X1.5 mm(NA.1)","SP01153","Aluminium","pcs","kg",3,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_96","AL ANGLE30X80X1.5 mm(MF)","SP01154","Aluminium","pcs","kg",3,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_97","AL ANGLE 30X80X1.5 mm(OW)","SP01155","Aluminium","pcs","kg",3,,,"โกดังอะลูมิเนียม",, +"product.product_part_98","AL ANGLE 30X80X1.5 mm(AP)","SP01156","Aluminium","pcs","kg",3,"01-01",,"โกดังอะลูมิเนียม",, +"product.product_part_99","AL U CAP 25X25X25 mm(NA.1)","SP01157","Aluminium","pcs","kg",2,,,"โกดังอะลูมิเนียม",, +"product.product_part_100","AL U CAP 25X25X25 mm(MF)","SP01158","Aluminium","pcs","kg",2,"01-05",,"โกดังอะลูมิเนียม",, +"product.product_part_101","AL U CAP 25X25X25 mm(OW)","SP01159","Aluminium","pcs","kg",2,"01-22",,"โกดังอะลูมิเนียม",, +"product.product_part_102","AL U CAP 25X25X25 mm(AP)","SP01160","Aluminium","pcs","kg",2,"01-22",,"โกดังอะลูมิเนียม",, +"product.product_part_103","AL U CAP14X42X14 mm(NA.1)","SP01161","Aluminium","pcs","kg",1,"01-11",,"โกดังอะลูมิเนียม",, +"product.product_part_104","AL U CAP14X42X14 mm(MF)","SP01162","Aluminium","pcs","kg",1,"01-02",,"โกดังอะลูมิเนียม",, +"product.product_part_105","AL U CAP14X42X14 mm(OW)","SP01163","Aluminium","pcs","kg",1,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_106","AL U CAP14X42X14 mm(AP)","SP01164","Aluminium","pcs","kg",1,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_107","AL PROFILE FOR SLIDING DOOR(NA.1)","SP01165","Aluminium","pcs","kg",2,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_108","AL PROFILE FOR SLIDING DOOR(MF)","SP01166","Aluminium","pcs","kg",2,,,"โกดังอะลูมิเนียม",, +"product.product_part_109","AL PROFILE FOR SLIDING DOOR(OW)","SP01167","Aluminium","pcs","kg",2,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_110","AL PROFILE FOR SLIDING DOOR(AP)","SP01168","Aluminium","pcs","kg",2,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_111","AL PROFILE FOR LIGHTING 50 mm(NA.1)","SP01173","Aluminium","pcs","kg",3,,,"โกดังอะลูมิเนียม",, +"product.product_part_112","AL PROFILE FOR LIGHTING 50 mm(MF)","SP01174","Aluminium","pcs","kg",3,,,"โกดังอะลูมิเนียม",, +"product.product_part_113","AL PROFILE FOR LIGHTING 50 mm(OW)","SP01175","Aluminium","pcs","kg",3,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_114","AL PROFILE FOR LIGHTING 50 mm(AP)","SP01176","Aluminium","pcs","kg",3,,,"โกดังอะลูมิเนียม",, +"product.product_part_115","AL PROFILE FOR DOOR SEAL(NA.1)","SP01181","Aluminium","pcs","kg",3,"01-01",,"โกดังอะลูมิเนียม",, +"product.product_part_116","AL U CAP 40X100X40 mm(NA.1)","SP01193","Aluminium","pcs","kg",5,,,"โกดังอะลูมิเนียม",, +"product.product_part_117","AL U CAP 40X100X40 mm(MF)","SP01194","Aluminium","pcs","kg",5,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_118","AL U CAP 40X100X40 mm(OW)","SP01195","Aluminium","pcs","kg",5,"01-21",,"โกดังอะลูมิเนียม",, +"product.product_part_119","AL U CAP 40X100X40 mm(AP)","SP01196","Aluminium","pcs","kg",5,"01-21",,"โกดังอะลูมิเนียม",, +"product.product_part_120","AL CEILING BEAM(I)(NA.1)","SP01197","Aluminium","pcs","kg",8,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_121","AL CEILING BEAM(I)(MF)","SP01198","Aluminium","pcs","kg",8,"01-02",,"โกดังอะลูมิเนียม",, +"product.product_part_122","AL CEILING BEAM(I)(OW)","SP01199","Aluminium","pcs","kg",8,"01-22",,"โกดังอะลูมิเนียม",, +"product.product_part_123","AL CEILING BEAM(I)(AP)","SP01200","Aluminium","pcs","kg",8,"01-23",,"โกดังอะลูมิเนียม",, +"product.product_part_124","AL CEILING BEAM(II)(MF)","SP01202","Aluminium","pcs","kg",8,"01-05",,"โกดังอะลูมิเนียม",, +"product.product_part_125","AL FLOOR BASE(II)(NA.1)","SP01205","Aluminium","pcs","kg",5,"01-04",,"โกดังอะลูมิเนียม",, +"product.product_part_126","AL FLOOR BASE(II)(MF)","SP01206","Aluminium","pcs","kg",5,"01-01",,"โกดังอะลูมิเนียม",, +"product.product_part_127","AL FLOOR BASE(II)(OW)","SP01207","Aluminium","pcs","kg",5,"01-02",,"โกดังอะลูมิเนียม",, +"product.product_part_128","AL FLOOR BASE(II)(AP)","SP01208","Aluminium","pcs","kg",5,"01-02",,"โกดังอะลูมิเนียม",, +"product.product_part_129","AL ANGLE FOR COLD DOOR FRAME(NA.1)","SP01209","Aluminium","pcs","kg",3,,,"โกดังอะลูมิเนียม",, +"product.product_part_130","AL ANGLE FOR COLD DOOR FRAME(MF)","SP01210","Aluminium","pcs","kg",3,"01-05",,"โกดังอะลูมิเนียม",, +"product.product_part_131","AL ANGLE FOR COLD DOOR FRAME(OW)","SP01211","Aluminium","pcs","kg",3,"01-09",,"โกดังอะลูมิเนียม",, +"product.product_part_132","AL ANGLE FOR COLD DOOR FRAME(AP)","SP01212","Aluminium","pcs","kg",3,"01-20",,"โกดังอะลูมิเนียม",, +"product.product_part_133","AL FRAME 50 mm(MF)","SP01218","Aluminium","pcs","kg",1,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_134","AL SLIDING RAIL 6 m(COLD ROOM)(NA.1)","SP01221","Aluminium","pcs","kg",34,,,"โกดังอะลูมิเนียม",, +"product.product_part_135","AL SLIDING RAIL 6 m(COLD ROOM)(MF)","SP01222","Aluminium","pcs","kg",34,,,"โกดังอะลูมิเนียม",, +"product.product_part_136","AL SLIDING RAIL 6 m(COLD ROOM)(OW)","SP01223","Aluminium","pcs","kg",34,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_137","AL SLIDING RAIL 6 m(COLD ROOM)(AP)","SP01224","Aluminium","pcs","kg",34,,,"โกดังอะลูมิเนียม",, +"product.product_part_138","AL SLIDING GUIDE(NA.1)","SP01225","Aluminium","pcs","kg",6,,,"โกดังอะลูมิเนียม",, +"product.product_part_139","AL SLIDING GUIDE(MF)","SP01226","Aluminium","pcs","kg",6,,,"โกดังอะลูมิเนียม",, +"product.product_part_140","AL SLIDING GUIDE(OW)","SP01227","Aluminium","pcs","kg",6,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_141","AL SLIDING GUIDE(AP)","SP01228","Aluminium","pcs","kg",6,,,"โกดังอะลูมิเนียม",, +"product.product_part_142","AL U CAP40X75X40 mm(NA.1)","SP01233","Aluminium","pcs","kg",,"01-05",,"โกดังอะลูมิเนียม",, +"product.product_part_143","AL U CAP40X75X40 mm(MF)","SP01234","Aluminium","pcs","kg",,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_144","AL U CAP40X75X40 mm(OW)","SP01235","Aluminium","pcs","kg",,"01-05",,"โกดังอะลูมิเนียม",, +"product.product_part_145","AL U CAP40X75X40 mm(AP)","SP01236","Aluminium","pcs","kg",,"01-05",,"โกดังอะลูมิเนียม",, +"product.product_part_146","AIR RETURN AL FRAME.(NA.1)","SP01237","Aluminium","pcs","kg",,"01-18",,"โกดังอะลูมิเนียม",, +"product.product_part_147","AL SLIDING RAIL 4 m(COLD ROOM)(NA.1)","SP01242","Aluminium","pcs","kg",34,,,"โกดังอะลูมิเนียม",, +"product.product_part_148","AL SLIDING RAIL 4 m(COLD ROOM)(MF)","SP01243","Aluminium","pcs","kg",34,,,"โกดังอะลูมิเนียม",, +"product.product_part_149","AL SLIDING RAIL 4 m(COLD ROOM)(OW)","SP01244","Aluminium","pcs","kg",34,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_150","AL SLIDING RAIL 4 m(COLD ROOM)(AP)","SP01245","Aluminium","pcs","kg",34,,,"โกดังอะลูมิเนียม",, +"product.product_part_151","AL SLIDING RAIL 3 m(COLD ROOM)(NA.1)","SP01246","Aluminium","pcs","kg",34,,,"โกดังอะลูมิเนียม",, +"product.product_part_152","AL SLIDING RAIL 3 m(COLD ROOM)(MF)","SP01247","Aluminium","pcs","kg",34,,,"โกดังอะลูมิเนียม",, +"product.product_part_153","AL SLIDING RAIL 3 m(COLD ROOM)(OW)","SP01248","Aluminium","pcs","kg",34,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_154","AL SLIDING RAIL 3 m(COLD ROOM)(AP)","SP01249","Aluminium","pcs","kg",34,,,"โกดังอะลูมิเนียม",, +"product.product_part_155","DOOR FRAME 75 mm(MF)","SP01262","Aluminium","pcs","kg",9,"01-02",,"โกดังอะลูมิเนียม",, +"product.product_part_156","DOOR FRAME 75 mm(OW)","SP01263","Aluminium","pcs","kg",9,"01-05",,"โกดังอะลูมิเนียม",, +"product.product_part_157","AL STRIP COVER(NA.1)","SP01266","Aluminium","pcs","kg",0,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_158","AL STRIP COVER(MF)","SP01267","Aluminium","pcs","kg",0,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_159","AL STRIP COVER(OW)","SP01268","Aluminium","pcs","kg",0,,,"โกดังอะลูมิเนียม",, +"product.product_part_160","AL STRIP COVER(AP)","SP01269","Aluminium","pcs","kg",0,,,"โกดังอะลูมิเนียม",, +"product.product_part_161","AL PROFILE FOR DOUBLE SWING DOOR 42 mm(NA.1)","SP01271","Aluminium","pcs","kg",4,"01-11",,"โกดังอะลูมิเนียม",, +"product.product_part_162","AL PROFILE FOR DOUBLE SWING DOOR 42 mm(MF)","SP01272","Aluminium","pcs","kg",4,,,"โกดังอะลูมิเนียม",, +"product.product_part_163","AL PROFILE FOR DOUBLE SWING DOOR 42 mm(OW)","SP01273","Aluminium","pcs","kg",4,"01-11",,"โกดังอะลูมิเนียม",, +"product.product_part_164","AL PROFILE FOR DOUBLE SWING DOOR 42 mm(AP)","SP01274","Aluminium","pcs","kg",4,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_165","AL กล่อง 1 3/4"" X 1 3/4""(NA.1)","SP01275","Aluminium","pcs","kg",,"01-07",,"โกดังอะลูมิเนียม",, +"product.product_part_166","AL กล่อง 1 3/4"" X 1 3/4""(MF)","SP01276","Aluminium","pcs","kg",,,,"โกดังอะลูมิเนียม",, +"product.product_part_167","AL กล่อง 1 3/4"" X 1 3/4""(OW)","SP01277","Aluminium","pcs","kg",,"01-15",,"โกดังอะลูมิเนียม",, +"product.product_part_168","AL กล่อง 1 3/4"" X 1 3/4""(AP)","SP01278","Aluminium","pcs","kg",,"01-15",,"โกดังอะลูมิเนียม",, +"product.product_part_169","AL กล่อง 1 3/4"" X 1""(NA.1)","SP01279","Aluminium","pcs","kg",,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_170","AL กล่อง 1 3/4"" X 1""(MF)","SP01280","Aluminium","pcs","kg",,,,"โกดังอะลูมิเนียม",, +"product.product_part_171","AL กล่อง 1 3/4"" X 1""(OW)","SP01281","Aluminium","pcs","kg",,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_172","AL กล่อง 1 3/4"" X 1""(AP)","SP01282","Aluminium","pcs","kg",,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_173","AL ANGLE 2"" X 2"" X 3 mm(NA.1)","SP01283","Aluminium","pcs","kg",,,,"โกดังอะลูมิเนียม",, +"product.product_part_174","AL ANGLE 2"" X 2"" X 3 mm(MF)","SP01284","Aluminium","pcs","kg",,"01-01",,"โกดังอะลูมิเนียม",, +"product.product_part_175","AL ANGLE 2"" X 2"" X 3 mm(OW)","SP01285","Aluminium","pcs","kg",,,,"โกดังอะลูมิเนียม",, +"product.product_part_176","AL ANGLE 2"" X 2"" X 3 mm(AP)","SP01286","Aluminium","pcs","kg",,,,"โกดังอะลูมิเนียม",, +"product.product_part_177","AL PROFILE FOR DOUBLE SWING DOOR II(MF)","SP01288","Aluminium","pcs","kg",4,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_178","AL PROFILE FOR DOUBLE SWING DOOR II(OW)","SP01289","Aluminium","pcs","kg",4,"01-07",,"โกดังอะลูมิเนียม",, +"product.product_part_179","AL PROFILE FOR DOUBLE SWING DOOR II(AP)","SP01290","Aluminium","pcs","kg",4,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_180","AL PROFILE FOR DOUBLE SWING DOOR III(MF)","SP01292","Aluminium","pcs","kg",3,"01-16",,"โกดังอะลูมิเนียม",, +"product.product_part_181","AL PROFILE FOR DOUBLE SWING DOOR III(OW)","SP01293","Aluminium","pcs","kg",3,,,"โกดังอะลูมิเนียม",, +"product.product_part_182","AL PROFILE FOR DOUBLE SWING DOOR III(AP)","SP01294","Aluminium","pcs","kg",3,"01-20",,"โกดังอะลูมิเนียม",, +"product.product_part_183","AL DOOR CLOSER SLIDING RAIL(MF)","SP01296","Aluminium","pcs","kg",5,"01-09",,"โกดังอะลูมิเนียม",, +"product.product_part_184","AL DOOR CLOSER SLIDING RAIL(OW)","SP01297","Aluminium","pcs","kg",5,"01-04",,"โกดังอะลูมิเนียม",, +"product.product_part_185","AL DOOR CLOSER SLIDING RAIL(AP)","SP01298","Aluminium","pcs","kg",5,"01-19",,"โกดังอะลูมิเนียม",, +"product.product_part_186","AL PROFILE FOR DOOR PANEL50 mm(FLUSH)(MF)","SP01300","Aluminium","pcs","kg",3,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_187","AL PROFILE FOR DOOR PANEL50 mm(FLUSH)(OW)","SP01301","Aluminium","pcs","kg",3,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_188","AL PROFILE FOR DOOR PANEL50 mm(FLUSH)(AP)","SP01302","Aluminium","pcs","kg",3,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_189","AL U CAP FOR LIGHTING 42 mm(NA.1)","SP01303","Aluminium","pcs","kg",14,,,"โกดังอะลูมิเนียม",, +"product.product_part_190","AL U CAP FOR LIGHTING 42 mm(MF)","SP01304","Aluminium","pcs","kg",14,"01-07",,"โกดังอะลูมิเนียม",, +"product.product_part_191","AL U CAP FOR LIGHTING 42 mm(OW)","SP01305","Aluminium","pcs","kg",14,,,"โกดังอะลูมิเนียม",, +"product.product_part_192","AL U CAP FOR LIGHTING 42 mm(AP)","SP01306","Aluminium","pcs","kg",14,,,"โกดังอะลูมิเนียม",, +"product.product_part_193","AL PROFILE FOR DOOR FRAME TYPE A (MF)","SP01308","Aluminium","pcs","kg",8,"01-20",,"โกดังอะลูมิเนียม",, +"product.product_part_194","AL PROFILE FOR DOOR FRAME TYPE A (OW)","SP01309","Aluminium","pcs","kg",8,,,"โกดังอะลูมิเนียม",, +"product.product_part_195","AL PROFILE FOR DOOR FRAME TYPE A (AP)","SP01310","Aluminium","pcs","kg",8,,,"โกดังอะลูมิเนียม",, +"product.product_part_196","AL PROFILE FOR DOOR FRAME TYPE B (MF)","SP01312","Aluminium","pcs","kg",10,"01-18",,"โกดังอะลูมิเนียม",, +"product.product_part_197","AL PROFILE FOR DOOR FRAME TYPE B (OW)","SP01313","Aluminium","pcs","kg",10,"01-22",,"โกดังอะลูมิเนียม",, +"product.product_part_198","AL DOOR CLOSER SLIDING RAIL FOR DORMA(MF)","SP01320","Aluminium","pcs","kg",4,"01-02",,"โกดังอะลูมิเนียม",, +"product.product_part_199","AL DOOR CLOSER SLIDING RAIL FOR DORMA(OW)","SP01321","Aluminium","pcs","kg",4,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_200","AL DOOR CLOSER SLIDING RAIL FOR DORMA(AP)","SP01322","Aluminium","pcs","kg",4,"01-23",,"โกดังอะลูมิเนียม",, +"product.product_part_201","AL HOLDER(NA.1)","SP01323","Aluminium","pcs","kg",1,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_202","AL HOLDER(MF)","SP01324","Aluminium","pcs","kg",1,"01-09",,"โกดังอะลูมิเนียม",, +"product.product_part_203","AL HOLDER(OW)","SP01325","Aluminium","pcs","kg",1,,,"โกดังอะลูมิเนียม",, +"product.product_part_204","AL HOLDER(AP)","SP01326","Aluminium","pcs","kg",1,,,"โกดังอะลูมิเนียม",, +"product.product_part_205","AL DOOR FRAME 42 MM 2010-01(MF)","SP01328","Aluminium","pcs","kg",7,"01-17",,"โกดังอะลูมิเนียม",, +"product.product_part_206","AL DOOR FRAME 42 MM 2010-01(OW)","SP01329","Aluminium","pcs","kg",7,"01-20",,"โกดังอะลูมิเนียม",, +"product.product_part_207","AL DOOR FRAME 42 MM 2010-01(AP)","SP01330","Aluminium","pcs","kg",7,"01-18",,"โกดังอะลูมิเนียม",, +"product.product_part_208","AL DOOR FRAME 50 MM 2011-01(MF)","SP01340","Aluminium","pcs","kg",7,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_209","AL DOOR FRAME 50 MM 2011-01(OW)","SP01341","Aluminium","pcs","kg",7,"01-15",,"โกดังอะลูมิเนียม",, +"product.product_part_210","AL DOOR FRAME 50 MM 2011-01(AP)","SP01342","Aluminium","pcs","kg",7,,,"โกดังอะลูมิเนียม",, +"product.product_part_211","AL DOOR FRAME 100 MM 2011-01(MF)","SP01344","Aluminium","pcs","kg",11,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_212","AL DOOR FRAME 100 MM 2011-01(OW)","SP01345","Aluminium","pcs","kg",11,"01-04",,"โกดังอะลูมิเนียม",, +"product.product_part_213","AL DOOR FRAME 100 MM 2011-01(AP)","SP01346","Aluminium","pcs","kg",11,,,"โกดังอะลูมิเนียม",, +"product.product_part_214","AL PROFILE FOR DOUBLE SWING DOOR 50 mmI (MF)","SP01348","Aluminium","pcs","kg",4,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_215","AL PROFILE FOR DOUBLE SWING DOOR 50 mmI(OW)","SP01349","Aluminium","pcs","kg",4,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_216","AL PROFILE FOR DOUBLE SWING DOOR 50 mmI(AP)","SP01350","Aluminium","pcs","kg",4,,,"โกดังอะลูมิเนียม",, +"product.product_part_217","AL PROFILE FOR DOUBLE SWING DOOR 50 mm(MF)","SP01352","Aluminium","pcs","kg",3,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_218","AL PROFILE FOR DOUBLE SWING DOOR 50 mm(OW)","SP01353","Aluminium","pcs","kg",3,,,"โกดังอะลูมิเนียม",, +"product.product_part_219","AL PROFILE FOR DOUBLE SWING DOOR 50 mm(AP)","SP01354","Aluminium","pcs","kg",3,,,"โกดังอะลูมิเนียม",, +"product.product_part_220","AL HINGE SUPPORT(NA.1)","SP01355","Aluminium","pcs","kg",10,,,"โกดังอะลูมิเนียม",, +"product.product_part_221","AL HINGE SUPPORT(MF)","SP01356","Aluminium","pcs","kg",10,,,"โกดังอะลูมิเนียม",, +"product.product_part_222","AL HINGE SUPPORT(OW)","SP01357","Aluminium","pcs","kg",10,,,"โกดังอะลูมิเนียม",, +"product.product_part_223","AL HINGE SUPPORT(AP)","SP01358","Aluminium","pcs","kg",10,,,"โกดังอะลูมิเนียม",, +"product.product_part_224","AL FRAME FOR HEATER(MF)","SP01360","Aluminium","pcs","kg",2,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_225","AL FRAME FOR HEATER(OW)","SP01361","Aluminium","pcs","kg",2,,,"โกดังอะลูมิเนียม",, +"product.product_part_226","AL FRAME FOR HEATER(AP)","SP01362","Aluminium","pcs","kg",2,,,"โกดังอะลูมิเนียม",, +"product.product_part_227","AL FOR HEPA RETURN(MF)","SP01364","Aluminium","pcs","kg",4,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_228","AL FOR HEPA RETURN(OW)","SP01365","Aluminium","pcs","kg",4,"01-17",,"โกดังอะลูมิเนียม",, +"product.product_part_229","AL FOR HEPA RETURN(AP)","SP01366","Aluminium","pcs","kg",4,,,"โกดังอะลูมิเนียม",, +"product.product_part_230","AL NON PROGRESSIVE COVER 65 mm(MF)","SP01368","Aluminium","pcs","kg",2,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_231","AL NON PROGRESSIVE COVER 65 mm(OW)","SP01369","Aluminium","pcs","kg",2,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_232","AL NON PROGRESSIVE COVER 65 mm(AP)","SP01370","Aluminium","pcs","kg",2,,,"โกดังอะลูมิเนียม",, +"product.product_part_233","AL NON PROGRESSIVE COVING CUVE 60.5 mm(MF)","SP01372","Aluminium","pcs","kg",1,,,"โกดังอะลูมิเนียม",, +"product.product_part_234","AL NON PROGRESSIVE COVING CUVE 60.5 mm(OW)","SP01373","Aluminium","pcs","kg",1,,,"โกดังอะลูมิเนียม",, +"product.product_part_235","AL NON PROGRESSIVE COVING CUVE 60.5 mm(AP)","SP01374","Aluminium","pcs","kg",1,,,"โกดังอะลูมิเนียม",, +"product.product_part_236","AL NON PROGRESSIVE DOOR FRAME ""A"" 50 mm(MF)","SP01376","Aluminium","pcs","kg",9,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_237","AL NON PROGRESSIVE DOOR FRAME ""A"" 50 mm(OW)","SP01377","Aluminium","pcs","kg",9,"01-23",,"โกดังอะลูมิเนียม",, +"product.product_part_238","AL NON PROGRESSIVE DOOR FRAME ""A"" 50 mm(AP)","SP01378","Aluminium","pcs","kg",9,,,"โกดังอะลูมิเนียม",, +"product.product_part_239","AL NON PROGRESSIVE WINDOW FRAME ""A"" 50 mm(MF)","SP01380","Aluminium","pcs","kg",5,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_240","AL NON PROGRESSIVE WINDOW FRAME ""A"" 50 mm(OW)","SP01381","Aluminium","pcs","kg",5,"01-23",,"โกดังอะลูมิเนียม",, +"product.product_part_241","AL NON PROGRESSIVE WINDOW FRAME ""A"" 50 mm(AP)","SP01382","Aluminium","pcs","kg",5,,,"โกดังอะลูมิเนียม",, +"product.product_part_242","AL ANGLE 30 X 110 X 2 mm(MF)","SP01388","Aluminium","pcs","kg",4,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_243","AL ANGLE 30 X 110 X 2 mm(OW)","SP01389","Aluminium","pcs","kg",4,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_244","AL ANGLE 30 X 110 X 2 mm(AP)","SP01390","Aluminium","pcs","kg",4,,,"โกดังอะลูมิเนียม",, +"product.product_part_245","AL NON PROGRESSIVE CORNER COLUMN 50 mm(MF)","SP01392","Aluminium","pcs","kg",18,"01-19",,"โกดังอะลูมิเนียม",, +"product.product_part_246","AL NON PROGRESSIVE CORNER COLUMN 50 mm(OW)","SP01393","Aluminium","pcs","kg",18,"01-15",,"โกดังอะลูมิเนียม",, +"product.product_part_247","AL NON PROGRESSIVE CORNER COLUMN 50 mm(AP)","SP01394","Aluminium","pcs","kg",18,,,"โกดังอะลูมิเนียม",, +"product.product_part_248","AL NON PROGRESSIVE LOWER TRACK 50 mm(MF)","SP01396","Aluminium","pcs","kg",2,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_249","AL NON PROGRESSIVE UPPER TRACK 50 mm(MF)","SP01400","Aluminium","pcs","kg",2,"01-07",,"โกดังอะลูมิเนียม",, +"product.product_part_250","AL NON PROGRESSIVE ANGLE 30 X 30 FOR COVING CUVE 60.5 mm(MF)","SP01404","Aluminium","pcs","kg",2,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_251","AL NON PROGRESSIVE WINDOW FRAME ""C"" 50 mm(UP / LOW)(MF)","SP01408","Aluminium","pcs","kg",7,"01-20",,"โกดังอะลูมิเนียม",, +"product.product_part_252","AL NON PROGRESSIVE WINDOW FRAME ""C"" 50 mm(UP / LOW)(OW)","SP01409","Aluminium","pcs","kg",7,"01-19",,"โกดังอะลูมิเนียม",, +"product.product_part_253","AL NON PROGRESSIVE WINDOW FRAME ""C"" 50 mm(UP / LOW)(AP)","SP01410","Aluminium","pcs","kg",7,,,"โกดังอะลูมิเนียม",, +"product.product_part_254","AL NON PROGRESSIVE DOOR FRAME ""B"" 50 mm(UP)(MF)","SP01412","Aluminium","pcs","kg",8,"01-07",,"โกดังอะลูมิเนียม",, +"product.product_part_255","AL NON PROGRESSIVE DOOR FRAME ""B"" 50 mm(UP)(OW)","SP01413","Aluminium","pcs","kg",8,"01-23",,"โกดังอะลูมิเนียม",, +"product.product_part_256","AL NON PROGRESSIVE DOOR FRAME ""B"" 50 mm(UP)(AP)","SP01414","Aluminium","pcs","kg",8,,,"โกดังอะลูมิเนียม",, +"product.product_part_257","AL NON PROGRESSIVE LOWER CORNER COLUMN 50 mm(MF)","SP01416","Aluminium","pcs","kg",12,"01-17",,"โกดังอะลูมิเนียม",, +"product.product_part_258","AL NON PROGRESSIVE LOWER CORNER COLUMN 50 mm(OW)","SP01417","Aluminium","pcs","kg",12,,,"โกดังอะลูมิเนียม",, +"product.product_part_259","AL NON PROGRESSIVE LOWER CORNER COLUMN 50 mm(AP)","SP01418","Aluminium","pcs","kg",12,,,"โกดังอะลูมิเนียม",, +"product.product_part_260","AL NON PROGRESSIVE FRAME 50 mm(MF)","SP01420","Aluminium","pcs","kg",4,"01-19",,"โกดังอะลูมิเนียม",, +"product.product_part_261","AL NON PROGRESSIVE FRAME 75 mm(MF)","SP01424","Aluminium","pcs","kg",5,"01-18",,"โกดังอะลูมิเนียม",, +"product.product_part_262","AL NON PROGRESSIVE LOWER TRACK 100 mm(MF)","SP01427","Aluminium","pcs","kg",4,"01-19",,"โกดังอะลูมิเนียม",, +"product.product_part_263","AL NON PROGRESSIVE UPPER TRACK 100 mm(MF)","SP01428","Aluminium","pcs","kg",4,"01-20",,"โกดังอะลูมิเนียม",, +"product.product_part_264","AL NON PROGRESSIVE FRAME 100 mm(MF)","SP01429","Aluminium","pcs","kg",3,,,"โกดังอะลูมิเนียม",, +"product.product_part_265","AL DOOR FRAME 100 mm FOR DOOR 50 mm (MF)","SP01431","Aluminium","pcs","kg",11,"01-19",,"โกดังอะลูมิเนียม",, +"product.product_part_266","AL DOOR FRAME 100 mm FOR DOOR 50 mm (OW)","SP01432","Aluminium","pcs","kg",11,,,"โกดังอะลูมิเนียม",, +"product.product_part_267","AL DOOR FRAME 100 mm FOR DOOR 50 mm (AP)","SP01433","Aluminium","pcs","kg",11,,,"โกดังอะลูมิเนียม",, +"product.product_part_268","AL WINDOW FRAME CURE 42 mm(NA.1)","SP01434","Aluminium","pcs","kg",11,,,"โกดังอะลูมิเนียม",, +"product.product_part_269","AL WINDOW FRAME CURE 42 mm(MF)","SP01435","Aluminium","pcs","kg",11,,,"โกดังอะลูมิเนียม",, +"product.product_part_270","AL WINDOW FRAME CURE 42 mm(OW)","SP01436","Aluminium","pcs","kg",11,,,"โกดังอะลูมิเนียม",, +"product.product_part_271","AL WINDOW FRAME CURE 42 mm(AP)","SP01437","Aluminium","pcs","kg",11,,,"โกดังอะลูมิเนียม",, +"product.product_part_272","AL WINDOW FRAME CURE 100 mm(NA.1)","SP01438","Aluminium","pcs","kg",11,,,"โกดังอะลูมิเนียม",, +"product.product_part_273","AL WINDOW FRAME CURE 100 mm(MF)","SP01439","Aluminium","pcs","kg",11,,,"โกดังอะลูมิเนียม",, +"product.product_part_274","AL WINDOW FRAME CURE 100 mm(OW)","SP01440","Aluminium","pcs","kg",11,,,"โกดังอะลูมิเนียม",, +"product.product_part_275","AL WINDOW FRAME CURE 100 mm(AP)","SP01441","Aluminium","pcs","kg",11,,,"โกดังอะลูมิเนียม",, +"product.product_part_276","AL DOOR FRAME HOUSING 100 mm(MF)","SP01442","Aluminium","pcs","kg",12,,,"โกดังอะลูมิเนียม",, +"product.product_part_277","AL WINDOW FRAME HOUSING 100 mm(MF)","SP01443","Aluminium","pcs","kg",8,,,"โกดังอะลูมิเนียม",, +"product.product_part_278","AL DOOR FRAME HOUSING 50 mm(MF)","SP01444","Aluminium","pcs","kg",10,,,"โกดังอะลูมิเนียม",, +"product.product_part_279","BOLT 3/8""X25 mm","SP02001","Installation","pcs",,,"Palete",,"Store ชั้น 2",, +"product.product_part_280","NUT 3/8""","SP02002","Installation","pcs",,,"Palete",,"Store ชั้น 2",, +"product.product_part_281","WASHER 3/8"" OD 28 mm","SP02003","Installation","pcs",,,"Palete",,"Store ชั้น 2",, +"product.product_part_282","ANCHOR BOLT 8X50 (SANKO)","SP02004","Installation","pcs",,,"02-02",,"Store ชั้น 2",, +"product.product_part_283","SCREW ( 4X20 ) (SUS)","SP02005","Installation","pcs",,,"02-02",,"Store ชั้น 2",, +"product.product_part_284","SCREW ( 4X25 ) (SUS)","SP02006","Installation","pcs",,,"02-02",,"Store ชั้น 2",, +"product.product_part_285","WATER PROOF FLUORESCENT HOUSING 2X36W","SP02007","Installation","set",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_286","CEILING BEAM JOINING PLATE ( W 50)","SP02008","Installation","pcs",,,"Palete",,"Store ชั้น 2",, +"product.product_part_287","POP RIVET 5-4","SP02009","Installation","pcs",,,"02-01",,"Store ชั้น 2",, +"product.product_part_288","POP RIVET 4-3","SP02010","Installation","pcs",,,"02-01",,"Store ชั้น 2",, +"product.product_part_289","NUT ( M6 )","SP02011","Installation","pcs",,,"02-01",,"Store ชั้น 2",, +"product.product_part_290","WASHER ( M6 )","SP02012","Installation","pcs",,,"02-01",,"Store ชั้น 2",, +"product.product_part_291","U-BOLT M10","SP02013","Installation","pcs",,,"Palete",,"Store ชั้น 2",, +"product.product_part_292","BOLT M8X45","SP02014","Installation","pcs",,,"02-01",,"Store ชั้น 2",, +"product.product_part_293","WASHER ( M8 )","SP02015","Installation","pcs",,,"02-01",,"Store ชั้น 2",, +"product.product_part_294","CEILING BRACKET","SP02016","Installation","pcs",,,"Palete",,"ด้านล่าง",, +"product.product_part_295","PAPER TAPE /กระดาษกาว","SP02017","Installation","pcs",,,"Palete",,"Store ชั้น 2",, +"product.product_part_296","DOOR RUBBER SEAL DIA 7 mm","SP02018","Installation","m",,,"Palete",,"Store ชั้น 2",, +"product.product_part_297","SEALANT ( GREY )","SP02021","Installation","tube",,,"ซิลิโคน",,"ห้องเคมี",, +"product.product_part_298","WINDOW RUBBER SEAL NO,27612","SP02022","Installation","m",,,"02-02",,"Store ชั้น 2",, +"product.product_part_299","WINDOW RUBBER SEAL NO,27619","SP02023","Installation","m",,,"02-02",,"Store ชั้น 2",, +"product.product_part_300","WEATHERKOTE ( 1GALLON @ 18.5 KG. )","SP02024","Installation","kg",,,"ซิลิโคน",,"ห้องเคมี",, +"product.product_part_301","WATER PROOF PLASTIC","SP02025","Installation","roll",,,"Palete",,"Store ชั้น 2",, +"product.product_part_302","DOOR RUBBER SEAL ( MODEL E)","SP02026","Installation","m",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_303","DOOR HINGE 175X50X30 mm(L)","SP02027","Installation","pcs",,,"Palete",,"Store ชั้น 2",, +"product.product_part_304","DOOR LATCH 1178 LS","SP02028","Installation","set",,,"02-02",,"Store ชั้น 2",, +"product.product_part_305","DOOR HINGE 1245 HS","SP02029","Installation","set",,,"02-02",,"Store ชั้น 2",, +"product.product_part_306","RELIEF PORT PRESSURE","SP02030","Installation","set",,,"02-02",,"Store ชั้น 2",, +"product.product_part_307","PLAIN WASHER 3/8"" SUS","SP02031","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_308","STUD BOLT 3/8"" X 1M","SP02032","Installation","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_309","BOTTOM GUIDE","SP02033","Installation","set",,,"02-09",,"Store ชั้น 2",, +"product.product_part_310","ROLLER FOR SLIDING DOOR","SP02034","Installation","set",,,"02-03",,"Store ชั้น 2",, +"product.product_part_311","BOTTOM GUIDE RIGHT","SP02035","Installation","set",,,"02-08",,"Store ชั้น 2",, +"product.product_part_312","SLIDING DOOR LOCK ( L1 )","SP02036","Installation","set",,,"02-03",,"Store ชั้น 2",, +"product.product_part_313","TURN BUCKLE 3/8""","SP02037","Installation","pcs",,,"Palete",,"Store ชั้น 2",, +"product.product_part_314","PVC CAP FOR CAMLOCK","SP02038","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_315","DURACON 1/2""X110mm","SP02039","Installation","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_316","DURACON 1/2""X170mm","SP02040","Installation","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_317","SLIDING DOOR LOCK ( L2 )","SP02041","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_318","LONG NUT 3/8""","SP02042","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_319","BOLT M8X45","SP02043","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_320","BOLT M8X25","SP02044","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_321","WATER PROOF SWITCH","SP02045","Installation","set",,,"02-03",,"Store ชั้น 2",, +"product.product_part_322","SOCKET BOLT 3/8"" X 4/8""","SP02046","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_323","SPRING WASHER 3/8""","SP02047","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_324","AL CHECKER PLATE","SP02048","Installation","pcs",,,,,"ไม่มีของ",, +"product.product_part_325","SOCKET BOLT SUS 5/16""X/1/ 1/4""","SP02049","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_326","SOCKET BOLT SUS 3/8"" X/1/ 1/4""","SP02050","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_327","WIRE SLING 1/4""","SP02051","Installation","m",,,"02-03",,"Store ชั้น 2",, +"product.product_part_328","U-CLIP 1/4""","SP02052","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_329","ANCHOR BOLT 3/8""","SP02053","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_330","ANGLE FOR EDGE DOOR HANDLE","SP02054","Installation","pcs",,,,,"ไม่มีของ",, +"product.product_part_331","SILICONE BUTYL","SP02055","Installation","tube",,,"ซิลิโคน",,"ห้องเคมี",, +"product.product_part_332","BOLT & NUT M6 X 15","SP02056","Installation","pcs",,,"02-03",,"Store ชั้น 2",,"แก้ไข Loc_Rack / Loc Row" +"product.product_part_333","STUD BOLT M6 X 1 m","SP02058","Installation","pcs",,,"02-09",,"Store ชั้น 2",, +"product.product_part_334","U - BOLT M6","SP02059","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_335","BOLT 3/8""X3""","SP02060","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_336","T - BAR JOINT 16.3X130 mm","SP02061","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_337","BOLT M6X10","SP02062","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_338","BOLT M6X25","SP02063","Installation","pcs",,,"02-03",,"Store ชั้น 2",, +"product.product_part_339","VCT CABLE 2X1.5 mm","SP02070","Installation","m",,,"02-04",,"Store ชั้น 2",, +"product.product_part_340","TEMPER GLASS 587X587X5 mm","SP02071","Installation","pcs",,,"กระจก",,"โกดังคอยล์",, +"product.product_part_341","HEXAGON NUT 1/2","SP02072","Installation","pcs",,,"02-04",,"Store ชั้น 2",, +"product.product_part_342","ACRILIC NDAP WHITE","SP02073","Installation","pcs",,,"ซิลิโคน",,"ห้องเคมี",, +"product.product_part_343","ELBOW WIRE MAN 20 mm","SP02074","Installation","pcs",,,"02-04",,"Store ชั้น 2",, +"product.product_part_344","CONNECTOR WIRE MAN 20 mm","SP02075","Installation","pcs",,,"02-04",,"Store ชั้น 2",, +"product.product_part_345","WIRE MAN 20mm THREAD CONNECTOR","SP02076","Installation","pcs",,,"02-04",,"Store ชั้น 2",, +"product.product_part_346","PVC PIPE SUPPORT","SP02077","Installation","pcs",,,"02-04",,"Store ชั้น 2",, +"product.product_part_347","FLOOR HEATER","SP02078","Installation","set",,,"02-04",,"Store ชั้น 2",, +"product.product_part_348","DOOR KNOB ( SHOWA )","SP02079","Installation","pcs",,,"02-04",,"Store ชั้น 2",, +"product.product_part_349","SLIDING DOOR CLOSER ( SLIDE )","SP02080","Installation","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_350","D-HANDLE SS 60X240","SP02081","Installation","pcs",,,"02-04",,"Store ชั้น 2",, +"product.product_part_351","ROLLER FOR SLIDING DOOR","SP02082","Installation","pcs",,,"02-04",,"Store ชั้น 2",, +"product.product_part_352","ROCK SET FOR SLIDING DOOR","SP02083","Installation","pcs",,,"02-04",,"Store ชั้น 2",, +"product.product_part_353","CAM LIFT RING SAFETY LATCH 1178 PS3","SP02084","Installation","pcs",,,,,"Store ชั้น 2",, +"product.product_part_354","PLASTIC WASHER","SP02085","Installation","pcs",,,"02-04",,"Store ชั้น 2",, +"product.product_part_355","WATER PROOF FLUORESCENT HOUSING 1X36W","SP02086","Installation","pcs",,,"02-04",,"Store ชั้น 2",, +"product.product_part_356","FLUORESCENT TUBS 36 W","SP02087","Installation","pcs",,,"02-05",,"Store ชั้น 2",, +"product.product_part_357","BALLAST 36 W","SP02088","Installation","pcs",,,"02-05",,"Store ชั้น 2",, +"product.product_part_358","STARTER 36 W","SP02089","Installation","pcs",,,"02-05",,"Store ชั้น 2",, +"product.product_part_359","DOOR HINGE 1460HS","SP02091","Installation","pcs",,,"02-05",,"Store ชั้น 2",, +"product.product_part_360","SAFETY RELEASE L118 mm","SP02093","Installation","pcs",,,"02-05",,"Store ชั้น 2",, +"product.product_part_361","I - BOLT 3/8 X 120","SP02094","Installation","pcs",,,"02-05",,"Store ชั้น 2",, +"product.product_part_362","DURACON 1/2 * 200 mm","SP02095","Installation","set",,,"02-05",,"Store ชั้น 2",, +"product.product_part_363","DUST-PROOF FEMALE DOOR BOLT","SP02096","Installation","pcs",,,"02-05",,"Store ชั้น 2",, +"product.product_part_364","BOTTOM SEAL ( CLEAN ROOM)","SP02097","Installation","m",,,"02-05",,"Store ชั้น 2",, +"product.product_part_365","POINT HAGING BRACKET 35X58 ( 10 mm )","SP02099","Installation","pcs",,,"02-05",,"Store ชั้น 2",, +"product.product_part_366","BOX E210 ONE WAY","SP02100","Installation","pcs",,,"02-05",,"Store ชั้น 2",, +"product.product_part_367","BOX E210 TWO WAY","SP02101","Installation","pcs",,,"02-05",,"Store ชั้น 2",, +"product.product_part_368","BOX E210 TREE WAY","SP02102","Installation","pcs",,,"02-05",,"Store ชั้น 2",, +"product.product_part_369","POINT HAGING BRACKET 35X58 ( 27 mm )","SP02103","Installation","pcs",,,"02-12",,"Store ชั้น 2",, +"product.product_part_370","DOOR LEVER( SHOWA )เขาควาย","SP02104","Installation","pcs",,,,,"Store ชั้น 2",, +"product.product_part_371","U-CHANNEL 42 mm","SP02105","Installation","pcs",,,,,"ไม่มีของ",, +"product.product_part_372","PACKING FOAM TAPE","SP02106","Installation","roll",,,"02-05",,"Store ชั้น 2",, +"product.product_part_373","BOTTOM GUIDE ( SLIDING DOOR )","SP02107","Installation","pcs",,,"02-06",,"Store ชั้น 2",, +"product.product_part_374","DOOR BOLT NO.111","SP02110","Installation","pcs",,,"02-06",,"Store ชั้น 2",, +"product.product_part_375","POINT HANGING BRAKET 58X43","SP02111","Installation","pcs",,,"02-05",,"Store ชั้น 2",, +"product.product_part_376","DROP SEAL 930","SP02114","Installation","pcs",,,"02-06",,"Store ชั้น 2",, +"product.product_part_377","DROP SEAL 1230","SP02116","Installation","pcs",,,"02-06",,"Store ชั้น 2",, +"product.product_part_378","SCREW ( ROUND HEAD ) 8 X 1 1/2""","SP02117","Installation","pcs",,,"02-06",,"Store ชั้น 2",, +"product.product_part_379","PLASTIC ANCHOR","SP02118","Installation","pcs",,,"02-06",,"Store ชั้น 2",, +"product.product_part_380","SILICONE NP-1 P.U. WHITE-CTG","SP02119","Installation","pcs",,,"ซิลิโคน",,"ห้องเคมี",, +"product.product_part_381","DOUBLE DOOR LATCH 1178 PS2","SP02120","Installation","set",,,"02-06",,"Store ชั้น 2",, +"product.product_part_382","DROP SEAL 1085","SP02122","Installation","pcs",,,"02-06",,"Store ชั้น 2",, +"product.product_part_383","3 M DOUBLE TAPE ( 18mm )","SP02123","Installation","roll",,,"02-09",,"Store ชั้น 2",, +"product.product_part_384","WASHER 3/8"" OD 22 mm","SP02124","Installation","pcs",,,"02-06",,"Store ชั้น 2",, +"product.product_part_385","DOOR STOPER","SP02126","Installation","pcs",,,"02-06",,"Store ชั้น 2",, +"product.product_part_386","SCREW TEPER HEAD NO.8X1 1/2""","SP02127","Installation","pcs",,,"02-06",,"Store ชั้น 2",, +"product.product_part_387","SAFETY RELEASE L130 mm","SP02128","Installation","pcs",,,"02-06",,"Store ชั้น 2",, +"product.product_part_388","TURN BUCKLE M6","SP02133","Installation","pcs",,,"02-07",,"Store ชั้น 2",, +"product.product_part_389","SEALANT ( WHITE ) 6S","SP02134","Installation","tube",,,"ซิลิโคน",,"ห้องเคมี",, +"product.product_part_390","DOOR HINGE 175X50X30 mm(R)","SP02135","Installation","pcs",,,"Palete",,"Store ชั้น 2",, +"product.product_part_391","PULL HANDLE PH 301-8""","SP02140","Installation","pcs",,,"02-10",,"Store ชั้น 2",, +"product.product_part_392","PUSH PLATE HANDLE 8""","SP02141","Installation","pcs",,,"02-07",,"Store ชั้น 2",, +"product.product_part_393","SAVPRO 307 CLEANER","SP02142","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_394","RETURN GRILL","SP02143","Installation","pcs",,,"Palete",,"ด้านล่าง",, +"product.product_part_395","RUBBER PACKING RETURN GRILL","SP02144","Installation","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_396","PULL HANDLE "" V ""","SP02147","Installation","set",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_397","PUSH PLATE HANDLE (W)150 X (L)285 X 2 mm","SP02148","Installation","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_398","DOOR RUBBER SEAL FOR DOUBLE SWING DOOR","SP02149","Installation","m",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_399","SHOWA DEADLOCK 397-05-US32D -50","SP02150","Installation","set",,,"02-07",,"Store ชั้น 2",, +"product.product_part_400","NYLON HINGE CFG160L-BRP","SP02151","Installation","pcs",,,,,"ไม่มีของ",, +"product.product_part_401","NYLON HANDLE MFG 110/007","SP02152","Installation","pcs",,,,,"ไม่มีของ",, +"product.product_part_402","TEMPER GLASS 447X587X5 mm","SP02156","Installation","pcs",,,"กระจก",,"โกดังคอยล์",, +"product.product_part_403","STAINLESS PLATE ครึ่งวงกลม","SP02158","Installation","pcs",,,"02-07",,"Store ชั้น 2",, +"product.product_part_404","HANGING FOR STUD 3/8""","SP02160","Installation","pcs",,,"02-12",,"Store ชั้น 2",, +"product.product_part_405","SUPPORT ADJUSTMENT FOR SWING DOOR","SP02161","Installation","set",,,"02-07",,"Store ชั้น 2",, +"product.product_part_406","SUPPORT ADJUSTMENT FOR CEILING JOINT","SP02162","Installation","set",,,"02-07",,"Store ชั้น 2",, +"product.product_part_407","STUD BOLT 3/8"" X 1M เกลียวซ้าย","SP02163","Installation","pcs",,,,,"ไม่มีของ",, +"product.product_part_408","NUT 3/8"" เกลียวซ้าย","SP02164","Installation","pcs",,,"02-07",,"Store ชั้น 2",, +"product.product_part_409","SCREWเกลียวปล่อย(T) #8 X 2 1/2"" (ยิงข้างประตู)","SP02165","Installation","pcs",,,"02-01",,"Store ชั้น 2",, +"product.product_part_410","TEMPER GLASS 1158X900X5 mm","SP02169","Installation","pcs",,,"กระจก",,"โกดังคอยล์",, +"product.product_part_411","HANGING FOR HEPA(เกลียวซ้าย3/8"")","SP02170","Installation","pcs",,,"02-09",,"Store ชั้น 2",, +"product.product_part_412","HANDLE FOR FREEZER DOOR","SP02171","Installation","pcs",,,"02-08",,"Store ชั้น 2",, +"product.product_part_413","SUS STUD M6 X 1 m(เกลียวมิล)","SP02172","Installation","pcs",,,"04-09",,"ออฟฟิสสโตร์",, +"product.product_part_414","SUS HEX CAP NUT M6 (เกลียวมิล)","SP02173","Installation","pcs",,,"04-09",,"ออฟฟิสสโตร์",, +"product.product_part_415","SUS WASHER M6","SP02174","Installation","pcs",,,"04-09",,"ออฟฟิสสโตร์",, +"product.product_part_416","STUD 3/8"" X 2 m","SP02175","Installation","pcs",,,"ข้างห้องเคมี",,"ด้านล่าง",, +"product.product_part_417","HINGE FOR AHU DOOR","SP02176","Installation","pcs",,,"02-08",,"Store ชั้น 2",, +"product.product_part_418","HANDLE FOR AHU DOOR THK.25 mm","SP02177","Installation","pcs",,,"02-09",,"Store ชั้น 2",, +"product.product_part_419","HANDLE FOR AHU DOOR THK.50 mm","SP02178","Installation","pcs",,,"02-08",,"Store ชั้น 2",, +"product.product_part_420","CONDENSE STOP GLASS 170X170X25 mm","SP02179","Installation","set",,,"02-08",,"Store ชั้น 2",, +"product.product_part_421","CONDENSE STOP GLASS 170X170X50 mm","SP02180","Installation","set",,,"02-08",,"Store ชั้น 2",, +"product.product_part_422","AIR RETURN FILTER 530X530X10 mm","SP02181","Installation","pcs",,,,,"ไม่มีของ",, +"product.product_part_423","DOOR PACKING EPDM SAPSQ-05 FOR AHU","SP02182","Installation","m",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_424","DOOR PACKING EPDM SAPSQ-06 FOR CLEAN ROOM","SP02183","Installation","m",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_425","SELF DRILLING SCREW # 8 X 3/4"" (TRUSS HEAD)","SP02184","Installation","pcs",,,"02-09",,"Store ชั้น 2",, +"product.product_part_426","POP RIVET 5-8","SP02185","Installation","pcs",,,"02-09",,"Store ชั้น 2",, +"product.product_part_427","PACKING SANTOPRENE SAPSQ-04 FOR RETURN GRILL","SP02186","Installation","m",,,,,"ไม่มีของ",, +"product.product_part_428","SELF DRILLING SCREW # 6 X 3/4"" (PAN HEAD)","SP02187","Installation","pcs",,,"02-07",,"Store ชั้น 2",, +"product.product_part_429","DOOR EPDM SAPSQ-08 FOR AHU 50 mm","SP02194","Installation","m",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_430","HINGE FOR CLEAN ROOM DOOR MODEL: KIN LONG LHD (LEFT)","SP02195","Installation","set",,,"Palete",,"Store ชั้น 2",, +"product.product_part_431","HINGE FOR CLEAN ROOM DOOR MODEL: KIN LONG LHD (RIGHT)","SP02196","Installation","set",,,"Palete",,"Store ชั้น 2",, +"product.product_part_432","DOOR CLOSER DORMA : TS 90","SP02197","Installation","set",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_433","สี SPRAY(OFF WHITE) 2K สีครีม # 6769","SP02198","Installation","pcs",,,"02-10",,"Store ชั้น 2",, +"product.product_part_434","สี SPRAY(ALPINE WHITE) 2K สีครีมด้าน # 6775","SP02199","Installation","pcs",,,"02-10",,"Store ชั้น 2",, +"product.product_part_435","ADJUST LEVEL BASE FOR NON PROGRESSIVE","SP02200","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_436","SPACING KEY FOR NON PROGRESSIVE","SP02201","Installation","pcs",,,"02-09",,"Store ชั้น 2",, +"product.product_part_437","SPACING SPRING KEY LOCK FOR NON PROGRESSIVE","SP02202","Installation","pcs",,,"02-09",,"Store ชั้น 2",, +"product.product_part_438","KEY LOCK JOINT (A) FOR NON PROGRESSIVE แบบตรง","SP02203","Installation","pcs",,,"02-10",,"Store ชั้น 2",, +"product.product_part_439","KEY LOCK JOINT (B) FOR NON PROGRESSIVE แบบเกลียว","SP02204","Installation","pcs",,,"02-10",,"Store ชั้น 2",, +"product.product_part_440","CEILING SUPPORT (A) FOR NON PROGRESSIVE 3/8""เกลียวซ้าย","SP02205","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_441","CEILING SUPPORT (B) 4 WAYS FOR NON PROGRESSIVE","SP02206","Installation","pcs",,,"02-12",,"Store ชั้น 2",, +"product.product_part_442","CEILING SUPPORT (C) EDGE FOR NON PROGRESSIVE 3/8""เกลียวซ้าย","SP02207","Installation","pcs",,,"02-12",,"Store ชั้น 2",, +"product.product_part_443","กระดาษเช็ดกระจก WY PALL","SP02208","Installation","roll",,,"02-10",,"Store ชั้น 2",, +"product.product_part_444","TEST PORT AIR RETURN HEPA","SP02209","Installation","set",,,"02-10",,"Store ชั้น 2",, +"product.product_part_445","HEPA RETURN GRILL (W)649 X (H)649 X 2T","SP02210","Installation","pcs",,,"Palete",,,, +"product.product_part_446","SOCKET BOLT M5 X 30 mm","SP02211","Installation","pcs",,,"02-09",,"Store ชั้น 2",, +"product.product_part_447","PRE FILTER 586 X 586 X 10 mm","SP02212","Installation","pcs",,,,,"ไม่มีของ",, +"product.product_part_448","น้ำยาเช็ดกระจก MOSA","SP02213","Installation","gal",,,"02-11",,"Store ชั้น 2",, +"product.product_part_449","WINDOW FOR DOOR PANEL AHU 25 mm","SP02214","Installation","set",,,"02-11",,"Store ชั้น 2",, +"product.product_part_450","WINDOW FOR DOOR PANEL AHU 50 mm","SP02215","Installation","set",,,"02-11",,"Store ชั้น 2",, +"product.product_part_451","สกรูปลายสว่านหัวเตเปอร์ (ADF) #6 x 1"" ชุบขาว HOUSING","SP02216","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_452","สกรูปลายสว่านหัวเตเปอร์ (ADF) #8 x 2 1/2"" ชุบขาว HOUSING","SP02217","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_453","สกรูหัวเหลี่ยมปลายสว่าน-เกลียว 2 ขั้น #14-12 x 80 mm HOUSING","SP02218","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_454","สกรูปลายสว่านหัวกลม (ADP) #10 x 1/2"" ชุบขาว HOUSING","SP02219","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_455","สกรูปลายสว่านหัวกลม (ADF) #8 x 2"" ชุบขาว HOUSING","SP02220","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_456","STUD ต๊าปเกลียวหัวท้าย 1/2"" x 9"" (+2NUT +2WASHER ) ชุบขาว HOUSING","SP02221","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_457","โบล์ทหัวหกเหลี่ยมเกลียวครึ่ง 1/2"" x 6 1/2"" (+1NUT +2WASHER ) HOUSING","SP02222","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_458","J - Bolt 1/2"" (+1NUT +1WASHER ) HOUSING","SP02223","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_459","STEEL STUD 75x50x(T)0.8 mm L:3000 mm (Weight 3.8 kg/m2) HOUSING","SP02224","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_460","STEEL TRUCK 40x75x40x(T)0.8 L:3000 mm HOUSING","SP02225","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_461","STEEL COVER 35x102x35(T)0.8 L:3000 mm HOUSING","SP02226","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_461-1","ตัวกันกระแทกมือจับ","SP02227","Installation","pcs",,,"02-11",,"Store ชั้น 2",, +"product.product_part_462","DOUBLE TAPE ( 96 mm )/กาวสองหน้า","SP03001","Supplies","roll",,,"Palete",,"Store ชั้น 2",, +"product.product_part_463","SCRAP COTTON","SP03002","Supplies","roll",,,"Palete",,"Store ชั้น 2",, +"product.product_part_464","FILAMENT TAPE ( 18 mm )","SP03003","Supplies","roll",,,"03-01",,"Store ชั้น 2",, +"product.product_part_465","PLASTIC BAG ( 36"" X 46"" )","SP03004","Supplies","set",,,"03-01",,"Store ชั้น 2",, +"product.product_part_466","LATCH SHIMING PLATE","SP03005","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_467","PROTECTOR FILM (CLEAR)","SP03006","Supplies","roll",,,,,"โกดังคอยล์",, +"product.product_part_468","PROTECTOR FILM (BLUE)","SP03007","Supplies","roll",,,,,"โกดังคอยล์",, +"product.product_part_469","TURPENTINE(น้ำมันสน)","SP03008","Supplies","gal",,,"Palete",,"Store ชั้น 2",, +"product.product_part_470","THINNER "" AAA ""","SP03009","Supplies","gal",,,"Palete",,"Store ชั้น 2",, +"product.product_part_471","COTTON GLOVE","SP03010","Supplies","set",,,"03-01",,"Store ชั้น 2",, +"product.product_part_472","DOOR REINFORCED PLATE ขนาด 100 mm * 100 mm","SP03011","Supplies","pcs",,,"03-05",,"Store ชั้น 2",, +"product.product_part_473","REINFORCED BRACKET","SP03012","Supplies","pcs",,,"Palete",,"ด้านล่าง",, +"product.product_part_474","DOOR REINFORCED PLATE ขนาด 37mm * 170 mm","SP03013","Supplies","pcs",,,"03-05",,"Store ชั้น 2",, +"product.product_part_475","RUBBER GLOVE","SP03015","Supplies","set",,,"03-01",,"Store ชั้น 2",, +"product.product_part_476","HINGE SHIMING PLATE","SP03016","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_477","PLASTIC FILM","SP03017","Supplies","roll",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_478","CLIP LOCK FOR FASTENER","SP03018","Supplies","pcs",,,"03-01",,"Store ชั้น 2",, +"product.product_part_479","RELEASE AGENT ( WAX )","SP03019","Supplies","kg",,,"Palete",,"Store ชั้น 2",, +"product.product_part_480","FASTENER","SP03020","Supplies","roll",,,"03-01",,"Store ชั้น 2",, +"product.product_part_481","CLOTH TAPE","SP03021","Supplies","roll",,,"Palete",,"Store ชั้น 2",, +"product.product_part_482","METHYLENE CHLORIDE (ICI)","SP03022","Supplies","kg",,,"ซิลิโคน",,"ห้องเคมี",, +"product.product_part_483","CAMLOCK","SP03023","Supplies","pcs",,,"ซิลิโคน",,"ห้องเคมี",, +"product.product_part_484","3M DOUBLE TAP ( 12 mm )","SP03024","Supplies","roll",,,"03-06",,"Store ชั้น 2",, +"product.product_part_485","DOOR FRAME HEATER","SP03025","Supplies","m",,,"03-06",,"Store ชั้น 2",, +"product.product_part_486","INSIDE DOOR HANDLE","SP03026","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_487","DOOR LEAF HANGER( R )","SP03027","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_488","DOOR LEAF HANGER ( L )","SP03028","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_489","SCREW M6X30","SP03029","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_490","SLIDING DOOR SEAL","SP03030","Supplies","m",,,"03-06",,"Store ชั้น 2",, +"product.product_part_491","EDGE DOOR HANDLE W 110 mm","SP03031","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_492","STICKER LOGO","SP03032","Supplies","pcs",,,"03-01",,"Store ชั้น 2",, +"product.product_part_493","PVC PROJILE FOR DOOR SEAL","SP03033","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_494","CRAFT PAPER BROWN 102X200","SP03034","Supplies","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_495","SCREW M6X20 SUS","SP03035","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_496","PACKING S.76101","SP03036","Supplies","m",,,"03-06",,"Store ชั้น 2",, +"product.product_part_497","INSA NUT (ตัวหนอน) M6 X 13","SP03037","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_498","SCREW ( TAPER HEAD ) M6 X30 SUS.","SP03038","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_499","SCREW MIL ( TAPER HEAD ) M6X45","SP03039","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_500","SCREW ( TAPER HEAD )M6X45 SUS","SP03040","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_501","CHEMICAL GLOVE","SP03041","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_502","BLACK STEEL SHEET 1.2mm 4' X 8'","SP03042","Supplies","pcs",,,,,"โกดังคอยล์",, +"product.product_part_503","STEEL PLATE 6X100X200 mm","SP03043","Supplies","pcs",,,,,"ไม่มีของ",, +"product.product_part_504","SCRAP COTTON ( WHITE )","SP03044","Supplies","kg",,,"Palete",,"Store ชั้น 2",, +"product.product_part_505","SLIDING DOOR FLUSH HANDLE","SP03045","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_506","EDGE DOOR HANDLE W 130 mm","SP03046","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_507","ใบเลื่อย JIG SAW สั้น","SP03047","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_508","ใบเลื่อย JIG SAW ยาว","SP03048","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_509","ดอกสว่าน 5/32""","SP03049","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_510","ดอกสว่าน 1/8""","SP03050","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_511","ผ้าปิดจมูก","SP03051","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_512","แปรงทาสี NO.3","SP03052","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_513","แปรงทาสี NO.4","SP03053","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_514","เกียง NO.2","SP03054","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_515","เกียง NO.3","SP03055","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_516","เกียง NO.4","SP03056","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_517","กระดาษทรายละเอียด NO.600","SP03057","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_518","กระดาษทรายละหยาบ NO.80","SP03058","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_519","เข็มขัดรัดสายฉีดโฟม DIA1X27-40 mm","SP03061","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_520","เข็มขัดรัดสายฉีดโฟม DIA1X28-41 mm","SP03062","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_521","สีซ่อมแผ่น ตราใบพัด IVORY","SP03065","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_522","สีซ่อมแผ่น ตราใบพัด OFF WHITE","SP03066","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_523","สีซ่อมแผ่น ตราใบพัด ALPINE WHITE","SP03067","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_524","เทปพันสายไฟ","SP03068","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_525","เทปพันเกลียว","SP03069","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_526","หินเจียรใบบาง","SP03070","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_527","หินเจียรใบหนา","SP03071","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_528","บอลวาล์ว 1/2""","SP03072","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_529","บอลวาล์ว 3/4""","SP03073","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_530","ก๊อกน้ำ 1/2""","SP03074","Supplies","pcs",,,"03-02",,"Store ชั้น 2",, +"product.product_part_531","หลอดไฟสั้น","SP03075","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_532","ลวดเชื่อม SUS 2.6X300 mm","SP03076","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_533","ลวดเชื่อม SUS 3.2X350 mm","SP03077","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_534","ลวดเชื่อม 2.6X350 mm","SP03078","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_535","ลวดเชื่อม 3.2X350 mm","SP03079","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_536","ฟอร์ย","SP03080","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_537","RIVET 4-6","SP03081","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_538","ใบหินเจียร 350X3X25.4 mm(14"")","SP03082","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_539","ใบหินเจียร 350X3X25.4 mm(16"")","SP03083","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_540","ใบตัด AL 12""","SP03084","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_541","ใบตัด AL 14""","SP03085","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_542","SCREW TEPER NO.7X1 1/2""","SP03087","Supplies","pcs",,,,,,, +"product.product_part_543","SCREW TEPER NO.10X3/4""","SP03088","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_544","SCREW TEPER NO.8X5/8""","SP03089","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_545","ภู่กัน NO.5","SP03091","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_546","ภู่กัน NO.10","SP03092","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_547","ฆ้อนยาง","SP03094","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_548","ก๊อกน้ำ 3/4""","SP03108","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_549","บอลวาล์ว 1 1/2""","SP03109","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_550","กาวตราช้าง","SP03110","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_551","ใบมีดคัดเตอร์","SP03111","Supplies","pcs",,,,,"ไม่มีของ",, +"product.product_part_552","คัตเตอร์","SP03112","Supplies","pcs",,,,,"ไม่มีของ",, +"product.product_part_553","CORRO-COAT PE BLUE NO.C1004800(BLUE)","SP03113","Supplies","kg",,,"สีฝุ่น",,"ห้องเคมี",, +"product.product_part_554","POLY FOAM 2'X4'X6 mm (โฟมขาว)","SP03114","Supplies","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_555","CORRO-COAT PE NO.C122110A (GREEN)","SP03115","Supplies","kg",,,"สีฝุ่น",,"ห้องเคมี",, +"product.product_part_556","NITTO PAPER MARKING TAPE NO.720(18mm X 18 m)","SP03116","Supplies","pcs",,,"03-03",,"Store ชั้น 2",, +"product.product_part_557","กล่องกุญแจตัวเล็กสำหรับ DEADLOCK,PASSDOOR","SP03117","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_558","กล่องกุญแจตัวใหญ่สำหรับเขาควาย","SP03118","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_559","ไม้อัด (W)1200 X (H)2400 X10mm","SP03119","Supplies","pcs",,,,,"ไม่มีของ",, +"product.product_part_560","VIVA BROAD (W)1200 X (H)2400 X10mm","SP03120","Supplies","pcs",,,,,"ไม่มีของ",, +"product.product_part_561","ท่อสายใยลวด 1""(สายยางฉีดโฟม)","SP03121","Supplies","m",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_562","E.mT. CONDUIT 3/4"" L : 4m","SP03127","Supplies","pcs",,,,,"โกดังอะลูมิเนียม",, +"product.product_part_563","กาวเลย์ ROCK WOOL","SP03131","Supplies","kg",,,"สีฝุ่น",,"ห้องเคมี",, +"product.product_part_564","กาวพ่น STAINLESS","SP03132","Supplies","gal",,,"Palete",,"Store ชั้น 2",, +"product.product_part_565","พลาสติกกันกระแทก","SP03133","Supplies","pcs",,,,,"Store ชั้น 2",, +"product.product_part_566","ดอกสว่าน STAINLESS 1/8""","SP03134","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_567","ดอกสว่าน STAINLESS 5/32""","SP03135","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_568","ดอกสว่าน STAINLESS 9/64""","SP03136","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_569","ดอกHOLESAW 19 mm(ฟันคาร์ไบน์)","SP03137","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_570","ดอกHOLESAW 28 mm(ฟันคาร์ไบน์)","SP03138","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_571","ดอกHOLESAW 58 mm(ฟันคาร์ไบน์)","SP03139","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_572","SILICONE N-100 BLACK","SP03140","Supplies","pcs",,,"ซิลิโคน",,"ห้องเคมี",, +"product.product_part_573","ปากกาเคมี สีน้ำเงิน","SP03142","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_574","ปากกาเคมี สีแดง","SP03143","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_575","DOOR REINFORCED PLATE ขนาด 25mm * 170 mm","SP03147","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_576","CORNER RUBBER DOOR","SP03149","Supplies","pcs",,,"03-05",,"Store ชั้น 2",, +"product.product_part_577","บานพับ CM-1132-HS","SP03150","Supplies","set",,,"03-04",,"Store ชั้น 2",, +"product.product_part_578","CORRO-COAT PE NO.C120398A (GRAY)","SP03152","Supplies","kg",,,"สีฝุ่น",,"ห้องเคมี",, +"product.product_part_579","POWDER COATINGS : MONACA BLUE 1020816PX20( PE-7002)","SP03153","Supplies","kg",,,"สีฝุ่น",,"ห้องเคมี",, +"product.product_part_580","POWDER COATINGS :CAMPANULA BLUE 1020815PX20( PE-7002)","SP03154","Supplies","kg",,,"สีฝุ่น",,"ห้องเคมี",, +"product.product_part_581","PE FOAM WITH LAMINATE SIZE (W)1300X(L)15000X(T)1.0 mm","SP03155","Supplies","roll",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_582","REINFORCED BRACKET3/8""เกลียวซ้าย","SP03156","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_583","POWDER COATINGS : ALPINE WHITE PE-7082 1023653PX20 (MATT WHITE)","SP03157","Supplies","kg",,,"สีฝุ่น",,"ห้องเคมี",, +"product.product_part_584","POWDER COATINGS : OFF WHITE PE-7082 1023652PX20 (LIGHT GREY)","SP03158","Supplies","kg",,,"สีฝุ่น",,"ห้องเคมี",, +"product.product_part_585","POWDER COATINGS : BLUE PE-7082 1023654PX20 (BLUE)","SP03159","Supplies","kg",,,"สีฝุ่น",,"ห้องเคมี",, +"product.product_part_586","REINFORCED PLATE 100 X 300","SP03160","Supplies","pcs",,,"Palete",,"ด้านล่าง",, +"product.product_part_587","REINFORCED PLATE 100 X 100+ไม้10mm","SP03161","Supplies","pcs",,,"Palete",,"Store ชั้น 2",, +"product.product_part_588","RUBBER PLUG FOR RETURN GRILL","SP03162","Supplies","pcs",,,"03-04",,"Store ชั้น 2",, +"product.product_part_589","ASTRO SCREEN INK NO.120 WHITE","SP03164","Supplies","kg",,,"03-04",,"Store ชั้น 2",, +"product.product_part_590","น้ำมันผสม TANAKA SOLVENT NO.35","SP03165","Supplies","kg",,,"Palete",,"Store ชั้น 2",, +"product.product_part_591","น้ำมันล้าง TANAKA SOLVENT NO.30","SP03166","Supplies","kg",,,"Palete",,"Store ชั้น 2",, +"product.product_part_592","บูธ บานพับ KINLONG","SP03167","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_593","กล่องกุญแจตัวเล็กสำหรับ DEADLOCK,PASSDOOR FOR DORMA","SP03169","Supplies","pcs",,,"03-05",,"Store ชั้น 2",, +"product.product_part_594","กล่องกุญแจตัวใหญ่สำหรับเขาควาย FOR DORMA","SP03170","Supplies","pcs",,,"03-05",,"Store ชั้น 2",, +"product.product_part_595","DORMA DST208/55mm(DEAD LOCK SET)","SP03171","Supplies","set",,,"03-05",,"Store ชั้น 2",, +"product.product_part_596","DORMA PURE8100 HANDLE (ชุดเขาควาย)","SP03172","Supplies","set",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_597","HINGE SUPPORT FOR KINLONG","SP03173","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_598","ANGLE LOCK 90?(80X80X1.6mm)","SP03174","Supplies","pcs",,,"03-06",,"Store ชั้น 2",, +"product.product_part_599","PLATE ""PULL""","SP03175","Supplies","pcs",,,"04-10",,"Store ชั้น 2",, +"product.product_part_600","PLATE ""PUSH""","SP03176","Supplies","pcs",,,"04-10",,"Store ชั้น 2",, +"product.product_part_601","PLATE ""ดึง""","SP03177","Supplies","pcs",,,"04-10",,"Store ชั้น 2",, +"product.product_part_602","PLATE ""ผลัก""","SP03178","Supplies","pcs",,,"04-10",,"Store ชั้น 2",, +"product.product_part_603","POWDER COATINGS : CHROME PU-6709 1012202PX15","SP03179","Supplies","kg",,,"04-10",,"Store ชั้น 2",, +"product.product_part_604","PVC FRAME FOR DAIKIN 25 mm","SP04001","PVC","pcs",,,"04-03",,"โกดังเก็บพีวีซี",, +"product.product_part_605","PVE FRAME FOR DAIKIN 41.5 mm","SP04002","PVC","pcs",,,"04-10",,"โกดังเก็บพีวีซี",, +"product.product_part_606","DOOR FRAME 42 mm","SP04004","PVC","pcs",,,"04-08",,"โกดังเก็บพีวีซี",, +"product.product_part_607","PVC FRAME 50 mm","SP04005","PVC","pcs",,,"04-20",,"โกดังเก็บพีวีซี",, +"product.product_part_608","PVC FRAME 75 mm","SP04006","PVC","pcs",,,"04-20",,"โกดังเก็บพีวีซี",, +"product.product_part_609","PVC FRAME 100 mm","SP04007","PVC","pcs",,,"04-04",,"โกดังเก็บพีวีซี",, +"product.product_part_610","DOOR FRAME 100 mm","SP04009","PVC","pcs",,,"04-01",,"โกดังเก็บพีวีซี",, +"product.product_part_611","PVC FRAME 25 mm","SP04010","PVC","pcs",,,"04-01",,"โกดังเก็บพีวีซี",, +"product.product_part_612","MALE FRAME [42mm]","SP04011","PVC","pcs",,,"04-08",,"โกดังเก็บพีวีซี",, +"product.product_part_613","FEMALE FRAME [42mm]","SP04012","PVC","pcs",,,"04-19",,"โกดังเก็บพีวีซี",, +"product.product_part_614","CORNER FRAME R,L [42mm]","SP04013","PVC","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_615","MALE FRAME 100 mm","SP04014","PVC","pcs",,,"04-16",,"โกดังเก็บพีวีซี",, +"product.product_part_616","PVC SPACER 42 mm","SP04016","PVC","pcs",,,"Palete",,"Store ชั้น 2",, +"product.product_part_617","PVC SPACER 50 mm","SP04017","PVC","pcs",,,"Palete",,"Store ชั้น 2",, +"product.product_part_618","PVC SPACER 75 mm","SP04018","PVC","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_619","PVC SPACER 100 mm","SP04019","PVC","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_620","PVC SPACER 125 mm","SP04020","PVC","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_621","PVC SPACER 150 mm","SP04021","PVC","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_622","PVC ELBOW FOR DOOR SEAL","SP04022","PVC","pcs",,,"04-04",,"Store ชั้น 2",, +"product.product_part_623","FLOOR & CEILING FRAME 100 mm","SP04023","PVC","pcs",,,"04-14",,"โกดังเก็บพีวีซี",, +"product.product_part_624","FEMALE FRAME 100 mm","SP04024","PVC","pcs",,,"04-07",,"โกดังเก็บพีวีซี",, +"product.product_part_625","PVC PIPE 20 mm","SP04027","PVC","pcs",,,"04-03",,"โกดังเก็บพีวีซี",, +"product.product_part_626","PVC FRAME ANGLE 65 mm(OFF WHITE)","SP04028","PVC","pcs",,,"04-22",,"โกดังเก็บพีวีซี",, +"product.product_part_627","PVC FRAME ANGLE 65 mm(ALPINE WHITE)","SP04033","PVC","pcs",,,"04-05",,"โกดังเก็บพีวีซี",, +"product.product_part_628","MALE FRAME 75 mm","SP04034","PVC","pcs",,,"04-14",,"โกดังเก็บพีวีซี",, +"product.product_part_629","FEMALE FRAME 75 mm","SP04035","PVC","pcs",,,"04-07",,"โกดังเก็บพีวีซี",, +"product.product_part_630","FLOOR & CEILING 75 mm","SP04036","PVC","pcs",,,"04-14",,"โกดังเก็บพีวีซี",, +"product.product_part_631","PVC CORNER 75 mm","SP04037","PVC","pcs",,,"04-04",,"Store ชั้น 2",, +"product.product_part_632","PVC FRAME 25 X 50 (SINKO)","SP04038","PVC","pcs",,,"04-07",,"โกดังเก็บพีวีซี",, +"product.product_part_633","PVC DOOR FRAME 49 mm","SP04039","PVC","pcs",,,"04-07",,"โกดังเก็บพีวีซี",, +"product.product_part_634","PVC FRAME H9X17X32 FOR TAKAHASHI","SP04040","PVC","pcs",,,"04-02",,"โกดังเก็บพีวีซี",, +"product.product_part_635","PVC FRAME H9X16X53 FOR TAKAHASHI","SP04041","PVC","pcs",,,"04-06",,"โกดังเก็บพีวีซี",, +"product.product_part_636","PVC FEMALE FRAME 42mm SIZE : L 2400 mm (@ 14.25/m)","SP04042","PVC","pcs",,,,,"โกดังเก็บพีวีซี",, +"product.product_part_637","ฝาฉีดโฟมตัวเมีย 42 mm","SP04043","PVC","pcs",,,"04-01",,"Store ชั้น 2",, +"product.product_part_638","ฝาฉีดโฟมตัวเมีย 50 mm","SP04044","PVC","pcs",,,"04-01",,"Store ชั้น 2",, +"product.product_part_639","ฝาฉีดโฟมตัวเมีย 75 mm","SP04045","PVC","pcs",,,"04-01",,"Store ชั้น 2",, +"product.product_part_640","ฝาฉีดโฟมตัวเมีย 100 mm","SP04046","PVC","pcs",,,"04-07",,"Store ชั้น 2",, +"product.product_part_641","ฝาฉีดโฟมตัวผู้ 42 mm","SP04047","PVC","pcs",,,"04-02",,"Store ชั้น 2",, +"product.product_part_642","ฝาฉีดโฟมตัวผู้ 50 mm","SP04048","PVC","pcs",,,"04-02",,"Store ชั้น 2",, +"product.product_part_643","ฝาฉีดโฟมตัวผู้ 75 mm","SP04049","PVC","pcs",,,"04-02",,"Store ชั้น 2",, +"product.product_part_644","ฝาฉีดโฟมตัวผู้ 100 mm","SP04050","PVC","pcs",,,"04-08",,"Store ชั้น 2",, +"product.product_part_645","PVC GUIDE 26X29 mm (สีขาว) L:2200 mm","SP04051","PVC","pcs",,,,,"โกดังเก็บพีวีซี",, +"product.product_part_646","PVC GUIDE 26X86 mm (สีขาว) L:2200 mm","SP04052","PVC","pcs",,,"04-01",,"โกดังเก็บพีวีซี",, +"product.product_part_647","PVC GUIDE 29X27X26 mm (สีขาว) L:2200 mm","SP04053","PVC","pcs",,,"04-01",,"โกดังเก็บพีวีซี",, +"product.product_part_648","PVC FRAME FOR DAIKIN 25X25X49 mm (สีเทา) L:3000 mm","SP04054","PVC","pcs",,,"04-05",,"โกดังเก็บพีวีซี",, +"product.product_part_649","END CAP FOR DOORCLOSER (R)","SP04055","PVC","pcs",,,"04-04",,"Store ชั้น 2",, +"product.product_part_650","END CAP FOR DOORCLOSER (L)","SP04056","PVC","pcs",,,"04-04",,"Store ชั้น 2",, +"product.product_part_651","PVC FRAME 42 mm(OW)","SP04057","PVC","pcs",,,"หน้าห้องเคมี",,"โกดังเก็บพีวีซี",, +"product.product_part_652","PVC CURVE OUTSIDE(OFF WHITE)","SP04059","PVC","set",,,"04-04",,"Store ชั้น 2",, +"product.product_part_653","PVC CURVE OUTSIDE(ALPINE WHITE)","SP04060","PVC","set",,,,,"ไม่มีของ",, +"product.product_part_654","PVC CORNER 65mmTYPE""B""(OFF WHITE)","SP04061","PVC","set",,,"04-03",,"Store ชั้น 2",, +"product.product_part_655","PVC CORNER 65mmTYPE""B""(ALPINE WHITE)","SP04062","PVC","set",,,"04-03",,"Store ชั้น 2",, +"product.product_part_656","FLOOR & CEILING FRAME 50 mm","SP04070","PVC","pcs",,,"04-01",,"โกดังเก็บพีวีซี",, +"product.product_part_657","MALE FRAME 50 mm","SP04071","PVC","pcs",,,"04-06",,"โกดังเก็บพีวีซี",, +"product.product_part_658","LOCK PIPE ? 3/4""","SP04072","PVC","pcs",,,"04-07",,"Store ชั้น 2",, +"product.product_part_659","END CAP FOR FLOOR & CEILING FRAME 50 mm (R)","SP04076","PVC","pcs",,,"04-05",,"Store ชั้น 2",, +"product.product_part_660","END CAP FOR FLOOR & CEILING FRAME 50 mm (L)","SP04077","PVC","pcs",,,"04-05",,"Store ชั้น 2",, +"product.product_part_661","END CAP FOR DOOR CLOSER DOR MA (R)","SP04079","PVC","pcs",,,"04-05",,"Store ชั้น 2",, +"product.product_part_662","END CAP FOR DOOR CLOSER DORMA (L)","SP04080","PVC","pcs",,,"04-05",,"Store ชั้น 2",, +"product.product_part_663","PVC GUIDE FOR DOOR AND WINDOW 42 mm","SP04081","PVC","pcs",,,,,"โกดังเก็บพีวีซี",, +"product.product_part_664","PVC GUIDE FOR DOOR AND WINDOW 100 mm","SP04082","PVC","pcs",,,,,"โกดังเก็บพีวีซี",, +"product.product_part_665","PVC CONNECTOR 3/4""","SP04084","PVC","pcs",,,"04-05",,"Store ชั้น 2",, +"product.product_part_666","PP PIPE ? 3/4"" L : 2500 mm(สีดำ)","SP04086","PVC","pcs",,,"04-03",,"โกดังเก็บพีวีซี",, +"product.product_part_667","PVC ANGLE 65mmTYPE""C""(OFF WHITE)","SP04089","PVC","pcs",,,"04-08",,"Store ชั้น 2",, +"product.product_part_668","PVC ANGLE 65mmTYPE""C""(ALPINE WHITE)","SP04090","PVC","pcs",,,"04-08",,"Store ชั้น 2",, +"product.product_part_669","PVC DOOR FRAME 50 mm(AHU)","SP04093","PVC","pcs",,,"04-21",,"โกดังเก็บพีวีซี",, +"product.product_part_670","PVC PLUG (WHITE)","SP04094","PVC","pcs",,,"04-08",,"Store ชั้น 2",, +"product.product_part_671","PVC PLUG (GLEY)","SP04095","PVC","pcs",,,"04-06",,"Store ชั้น 2",, +"product.product_part_672","PVC GUIDE 25X36 mm (สีขาว) L:2200 mm","SP04096","PVC","pcs",,,"04-08",,"โกดังเก็บพีวีซี",, +"product.product_part_673","PVC GUIDE FOR DOOR AND WINDOW 50 mm","SP04097","PVC","pcs",,,"04-02",,"โกดังเก็บพีวีซี",, +"product.product_part_674","LAMP COVER ( PC ใส)","SP04098","PVC","pcs",,,"04-05",,"โกดังเก็บพีวีซี",, +"product.product_part_675","ฝาครอบสวิตช์ 1 ช่อง","SP04100","PVC","pcs",,,"04-06",,"Store ชั้น 2",, +"product.product_part_676","ฝาครอบสวิตช์ 2 ช่อง","SP04101","PVC","pcs",,,"04-06",,"Store ชั้น 2",, +"product.product_part_677","MOBILE DRIAN FOR BACK STOCK","SP04102","PVC","set",,,"04-06",,"Store ชั้น 2",, +"product.product_part_678","PVC DOOR FRAME 25 mm(AHU)","SP04103","PVC","pcs",,,"04-09",,"โกดังเก็บพีวีซี",, +"product.product_part_679","PVC DOOR PANEL 25 mm(AHU)","SP04104","PVC","pcs",,,"04-10",,"โกดังเก็บพีวีซี",, +"product.product_part_680","PVC CORNER COVER FOR BACK STOCK","SP04105","PVC","pcs",,,"04-06",,"Store ชั้น 2",, +"product.product_part_681","PP BOX 2"" X 4""","SP04106","PVC","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_682","GUID LIMIT SWITCH","SP04107","PVC","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_683","PLUG PVC FOR HINGE AHU","SP04108","PVC","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_684","PVC ENTRANCE FRAME 74 mm L:2500 mm(OW )","SP04109","PVC","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_685","PVC ENTRANCE FRAME 99 mm L:2500 mm(OW )","SP04110","PVC","pcs",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_686","POLYOL FOR WALL RETURN XUS.82790","SP05001","Materials","kg",,,"Palete",,"Store ชั้น 2 New",, +"product.product_part_687","POLYOL","SP05002","Materials","kg",,,"น้ำยาโฟม",,"ห้องเคมี",, +"product.product_part_688","ISOCYANATE","SP05003","Materials","kg",,,"น้ำยาโฟม",,"ตู้คอนเทรนเนอร์",, +"product.product_part_689","GI SHEET 0,4mm 914w","SP05004","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",,"แก้ไข Loc_Rack / Loc Row" +"product.product_part_690","GI SHEET 0,4mm 995w","SP05005","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_691","PPGI 0,5 mm 914w (OFF WHITE)","SP05006","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_692","PPGI 0,5mm 1219w (OFF WHITE)","SP05007","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_693","PPGI 0,5mm 914w (ALPINE WHITE)","SP05008","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_694","PPGI 0.5 mm.1219w(ALPINE WHITE)","SP05009","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_695","PPGI 0.8mm.914w(ALPINE WHITE)","SP05010","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_696","PPGI 0,5 mm 914w ( IVORY)","SP05011","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_697","GI SHEET 0,4mm 1219w","SP05012","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_698","STANLESS SHEET 0,5mm 1219w","SP05013","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_699","Kemtex Polyurethane Releasing Wax No.123 (15 kg./Pail)","SP05014","Materials","tank",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_700","PPGI 0.45mm 1219w (Anti Off White)","SP05015","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_701","PPGI 0.4mm.914w(OFF WHITE)","SP05016","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_702","PPGI SHEET 0.27mm.914w(non clean room)","SP05017","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_703","GI SHEET 0.5mm. 1219W (Skin pass)","SP05018","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_704","Polyol BAYDUR 41 BD 001i","SP05019","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_705","PPGI 0.75 MM. 914 W (OFF WHITE)","SP05020","Materials","kg",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_706","ROCKWOOL L 1200 x W 1100 x 100 MM THK.","SP05021","Materials","pcs",,,"เหล็ก",,"โกดังเก็บคอยล์",, +"product.product_part_707","AL RAIL FOR CLEAN ROOM(NA.1)","SP01057","Materials","pcs",,,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_708","AL RAIL FOR CLEAN ROOM(MF)","SP01058","Materials","pcs",,,,,"โกดังอะลูมิเนียม",, +"product.product_part_710","AL RAIL FOR CLEAN ROOM(AP)","SP01060","Materials","pcs",,,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_711","AL WINDOW FRAME 42 mm.(CUT AT SITE)(MF)","SP01126","Materials","pcs",,,"01-20",,"โกดังอะลูมิเนียม",, +"product.product_part_712","AL WINDOW FRAME 42 mm.(CUT AT SITE)(OW)","SP01127","Materials","pcs",,,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_713","AL WINDOW FRAME 42 mm.(CUT AT SITE)(AP)","SP01128","Materials","pcs",,,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_714","AL DOOR FRAME(FLUSH)(NA.1)","SP01137","Materials","pcs",,,,,"โกดังอะลูมิเนียม",, +"product.product_part_715","AL DOOR FRAME(FLUSH)(MF)","SP01138","Materials","pcs",,,"01-08",,"โกดังอะลูมิเนียม",, +"product.product_part_716","AL DOOR FRAME(FLUSH)(OW)","SP01139","Materials","pcs",,,"01-21",,"โกดังอะลูมิเนียม",, +"product.product_part_717","AL DOOR FRAME(FLUSH)(AP)","SP01140","Materials","pcs",,,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_718","AL PROFILE FOR LIGHTING 25 mm.(NA.1)","SP01169","Materials","pcs",,,,,"โกดังอะลูมิเนียม",, +"product.product_part_719","AL PROFILE FOR LIGHTING 25 mm.(MF)","SP01170","Materials","pcs",,,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_720","AL PROFILE FOR LIGHTING 25 mm.(OW)","SP01171","Materials","pcs",,,"01-16",,"โกดังอะลูมิเนียม",, +"product.product_part_721","AL PROFILE FOR LIGHTING 25 mm.(AP)","SP01172","Materials","pcs",,,,,"โกดังอะลูมิเนียม",, +"product.product_part_722","AL WINDOW FRAME 42 mm.(MF)","SP01178","Materials","pcs",,,"01-02",,"โกดังอะลูมิเนียม",, +"product.product_part_723","AL WINDOW FRAME 42 mm.(OW)","SP01179","Materials","pcs",,,"01-11",,"โกดังอะลูมิเนียม",, +"product.product_part_724","AL WINDOW FRAME 42 mm.(AP)","SP01180","Materials","pcs",,,"01-02",,"โกดังอะลูมิเนียม",, +"product.product_part_725","AL WINDOW FRAME100 mm.(NA.1)","SP01185","Materials","pcs",,,"01-10",,"โกดังอะลูมิเนียม",, +"product.product_part_726","AL WINDOW FRAME100 mm.(MF)","SP01186","Materials","pcs",,,"01-07",,"โกดังอะลูมิเนียม",, +"product.product_part_727","AL WINDOW FRAME100 mm.(OW)","SP01187","Materials","pcs",,,"01-14",,"โกดังอะลูมิเนียม",, +"product.product_part_728","AL WINDOW FRAME100 mm.(AP)","SP01188","Materials","pcs",,,"01-19",,"โกดังอะลูมิเนียม",, +"product.product_part_729","AL DOOR FRAME 100 mm.(FLUSH) (NA.1)","SP01189","Materials","pcs",,,,,"โกดังอะลูมิเนียม",, +"product.product_part_730","AL DOOR FRAME 100 mm.(FLUSH) (MF)","SP01190","Materials","pcs",,,"01-02",,"โกดังอะลูมิเนียม",, +"product.product_part_731","AL DOOR FRAME 100 mm.(FLUSH) (OW)","SP01191","Materials","pcs",,,"01-22",,"โกดังอะลูมิเนียม",, +"product.product_part_732","AL DOOR FRAME 100 mm.(FLUSH) (AP)","SP01192","Materials","pcs",,,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_733","AL DOOR FRAME 50 mm. (NA.1)","SP01229","Materials","pcs",,,,,"โกดังอะลูมิเนียม",, +"product.product_part_734","AL DOOR FRAME 50 mm. (MF)","SP01230","Materials","pcs",,,"01-06",,"โกดังอะลูมิเนียม",, +"product.product_part_735","AL DOOR FRAME 50 mm. (OW)","SP01231","Materials","pcs",,,"01-03",,"โกดังอะลูมิเนียม",, +"product.product_part_736","AL DOOR FRAME 50 mm. (AP)","SP01232","Materials","pcs",,,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_737","AL JOINT FOR  AL T-BAR (NA.1)","SP01315","Materials","pcs",,,"01-14",,"โกดังอะลูมิเนียม",, +"product.product_part_738","AL JOINT FOR  AL T-BAR (MF)","SP01316","Materials","pcs",,,,,"โกดังอะลูมิเนียม",, +"product.product_part_739","AL JOINT FOR  AL T-BAR (OW)","SP01317","Materials","pcs",,,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_740","AL JOINT FOR  AL T-BAR (AP)","SP01318","Materials","pcs",,,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_742","AL COVER FOR  AL JOINT T-BAR (NA.1)","SP01331","Materials","pcs",,,"01-05",,"โกดังอะลูมิเนียม",, +"product.product_part_743","AL COVER FOR  AL JOINT  T-BAR (MF)","SP01332","Materials","pcs",,,"01-05",,"โกดังอะลูมิเนียม",, +"product.product_part_744","AL COVER FOR  AL JOINT  T-BAR (OW)","SP01333","Materials","pcs",,,"01-12",,"โกดังอะลูมิเนียม",, +"product.product_part_745","AL COVER FOR  AL JOINT  T-BAR (AP)","SP01334","Materials","pcs",,,,,"โกดังอะลูมิเนียม",, +"product.product_part_746","AL WINDOW FRAME 50 MM.(MF)","SP01336","Materials","pcs",,,"01-04",,"โกดังอะลูมิเนียม",, +"product.product_part_747","AL WINDOW FRAME 50 MM.(OW)","SP01337","Materials","pcs",,,"01-22",,"โกดังอะลูมิเนียม",, +"product.product_part_748","AL WINDOW FRAME 50 MM.(AP)","SP01338","Materials","pcs",,,,,"โกดังอะลูมิเนียม",, +"product.product_part_749","AL NON PROGRESSIVE WINDOW FRAME ""B"" 50 MM.(MF)","SP01384","Materials","pcs",,,"01-13",,"โกดังอะลูมิเนียม",, +"product.product_part_750","AL NON PROGRESSIVE WINDOW FRAME ""B"" 50 MM.(NA.1)","SP01385","Materials","pcs",,,"01-18",,"โกดังอะลูมิเนียม",, +"product.product_part_751","AL NON PROGRESSIVE WINDOW FRAME ""B"" 50 MM.(AP)","SP01386","Materials","pcs",,,,,"โกดังอะลูมิเนียม",, +"product.product_part_752","DROP SEAL 834","SP02113","Materials","pcs",,,"02-06",,"Store ชั้น 2",, +"product.product_part_753","PLATE ยึดบานพับประตูสวิงห้องเย็น","SP03097","Materials","pcs",,,,,,, +"product.product_part_754","PLATE ยึดกลอนประตูสวิงห้องเย็น","SP03098","Materials","pcs",,,,,,, +"product.product_part_755","PLATE ยึดมือจับประตูบานเลื่อนห้องเย็น","SP03099","Materials","pcs",,,,,,, +"product.product_part_756","ยึดมุมหิ้วล้อประตูบานเลื่อนห้องเย็น  100 มม.","SP03100","Materials","pcs",,,,,,, +"product.product_part_757","ยึดมุมหิ้วล้อประตูบานเลื่อนห้องเย็น  75 มม.","SP03101","Materials","pcs",,,,,,, +"product.product_part_758","PLATE ยึดไกด์ประตูบานเลื่อนห้องเย็น ซ้าย-ขวา 75 มม.","SP03102","Materials","pcs",,,,,,, +"product.product_part_759","PLATE ยึดมือจับนอกประตูบานเลื่อนห้องเย็น 75 มม.","SP03103","Materials","pcs",,,,,,, +"product.product_part_760","PLATE ยึดไกด์ประตูบานเลื่อนห้องเย็น ซ้าย-ขวา 100 มม.","SP03104","Materials","pcs",,,,,,, +"product.product_part_761","PLATE ยึดมือจับนอกประตูบานเลื่อนห้องเย็น 100 มม.","SP03105","Materials","pcs",,,,,,, diff --git a/master_adjust/29dec13/stock.count.csv b/master_adjust/29dec13/stock.count.csv new file mode 100755 index 0000000..b746dd0 --- /dev/null +++ b/master_adjust/29dec13/stock.count.csv @@ -0,0 +1,762 @@ +"id","name","inventory_line_id/location_id","inventory_line_id/product_id/id","inventory_line_id/product_qty","inventory_line_id/product_uom" +"stock_parts_29dec13","Stock Count - Parts 29-Dec-13","RM","product.product_part_1",288,"pcs" +,,"RM","product.product_part_2",464,"pcs" +,,"RM","product.product_part_3",34,"pcs" +,,"RM","product.product_part_4",42,"pcs" +,,"RM","product.product_part_5",258,"pcs" +,,"RM","product.product_part_6",62,"pcs" +,,"RM","product.product_part_7",84,"pcs" +,,"RM","product.product_part_8",76,"pcs" +,,"RM","product.product_part_9",219,"pcs" +,,"RM","product.product_part_10",332,"pcs" +,,"RM","product.product_part_11",0,"pcs" +,,"RM","product.product_part_12",6,"pcs" +,,"RM","product.product_part_13",48,"pcs" +,,"RM","product.product_part_14",7,"pcs" +,,"RM","product.product_part_15",4,"pcs" +,,"RM","product.product_part_16",57,"pcs" +,,"RM","product.product_part_17",26,"pcs" +,,"RM","product.product_part_18",10,"pcs" +,,"RM","product.product_part_19",8,"pcs" +,,"RM","product.product_part_20",38,"pcs" +,,"RM","product.product_part_21",50,"pcs" +,,"RM","product.product_part_22",8,"pcs" +,,"RM","product.product_part_23",7,"pcs" +,,"RM","product.product_part_24",20,"pcs" +,,"RM","product.product_part_25",43,"pcs" +,,"RM","product.product_part_26",18,"pcs" +,,"RM","product.product_part_27",7,"pcs" +,,"RM","product.product_part_28",1466,"pcs" +,,"RM","product.product_part_29",0,"pcs" +,,"RM","product.product_part_30",169,"pcs" +,,"RM","product.product_part_31",51,"pcs" +,,"RM","product.product_part_32",763,"pcs" +,,"RM","product.product_part_33",0,"pcs" +,,"RM","product.product_part_34",171,"pcs" +,,"RM","product.product_part_35",23,"pcs" +,,"RM","product.product_part_36",66,"pcs" +,,"RM","product.product_part_37",99,"pcs" +,,"RM","product.product_part_38",36,"pcs" +,,"RM","product.product_part_39",10,"pcs" +,,"RM","product.product_part_40",284,"pcs" +,,"RM","product.product_part_41",371,"pcs" +,,"RM","product.product_part_42",10,"pcs" +,,"RM","product.product_part_43",7,"pcs" +,,"RM","product.product_part_44",0,"pcs" +,,"RM","product.product_part_45",0,"pcs" +,,"RM","product.product_part_46",61,"pcs" +,,"RM","product.product_part_47",10,"pcs" +,,"RM","product.product_part_47-1",6,"pcs" +,,"RM","product.product_part_48",59,"pcs" +,,"RM","product.product_part_49",0,"pcs" +,,"RM","product.product_part_50",1,"pcs" +,,"RM","product.product_part_51",10,"pcs" +,,"RM","product.product_part_52",62,"pcs" +,,"RM","product.product_part_53",0,"pcs" +,,"RM","product.product_part_54",0,"pcs" +,,"RM","product.product_part_55",0,"pcs" +,,"RM","product.product_part_56",143,"pcs" +,,"RM","product.product_part_57",0,"pcs" +,,"RM","product.product_part_58",54,"pcs" +,,"RM","product.product_part_59",0,"pcs" +,,"RM","product.product_part_60",69,"pcs" +,,"RM","product.product_part_61",0,"pcs" +,,"RM","product.product_part_62",60,"pcs" +,,"RM","product.product_part_63",15,"pcs" +,,"RM","product.product_part_64",38,"pcs" +,,"RM","product.product_part_65",195,"pcs" +,,"RM","product.product_part_66",34,"pcs" +,,"RM","product.product_part_67",41,"pcs" +,,"RM","product.product_part_68",77,"pcs" +,,"RM","product.product_part_69",57,"pcs" +,,"RM","product.product_part_70",16,"pcs" +,,"RM","product.product_part_71",43,"pcs" +,,"RM","product.product_part_72",70,"pcs" +,,"RM","product.product_part_73",0,"pcs" +,,"RM","product.product_part_74",1,"pcs" +,,"RM","product.product_part_75",0,"pcs" +,,"RM","product.product_part_76",408,"pcs" +,,"RM","product.product_part_77",652,"pcs" +,,"RM","product.product_part_78",970,"pcs" +,,"RM","product.product_part_79",87,"pcs" +,,"RM","product.product_part_80",96,"pcs" +,,"RM","product.product_part_81",16,"pcs" +,,"RM","product.product_part_82",20,"pcs" +,,"RM","product.product_part_83",272,"pcs" +,,"RM","product.product_part_84",0,"pcs" +,,"RM","product.product_part_85",24,"pcs" +,,"RM","product.product_part_86",44,"pcs" +,,"RM","product.product_part_87",0,"pcs" +,,"RM","product.product_part_88",54,"pcs" +,,"RM","product.product_part_89",26,"pcs" +,,"RM","product.product_part_90",1,"pcs" +,,"RM","product.product_part_91",0,"pcs" +,,"RM","product.product_part_92",114,"pcs" +,,"RM","product.product_part_93",0,"pcs" +,,"RM","product.product_part_94",54,"pcs" +,,"RM","product.product_part_95",186,"pcs" +,,"RM","product.product_part_96",246,"pcs" +,,"RM","product.product_part_97",0,"pcs" +,,"RM","product.product_part_98",5,"pcs" +,,"RM","product.product_part_99",0,"pcs" +,,"RM","product.product_part_100",496,"pcs" +,,"RM","product.product_part_101",41,"pcs" +,,"RM","product.product_part_102",3,"pcs" +,,"RM","product.product_part_103",410,"pcs" +,,"RM","product.product_part_104",320,"pcs" +,,"RM","product.product_part_105",61,"pcs" +,,"RM","product.product_part_106",43,"pcs" +,,"RM","product.product_part_107",132,"pcs" +,,"RM","product.product_part_108",0,"pcs" +,,"RM","product.product_part_109",14,"pcs" +,,"RM","product.product_part_110",7,"pcs" +,,"RM","product.product_part_111",0,"pcs" +,,"RM","product.product_part_112",108,"pcs" +,,"RM","product.product_part_113",26,"pcs" +,,"RM","product.product_part_114",56,"pcs" +,,"RM","product.product_part_115",669,"pcs" +,,"RM","product.product_part_116",0,"pcs" +,,"RM","product.product_part_117",378,"pcs" +,,"RM","product.product_part_118",37,"pcs" +,,"RM","product.product_part_119",11,"pcs" +,,"RM","product.product_part_120",70,"pcs" +,,"RM","product.product_part_121",126,"pcs" +,,"RM","product.product_part_122",33,"pcs" +,,"RM","product.product_part_123",11,"pcs" +,,"RM","product.product_part_124",242,"pcs" +,,"RM","product.product_part_125",27,"pcs" +,,"RM","product.product_part_126",2,"pcs" +,,"RM","product.product_part_127",10,"pcs" +,,"RM","product.product_part_128",6,"pcs" +,,"RM","product.product_part_129",0,"pcs" +,,"RM","product.product_part_130",190,"pcs" +,,"RM","product.product_part_131",13,"pcs" +,,"RM","product.product_part_132",7,"pcs" +,,"RM","product.product_part_133",559,"pcs" +,,"RM","product.product_part_134",0,"pcs" +,,"RM","product.product_part_135",26,"pcs" +,,"RM","product.product_part_136",4,"pcs" +,,"RM","product.product_part_137",0,"pcs" +,,"RM","product.product_part_138",0,"pcs" +,,"RM","product.product_part_139",88,"pcs" +,,"RM","product.product_part_140",31,"pcs" +,,"RM","product.product_part_141",0,"pcs" +,,"RM","product.product_part_142",124,"pcs" +,,"RM","product.product_part_143",170,"pcs" +,,"RM","product.product_part_144",57,"pcs" +,,"RM","product.product_part_145",4,"pcs" +,,"RM","product.product_part_146",1229,"pcs" +,,"RM","product.product_part_147",0,"pcs" +,,"RM","product.product_part_148",30,"pcs" +,,"RM","product.product_part_149",2,"pcs" +,,"RM","product.product_part_150",0,"pcs" +,,"RM","product.product_part_151",0,"pcs" +,,"RM","product.product_part_152",0,"pcs" +,,"RM","product.product_part_153",14,"pcs" +,,"RM","product.product_part_154",0,"pcs" +,,"RM","product.product_part_155",52,"pcs" +,,"RM","product.product_part_156",0,"pcs" +,,"RM","product.product_part_157",263,"pcs" +,,"RM","product.product_part_158",706,"pcs" +,,"RM","product.product_part_159",14,"pcs" +,,"RM","product.product_part_160",28,"pcs" +,,"RM","product.product_part_161",177,"pcs" +,,"RM","product.product_part_162",0,"pcs" +,,"RM","product.product_part_163",10,"pcs" +,,"RM","product.product_part_164",0,"pcs" +,,"RM","product.product_part_165",64,"pcs" +,,"RM","product.product_part_166",0,"pcs" +,,"RM","product.product_part_167",9,"pcs" +,,"RM","product.product_part_168",5,"pcs" +,,"RM","product.product_part_169",32,"pcs" +,,"RM","product.product_part_170",0,"pcs" +,,"RM","product.product_part_171",13,"pcs" +,,"RM","product.product_part_172",13,"pcs" +,,"RM","product.product_part_173",0,"pcs" +,,"RM","product.product_part_174",32,"pcs" +,,"RM","product.product_part_175",0,"pcs" +,,"RM","product.product_part_176",0,"pcs" +,,"RM","product.product_part_177",73,"pcs" +,,"RM","product.product_part_178",60,"pcs" +,,"RM","product.product_part_179",27,"pcs" +,,"RM","product.product_part_180",194,"pcs" +,,"RM","product.product_part_181",37,"pcs" +,,"RM","product.product_part_182",18,"pcs" +,,"RM","product.product_part_183",108,"pcs" +,,"RM","product.product_part_184",11,"pcs" +,,"RM","product.product_part_185",8,"pcs" +,,"RM","product.product_part_186",528,"pcs" +,,"RM","product.product_part_187",0,"pcs" +,,"RM","product.product_part_188",10,"pcs" +,,"RM","product.product_part_189",0,"pcs" +,,"RM","product.product_part_190",188,"pcs" +,,"RM","product.product_part_191",0,"pcs" +,,"RM","product.product_part_192",0,"pcs" +,,"RM","product.product_part_193",26,"pcs" +,,"RM","product.product_part_194",3,"pcs" +,,"RM","product.product_part_195",0,"pcs" +,,"RM","product.product_part_196",49,"pcs" +,,"RM","product.product_part_197",23,"pcs" +,,"RM","product.product_part_198",112,"pcs" +,,"RM","product.product_part_199",18,"pcs" +,,"RM","product.product_part_200",1,"pcs" +,,"RM","product.product_part_201",219,"pcs" +,,"RM","product.product_part_202",328,"pcs" +,,"RM","product.product_part_203",55,"pcs" +,,"RM","product.product_part_204",75,"pcs" +,,"RM","product.product_part_205",98,"pcs" +,,"RM","product.product_part_206",6,"pcs" +,,"RM","product.product_part_207",5,"pcs" +,,"RM","product.product_part_208",106,"pcs" +,,"RM","product.product_part_209",71,"pcs" +,,"RM","product.product_part_210",0,"pcs" +,,"RM","product.product_part_211",47,"pcs" +,,"RM","product.product_part_212",59,"pcs" +,,"RM","product.product_part_213",0,"pcs" +,,"RM","product.product_part_214",443,"pcs" +,,"RM","product.product_part_215",18,"pcs" +,,"RM","product.product_part_216",0,"pcs" +,,"RM","product.product_part_217",190,"pcs" +,,"RM","product.product_part_218",101,"pcs" +,,"RM","product.product_part_219",0,"pcs" +,,"RM","product.product_part_220",0,"pcs" +,,"RM","product.product_part_221",180,"pcs" +,,"RM","product.product_part_222",0,"pcs" +,,"RM","product.product_part_223",0,"pcs" +,,"RM","product.product_part_224",510,"pcs" +,,"RM","product.product_part_225",0,"pcs" +,,"RM","product.product_part_226",0,"pcs" +,,"RM","product.product_part_227",173,"pcs" +,,"RM","product.product_part_228",100,"pcs" +,,"RM","product.product_part_229",0,"pcs" +,,"RM","product.product_part_230",597,"pcs" +,,"RM","product.product_part_231",62,"pcs" +,,"RM","product.product_part_232",44,"pcs" +,,"RM","product.product_part_233",367,"pcs" +,,"RM","product.product_part_234",160,"pcs" +,,"RM","product.product_part_235",18,"pcs" +,,"RM","product.product_part_236",0,"pcs" +,,"RM","product.product_part_237",17,"pcs" +,,"RM","product.product_part_238",0,"pcs" +,,"RM","product.product_part_239",206,"pcs" +,,"RM","product.product_part_240",45,"pcs" +,,"RM","product.product_part_241",0,"pcs" +,,"RM","product.product_part_242",277,"pcs" +,,"RM","product.product_part_243",0,"pcs" +,,"RM","product.product_part_244",0,"pcs" +,,"RM","product.product_part_245",34,"pcs" +,,"RM","product.product_part_246",4,"pcs" +,,"RM","product.product_part_247",0,"pcs" +,,"RM","product.product_part_248",111,"pcs" +,,"RM","product.product_part_249",58,"pcs" +,,"RM","product.product_part_250",369,"pcs" +,,"RM","product.product_part_251",78,"pcs" +,,"RM","product.product_part_252",57,"pcs" +,,"RM","product.product_part_253",0,"pcs" +,,"RM","product.product_part_254",90,"pcs" +,,"RM","product.product_part_255",7,"pcs" +,,"RM","product.product_part_256",0,"pcs" +,,"RM","product.product_part_257",25,"pcs" +,,"RM","product.product_part_258",0,"pcs" +,,"RM","product.product_part_259",0,"pcs" +,,"RM","product.product_part_260",134,"pcs" +,,"RM","product.product_part_261",194,"pcs" +,,"RM","product.product_part_262",82,"pcs" +,,"RM","product.product_part_263",72,"pcs" +,,"RM","product.product_part_264",91,"pcs" +,,"RM","product.product_part_265",114,"pcs" +,,"RM","product.product_part_266",13,"pcs" +,,"RM","product.product_part_267",0,"pcs" +,,"RM","product.product_part_268",0,"pcs" +,,"RM","product.product_part_269",224,"pcs" +,,"RM","product.product_part_270",251,"pcs" +,,"RM","product.product_part_271",50,"pcs" +,,"RM","product.product_part_272",0,"pcs" +,,"RM","product.product_part_273",93,"pcs" +,,"RM","product.product_part_274",34,"pcs" +,,"RM","product.product_part_275",0,"pcs" +,,"RM","product.product_part_276",13,"pcs" +,,"RM","product.product_part_277",19,"pcs" +,,"RM","product.product_part_278",0,"pcs" +,,"RM","product.product_part_279",23378,"pcs" +,,"RM","product.product_part_280",15410,"pcs" +,,"RM","product.product_part_281",23872,"pcs" +,,"RM","product.product_part_282",950,"pcs" +,,"RM","product.product_part_283",25926,"pcs" +,,"RM","product.product_part_284",6369,"pcs" +,,"RM","product.product_part_285",19,"set" +,,"RM","product.product_part_286",466,"pcs" +,,"RM","product.product_part_287",41058,"pcs" +,,"RM","product.product_part_288",40522,"pcs" +,,"RM","product.product_part_289",74,"pcs" +,,"RM","product.product_part_290",4814,"pcs" +,,"RM","product.product_part_291",337,"pcs" +,,"RM","product.product_part_292",13180,"pcs" +,,"RM","product.product_part_293",15000,"pcs" +,,"RM","product.product_part_294",3916,"pcs" +,,"RM","product.product_part_295",0,"pcs" +,,"RM","product.product_part_296",2104,"m" +,,"RM","product.product_part_297",418,"tube" +,,"RM","product.product_part_298",2036,"m" +,,"RM","product.product_part_299",1567,"m" +,,"RM","product.product_part_300",54,"kg" +,,"RM","product.product_part_301",39,"roll" +,,"RM","product.product_part_302",500,"m" +,,"RM","product.product_part_303",136,"pcs" +,,"RM","product.product_part_304",47,"set" +,,"RM","product.product_part_305",7,"set" +,,"RM","product.product_part_306",2,"set" +,,"RM","product.product_part_307",2053,"pcs" +,,"RM","product.product_part_308",534,"pcs" +,,"RM","product.product_part_309",13,"set" +,,"RM","product.product_part_310",45,"set" +,,"RM","product.product_part_311",20,"set" +,,"RM","product.product_part_312",21,"set" +,,"RM","product.product_part_313",846,"pcs" +,,"RM","product.product_part_314",12433,"pcs" +,,"RM","product.product_part_315",3397,"pcs" +,,"RM","product.product_part_316",2723,"pcs" +,,"RM","product.product_part_317",17,"pcs" +,,"RM","product.product_part_318",1486,"pcs" +,,"RM","product.product_part_319",2110,"pcs" +,,"RM","product.product_part_320",2137,"pcs" +,,"RM","product.product_part_321",106,"set" +,,"RM","product.product_part_322",179,"pcs" +,,"RM","product.product_part_323",235,"pcs" +,,"RM","product.product_part_324",0,"pcs" +,,"RM","product.product_part_325",323,"pcs" +,,"RM","product.product_part_326",619,"pcs" +,,"RM","product.product_part_327",140,"m" +,,"RM","product.product_part_328",518,"pcs" +,,"RM","product.product_part_329",343,"pcs" +,,"RM","product.product_part_330",0,"pcs" +,,"RM","product.product_part_331",208,"tube" +,,"RM","product.product_part_332",781,"pcs" +,,"RM","product.product_part_333",184,"pcs" +,,"RM","product.product_part_334",306,"pcs" +,,"RM","product.product_part_335",287,"pcs" +,,"RM","product.product_part_336",234,"pcs" +,,"RM","product.product_part_337",639,"pcs" +,,"RM","product.product_part_338",415,"pcs" +,,"RM","product.product_part_339",22,"m" +,,"RM","product.product_part_340",300,"pcs" +,,"RM","product.product_part_341",3887,"pcs" +,,"RM","product.product_part_342",407,"pcs" +,,"RM","product.product_part_343",353,"pcs" +,,"RM","product.product_part_344",375,"pcs" +,,"RM","product.product_part_345",695,"pcs" +,,"RM","product.product_part_346",850,"pcs" +,,"RM","product.product_part_347",0,"set" +,,"RM","product.product_part_348",0,"pcs" +,,"RM","product.product_part_349",18,"pcs" +,,"RM","product.product_part_350",46,"pcs" +,,"RM","product.product_part_351",0,"pcs" +,,"RM","product.product_part_352",5,"pcs" +,,"RM","product.product_part_353",0,"pcs" +,,"RM","product.product_part_354",939,"pcs" +,,"RM","product.product_part_355",50,"pcs" +,,"RM","product.product_part_356",162,"pcs" +,,"RM","product.product_part_357",166,"pcs" +,,"RM","product.product_part_358",100,"pcs" +,,"RM","product.product_part_359",0,"pcs" +,,"RM","product.product_part_360",28,"pcs" +,,"RM","product.product_part_361",1062,"pcs" +,,"RM","product.product_part_362",54,"set" +,,"RM","product.product_part_363",18,"pcs" +,,"RM","product.product_part_364",88,"m" +,,"RM","product.product_part_365",6,"pcs" +,,"RM","product.product_part_366",990,"pcs" +,,"RM","product.product_part_367",720,"pcs" +,,"RM","product.product_part_368",40,"pcs" +,,"RM","product.product_part_369",535,"pcs" +,,"RM","product.product_part_370",0,"pcs" +,,"RM","product.product_part_371",0,"pcs" +,,"RM","product.product_part_372",170,"roll" +,,"RM","product.product_part_373",15,"pcs" +,,"RM","product.product_part_374",295,"pcs" +,,"RM","product.product_part_375",143,"pcs" +,,"RM","product.product_part_376",0,"pcs" +,,"RM","product.product_part_377",71,"pcs" +,,"RM","product.product_part_378",11644,"pcs" +,,"RM","product.product_part_379",54748,"pcs" +,,"RM","product.product_part_380",103,"pcs" +,,"RM","product.product_part_381",7,"set" +,,"RM","product.product_part_382",362,"pcs" +,,"RM","product.product_part_383",454,"roll" +,,"RM","product.product_part_384",5344,"pcs" +,,"RM","product.product_part_385",44,"pcs" +,,"RM","product.product_part_386",18045,"pcs" +,,"RM","product.product_part_387",10,"pcs" +,,"RM","product.product_part_388",300,"pcs" +,,"RM","product.product_part_389",2063,"tube" +,,"RM","product.product_part_390",249,"pcs" +,,"RM","product.product_part_391",269,"pcs" +,,"RM","product.product_part_392",604,"pcs" +,,"RM","product.product_part_393",29,"pcs" +,,"RM","product.product_part_394",305,"pcs" +,,"RM","product.product_part_395",372,"pcs" +,,"RM","product.product_part_396",370,"set" +,,"RM","product.product_part_397",587,"pcs" +,,"RM","product.product_part_398",2900,"m" +,,"RM","product.product_part_399",0,"set" +,,"RM","product.product_part_400",111,"pcs" +,,"RM","product.product_part_401",128,"pcs" +,,"RM","product.product_part_402",300,"pcs" +,,"RM","product.product_part_403",698,"pcs" +,,"RM","product.product_part_404",1922,"pcs" +,,"RM","product.product_part_405",500,"set" +,,"RM","product.product_part_406",879,"set" +,,"RM","product.product_part_407",0,"pcs" +,,"RM","product.product_part_408",4250,"pcs" +,,"RM","product.product_part_409",7380,"pcs" +,,"RM","product.product_part_410",402,"pcs" +,,"RM","product.product_part_411",180,"pcs" +,,"RM","product.product_part_412",359,"pcs" +,,"RM","product.product_part_413",136,"pcs" +,,"RM","product.product_part_414",3539,"pcs" +,,"RM","product.product_part_415",6077,"pcs" +,,"RM","product.product_part_416",704,"pcs" +,,"RM","product.product_part_417",2132,"pcs" +,,"RM","product.product_part_418",1629,"pcs" +,,"RM","product.product_part_419",1252,"pcs" +,,"RM","product.product_part_420",42,"set" +,,"RM","product.product_part_421",0,"set" +,,"RM","product.product_part_422",0,"pcs" +,,"RM","product.product_part_423",0,"m" +,,"RM","product.product_part_424",1150,"m" +,,"RM","product.product_part_425",711,"pcs" +,,"RM","product.product_part_426",3564,"pcs" +,,"RM","product.product_part_427",0,"m" +,,"RM","product.product_part_428",9171,"pcs" +,,"RM","product.product_part_429",1350,"m" +,,"RM","product.product_part_430",960,"set" +,,"RM","product.product_part_431",960,"set" +,,"RM","product.product_part_432",518,"set" +,,"RM","product.product_part_433",63,"pcs" +,,"RM","product.product_part_434",105,"pcs" +,,"RM","product.product_part_435",4377,"pcs" +,,"RM","product.product_part_436",1734,"pcs" +,,"RM","product.product_part_437",5580,"pcs" +,,"RM","product.product_part_438",2589,"pcs" +,,"RM","product.product_part_439",1387,"pcs" +,,"RM","product.product_part_440",629,"pcs" +,,"RM","product.product_part_441",344,"pcs" +,,"RM","product.product_part_442",612,"pcs" +,,"RM","product.product_part_443",11,"roll" +,,"RM","product.product_part_444",87,"set" +,,"RM","product.product_part_445",20,"pcs" +,,"RM","product.product_part_446",725,"pcs" +,,"RM","product.product_part_447",5,"pcs" +,,"RM","product.product_part_448",16,"gal" +,,"RM","product.product_part_449",110,"set" +,,"RM","product.product_part_450",309,"set" +,,"RM","product.product_part_451",6514,"pcs" +,,"RM","product.product_part_452",950,"pcs" +,,"RM","product.product_part_453",700,"pcs" +,,"RM","product.product_part_454",6520,"pcs" +,,"RM","product.product_part_455",8510,"pcs" +,,"RM","product.product_part_456",38,"pcs" +,,"RM","product.product_part_457",442,"pcs" +,,"RM","product.product_part_458",60,"pcs" +,,"RM","product.product_part_459",76,"pcs" +,,"RM","product.product_part_460",104,"pcs" +,,"RM","product.product_part_461",150,"pcs" +,,"RM","product.product_part_461-1",0,"pcs" +,,"RM","product.product_part_462",141,"roll" +,,"RM","product.product_part_463",168,"roll" +,,"RM","product.product_part_464",19,"roll" +,,"RM","product.product_part_465",375,"set" +,,"RM","product.product_part_466",72,"pcs" +,,"RM","product.product_part_467",244,"roll" +,,"RM","product.product_part_468",18,"roll" +,,"RM","product.product_part_469",20,"gal" +,,"RM","product.product_part_470",28,"gal" +,,"RM","product.product_part_471",1260,"set" +,,"RM","product.product_part_472",1292,"pcs" +,,"RM","product.product_part_473",5700,"pcs" +,,"RM","product.product_part_474",1631,"pcs" +,,"RM","product.product_part_475",136,"set" +,,"RM","product.product_part_476",70,"pcs" +,,"RM","product.product_part_477",83,"roll" +,,"RM","product.product_part_478",1400,"pcs" +,,"RM","product.product_part_479",13,"kg" +,,"RM","product.product_part_480",205,"roll" +,,"RM","product.product_part_481",142,"roll" +,,"RM","product.product_part_482",0,"kg" +,,"RM","product.product_part_483",7700,"pcs" +,,"RM","product.product_part_484",223,"roll" +,,"RM","product.product_part_485",819,"m" +,,"RM","product.product_part_486",10,"pcs" +,,"RM","product.product_part_487",25,"pcs" +,,"RM","product.product_part_488",28,"pcs" +,,"RM","product.product_part_489",3729,"pcs" +,,"RM","product.product_part_490",40,"m" +,,"RM","product.product_part_491",16,"pcs" +,,"RM","product.product_part_492",4937,"pcs" +,,"RM","product.product_part_493",473,"pcs" +,,"RM","product.product_part_494",5700,"pcs" +,,"RM","product.product_part_495",4976,"pcs" +,,"RM","product.product_part_496",938,"m" +,,"RM","product.product_part_497",613,"pcs" +,,"RM","product.product_part_498",5847,"pcs" +,,"RM","product.product_part_499",7458,"pcs" +,,"RM","product.product_part_500",5653,"pcs" +,,"RM","product.product_part_501",0,"pcs" +,,"RM","product.product_part_502",135,"pcs" +,,"RM","product.product_part_503",72,"pcs" +,,"RM","product.product_part_504",154,"kg" +,,"RM","product.product_part_505",25,"pcs" +,,"RM","product.product_part_506",15,"pcs" +,,"RM","product.product_part_507",95,"pcs" +,,"RM","product.product_part_508",95,"pcs" +,,"RM","product.product_part_509",14,"pcs" +,,"RM","product.product_part_510",0,"pcs" +,,"RM","product.product_part_511",130,"pcs" +,,"RM","product.product_part_512",46,"pcs" +,,"RM","product.product_part_513",59,"pcs" +,,"RM","product.product_part_514",27,"pcs" +,,"RM","product.product_part_515",63,"pcs" +,,"RM","product.product_part_516",43,"pcs" +,,"RM","product.product_part_517",104,"pcs" +,,"RM","product.product_part_518",0,"pcs" +,,"RM","product.product_part_519",42,"pcs" +,,"RM","product.product_part_520",123,"pcs" +,,"RM","product.product_part_521",0,"pcs" +,,"RM","product.product_part_522",0,"pcs" +,,"RM","product.product_part_523",1,"pcs" +,,"RM","product.product_part_524",15,"pcs" +,,"RM","product.product_part_525",0,"pcs" +,,"RM","product.product_part_526",38,"pcs" +,,"RM","product.product_part_527",29,"pcs" +,,"RM","product.product_part_528",2,"pcs" +,,"RM","product.product_part_529",25,"pcs" +,,"RM","product.product_part_530",29,"pcs" +,,"RM","product.product_part_531",29,"pcs" +,,"RM","product.product_part_532",0,"pcs" +,,"RM","product.product_part_533",5,"pcs" +,,"RM","product.product_part_534",0,"pcs" +,,"RM","product.product_part_535",25,"pcs" +,,"RM","product.product_part_536",22,"pcs" +,,"RM","product.product_part_537",2570,"pcs" +,,"RM","product.product_part_538",29,"pcs" +,,"RM","product.product_part_539",31,"pcs" +,,"RM","product.product_part_540",7,"pcs" +,,"RM","product.product_part_541",2,"pcs" +,,"RM","product.product_part_542",0,"pcs" +,,"RM","product.product_part_543",4555,"pcs" +,,"RM","product.product_part_544",25900,"pcs" +,,"RM","product.product_part_545",0,"pcs" +,,"RM","product.product_part_546",42,"pcs" +,,"RM","product.product_part_547",10,"pcs" +,,"RM","product.product_part_548",6,"pcs" +,,"RM","product.product_part_549",24,"pcs" +,,"RM","product.product_part_550",27,"pcs" +,,"RM","product.product_part_551",68,"pcs" +,,"RM","product.product_part_552",0,"pcs" +,,"RM","product.product_part_553",200,"kg" +,,"RM","product.product_part_554",200,"pcs" +,,"RM","product.product_part_555",440,"kg" +,,"RM","product.product_part_556",350,"pcs" +,,"RM","product.product_part_557",512,"pcs" +,,"RM","product.product_part_558",0,"pcs" +,,"RM","product.product_part_559",3,"pcs" +,,"RM","product.product_part_560",16,"pcs" +,,"RM","product.product_part_561",350,"m" +,,"RM","product.product_part_562",0,"pcs" +,,"RM","product.product_part_563",4,"kg" +,,"RM","product.product_part_564",9,"gal" +,,"RM","product.product_part_565",125,"pcs" +,,"RM","product.product_part_566",0,"pcs" +,,"RM","product.product_part_567",132,"pcs" +,,"RM","product.product_part_568",50,"pcs" +,,"RM","product.product_part_569",4,"pcs" +,,"RM","product.product_part_570",6,"pcs" +,,"RM","product.product_part_571",2,"pcs" +,,"RM","product.product_part_572",374,"pcs" +,,"RM","product.product_part_573",71,"pcs" +,,"RM","product.product_part_574",158,"pcs" +,,"RM","product.product_part_575",948,"pcs" +,,"RM","product.product_part_576",2448,"pcs" +,,"RM","product.product_part_577",52,"set" +,,"RM","product.product_part_578",60,"kg" +,,"RM","product.product_part_579",0,"kg" +,,"RM","product.product_part_580",280,"kg" +,,"RM","product.product_part_581",15,"roll" +,,"RM","product.product_part_582",62,"pcs" +,,"RM","product.product_part_583",340,"kg" +,,"RM","product.product_part_584",140,"kg" +,,"RM","product.product_part_585",0,"kg" +,,"RM","product.product_part_586",547,"pcs" +,,"RM","product.product_part_587",0,"pcs" +,,"RM","product.product_part_588",8346,"pcs" +,,"RM","product.product_part_589",8,"kg" +,,"RM","product.product_part_590",6,"kg" +,,"RM","product.product_part_591",5,"kg" +,,"RM","product.product_part_592",1433,"pcs" +,,"RM","product.product_part_593",875,"pcs" +,,"RM","product.product_part_594",1021,"pcs" +,,"RM","product.product_part_595",52,"set" +,,"RM","product.product_part_596",66,"set" +,,"RM","product.product_part_597",2646,"pcs" +,,"RM","product.product_part_598",3875,"pcs" +,,"RM","product.product_part_599",381,"pcs" +,,"RM","product.product_part_600",381,"pcs" +,,"RM","product.product_part_601",5142,"pcs" +,,"RM","product.product_part_602",3996,"pcs" +,,"RM","product.product_part_603",15,"kg" +,,"RM","product.product_part_604",641,"pcs" +,,"RM","product.product_part_605",272,"pcs" +,,"RM","product.product_part_606",150,"pcs" +,,"RM","product.product_part_607",1798,"pcs" +,,"RM","product.product_part_608",596,"pcs" +,,"RM","product.product_part_609",1126,"pcs" +,,"RM","product.product_part_610",177,"pcs" +,,"RM","product.product_part_611",1054,"pcs" +,,"RM","product.product_part_612",669,"pcs" +,,"RM","product.product_part_613",1096,"pcs" +,,"RM","product.product_part_614",5587,"pcs" +,,"RM","product.product_part_615",100,"pcs" +,,"RM","product.product_part_616",58200,"pcs" +,,"RM","product.product_part_617",74500,"pcs" +,,"RM","product.product_part_618",26600,"pcs" +,,"RM","product.product_part_619",48600,"pcs" +,,"RM","product.product_part_620",5389,"pcs" +,,"RM","product.product_part_621",13430,"pcs" +,,"RM","product.product_part_622",404,"pcs" +,,"RM","product.product_part_623",0,"pcs" +,,"RM","product.product_part_624",3541,"pcs" +,,"RM","product.product_part_625",210,"pcs" +,,"RM","product.product_part_626",1427,"pcs" +,,"RM","product.product_part_627",279,"pcs" +,,"RM","product.product_part_628",851,"pcs" +,,"RM","product.product_part_629",511,"pcs" +,,"RM","product.product_part_630",0,"pcs" +,,"RM","product.product_part_631",296,"pcs" +,,"RM","product.product_part_632",1953,"pcs" +,,"RM","product.product_part_633",2499,"pcs" +,,"RM","product.product_part_634",1580,"pcs" +,,"RM","product.product_part_635",1350,"pcs" +,,"RM","product.product_part_636",0,"pcs" +,,"RM","product.product_part_637",20300,"pcs" +,,"RM","product.product_part_638",10500,"pcs" +,,"RM","product.product_part_639",18000,"pcs" +,,"RM","product.product_part_640",21901,"pcs" +,,"RM","product.product_part_641",24217,"pcs" +,,"RM","product.product_part_642",9000,"pcs" +,,"RM","product.product_part_643",19200,"pcs" +,,"RM","product.product_part_644",22570,"pcs" +,,"RM","product.product_part_645",484,"pcs" +,,"RM","product.product_part_646",1016,"pcs" +,,"RM","product.product_part_647",741,"pcs" +,,"RM","product.product_part_648",350,"pcs" +,,"RM","product.product_part_649",3939,"pcs" +,,"RM","product.product_part_650",3967,"pcs" +,,"RM","product.product_part_651",1113,"pcs" +,,"RM","product.product_part_652",9480,"set" +,,"RM","product.product_part_653",0,"set" +,,"RM","product.product_part_654",5087,"set" +,,"RM","product.product_part_655",2156,"set" +,,"RM","product.product_part_656",458,"pcs" +,,"RM","product.product_part_657",1071,"pcs" +,,"RM","product.product_part_658",8135,"pcs" +,,"RM","product.product_part_659",4491,"pcs" +,,"RM","product.product_part_660",4493,"pcs" +,,"RM","product.product_part_661",2017,"pcs" +,,"RM","product.product_part_662",1833,"pcs" +,,"RM","product.product_part_663",495,"pcs" +,,"RM","product.product_part_664",1170,"pcs" +,,"RM","product.product_part_665",6934,"pcs" +,,"RM","product.product_part_666",1065,"pcs" +,,"RM","product.product_part_667",8008,"pcs" +,,"RM","product.product_part_668",1802,"pcs" +,,"RM","product.product_part_669",692,"pcs" +,,"RM","product.product_part_670",28433,"pcs" +,,"RM","product.product_part_671",57807,"pcs" +,,"RM","product.product_part_672",245,"pcs" +,,"RM","product.product_part_673",2088,"pcs" +,,"RM","product.product_part_674",340,"pcs" +,,"RM","product.product_part_675",348,"pcs" +,,"RM","product.product_part_676",309,"pcs" +,,"RM","product.product_part_677",1455,"set" +,,"RM","product.product_part_678",1234,"pcs" +,,"RM","product.product_part_679",2025,"pcs" +,,"RM","product.product_part_680",5228,"pcs" +,,"RM","product.product_part_681",4211,"pcs" +,,"RM","product.product_part_682",4289,"pcs" +,,"RM","product.product_part_683",326,"pcs" +,,"RM","product.product_part_684",147,"pcs" +,,"RM","product.product_part_685",114,"pcs" +,,"RM","product.product_part_686",0,"kg" +,,"RM","product.product_part_687",0,"kg" +,,"RM","product.product_part_688",108,"kg" +,,"RM","product.product_part_689",10220,"kg" +,,"RM","product.product_part_690",0,"kg" +,,"RM","product.product_part_691",65460,"kg" +,,"RM","product.product_part_692",192070,"kg" +,,"RM","product.product_part_693",2192,"kg" +,,"RM","product.product_part_694",0,"kg" +,,"RM","product.product_part_695",0,"kg" +,,"RM","product.product_part_696",0,"kg" +,,"RM","product.product_part_697",38828,"kg" +,,"RM","product.product_part_698",3524,"kg" +,,"RM","product.product_part_699",0,"tank" +,,"RM","product.product_part_700",0,"kg" +,,"RM","product.product_part_701",0,"kg" +,,"RM","product.product_part_702",0,"kg" +,,"RM","product.product_part_703",19287,"kg" +,,"RM","product.product_part_704",0,"kg" +,,"RM","product.product_part_705",3070,"kg" +,,"RM","product.product_part_706",911,"pcs" +,,"RM","product.product_part_707",32,"pcs" +,,"RM","product.product_part_708",0,"pcs" +,,"RM","product.product_part_710",4,"pcs" +,,"RM","product.product_part_711",157,"pcs" +,,"RM","product.product_part_712",14,"pcs" +,,"RM","product.product_part_713",5,"pcs" +,,"RM","product.product_part_714",0,"pcs" +,,"RM","product.product_part_715",31,"pcs" +,,"RM","product.product_part_716",37,"pcs" +,,"RM","product.product_part_717",49,"pcs" +,,"RM","product.product_part_718",0,"pcs" +,,"RM","product.product_part_719",80,"pcs" +,,"RM","product.product_part_720",61,"pcs" +,,"RM","product.product_part_721",0,"pcs" +,,"RM","product.product_part_722",219,"pcs" +,,"RM","product.product_part_723",65,"pcs" +,,"RM","product.product_part_724",107,"pcs" +,,"RM","product.product_part_725",38,"pcs" +,,"RM","product.product_part_726",178,"pcs" +,,"RM","product.product_part_727",57,"pcs" +,,"RM","product.product_part_728",10,"pcs" +,,"RM","product.product_part_729",0,"pcs" +,,"RM","product.product_part_730",0,"pcs" +,,"RM","product.product_part_731",26,"pcs" +,,"RM","product.product_part_732",18,"pcs" +,,"RM","product.product_part_733",0,"pcs" +,,"RM","product.product_part_734",112,"pcs" +,,"RM","product.product_part_735",30,"pcs" +,,"RM","product.product_part_736",13,"pcs" +,,"RM","product.product_part_737",0,"pcs" +,,"RM","product.product_part_738",0,"pcs" +,,"RM","product.product_part_739",0,"pcs" +,,"RM","product.product_part_740",7,"pcs" +,,"RM","product.product_part_742",264,"pcs" +,,"RM","product.product_part_743",31,"pcs" +,,"RM","product.product_part_744",22,"pcs" +,,"RM","product.product_part_745",10,"pcs" +,,"RM","product.product_part_746",174,"pcs" +,,"RM","product.product_part_747",58,"pcs" +,,"RM","product.product_part_748",0,"pcs" +,,"RM","product.product_part_749",290,"pcs" +,,"RM","product.product_part_750",171,"pcs" +,,"RM","product.product_part_751",49,"pcs" +,,"RM","product.product_part_752",0,"pcs" +,,"RM","product.product_part_753",0,"pcs" +,,"RM","product.product_part_754",0,"pcs" +,,"RM","product.product_part_755",0,"pcs" +,,"RM","product.product_part_756",0,"pcs" +,,"RM","product.product_part_757",0,"pcs" +,,"RM","product.product_part_758",0,"pcs" +,,"RM","product.product_part_759",0,"pcs" +,,"RM","product.product_part_760",0,"pcs" +,,"RM","product.product_part_761",0,"pcs" diff --git a/masterdata/__init__.py b/masterdata/__init__.py new file mode 100755 index 0000000..a4a5d90 --- /dev/null +++ b/masterdata/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/masterdata/__openerp__.py b/masterdata/__openerp__.py new file mode 100755 index 0000000..6c0b509 --- /dev/null +++ b/masterdata/__openerp__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : "Import Data (selected)", + 'author' : 'Kitti U.', + 'summary': '', + 'description': """ + +""", + 'category': 'Sales', + 'sequence': 8, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['product', + 'sale'], + 'demo' : [], + 'data' : [ + 'rev4_final/product.pricelist.item.csv', + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/masterdata/rev1/10.product.uom.categ.csv b/masterdata/rev1/10.product.uom.categ.csv new file mode 100755 index 0000000..34b1dba --- /dev/null +++ b/masterdata/rev1/10.product.uom.categ.csv @@ -0,0 +1,2 @@ +id name +uom_categ_area Area diff --git a/masterdata/rev1/15.product.uom.csv b/masterdata/rev1/15.product.uom.csv new file mode 100755 index 0000000..40816fa --- /dev/null +++ b/masterdata/rev1/15.product.uom.csv @@ -0,0 +1,6 @@ +id name category_id uom_type rounding factor_inv factor +product.uom_sqm sqm Area Reference Unit of Measure for this category 0.01 1 1 +product.uom_set set Unit Smaller than the reference Unit of Measure 0.01 1 1 +product.uom_lot lot Unit Smaller than the reference Unit of Measure 0.01 1 1 +product.uom_sqm EA Unit Smaller than the reference Unit of Measure 0.01 1 1 +product.uom_set nos. Unit Smaller than the reference Unit of Measure 0.01 1 1 diff --git a/masterdata/rev1/30.res.partner.category.notyet.csv b/masterdata/rev1/30.res.partner.category.notyet.csv new file mode 100755 index 0000000..4482ac1 --- /dev/null +++ b/masterdata/rev1/30.res.partner.category.notyet.csv @@ -0,0 +1,4 @@ +id,name,parent_id/id +base.res_partner_category_customer,Customer, +base.res_partner_category_modern_trade,Modern Trade,base.res_partner_category_customer +base.res_partner_category_sport_outlet,Sport Outlet,base.res_partner_category_modern_trade diff --git a/masterdata/rev1/40.res.partner.notyet.csv b/masterdata/rev1/40.res.partner.notyet.csv new file mode 100755 index 0000000..46a95c8 --- /dev/null +++ b/masterdata/rev1/40.res.partner.notyet.csv @@ -0,0 +1,5 @@ +REF#,id,name,ref,is_company,customer,supplier,parent_id,type,use_parent_address,street,street2,zip,city,country_id/id,phone,mobile,fax,email,category_id/id,website,comment +base.res_partner_z003,base.res_partner_001,"ซินฮวดจักรยาน, พังโคน",Z003,TRUE,TRUE,FALSE,,Default,FALSE,33/3 ถ.นิตโย,อ.พังโคน,,สกลนคร,base.th,0-4277-1070,,,,base.res_partner_category_wholesaler,, +base.res_partner_z002,base.res_partner_002,ซีสปอร์ต,Z002,TRUE,TRUE,FALSE,,Default,FALSE,224/5 ถ.พานิชย์,ต.หน้าเมือง อ.เมือง,,ฉะเชิงเทรา,base.th,0-6819-0449,,,,base.res_partner_category_wholesaler,, +base.res_partner_z001,base.res_partner_003,ซินฮวดจักรยาน,Z001,TRUE,TRUE,FALSE,,Default,FALSE,210 ถ.หมากแข้ง,ต.หมากแข้ง อ.เมือง,41000,อุดรธานี,base.th,0-4224-3075,,,,base.res_partner_category_wholesaler,, +base.res_partner_y007,base.res_partner_004,"Yee Shin Co., Ltd.",Y007,TRUE,TRUE,FALSE,,Default,FALSE,63/64 Bahosi Housing Estate,Lamadaw Township,,Yangon Myanmar,base.mm,,,,,base.res_partner_category_wholesaler,, diff --git a/masterdata/rev1/50.product.category.csv b/masterdata/rev1/50.product.category.csv new file mode 100755 index 0000000..2d33e27 --- /dev/null +++ b/masterdata/rev1/50.product.category.csv @@ -0,0 +1,4 @@ +id,name,type,parent_id/id,property_account_income_categ,property_account_expense_categ,property_stock_account_input_categ,property_stock_account_output_categ,property_stock_valuation_account_id +product_cat_wall,Wall,Normal,,,,,, +product_cat_ceiling,Ceiling,Normal,,,,,, +product_cat_others,Others,Normal,,,,,, diff --git a/masterdata/rev1/55.product.tag.csv b/masterdata/rev1/55.product.tag.csv new file mode 100755 index 0000000..22bdb03 --- /dev/null +++ b/masterdata/rev1/55.product.tag.csv @@ -0,0 +1,6 @@ +id,name +product_tag_1,AHU รอแบบ +product_tag_2,AHU มีแบบ +product_tag_3,Clean Room +product_tag_4,Cold Room +product_tag_5,Hyper Market diff --git a/masterdata/rev1/60.product.product.csv b/masterdata/rev1/60.product.product.csv new file mode 100755 index 0000000..69e9f96 --- /dev/null +++ b/masterdata/rev1/60.product.product.csv @@ -0,0 +1,434 @@ +id,name,description_sale,description_purchase,default_code,tag_ids,sale_ok,purchase_ok,type,procure_method,supply_method,list_price,cost_method,standard_price,categ_id,uom_id,uom_po_id,description,valuation,standard_price,list_price,qty_available +product_product_1,Wall T25 PU.Foam Color steel sheet/Color steel sheet,,,P10001,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1200, +product_product_2,Wall T25 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10002,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1150, +product_product_3,Wall T25 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10003,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1150, +product_product_4,Wall T25 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10004,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1100, +product_product_5,Wall T25 PU.Foam Stainless steel 304/Stainless steel 304,,,P10005,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,2700, +product_product_6,Wall T25 PU.Foam Color steel sheet/Stainless steel 304,,,P10006,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1950, +product_product_7,Wall T25 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10007,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1900, +product_product_8,Wall T42 PU.Foam Color steel sheet/Color steel sheet,,,P10008,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1350, +product_product_9,Wall T42 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10009,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1300, +product_product_10,Wall T42 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10010,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1250, +product_product_11,Wall T42 PU.Foam Stainless steel 304/Stainless steel 304,,,P10011,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,2850, +product_product_12,Wall T42 PU.Foam Color steel sheet/Stainless steel 304,,,P10012,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,2100, +product_product_13,Wall T42 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10013,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,2050, +product_product_14,Wall T50 PU.Foam Color steel sheet/Color steel sheet,,,P10014,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1540, +product_product_15,Wall T50 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10015,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1500, +product_product_16,Wall T50 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10016,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1450, +product_product_17,Wall T50 PU.Foam Stainless steel 304/Stainless steel 304,,,P10017,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,3040, +product_product_18,Wall T50 PU.Foam Color steel sheet/Stainless steel 304,,,P10018,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,2290, +product_product_19,Wall T50 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10019,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,2250, +product_product_20,Wall T75 PU.Foam Color steel sheet/Color steel sheet,,,P10020,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1900, +product_product_21,Wall T75 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10021,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1850, +product_product_22,Wall T75 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10022,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1800, +product_product_23,Wall T75 PU.Foam Stainless steel 304/Stainless steel 304,,,P10023,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,3400, +product_product_24,Wall T75 PU.Foam Color steel sheet/Stainless steel 304,,,P10024,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,2650, +product_product_25,Wall T75 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10025,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,2600, +product_product_26,Wall T100 PU.Foam Color steel sheet/Color steel sheet,,,P10026,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,2000, +product_product_27,Wall T100 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10027,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1900, +product_product_28,Wall T100 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10028,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1850, +product_product_29,Wall T100 PU.Foam Stainless steel 304/Stainless steel 304,,,P10029,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,3500, +product_product_30,Wall T100 PU.Foam Color steel sheet/Stainless steel 304,,,P10030,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,2750, +product_product_31,Wall T100 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10031,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,2650, +product_product_32,Wall T125 PU.Foam Color steel sheet/Color steel sheet,,,P10032,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_33,Wall T125 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10033,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_34,Wall T125 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10034,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_35,Wall T125 PU.Foam Stainless steel 304/Stainless steel 304,,,P10035,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_36,Wall T125 PU.Foam Color steel sheet/Stainless steel 304,,,P10036,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_37,Wall T125 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10037,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_38,Wall T150 PU.Foam Color steel sheet/Color steel sheet,,,P10038,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_39,Wall T150 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10039,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_40,Wall T150 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10040,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_41,Wall T150 PU.Foam Stainless steel 304/Stainless steel 304,,,P10041,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_42,Wall T150 PU.Foam Color steel sheet/Stainless steel 304,,,P10042,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_43,Wall T150 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10043,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_44,Wall T200 PU.Foam Color steel sheet/Color steel sheet,,,P10044,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,3200, +product_product_45,Wall T200 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10045,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,3150, +product_product_46,Wall T200 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10046,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,3100, +product_product_47,Wall T200 PU.Foam Stainless steel 304/Stainless steel 304,,,P10047,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,4700, +product_product_48,Wall T200 PU.Foam Color steel sheet/Stainless steel 304,,,P10048,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,3950, +product_product_49,Wall T200 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10049,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,3900, +product_product_50,Wall T25 Rockwool Color steel sheet/Color steel sheet,,,P10050,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_51,Wall T25 Rockwool Color steel sheet/Galvanized steel sheet,,,P10051,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_52,Wall T25 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10052,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_53,Wall T25 Rockwool Stainless steel 304/Stainless steel 304,,,P10053,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_54,Wall T25 Rockwool Color steel sheet/Stainless steel 304,,,P10054,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_55,Wall T25 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10055,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_56,Wall T42 Rockwool Color steel sheet/Color steel sheet,,,P10056,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_57,Wall T42 Rockwool Color steel sheet/Galvanized steel sheet,,,P10057,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_58,Wall T42 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10058,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_59,Wall T42 Rockwool Stainless steel 304/Stainless steel 304,,,P10059,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_60,Wall T42 Rockwool Color steel sheet/Stainless steel 304,,,P10060,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_61,Wall T42 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10061,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_62,Wall T50 Rockwool Color steel sheet/Color steel sheet,,,P10062,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_63,Wall T50 Rockwool Color steel sheet/Galvanized steel sheet,,,P10063,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_64,Wall T50 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10064,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_65,Wall T50 Rockwool Stainless steel 304/Stainless steel 304,,,P10065,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_66,Wall T50 Rockwool Color steel sheet/Stainless steel 304,,,P10066,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_67,Wall T50 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10067,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_68,Wall T75 Rockwool Color steel sheet/Color steel sheet,,,P10068,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_69,Wall T75 Rockwool Color steel sheet/Galvanized steel sheet,,,P10069,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_70,Wall T75 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10070,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_71,Wall T75 Rockwool Stainless steel 304/Stainless steel 304,,,P10071,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_72,Wall T75 Rockwool Color steel sheet/Stainless steel 304,,,P10072,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_73,Wall T75 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10073,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_74,Wall T100 Rockwool Color steel sheet/Color steel sheet,,,P10074,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_75,Wall T100 Rockwool Color steel sheet/Galvanized steel sheet,,,P10075,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_76,Wall T100 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10076,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_77,Wall T100 Rockwool Stainless steel 304/Stainless steel 304,,,P10077,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_78,Wall T100 Rockwool Color steel sheet/Stainless steel 304,,,P10078,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_79,Wall T100 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10079,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_80,Wall T125 Rockwool Color steel sheet/Color steel sheet,,,P10080,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_81,Wall T125 Rockwool Color steel sheet/Galvanized steel sheet,,,P10081,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_82,Wall T125 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10082,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_83,Wall T125 Rockwool Stainless steel 304/Stainless steel 304,,,P10083,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_84,Wall T125 Rockwool Color steel sheet/Stainless steel 304,,,P10084,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_85,Wall T125 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10085,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_86,Wall T150 Rockwool Color steel sheet/Color steel sheet,,,P10086,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_87,Wall T150 Rockwool Color steel sheet/Galvanized steel sheet,,,P10087,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_88,Wall T150 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10088,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_89,Wall T150 Rockwool Stainless steel 304/Stainless steel 304,,,P10089,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_90,Wall T150 Rockwool Color steel sheet/Stainless steel 304,,,P10090,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_91,Wall T150 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10091,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_92,Wall T200 Rockwool Color steel sheet/Color steel sheet,,,P10092,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_93,Wall T200 Rockwool Color steel sheet/Galvanized steel sheet,,,P10093,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_94,Wall T200 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10094,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_95,Wall T200 Rockwool Stainless steel 304/Stainless steel 304,,,P10095,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_96,Wall T200 Rockwool Color steel sheet/Stainless steel 304,,,P10096,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_97,Wall T200 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10097,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_98,Wall T25 PIR Color steel sheet/Color steel sheet,,,P10098,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_99,Wall T25 PIR Color steel sheet/Galvanized steel sheet,,,P10099,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_100,Wall T25 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10100,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_101,Wall T25 PIR Stainless steel 304/Stainless steel 304,,,P10101,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_102,Wall T25 PIR Color steel sheet/Stainless steel 304,,,P10102,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_103,Wall T25 PIR Galvanized steel sheet/Stainless steel 305,,,P10103,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_104,Wall T42 PIR Color steel sheet/Color steel sheet,,,P10104,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_105,Wall T42 PIR Color steel sheet/Galvanized steel sheet,,,P10105,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_106,Wall T42 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10106,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_107,Wall T42 PIR Stainless steel 304/Stainless steel 304,,,P10107,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_108,Wall T42 PIR Color steel sheet/Stainless steel 304,,,P10108,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_109,Wall T42 PIR Galvanized steel sheet/Stainless steel 305,,,P10109,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_110,Wall T50 PIR Color steel sheet/Color steel sheet,,,P10110,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_111,Wall T50 PIR Color steel sheet/Galvanized steel sheet,,,P10111,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_112,Wall T50 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10112,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_113,Wall T50 PIR Stainless steel 304/Stainless steel 304,,,P10113,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_114,Wall T50 PIR Color steel sheet/Stainless steel 304,,,P10114,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_115,Wall T50 PIR Galvanized steel sheet/Stainless steel 305,,,P10115,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_116,Wall T75 PIR Color steel sheet/Color steel sheet,,,P10116,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_117,Wall T75 PIR Color steel sheet/Galvanized steel sheet,,,P10117,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_118,Wall T75 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10118,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_119,Wall T75 PIR Stainless steel 304/Stainless steel 304,,,P10119,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_120,Wall T75 PIR Color steel sheet/Stainless steel 304,,,P10120,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_121,Wall T75 PIR Galvanized steel sheet/Stainless steel 305,,,P10121,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_122,Wall T100 PIR Color steel sheet/Color steel sheet,,,P10122,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_123,Wall T100 PIR Color steel sheet/Galvanized steel sheet,,,P10123,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_124,Wall T100 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10124,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_125,Wall T100 PIR Stainless steel 304/Stainless steel 304,,,P10125,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_126,Wall T100 PIR Color steel sheet/Stainless steel 304,,,P10126,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_127,Wall T100 PIR Galvanized steel sheet/Stainless steel 305,,,P10127,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_128,Wall T125 PIR Color steel sheet/Color steel sheet,,,P10128,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_129,Wall T125 PIR Color steel sheet/Galvanized steel sheet,,,P10129,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_130,Wall T125 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10130,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_131,Wall T125 PIR Stainless steel 304/Stainless steel 304,,,P10131,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_132,Wall T125 PIR Color steel sheet/Stainless steel 304,,,P10132,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_133,Wall T125 PIR Galvanized steel sheet/Stainless steel 305,,,P10133,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_134,Wall T150 PIR Color steel sheet/Color steel sheet,,,P10134,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_135,Wall T150 PIR Color steel sheet/Galvanized steel sheet,,,P10135,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_136,Wall T150 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10136,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_137,Wall T150 PIR Stainless steel 304/Stainless steel 304,,,P10137,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_138,Wall T150 PIR Color steel sheet/Stainless steel 304,,,P10138,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_139,Wall T150 PIR Galvanized steel sheet/Stainless steel 305,,,P10139,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_140,Wall T200 PIR Color steel sheet/Color steel sheet,,,P10140,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_141,Wall T200 PIR Color steel sheet/Galvanized steel sheet,,,P10141,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_142,Wall T200 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10142,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_143,Wall T200 PIR Stainless steel 304/Stainless steel 304,,,P10143,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_144,Wall T200 PIR Color steel sheet/Stainless steel 304,,,P10144,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_145,Wall T200 PIR Galvanized steel sheet/Stainless steel 305,,,P10145,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_146,Ceiling panel T25 PU.Foam Color steel sheet/Color steel sheet,,,P10146,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1200, +product_product_147,Ceiling panel T25 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10147,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1150, +product_product_148,Ceiling panel T25 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10148,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1100, +product_product_149,Ceiling panel T25 PU.Foam Stainless steel 304/Stainless steel 304,,,P10149,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,2700, +product_product_150,Ceiling panel T25 PU.Foam Color steel sheet/Stainless steel 304,,,P10150,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1950, +product_product_151,Ceiling panel T25 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10151,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1900, +product_product_152,Ceiling panel T42 PU.Foam Color steel sheet/Color steel sheet,,,P10152,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1350, +product_product_153,Ceiling panel T42 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10153,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1300, +product_product_154,Ceiling panel T42 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10154,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1250, +product_product_155,Ceiling panel T42 PU.Foam Stainless steel 304/Stainless steel 304,,,P10155,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,2850, +product_product_156,Ceiling panel T42 PU.Foam Color steel sheet/Stainless steel 304,,,P10156,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,2100, +product_product_157,Ceiling panel T42 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10157,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,2050, +product_product_158,Ceiling panel T50 PU.Foam Color steel sheet/Color steel sheet,,,P10158,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1540, +product_product_159,Ceiling panel T50 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10159,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1500, +product_product_160,Ceiling panel T50 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10160,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1450, +product_product_161,Ceiling panel T50 PU.Foam Stainless steel 304/Stainless steel 304,,,P10161,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,3040, +product_product_162,Ceiling panel T50 PU.Foam Color steel sheet/Stainless steel 304,,,P10162,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,2290, +product_product_163,Ceiling panel T50 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10163,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,2250, +product_product_164,Ceiling panel T75 PU.Foam Color steel sheet/Color steel sheet,,,P10164,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1900, +product_product_165,Ceiling panel T75 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10165,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1850, +product_product_166,Ceiling panel T75 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10166,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1800, +product_product_167,Ceiling panel T75 PU.Foam Stainless steel 304/Stainless steel 304,,,P10167,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,3400, +product_product_168,Ceiling panel T75 PU.Foam Color steel sheet/Stainless steel 304,,,P10168,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,2650, +product_product_169,Ceiling panel T75 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10169,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,2600, +product_product_170,Ceiling panel T100 PU.Foam Color steel sheet/Color steel sheet,,,P10170,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,2000, +product_product_171,Ceiling panel T100 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10171,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1900, +product_product_172,Ceiling panel T100 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10172,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1850, +product_product_173,Ceiling panel T100 PU.Foam Stainless steel 304/Stainless steel 304,,,P10173,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,3500, +product_product_174,Ceiling panel T100 PU.Foam Color steel sheet/Stainless steel 304,,,P10174,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,2750, +product_product_175,Ceiling panel T100 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10175,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,2650, +product_product_176,Ceiling panel T125 PU.Foam Color steel sheet/Color steel sheet,,,P10176,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_177,Ceiling panel T125 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10177,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_178,Ceiling panel T125 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10178,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_179,Ceiling panel T125 PU.Foam Stainless steel 304/Stainless steel 304,,,P10179,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_180,Ceiling panel T125 PU.Foam Color steel sheet/Stainless steel 304,,,P10180,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_181,Ceiling panel T125 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10181,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_182,Ceiling panel T150 PU.Foam Color steel sheet/Color steel sheet,,,P10182,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_183,Ceiling panel T150 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10183,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_184,Ceiling panel T150 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10184,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_185,Ceiling panel T150 PU.Foam Stainless steel 304/Stainless steel 304,,,P10185,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_186,Ceiling panel T150 PU.Foam Color steel sheet/Stainless steel 304,,,P10186,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_187,Ceiling panel T150 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10187,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_188,Ceiling panel T200 PU.Foam Color steel sheet/Color steel sheet,,,P10188,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,3200, +product_product_189,Ceiling panel T200 PU.Foam Color steel sheet/Galvanized steel sheet,,,P10189,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,3150, +product_product_190,Ceiling panel T200 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,P10190,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,3100, +product_product_191,Ceiling panel T200 PU.Foam Stainless steel 304/Stainless steel 304,,,P10191,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,4700, +product_product_192,Ceiling panel T200 PU.Foam Color steel sheet/Stainless steel 304,,,P10192,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,3950, +product_product_193,Ceiling panel T200 PU.Foam Galvanized steel sheet/Stainless steel 305,,,P10193,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,3900, +product_product_194,Ceiling panel T25 Rockwool Color steel sheet/Color steel sheet,,,P10194,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_195,Ceiling panel T25 Rockwool Color steel sheet/Galvanized steel sheet,,,P10195,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_196,Ceiling panel T25 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10196,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_197,Ceiling panel T25 Rockwool Stainless steel 304/Stainless steel 304,,,P10197,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_198,Ceiling panel T25 Rockwool Color steel sheet/Stainless steel 304,,,P10198,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_199,Ceiling panel T25 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10199,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_200,Ceiling panel T42 Rockwool Color steel sheet/Color steel sheet,,,P10200,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_201,Ceiling panel T42 Rockwool Color steel sheet/Galvanized steel sheet,,,P10201,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_202,Ceiling panel T42 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10202,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_203,Ceiling panel T42 Rockwool Stainless steel 304/Stainless steel 304,,,P10203,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_204,Ceiling panel T42 Rockwool Color steel sheet/Stainless steel 304,,,P10204,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_205,Ceiling panel T42 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10205,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_206,Ceiling panel T50 Rockwool Color steel sheet/Color steel sheet,,,P10206,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_207,Ceiling panel T50 Rockwool Color steel sheet/Galvanized steel sheet,,,P10207,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_208,Ceiling panel T50 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10208,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_209,Ceiling panel T50 Rockwool Stainless steel 304/Stainless steel 304,,,P10209,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_210,Ceiling panel T50 Rockwool Color steel sheet/Stainless steel 304,,,P10210,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_211,Ceiling panel T50 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10211,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_212,Ceiling panel T75 Rockwool Color steel sheet/Color steel sheet,,,P10212,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_213,Ceiling panel T75 Rockwool Color steel sheet/Galvanized steel sheet,,,P10213,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_214,Ceiling panel T75 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10214,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_215,Ceiling panel T75 Rockwool Stainless steel 304/Stainless steel 304,,,P10215,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_216,Ceiling panel T75 Rockwool Color steel sheet/Stainless steel 304,,,P10216,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_217,Ceiling panel T75 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10217,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_218,Ceiling panel T100 Rockwool Color steel sheet/Color steel sheet,,,P10218,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_219,Ceiling panel T100 Rockwool Color steel sheet/Galvanized steel sheet,,,P10219,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_220,Ceiling panel T100 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10220,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_221,Ceiling panel T100 Rockwool Stainless steel 304/Stainless steel 304,,,P10221,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_222,Ceiling panel T100 Rockwool Color steel sheet/Stainless steel 304,,,P10222,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_223,Ceiling panel T100 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10223,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_224,Ceiling panel T125 Rockwool Color steel sheet/Color steel sheet,,,P10224,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_225,Ceiling panel T125 Rockwool Color steel sheet/Galvanized steel sheet,,,P10225,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_226,Ceiling panel T125 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10226,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_227,Ceiling panel T125 Rockwool Stainless steel 304/Stainless steel 304,,,P10227,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_228,Ceiling panel T125 Rockwool Color steel sheet/Stainless steel 304,,,P10228,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_229,Ceiling panel T125 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10229,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_230,Ceiling panel T150 Rockwool Color steel sheet/Color steel sheet,,,P10230,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_231,Ceiling panel T150 Rockwool Color steel sheet/Galvanized steel sheet,,,P10231,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_232,Ceiling panel T150 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10232,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_233,Ceiling panel T150 Rockwool Stainless steel 304/Stainless steel 304,,,P10233,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_234,Ceiling panel T150 Rockwool Color steel sheet/Stainless steel 304,,,P10234,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_235,Ceiling panel T150 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10235,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_236,Ceiling panel T200 Rockwool Color steel sheet/Color steel sheet,,,P10236,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_237,Ceiling panel T200 Rockwool Color steel sheet/Galvanized steel sheet,,,P10237,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_238,Ceiling panel T200 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,P10238,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_239,Ceiling panel T200 Rockwool Stainless steel 304/Stainless steel 304,,,P10239,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_240,Ceiling panel T200 Rockwool Color steel sheet/Stainless steel 304,,,P10240,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_241,Ceiling panel T200 Rockwool Galvanized steel sheet/Stainless steel 305,,,P10241,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_242,Ceiling panel T25 PIR Color steel sheet/Color steel sheet,,,P10242,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_243,Ceiling panel T25 PIR Color steel sheet/Galvanized steel sheet,,,P10243,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_244,Ceiling panel T25 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10244,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_245,Ceiling panel T25 PIR Stainless steel 304/Stainless steel 304,,,P10245,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_246,Ceiling panel T25 PIR Color steel sheet/Stainless steel 304,,,P10246,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_247,Ceiling panel T25 PIR Galvanized steel sheet/Stainless steel 305,,,P10247,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_248,Ceiling panel T42 PIR Color steel sheet/Color steel sheet,,,P10248,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_249,Ceiling panel T42 PIR Color steel sheet/Galvanized steel sheet,,,P10249,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_250,Ceiling panel T42 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10250,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_251,Ceiling panel T42 PIR Stainless steel 304/Stainless steel 304,,,P10251,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_252,Ceiling panel T42 PIR Color steel sheet/Stainless steel 304,,,P10252,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_253,Ceiling panel T42 PIR Galvanized steel sheet/Stainless steel 305,,,P10253,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_254,Ceiling panel T50 PIR Color steel sheet/Color steel sheet,,,P10254,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_255,Ceiling panel T50 PIR Color steel sheet/Galvanized steel sheet,,,P10255,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_256,Ceiling panel T50 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10256,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_257,Ceiling panel T50 PIR Stainless steel 304/Stainless steel 304,,,P10257,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_258,Ceiling panel T50 PIR Color steel sheet/Stainless steel 304,,,P10258,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_259,Ceiling panel T50 PIR Galvanized steel sheet/Stainless steel 305,,,P10259,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_260,Ceiling panel T75 PIR Color steel sheet/Color steel sheet,,,P10260,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_261,Ceiling panel T75 PIR Color steel sheet/Galvanized steel sheet,,,P10261,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_262,Ceiling panel T75 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10262,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_263,Ceiling panel T75 PIR Stainless steel 304/Stainless steel 304,,,P10263,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_264,Ceiling panel T75 PIR Color steel sheet/Stainless steel 304,,,P10264,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_265,Ceiling panel T75 PIR Galvanized steel sheet/Stainless steel 305,,,P10265,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_266,Ceiling panel T100 PIR Color steel sheet/Color steel sheet,,,P10266,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_267,Ceiling panel T100 PIR Color steel sheet/Galvanized steel sheet,,,P10267,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_268,Ceiling panel T100 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10268,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_269,Ceiling panel T100 PIR Stainless steel 304/Stainless steel 304,,,P10269,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_270,Ceiling panel T100 PIR Color steel sheet/Stainless steel 304,,,P10270,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_271,Ceiling panel T100 PIR Galvanized steel sheet/Stainless steel 305,,,P10271,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_272,Ceiling panel T125 PIR Color steel sheet/Color steel sheet,,,P10272,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_273,Ceiling panel T125 PIR Color steel sheet/Galvanized steel sheet,,,P10273,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_274,Ceiling panel T125 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10274,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_275,Ceiling panel T125 PIR Stainless steel 304/Stainless steel 304,,,P10275,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_276,Ceiling panel T125 PIR Color steel sheet/Stainless steel 304,,,P10276,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_277,Ceiling panel T125 PIR Galvanized steel sheet/Stainless steel 305,,,P10277,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_278,Ceiling panel T150 PIR Color steel sheet/Color steel sheet,,,P10278,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_279,Ceiling panel T150 PIR Color steel sheet/Galvanized steel sheet,,,P10279,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_280,Ceiling panel T150 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10280,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_281,Ceiling panel T150 PIR Stainless steel 304/Stainless steel 304,,,P10281,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_282,Ceiling panel T150 PIR Color steel sheet/Stainless steel 304,,,P10282,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_283,Ceiling panel T150 PIR Galvanized steel sheet/Stainless steel 305,,,P10283,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_284,Ceiling panel T200 PIR Color steel sheet/Color steel sheet,,,P10284,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_285,Ceiling panel T200 PIR Color steel sheet/Galvanized steel sheet,,,P10285,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_286,Ceiling panel T200 PIR Galvanized steel sheet/Galvanized steel sheet,,,P10286,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_287,Ceiling panel T200 PIR Stainless steel 304/Stainless steel 304,,,P10287,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_288,Ceiling panel T200 PIR Color steel sheet/Stainless steel 304,,,P10288,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_289,Ceiling panel T200 PIR Galvanized steel sheet/Stainless steel 305,,,P10289,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Ceiling,sqm,sqm,,Real Time (automated),1,1, +product_product_290,Aluminium for fitting panel cover with PVC curve,,,P10290,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,m,m,,Real Time (automated),1,800, +product_product_291,Aluminium beam support ceiling panel,,,P10291,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,m,m,,Real Time (automated),1,1200, +product_product_292,"Other fitting parts (Silicone,bolt,nut,rivet&etc)",,,P10292,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,300, +product_product_293,Single swing door Flat type,,,P10293,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,set,set,,Real Time (automated),1,1, +product_product_294,Double swing door Flat type,,,P10294,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,set,set,,Real Time (automated),1,1, +product_product_295,Single sliding door Normal type,,,P10295,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,set,set,,Real Time (automated),1,1, +product_product_296,Fixed window double glass Flat type,,,P10296,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,set,set,,Real Time (automated),1,12000, +product_product_297,Wall return air,,,P10297,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,set,set,,Real Time (automated),1,1, +product_product_298,Wall return air with hepa filter,,,P10298,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,set,set,,Real Time (automated),1,1, +product_product_299,Opening Panel with Aluminium Frame,,,P10299,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,set,set,,Real Time (automated),1,1200, +product_product_300,Pipe & Handy Box for Inside panel,,,P10300,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,set,set,,Real Time (automated),1,350, +product_product_301,Installation with C/R superivsor,,,P10301,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,400, +product_product_302,Transporatation,,,P10302,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,lot,lot,,Real Time (automated),1,7000, +product_product_303,Double sliding door Normal type,,,P10303,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,set,set,,Real Time (automated),1,1, +product_product_304,Emergency single swing door Flat type,,,P10304,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,set,set,,Real Time (automated),1,40000, +product_product_305,Emergency double swing door Flat type,,,P10305,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,set,set,,Real Time (automated),1,55000, +product_product_306,Single swing door Flat type T42 PU.Form Color steel sheet/Color steel sheet,,,P10306,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,25000, +product_product_307,Single swing door Flat type T42 PU.Form Stainless steel 304/Stainless steel 304,,,P10307,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,30000, +product_product_308,Single swing door Flat type T50 PU.Form Color steel sheet/Color steel sheet,,,P10308,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,27000, +product_product_309,Single swing door Flat type T50 PU.Form Stainless steel 304/Stainless steel 304,,,P10309,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,34000, +product_product_310,Single sliding door Normal type T42 PU.Form Color steel sheet/Color steel sheet,,,P10310,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,35000, +product_product_311,Single sliding door Normal type T42 PU.Form Stainless steel 304/Stainless steel 304,,,P10311,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,40000, +product_product_312,Double sliding door Normal type T42 PU.Form Color steel sheet/Color steel sheet,,,P10312,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,54000, +product_product_313,Double sliding door Normal type T42 PU.Form Stainless steel 304/Stainless steel 304,,,P10313,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,60000, +product_product_314,Wall return air T100 Color steel sheet/Color steel sheet,,,P10314,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,6000, +product_product_315,Wall return air T100 Stainless steel 304/Stainless steel 304,,,P10315,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,12000, +product_product_316,Wall return air T200 Color steel sheet/Color steel sheet,,,P10316,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,8000, +product_product_317,Wall return air T200 Stainless steel 304/Stainless steel 304,,,P10317,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,16000, +product_product_318,Wall return air with hepa filter Color steel sheet/Color steel sheet,,,P10318,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,12000, +product_product_319,Wall return air with hepa filter Stainless steel 304/Stainless steel 304,,,P10319,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Others,sqm,sqm,,Real Time (automated),1,20000, +product_product_320,Wall T25 PU.Foam OffWhite SpeedLock CB/CB,,,P10320,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_321,Wall T25 PU.Foam Alpine SpeedLock CB/CB,,,P10321,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_322,Wall T25 PU.Foam OffWhite SlipJoint CB/CB,,,P10322,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_323,Wall T25 PU.Foam Alpine SlipJoint CB/CB,,,P10323,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_324,Wall T25 PU.Foam OffWhite SpeedLock CB/ST,,,P10324,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_325,Wall T25 PU.Foam Alpine SpeedLock CB/ST,,,P10325,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_326,Wall T25 PU.Foam OffWhite SlipJoint CB/ST,,,P10326,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_327,Wall T25 PU.Foam Alpine SlipJoint CB/ST,,,P10327,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_328,Wall T25 PU.Foam OffWhite SpeedLock ST/ST,,,P10328,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_329,Wall T25 PU.Foam Alpine SpeedLock ST/ST,,,P10329,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_330,Wall T25 PU.Foam OffWhite SlipJoint ST/ST,,,P10330,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_331,Wall T25 PU.Foam Alpine SlipJoint ST/ST,,,P10331,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_332,Wall T42 PU.Foam OffWhite SpeedLock CB/CB,,,P10332,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_333,Wall T42 PU.Foam Alpine SpeedLock CB/CB,,,P10333,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_334,Wall T42 PU.Foam OffWhite SlipJoint CB/CB,,,P10334,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_335,Wall T42 PU.Foam Alpine SlipJoint CB/CB,,,P10335,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_336,Wall T42 PU.Foam OffWhite SpeedLock CB/ST,,,P10336,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_337,Wall T42 PU.Foam Alpine SpeedLock CB/ST,,,P10337,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_338,Wall T42 PU.Foam OffWhite SlipJoint CB/ST,,,P10338,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_339,Wall T42 PU.Foam Alpine SlipJoint CB/ST,,,P10339,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_340,Wall T42 PU.Foam OffWhite SpeedLock ST/ST,,,P10340,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_341,Wall T42 PU.Foam Alpine SpeedLock ST/ST,,,P10341,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_342,Wall T42 PU.Foam OffWhite SlipJoint ST/ST,,,P10342,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_343,Wall T42 PU.Foam Alpine SlipJoint ST/ST,,,P10343,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_344,Wall T50 PU.Foam OffWhite SpeedLock CB/CB,,,P10344,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_345,Wall T50 PU.Foam Alpine SpeedLock CB/CB,,,P10345,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_346,Wall T50 PU.Foam OffWhite SlipJoint CB/CB,,,P10346,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_347,Wall T50 PU.Foam Alpine SlipJoint CB/CB,,,P10347,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_348,Wall T50 PU.Foam OffWhite SpeedLock CB/ST,,,P10348,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_349,Wall T50 PU.Foam Alpine SpeedLock CB/ST,,,P10349,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_350,Wall T50 PU.Foam OffWhite SlipJoint CB/ST,,,P10350,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_351,Wall T50 PU.Foam Alpine SlipJoint CB/ST,,,P10351,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_352,Wall T50 PU.Foam OffWhite SpeedLock ST/ST,,,P10352,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_353,Wall T50 PU.Foam Alpine SpeedLock ST/ST,,,P10353,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_354,Wall T50 PU.Foam OffWhite SlipJoint ST/ST,,,P10354,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_355,Wall T50 PU.Foam Alpine SlipJoint ST/ST,,,P10355,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_356,Wall T75 PU.Foam OffWhite SpeedLock CB/CB,,,P10356,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_357,Wall T75 PU.Foam Alpine SpeedLock CB/CB,,,P10357,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_358,Wall T75 PU.Foam OffWhite SlipJoint CB/CB,,,P10358,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_359,Wall T75 PU.Foam Alpine SlipJoint CB/CB,,,P10359,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_360,Wall T75 PU.Foam OffWhite SpeedLock CB/ST,,,P10360,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_361,Wall T75 PU.Foam Alpine SpeedLock CB/ST,,,P10361,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_362,Wall T75 PU.Foam OffWhite SlipJoint CB/ST,,,P10362,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_363,Wall T75 PU.Foam Alpine SlipJoint CB/ST,,,P10363,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_364,Wall T75 PU.Foam OffWhite SpeedLock ST/ST,,,P10364,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_365,Wall T75 PU.Foam Alpine SpeedLock ST/ST,,,P10365,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_366,Wall T75 PU.Foam OffWhite SlipJoint ST/ST,,,P10366,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_367,Wall T75 PU.Foam Alpine SlipJoint ST/ST,,,P10367,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_368,Wall T100 PU.Foam OffWhite SpeedLock CB/CB,,,P10368,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_369,Wall T100 PU.Foam Alpine SpeedLock CB/CB,,,P10369,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_370,Wall T100 PU.Foam OffWhite SlipJoint CB/CB,,,P10370,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_371,Wall T100 PU.Foam Alpine SlipJoint CB/CB,,,P10371,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_372,Wall T100 PU.Foam OffWhite SpeedLock CB/ST,,,P10372,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_373,Wall T100 PU.Foam Alpine SpeedLock CB/ST,,,P10373,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_374,Wall T100 PU.Foam OffWhite SlipJoint CB/ST,,,P10374,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_375,Wall T100 PU.Foam Alpine SlipJoint CB/ST,,,P10375,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_376,Wall T100 PU.Foam OffWhite SpeedLock ST/ST,,,P10376,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_377,Wall T100 PU.Foam Alpine SpeedLock ST/ST,,,P10377,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_378,Wall T100 PU.Foam OffWhite SlipJoint ST/ST,,,P10378,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_379,Wall T100 PU.Foam Alpine SlipJoint ST/ST,,,P10379,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_380,Wall T125 PU.Foam OffWhite SpeedLock CB/CB,,,P10380,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_381,Wall T125 PU.Foam Alpine SpeedLock CB/CB,,,P10381,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_382,Wall T125 PU.Foam OffWhite SlipJoint CB/CB,,,P10382,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_383,Wall T125 PU.Foam Alpine SlipJoint CB/CB,,,P10383,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_384,Wall T125 PU.Foam OffWhite SpeedLock CB/ST,,,P10384,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_385,Wall T125 PU.Foam Alpine SpeedLock CB/ST,,,P10385,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_386,Wall T125 PU.Foam OffWhite SlipJoint CB/ST,,,P10386,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_387,Wall T125 PU.Foam Alpine SlipJoint CB/ST,,,P10387,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_388,Wall T125 PU.Foam OffWhite SpeedLock ST/ST,,,P10388,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_389,Wall T125 PU.Foam Alpine SpeedLock ST/ST,,,P10389,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_390,Wall T125 PU.Foam OffWhite SlipJoint ST/ST,,,P10390,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_391,Wall T125 PU.Foam Alpine SlipJoint ST/ST,,,P10391,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_392,Wall T150 PU.Foam OffWhite SpeedLock CB/CB,,,P10392,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_393,Wall T150 PU.Foam Alpine SpeedLock CB/CB,,,P10393,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_394,Wall T150 PU.Foam OffWhite SlipJoint CB/CB,,,P10394,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_395,Wall T150 PU.Foam Alpine SlipJoint CB/CB,,,P10395,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_396,Wall T150 PU.Foam OffWhite SpeedLock CB/ST,,,P10396,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_397,Wall T150 PU.Foam Alpine SpeedLock CB/ST,,,P10397,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_398,Wall T150 PU.Foam OffWhite SlipJoint CB/ST,,,P10398,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_399,Wall T150 PU.Foam Alpine SlipJoint CB/ST,,,P10399,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_400,Wall T150 PU.Foam OffWhite SpeedLock ST/ST,,,P10400,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_401,Wall T150 PU.Foam Alpine SpeedLock ST/ST,,,P10401,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_402,Wall T150 PU.Foam OffWhite SlipJoint ST/ST,,,P10402,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_403,Wall T150 PU.Foam Alpine SlipJoint ST/ST,,,P10403,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_404,39GAP02-05 W196 H496 ACCESS DOOR 013007,,,463P001,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_405,39GAP02-06 W196 H596 ACCESS DOOR 013008,,,463P002,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_406,39GAP02-07 W196 H696 ACCESS DOOR 013009,,,463P003,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_407,39GAP02-08 W196 H796 ACCESS DOOR 013010,,,463P004,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_408,39GAP02-09 W196 H896 ACCESS DOOR 013011,,,463P005,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_409,39GAP02-10 W196 H996 ACCESS DOOR 013012,,,463P006,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_410,39GAP02-11 W196 H1096 ACCESS DOOR 013013,,,463P007,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_411,39GAP02-12 W196 H1196 ACCESS DOOR 013014,,,463P008,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_412,39GAP02-13 W196 H1296 ACCESS DOOR 013015,,,463P009,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_413,39GAP02-14 W196 H1396 ACCESS DOOR 013016,,,463P010,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_414,39GAP02-15 W196 H1496 ACCESS DOOR 013017,,,463P011,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_415,39GAP02-16 W196 H1596 ACCESS DOOR 013018,,,463P012,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_416,39GAP02-17 W196 H1696 ACCESS DOOR 013019,,,463P013,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_417,39GAP02-18 W196 H1796 ACCESS DOOR 013020,,,463P014,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_418,39GAP02-19 W196 H1896 ACCESS DOOR 013021,,,463P015,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_419,39GAP02-20 W196 H1996 ACCESS DOOR 013022,,,463P016,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_420,39GAP02-21 W196 H2096 ACCESS DOOR 013023,,,463P017,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_421,39GAP02-22 W196 H2196 ACCESS DOOR 013024,,,463P018,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_422,39GAP02-23 W196 H2296 ACCESS DOOR 013025,,,463P019,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_423,39GAP02-24 W196 H2396 ACCESS DOOR 013026,,,463P020,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_424,39GAP02-25 W196 H2496 ACCESS DOOR 013027,,,463P021,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_425,39GAP02-26 W196 H2596 ACCESS DOOR 013028,,,463P022,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_426,PNL ASSY 25MM 0305 CL/GI W459 H769 T25,,,362-1AD0305CLGI,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_427,PNL ASSY 25MM 0306 CL/GI W459 H924 T25,,,362-1AD0306CLGI,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_428,PNL ASSY 25MM 0404 CL/CL W614 H614 T25,,,362-1AD0404CLCL,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_429,PNL ASSY 25MM 0404 CL/GI W614 H614 T25,,,362-1AD0404CLGI,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_430,PNL ASSY 25MM 0404 CL/SS W614 H614 T25,,,362-1AD0404CLSS,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_431,PNL ASSY 25MM 0405 CL/GI W614 H769 T25,,,362-1AD0405CLGI,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_432,PNL ASSY 25MM 0406 CL/CL W614 H924 T25,,,362-1AD0406CLCL,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, +product_product_433,PNL ASSY 25MM 0406 CL/GI W614 H924 T25,,,362-1AD0406CLGI,AHU มีแบบ,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,Wall,sqm,sqm,,Real Time (automated),1,1, diff --git a/masterdata/rev2/10.product.uom.categ.csv b/masterdata/rev2/10.product.uom.categ.csv new file mode 100755 index 0000000..c06d8b2 --- /dev/null +++ b/masterdata/rev2/10.product.uom.categ.csv @@ -0,0 +1,9 @@ +id,name +uom_categ_weight,Weight +uom_categ_area,Area +uom_categ_units,Unit +product.product_uom_categ_unit,Unit (OE) +product.product_uom_categ_kgm,Weight (OE) +product.uom_categ_wtime,Working Time (OE) +product.uom_categ_length,Length / Distance (OE) +product.product_uom_categ_vol,Volume (OE) diff --git a/masterdata/rev2/20.product.uom.csv b/masterdata/rev2/20.product.uom.csv new file mode 100755 index 0000000..4442483 --- /dev/null +++ b/masterdata/rev2/20.product.uom.csv @@ -0,0 +1,12 @@ +id,name,category_id,uom_type,rounding,factor_inv,factor +product.uom_กก,กก,Weight,Reference Unit of Measure for this category,0.01,1,1 +product.uom_sqm,sqm.,Area,Reference Unit of Measure for this category,0.01,1,1 +product.uom_ea,EA,Unit,Reference Unit of Measure for this category,0.01,1,1 +product.uom_set,set,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.uom_lot,lot,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.uom_m,m.,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.uom_pcs,pcs.,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.uom_nos,nos.,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.uom_ชิ้น,ชิ้น,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.uom_คู่,คู่,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.uom_rolls,Rolls,Unit,Smaller than the reference Unit of Measure,0.01,1,1 diff --git a/masterdata/rev2/30.res.partner.csv b/masterdata/rev2/30.res.partner.csv new file mode 100755 index 0000000..97a660c --- /dev/null +++ b/masterdata/rev2/30.res.partner.csv @@ -0,0 +1,6 @@ +id,name,ref,is_company,customer,supplier,parent_id,type,use_parent_address,street,street2,zip,city,country_id/id,phone,mobile,fax,email,category_id/id,website,comment +base.res_partner_bgrim,"B.Grimm Airconditioning Co.,Ltd.",,TRUE,TRUE,FALSE,,Default,FALSE,,,,,,,,,,,, +base.res_partner_amair,Amair Limited,,TRUE,TRUE,FALSE,,Default,FALSE,,,,,,,,,,,, +base.res_partner_daikin,DAIKIN,,TRUE,TRUE,FALSE,,Default,FALSE,,,,,,,,,,,, +base.res_partner_sinko,Sinko,,TRUE,TRUE,FALSE,,Default,FALSE,,,,,,,,,,,, +base.res_partner_alterair,AlterAir,,TRUE,TRUE,FALSE,,Default,FALSE,,,,,,,,,,,, diff --git a/masterdata/rev2/40.product.tag.csv b/masterdata/rev2/40.product.tag.csv new file mode 100755 index 0000000..cabd110 --- /dev/null +++ b/masterdata/rev2/40.product.tag.csv @@ -0,0 +1,5 @@ +id,name +product_tag_std_ahu,Standard AHU +product_tag_ahu,AHU +product_tag_cold,Cold Room +product_tag_clean,Clean Room diff --git a/masterdata/rev2/50.product.category.csv b/masterdata/rev2/50.product.category.csv new file mode 100755 index 0000000..2291a95 --- /dev/null +++ b/masterdata/rev2/50.product.category.csv @@ -0,0 +1,2 @@ +id,name,type,parent_id +product_cat_rawmat,Raw Material,Normal,All products diff --git a/masterdata/rev2/60.product.product.csv b/masterdata/rev2/60.product.product.csv new file mode 100755 index 0000000..3222142 --- /dev/null +++ b/masterdata/rev2/60.product.product.csv @@ -0,0 +1,539 @@ +id,name,description_sale,description_purchase,default_code,partner_id,tag_ids,sale_ok,purchase_ok,type,procure_method,supply_method,list_price,cost_method,standard_price,categ_id,uom_id,uom_po_id,description,valuation,standard_price,list_price,qty_available +product_std_ahu_1,39GAP06-06 ACCESS DOOR 013074,,,463P0068,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,EA,EA,,Real Time (automated),1,394, +product_std_ahu_2,39GPN06-07 PANEL 013229,,,463P0223,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,EA,EA,,Real Time (automated),1,368, +product_std_ahu_3,39GPF06-06 PANEL 013470,,,463P0464,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,EA,EA,,Real Time (automated),1,315, +product_std_ahu_4,39GPN12-25 PANEL 014742,,,463P0637,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,EA,EA,,Real Time (automated),1,2394, +product_std_ahu_5,HINGE DOOR ASSY 0314 CL/GI,,,362-1AH0314CLGI,Amair Limited,Standard AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,EA,EA,,Real Time (automated),1,1, +product_std_ahu_6,HINGE DOOR ASSY 0414 CL/GI,,,362-1AH0414CLGI,Amair Limited,Standard AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,EA,EA,,Real Time (automated),1,1, +product_std_ahu_7,HINGE DOOR ASSY 0714 CL/GI,,,362-1AH0714CLGI,Amair Limited,Standard AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,EA,EA,,Real Time (automated),1,1, +product_std_ahu_8,PNL ASSY 25MM 0314 CL/GI,,,362-1AS0314CLGI,Amair Limited,Standard AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,EA,EA,,Real Time (automated),1,727, +product_std_ahu_9,PNL ASSY 25MM 0414 CL/GI,,,362-1AS0414CLGI,Amair Limited,Standard AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,EA,EA,,Real Time (automated),1,971, +product_std_ahu_10,PNL ASSY 25MM 0714 CL/GI,,,362-1AS0714CLGI,Amair Limited,Standard AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,EA,EA,,Real Time (automated),1,1708, +product_std_ahu_11,PNL ASSY 25MM 0714 GI/GI,,,362-1AS0714GIGI,Amair Limited,Standard AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,EA,EA,,Real Time (automated),1,1730, +product_std_ahu_12,PNL ASSY 25MM 0712 CL/GI STD PU HCFC141B,,,362-1AS0712CLGI,Amair Limited,Standard AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,EA,EA,,Real Time (automated),1,1462, +product_cold_1,Wall T25 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_2,Wall T25 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_3,Wall T25 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_4,Wall T25 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_5,Wall T25 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_6,Wall T25 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_7,Wall T25 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_8,Wall T25 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_9,Wall T25 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_10,Wall T25 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_11,Wall T25 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_12,Wall T25 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_13,Wall T42 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_14,Wall T42 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_15,Wall T42 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_16,Wall T42 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_17,Wall T42 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_18,Wall T42 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_19,Wall T42 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_20,Wall T42 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_21,Wall T42 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_22,Wall T42 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_23,Wall T42 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_24,Wall T42 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_25,Wall T50 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_26,Wall T50 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_27,Wall T50 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_28,Wall T50 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_29,Wall T50 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_30,Wall T50 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_31,Wall T50 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_32,Wall T50 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_33,Wall T50 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_34,Wall T50 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_35,Wall T50 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_36,Wall T50 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_37,Wall T75 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_38,Wall T75 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_39,Wall T75 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_40,Wall T75 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_41,Wall T75 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_42,Wall T75 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_43,Wall T75 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_44,Wall T75 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_45,Wall T75 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_46,Wall T75 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_47,Wall T75 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_48,Wall T75 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_49,Wall T100 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_50,Wall T100 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_51,Wall T100 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_52,Wall T100 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_53,Wall T100 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_54,Wall T100 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_55,Wall T100 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_56,Wall T100 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_57,Wall T100 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_58,Wall T100 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_59,Wall T100 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_60,Wall T100 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_61,Wall T125 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_62,Wall T125 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_63,Wall T125 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_64,Wall T125 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_65,Wall T125 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_66,Wall T125 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_67,Wall T125 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_68,Wall T125 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_69,Wall T125 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_70,Wall T125 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_71,Wall T125 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_72,Wall T125 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_73,Wall T150 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_74,Wall T150 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_75,Wall T150 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_76,Wall T150 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_77,Wall T150 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_78,Wall T150 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_79,Wall T150 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_80,Wall T150 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_81,Wall T150 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_82,Wall T150 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_83,Wall T150 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_84,Wall T150 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_85,Ceiling T25 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_86,Ceiling T25 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_87,Ceiling T25 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_88,Ceiling T25 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_89,Ceiling T25 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_90,Ceiling T25 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_91,Ceiling T25 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_92,Ceiling T25 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_93,Ceiling T25 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_94,Ceiling T25 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_95,Ceiling T25 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_96,Ceiling T25 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_97,Ceiling T42 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_98,Ceiling T42 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_99,Ceiling T42 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_100,Ceiling T42 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_101,Ceiling T42 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_102,Ceiling T42 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_103,Ceiling T42 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_104,Ceiling T42 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_105,Ceiling T42 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_106,Ceiling T42 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_107,Ceiling T42 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_108,Ceiling T42 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_109,Ceiling T50 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_110,Ceiling T50 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_111,Ceiling T50 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_112,Ceiling T50 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_113,Ceiling T50 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_114,Ceiling T50 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_115,Ceiling T50 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_116,Ceiling T50 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_117,Ceiling T50 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_118,Ceiling T50 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_119,Ceiling T50 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_120,Ceiling T50 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_121,Ceiling T75 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_122,Ceiling T75 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_123,Ceiling T75 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_124,Ceiling T75 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_125,Ceiling T75 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_126,Ceiling T75 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_127,Ceiling T75 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_128,Ceiling T75 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_129,Ceiling T75 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_130,Ceiling T75 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_131,Ceiling T75 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_132,Ceiling T75 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_133,Ceiling T100 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_134,Ceiling T100 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_135,Ceiling T100 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_136,Ceiling T100 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_137,Ceiling T100 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_138,Ceiling T100 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_139,Ceiling T100 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_140,Ceiling T100 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_141,Ceiling T100 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_142,Ceiling T100 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_143,Ceiling T100 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_144,Ceiling T100 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_145,Ceiling T125 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_146,Ceiling T125 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_147,Ceiling T125 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_148,Ceiling T125 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_149,Ceiling T125 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_150,Ceiling T125 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_151,Ceiling T125 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_152,Ceiling T125 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_153,Ceiling T125 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_154,Ceiling T125 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_155,Ceiling T125 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_156,Ceiling T125 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_157,Ceiling T150 PU.Foam OffWhite SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_158,Ceiling T150 PU.Foam Alpine SpeedLock CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_159,Ceiling T150 PU.Foam OffWhite SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_160,Ceiling T150 PU.Foam Alpine SlipJoint CB/CB,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_161,Ceiling T150 PU.Foam OffWhite SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_162,Ceiling T150 PU.Foam Alpine SpeedLock CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_163,Ceiling T150 PU.Foam OffWhite SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_164,Ceiling T150 PU.Foam Alpine SlipJoint CB/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_165,Ceiling T150 PU.Foam OffWhite SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_166,Ceiling T150 PU.Foam Alpine SpeedLock ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_167,Ceiling T150 PU.Foam OffWhite SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_168,Ceiling T150 PU.Foam Alpine SlipJoint ST/ST,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_169,Floor T25 Plywood (T) xx mm. Inside Panel,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_170,Floor T42 Plywood (T) xx mm. Inside Panel,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_171,Floor T50 Plywood (T) xx mm. Inside Panel,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_172,Floor T75 Plywood (T) xx mm. Inside Panel,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_173,Floor T100 Plywood (T) xx mm. Inside Panel,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_174,Floor T125 Plywood (T) xx mm. Inside Panel,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_175,Floor T150 Plywood (T) xx mm. Inside Panel,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_176,Floor T25 Aluminium checker plate (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_177,Floor T42 Aluminium checker plate (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_178,Floor T50 Aluminium checker plate (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_179,Floor T75 Aluminium checker plate (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_180,Floor T100 Aluminium checker plate (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_181,Floor T125 Aluminium checker plate (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_182,Floor T150 Aluminium checker plate (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_183,Floor insulation T25 Polyurethane foam (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_184,Floor insulation T42 Polyurethane foam (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_185,Floor insulation T50 Polyurethane foam (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_186,Floor insulation T75 Polyurethane foam (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_187,Floor insulation T100 Polyurethane foam (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_188,Floor insulation T125 Polyurethane foam (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_189,Floor insulation T150 Polyurethane foam (T) xx mm.,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_190,Room lamp (Water proof type),,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_cold_191,"Single swing door (3 Frame) Size: (W) ??? x (H) ?,??? x (T) ?? mm.",,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_cold_192,"Single swing door (4 Frame) Size: (W) ??? x (H) ?,??? x (T) ?? mm.",,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_cold_193,"Double swing door (3 Frame) Size: (W) ??? x (H) ?,??? x (T) ?? mm.",,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_cold_194,"Double swing door (4 Frame) Size: (W) ??? x (H) ?,??? x (T) ?? mm.",,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_cold_195,"Single sliding door (3 Frame) Size: (W) ??? x (H) ?,??? x (T) ?? mm.",,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_cold_196,"Single sliding door (4 Frame) Size: (W) ??? x (H) ?,??? x (T) ?? mm.",,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_cold_197,"Double sliding door (3 Frame) Size: (W) ??? x (H) ?,??? x (T) ?? mm.",,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_cold_198,"Double sliding door (4 Frame) Size: (W) ??? x (H) ?,??? x (T) ?? mm.",,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_cold_199,PVC Strip curtain,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_200,Pressure relief port,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_cold_201,Steel base for Cold Room,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_202,"Other fitting parts (Silicone, bolt, nut, washer, rivet & etc.)",,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_203,Floor heater with Thermostat,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_cold_204,Surface : Stainless 2 side,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_205,Surface : Stainless 1 side,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_206,Surface door : Stainless 2 side,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_cold_207,Surface door : Stainless 1 side,,,,,Cold Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_1,Wall T25 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1200,1200, +product_clean_2,Wall T25 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1150,1150, +product_clean_3,Wall T25 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1150,1150, +product_clean_4,Wall T25 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2700,2700, +product_clean_5,Wall T25 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1950,1950, +product_clean_6,Wall T25 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1900,1900, +product_clean_7,Wall T42 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1350,1350, +product_clean_8,Wall T42 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1300,1300, +product_clean_9,Wall T42 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1250,1250, +product_clean_10,Wall T42 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2850,2850, +product_clean_11,Wall T42 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2100,2100, +product_clean_12,Wall T42 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2050,2050, +product_clean_13,Wall T50 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1540,1540, +product_clean_14,Wall T50 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1500,1500, +product_clean_15,Wall T50 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1450,1450, +product_clean_16,Wall T50 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3040,3040, +product_clean_17,Wall T50 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2290,2290, +product_clean_18,Wall T50 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2250,2250, +product_clean_19,Wall T75 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1900,1900, +product_clean_20,Wall T75 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1850,1850, +product_clean_21,Wall T75 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1800,1800, +product_clean_22,Wall T75 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3400,3400, +product_clean_23,Wall T75 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2650,2650, +product_clean_24,Wall T75 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2600,2600, +product_clean_25,Wall T100 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2000,2000, +product_clean_26,Wall T100 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1900,1900, +product_clean_27,Wall T100 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1850,1850, +product_clean_28,Wall T100 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3500,3500, +product_clean_29,Wall T100 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2750,2750, +product_clean_30,Wall T100 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2650,2650, +product_clean_31,Wall T125 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_32,Wall T125 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_33,Wall T125 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_34,Wall T125 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_35,Wall T125 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_36,Wall T125 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_37,Wall T150 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_38,Wall T150 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_39,Wall T150 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_40,Wall T150 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_41,Wall T150 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_42,Wall T150 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_43,Wall T200 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3200,3200, +product_clean_44,Wall T200 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3150,3150, +product_clean_45,Wall T200 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3100,3100, +product_clean_46,Wall T200 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),4700,4700, +product_clean_47,Wall T200 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3950,3950, +product_clean_48,Wall T200 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3900,3900, +product_clean_49,Wall T25 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_50,Wall T25 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_51,Wall T25 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_52,Wall T25 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_53,Wall T25 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_54,Wall T25 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_55,Wall T42 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_56,Wall T42 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_57,Wall T42 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_58,Wall T42 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_59,Wall T42 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_60,Wall T42 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_61,Wall T50 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_62,Wall T50 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_63,Wall T50 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_64,Wall T50 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_65,Wall T50 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_66,Wall T50 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_67,Wall T75 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_68,Wall T75 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_69,Wall T75 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_70,Wall T75 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_71,Wall T75 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_72,Wall T75 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_73,Wall T100 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_74,Wall T100 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_75,Wall T100 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_76,Wall T100 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_77,Wall T100 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_78,Wall T100 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_79,Wall T125 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_80,Wall T125 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_81,Wall T125 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_82,Wall T125 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_83,Wall T125 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_84,Wall T125 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_85,Wall T150 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_86,Wall T150 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_87,Wall T150 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_88,Wall T150 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_89,Wall T150 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_90,Wall T150 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_91,Wall T200 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_92,Wall T200 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_93,Wall T200 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_94,Wall T200 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_95,Wall T200 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_96,Wall T200 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_97,Wall T25 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_98,Wall T25 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_99,Wall T25 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_100,Wall T25 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_101,Wall T25 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_102,Wall T25 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_103,Wall T42 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_104,Wall T42 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_105,Wall T42 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_106,Wall T42 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_107,Wall T42 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_108,Wall T42 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_109,Wall T50 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_110,Wall T50 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_111,Wall T50 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_112,Wall T50 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_113,Wall T50 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_114,Wall T50 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_115,Wall T75 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_116,Wall T75 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_117,Wall T75 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_118,Wall T75 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_119,Wall T75 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_120,Wall T75 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_121,Wall T100 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_122,Wall T100 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_123,Wall T100 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_124,Wall T100 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_125,Wall T100 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_126,Wall T100 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_127,Wall T125 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_128,Wall T125 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_129,Wall T125 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_130,Wall T125 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_131,Wall T125 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_132,Wall T125 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_133,Wall T150 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_134,Wall T150 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_135,Wall T150 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_136,Wall T150 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_137,Wall T150 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_138,Wall T150 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_139,Wall T200 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_140,Wall T200 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_141,Wall T200 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_142,Wall T200 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_143,Wall T200 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_144,Wall T200 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_145,Ceiling panel T25 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1200,1200, +product_clean_146,Ceiling panel T25 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1150,1150, +product_clean_147,Ceiling panel T25 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1100,1100, +product_clean_148,Ceiling panel T25 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2700,2700, +product_clean_149,Ceiling panel T25 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1950,1950, +product_clean_150,Ceiling panel T25 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1900,1900, +product_clean_151,Ceiling panel T42 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1350,1350, +product_clean_152,Ceiling panel T42 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1300,1300, +product_clean_153,Ceiling panel T42 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1250,1250, +product_clean_154,Ceiling panel T42 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2850,2850, +product_clean_155,Ceiling panel T42 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2100,2100, +product_clean_156,Ceiling panel T42 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2050,2050, +product_clean_157,Ceiling panel T50 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1540,1540, +product_clean_158,Ceiling panel T50 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1500,1500, +product_clean_159,Ceiling panel T50 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1450,1450, +product_clean_160,Ceiling panel T50 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3040,3040, +product_clean_161,Ceiling panel T50 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2290,2290, +product_clean_162,Ceiling panel T50 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2250,2250, +product_clean_163,Ceiling panel T75 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1900,1900, +product_clean_164,Ceiling panel T75 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1850,1850, +product_clean_165,Ceiling panel T75 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1800,1800, +product_clean_166,Ceiling panel T75 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3400,3400, +product_clean_167,Ceiling panel T75 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2650,2650, +product_clean_168,Ceiling panel T75 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2600,2600, +product_clean_169,Ceiling panel T100 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2000,2000, +product_clean_170,Ceiling panel T100 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1900,1900, +product_clean_171,Ceiling panel T100 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1850,1850, +product_clean_172,Ceiling panel T100 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3500,3500, +product_clean_173,Ceiling panel T100 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2750,2750, +product_clean_174,Ceiling panel T100 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),2650,2650, +product_clean_175,Ceiling panel T125 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_176,Ceiling panel T125 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_177,Ceiling panel T125 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_178,Ceiling panel T125 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_179,Ceiling panel T125 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_180,Ceiling panel T125 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_181,Ceiling panel T150 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_182,Ceiling panel T150 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_183,Ceiling panel T150 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_184,Ceiling panel T150 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_185,Ceiling panel T150 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_186,Ceiling panel T150 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_187,Ceiling panel T200 PU.Foam Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3200,3200, +product_clean_188,Ceiling panel T200 PU.Foam Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3150,3150, +product_clean_189,Ceiling panel T200 PU.Foam Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3100,3100, +product_clean_190,Ceiling panel T200 PU.Foam Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),4700,4700, +product_clean_191,Ceiling panel T200 PU.Foam Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3950,3950, +product_clean_192,Ceiling panel T200 PU.Foam Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),3900,3900, +product_clean_193,Ceiling panel T25 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_194,Ceiling panel T25 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_195,Ceiling panel T25 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_196,Ceiling panel T25 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_197,Ceiling panel T25 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_198,Ceiling panel T25 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_199,Ceiling panel T42 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_200,Ceiling panel T42 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_201,Ceiling panel T42 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_202,Ceiling panel T42 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_203,Ceiling panel T42 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_204,Ceiling panel T42 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_205,Ceiling panel T50 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_206,Ceiling panel T50 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_207,Ceiling panel T50 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_208,Ceiling panel T50 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_209,Ceiling panel T50 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_210,Ceiling panel T50 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_211,Ceiling panel T75 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_212,Ceiling panel T75 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_213,Ceiling panel T75 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_214,Ceiling panel T75 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_215,Ceiling panel T75 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_216,Ceiling panel T75 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_217,Ceiling panel T100 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_218,Ceiling panel T100 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_219,Ceiling panel T100 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_220,Ceiling panel T100 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_221,Ceiling panel T100 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_222,Ceiling panel T100 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_223,Ceiling panel T125 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_224,Ceiling panel T125 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_225,Ceiling panel T125 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_226,Ceiling panel T125 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_227,Ceiling panel T125 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_228,Ceiling panel T125 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_229,Ceiling panel T150 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_230,Ceiling panel T150 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_231,Ceiling panel T150 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_232,Ceiling panel T150 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_233,Ceiling panel T150 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_234,Ceiling panel T150 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_235,Ceiling panel T200 Rockwool Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_236,Ceiling panel T200 Rockwool Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_237,Ceiling panel T200 Rockwool Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_238,Ceiling panel T200 Rockwool Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_239,Ceiling panel T200 Rockwool Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_240,Ceiling panel T200 Rockwool Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_241,Ceiling panel T25 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_242,Ceiling panel T25 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_243,Ceiling panel T25 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_244,Ceiling panel T25 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_245,Ceiling panel T25 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_246,Ceiling panel T25 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_247,Ceiling panel T42 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_248,Ceiling panel T42 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_249,Ceiling panel T42 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_250,Ceiling panel T42 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_251,Ceiling panel T42 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_252,Ceiling panel T42 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_253,Ceiling panel T50 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_254,Ceiling panel T50 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_255,Ceiling panel T50 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_256,Ceiling panel T50 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_257,Ceiling panel T50 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_258,Ceiling panel T50 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_259,Ceiling panel T75 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_260,Ceiling panel T75 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_261,Ceiling panel T75 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_262,Ceiling panel T75 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_263,Ceiling panel T75 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_264,Ceiling panel T75 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_265,Ceiling panel T100 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_266,Ceiling panel T100 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_267,Ceiling panel T100 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_268,Ceiling panel T100 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_269,Ceiling panel T100 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_270,Ceiling panel T100 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_271,Ceiling panel T125 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_272,Ceiling panel T125 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_273,Ceiling panel T125 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_274,Ceiling panel T125 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_275,Ceiling panel T125 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_276,Ceiling panel T125 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_277,Ceiling panel T150 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_278,Ceiling panel T150 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_279,Ceiling panel T150 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_280,Ceiling panel T150 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_281,Ceiling panel T150 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_282,Ceiling panel T150 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_283,Ceiling panel T200 PIR Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_284,Ceiling panel T200 PIR Color steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_285,Ceiling panel T200 PIR Galvanized steel sheet/Galvanized steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_286,Ceiling panel T200 PIR Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_287,Ceiling panel T200 PIR Color steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_288,Ceiling panel T200 PIR Galvanized steel sheet/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_clean_289,Aluminium for fitting panel cover with PVC curve,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,m.,m.,,Real Time (automated),800,800, +product_clean_290,Aluminium beam support ceiling panel,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,m.,m.,,Real Time (automated),1200,1200, +product_clean_291,"Other fitting parts (Silicone,bolt,nut,rivet&etc)",,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),300,300, +product_clean_292,Single swing door Flat type,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_clean_293,Double swing door Flat type,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_clean_294,Single sliding door Normal type,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_clean_295,Fixed window double glass Flat type,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),12000,12000, +product_clean_296,Wall return air,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_clean_297,Wall return air with hepa filter,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_clean_298,Opening Panel with Aluminium Frame,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1200,1200, +product_clean_299,Pipe & Handy Box for Inside panel,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),350,350, +product_clean_300,Installation with C/R superivsor,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),400,400, +product_clean_301,Transporatation,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,lot,lot,,Real Time (automated),7000,7000, +product_clean_302,Double sliding door Normal type,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_clean_303,Emergency single swing door Flat type,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),40000,40000, +product_clean_304,Emergency double swing door Flat type,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),55000,55000, +product_clean_305,Single swing door Flat type T42 PU.Form Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),25000,25000, +product_clean_306,Single swing door Flat type T42 PU.Form Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),30000,30000, +product_clean_307,Single swing door Flat type T50 PU.Form Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),27000,27000, +product_clean_308,Single swing door Flat type T50 PU.Form Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),34000,34000, +product_clean_309,Single sliding door Normal type T42 PU.Form Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),35000,35000, +product_clean_310,Single sliding door Normal type T42 PU.Form Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),40000,40000, +product_clean_311,Double sliding door Normal type T42 PU.Form Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),54000,54000, +product_clean_312,Double sliding door Normal type T42 PU.Form Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),60000,60000, +product_clean_313,Wall return air T100 Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),6000,6000, +product_clean_314,Wall return air T100 Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),12000,12000, +product_clean_315,Wall return air T200 Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),8000,8000, +product_clean_316,Wall return air T200 Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),16000,16000, +product_clean_317,Wall return air with hepa filter Color steel sheet/Color steel sheet,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),12000,12000, +product_clean_318,Wall return air with hepa filter Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),20000,20000, +product_clean_319,Wall return air with hepa filter Stainless steel 304/Stainless steel 304,,,,,Clean Room,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),20000,20000, diff --git a/masterdata/rev2/70.product.product.ahu.csv b/masterdata/rev2/70.product.product.ahu.csv new file mode 100755 index 0000000..1f4e606 --- /dev/null +++ b/masterdata/rev2/70.product.product.ahu.csv @@ -0,0 +1,36 @@ +id,name,description_sale,description_purchase,default_code,partner_id,tag_ids,sale_ok,purchase_ok,type,procure_method,supply_method,list_price,cost_method,standard_price,categ_id,uom_id,uom_po_id,description,valuation,standard_price,list_price,qty_available +product_ahu_1,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) None PVC. Frame,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_2,PU Panel (T) 25 mm. (Off White/Off White steel sheet) None PVC. Frame,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_3,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) None PVC. Frame,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_4,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) None PVC. Frame,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_5,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) PVC. Frame,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_6,PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_7,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_8,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_9,"PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_10,"PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_11,"PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame. , Steel Flat-Bar",,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_12,PU Panel (T) 42 mm. (Galvanized/Off White steel sheet) Slip joint with PVC. Frame,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_13,PU Panel (T) 42 mm. (Off White/Off White steel sheet) Slip joint with PVC. Frame,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_14,PU Panel (T) 42 mm. (Stainless/Off White steel sheet) Slip joint with PVC. Frame,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_15,PU Panel (T) 42 mm. (Stainless/Stainless steel sheet) Slip joint with PVC. Frame,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_16,PU Panel (T) 50 mm. (Galvanized/Off White steel sheet) Slip joint with Camlock,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_17,PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint with Camlock,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_18,PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint with Camlock,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_19,PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint with Camlock,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_20,"TGH : PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_21,"TGH : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_22,"TGH : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_23,"CJ : PU Panel (T) 50 mm. (Off White/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_24,"CJ : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_25,"CJ : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_26,Rockwool Panel (T) 50 mm. ( Off White / Off White steel sheet),,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_27,Rockwool Panel (T) 50 mm. ( Styainless / Off White steel sheet),,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_28,Rockwool Panel (T) 50 mm. ( Stainlesse / Stainless steel sheet),,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_29,Single swing door 4 frame.(Color/Color steel sheet) (W) 500 x (H) 700 x (T) 50 mm.(Standard size),,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_ahu_30,CJ : Single swing door 4 frame.(Color/Color steel sheet),,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_ahu_31,TGH : Single swing door 4 frame.(Color / Color steel sheet),,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,set,set,,Real Time (automated),1,1, +product_ahu_32,Stainless steel sheet (T) 0.5 mm. (Add 1 side panel),,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_33,Aluminium Angle 40x40 (Off white color) (L) 6 m.,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,pcs.,pcs.,,Real Time (automated),1,1, +product_ahu_34,Off white color steel sheet (T) 0.5 mm. ,,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,sqm.,sqm.,,Real Time (automated),1,1, +product_ahu_35,Color Off White Spray (MT158),,,,,AHU,TRUE,FALSE,Service,Make to Order,Manufacture,,Standard Price,,All products,nos.,nos.,,Real Time (automated),1,1, diff --git a/masterdata/rev2_ahu_pricelist/SQL b/masterdata/rev2_ahu_pricelist/SQL new file mode 100755 index 0000000..d9037bc --- /dev/null +++ b/masterdata/rev2_ahu_pricelist/SQL @@ -0,0 +1,2 @@ +-- We need this because, somehow, we can't set Product_ID in product.pricelist.item.csv +update product_pricelist_item set product_id = product_tmpl_id where price_discount = -1; \ No newline at end of file diff --git a/masterdata/rev2_ahu_pricelist/product.pricelist.csv b/masterdata/rev2_ahu_pricelist/product.pricelist.csv new file mode 100755 index 0000000..8987946 --- /dev/null +++ b/masterdata/rev2_ahu_pricelist/product.pricelist.csv @@ -0,0 +1,4 @@ +id,company_id/id,currency_id/id,name,type +pricelist_ahu_1,,base.THB,AHU Price List #1,sale +pricelist_ahu_2,,base.THB,AHU Price List #2,sale +pricelist_ahu_3,,base.THB,AHU Price List #3,sale diff --git a/masterdata/rev2_ahu_pricelist/product.pricelist.item.csv b/masterdata/rev2_ahu_pricelist/product.pricelist.item.csv new file mode 100755 index 0000000..659d782 --- /dev/null +++ b/masterdata/rev2_ahu_pricelist/product.pricelist.item.csv @@ -0,0 +1,106 @@ +id,price_version_id/id,name,product_tmpl_id,product_id,base,price_discount,price_surcharge +pricelist_ahu_v1_prod_1,pricelist_ahu_v1,pricelist_ahu_v1_prod_1,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) None PVC. Frame,,1,-1,826.88 +pricelist_ahu_v1_prod_2,pricelist_ahu_v1,pricelist_ahu_v1_prod_2,PU Panel (T) 25 mm. (Off White/Off White steel sheet) None PVC. Frame,,1,-1,882 +pricelist_ahu_v1_prod_3,pricelist_ahu_v1,pricelist_ahu_v1_prod_3,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) None PVC. Frame,,1,-1,1982 +pricelist_ahu_v1_prod_4,pricelist_ahu_v1,pricelist_ahu_v1_prod_4,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) None PVC. Frame,,1,-1,3082 +pricelist_ahu_v1_prod_5,pricelist_ahu_v1,pricelist_ahu_v1_prod_5,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) PVC. Frame,,1,-1,1405.3 +pricelist_ahu_v1_prod_6,pricelist_ahu_v1,pricelist_ahu_v1_prod_6,PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame,,1,-1,1455.3 +pricelist_ahu_v1_prod_7,pricelist_ahu_v1,pricelist_ahu_v1_prod_7,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame,,1,-1,2555.3 +pricelist_ahu_v1_prod_8,pricelist_ahu_v1,pricelist_ahu_v1_prod_8,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame,,1,-1,3655.3 +pricelist_ahu_v1_prod_9,pricelist_ahu_v1,pricelist_ahu_v1_prod_9,"PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v1_prod_10,pricelist_ahu_v1,pricelist_ahu_v1_prod_10,"PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v1_prod_11,pricelist_ahu_v1,pricelist_ahu_v1_prod_11,"PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame. , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v1_prod_12,pricelist_ahu_v1,pricelist_ahu_v1_prod_12,PU Panel (T) 42 mm. (Galvanized/Off White steel sheet) Slip joint with PVC. Frame,,1,-1,1598.24 +pricelist_ahu_v1_prod_13,pricelist_ahu_v1,pricelist_ahu_v1_prod_13,PU Panel (T) 42 mm. (Off White/Off White steel sheet) Slip joint with PVC. Frame,,1,-1,1648.24 +pricelist_ahu_v1_prod_14,pricelist_ahu_v1,pricelist_ahu_v1_prod_14,PU Panel (T) 42 mm. (Stainless/Off White steel sheet) Slip joint with PVC. Frame,,1,-1,2748.24 +pricelist_ahu_v1_prod_15,pricelist_ahu_v1,pricelist_ahu_v1_prod_15,PU Panel (T) 42 mm. (Stainless/Stainless steel sheet) Slip joint with PVC. Frame,,1,-1,3848.24 +pricelist_ahu_v1_prod_16,pricelist_ahu_v1,pricelist_ahu_v1_prod_16,PU Panel (T) 50 mm. (Galvanized/Off White steel sheet) Slip joint with Camlock,,1,-1,1162.75 +pricelist_ahu_v1_prod_17,pricelist_ahu_v1,pricelist_ahu_v1_prod_17,PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint with Camlock,,1,-1,1212.75 +pricelist_ahu_v1_prod_18,pricelist_ahu_v1,pricelist_ahu_v1_prod_18,PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint with Camlock,,1,-1,2312.75 +pricelist_ahu_v1_prod_19,pricelist_ahu_v1,pricelist_ahu_v1_prod_19,PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint with Camlock,,1,-1,3412.75 +pricelist_ahu_v1_prod_20,pricelist_ahu_v1,pricelist_ahu_v1_prod_20,"TGH : PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v1_prod_21,pricelist_ahu_v1,pricelist_ahu_v1_prod_21,"TGH : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v1_prod_22,pricelist_ahu_v1,pricelist_ahu_v1_prod_22,"TGH : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v1_prod_23,pricelist_ahu_v1,pricelist_ahu_v1_prod_23,"CJ : PU Panel (T) 50 mm. (Off White/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v1_prod_24,pricelist_ahu_v1,pricelist_ahu_v1_prod_24,"CJ : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v1_prod_25,pricelist_ahu_v1,pricelist_ahu_v1_prod_25,"CJ : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v1_prod_26,pricelist_ahu_v1,pricelist_ahu_v1_prod_26,Rockwool Panel (T) 50 mm. ( Off White / Off White steel sheet),,1,-1,1 +pricelist_ahu_v1_prod_27,pricelist_ahu_v1,pricelist_ahu_v1_prod_27,Rockwool Panel (T) 50 mm. ( Styainless / Off White steel sheet),,1,-1,1 +pricelist_ahu_v1_prod_28,pricelist_ahu_v1,pricelist_ahu_v1_prod_28,Rockwool Panel (T) 50 mm. ( Stainlesse / Stainless steel sheet),,1,-1,1 +pricelist_ahu_v1_prod_29,pricelist_ahu_v1,pricelist_ahu_v1_prod_29,Single swing door 4 frame.(Color/Color steel sheet) (W) 500 x (H) 700 x (T) 50 mm.(Standard size),,1,-1,4410 +pricelist_ahu_v1_prod_30,pricelist_ahu_v1,pricelist_ahu_v1_prod_30,CJ : Single swing door 4 frame.(Color/Color steel sheet),,1,-1,1 +pricelist_ahu_v1_prod_31,pricelist_ahu_v1,pricelist_ahu_v1_prod_31,TGH : Single swing door 4 frame.(Color / Color steel sheet),,1,-1,1 +pricelist_ahu_v1_prod_32,pricelist_ahu_v1,pricelist_ahu_v1_prod_32,Stainless steel sheet (T) 0.5 mm. (Add 1 side panel),,1,-1,1100 +pricelist_ahu_v1_prod_33,pricelist_ahu_v1,pricelist_ahu_v1_prod_33,Aluminium Angle 40x40 (Off white color) (L) 6 m.,,1,-1,937.13 +pricelist_ahu_v1_prod_34,pricelist_ahu_v1,pricelist_ahu_v1_prod_34,Off white color steel sheet (T) 0.5 mm. ,,1,-1,367.5 +pricelist_ahu_v1_prod_35,pricelist_ahu_v1,pricelist_ahu_v1_prod_35,Color Off White Spray (MT158),,1,-1,367.5 +pricelist_ahu_v2_prod_1,pricelist_ahu_v2,pricelist_ahu_v2_prod_1,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) None PVC. Frame,,1,-1,1 +pricelist_ahu_v2_prod_2,pricelist_ahu_v2,pricelist_ahu_v2_prod_2,PU Panel (T) 25 mm. (Off White/Off White steel sheet) None PVC. Frame,,1,-1,880 +pricelist_ahu_v2_prod_3,pricelist_ahu_v2,pricelist_ahu_v2_prod_3,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) None PVC. Frame,,1,-1,1980 +pricelist_ahu_v2_prod_4,pricelist_ahu_v2,pricelist_ahu_v2_prod_4,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) None PVC. Frame,,1,-1,3080 +pricelist_ahu_v2_prod_5,pricelist_ahu_v2,pricelist_ahu_v2_prod_5,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) PVC. Frame,,1,-1,1 +pricelist_ahu_v2_prod_6,pricelist_ahu_v2,pricelist_ahu_v2_prod_6,PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame,,1,-1,935 +pricelist_ahu_v2_prod_7,pricelist_ahu_v2,pricelist_ahu_v2_prod_7,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame,,1,-1,2035 +pricelist_ahu_v2_prod_8,pricelist_ahu_v2,pricelist_ahu_v2_prod_8,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame,,1,-1,3135 +pricelist_ahu_v2_prod_9,pricelist_ahu_v2,pricelist_ahu_v2_prod_9,"PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",,1,-1,995 +pricelist_ahu_v2_prod_10,pricelist_ahu_v2,pricelist_ahu_v2_prod_10,"PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",,1,-1,2095 +pricelist_ahu_v2_prod_11,pricelist_ahu_v2,pricelist_ahu_v2_prod_11,"PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame. , Steel Flat-Bar",,1,-1,3195 +pricelist_ahu_v2_prod_12,pricelist_ahu_v2,pricelist_ahu_v2_prod_12,PU Panel (T) 42 mm. (Galvanized/Off White steel sheet) Slip joint with PVC. Frame,,1,-1,1 +pricelist_ahu_v2_prod_13,pricelist_ahu_v2,pricelist_ahu_v2_prod_13,PU Panel (T) 42 mm. (Off White/Off White steel sheet) Slip joint with PVC. Frame,,1,-1,1 +pricelist_ahu_v2_prod_14,pricelist_ahu_v2,pricelist_ahu_v2_prod_14,PU Panel (T) 42 mm. (Stainless/Off White steel sheet) Slip joint with PVC. Frame,,1,-1,1 +pricelist_ahu_v2_prod_15,pricelist_ahu_v2,pricelist_ahu_v2_prod_15,PU Panel (T) 42 mm. (Stainless/Stainless steel sheet) Slip joint with PVC. Frame,,1,-1,1 +pricelist_ahu_v2_prod_16,pricelist_ahu_v2,pricelist_ahu_v2_prod_16,PU Panel (T) 50 mm. (Galvanized/Off White steel sheet) Slip joint with Camlock,,1,-1,1 +pricelist_ahu_v2_prod_17,pricelist_ahu_v2,pricelist_ahu_v2_prod_17,PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint with Camlock,,1,-1,1 +pricelist_ahu_v2_prod_18,pricelist_ahu_v2,pricelist_ahu_v2_prod_18,PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint with Camlock,,1,-1,1 +pricelist_ahu_v2_prod_19,pricelist_ahu_v2,pricelist_ahu_v2_prod_19,PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint with Camlock,,1,-1,1 +pricelist_ahu_v2_prod_20,pricelist_ahu_v2,pricelist_ahu_v2_prod_20,"TGH : PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,1,-1,1210 +pricelist_ahu_v2_prod_21,pricelist_ahu_v2,pricelist_ahu_v2_prod_21,"TGH : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,1,-1,2310 +pricelist_ahu_v2_prod_22,pricelist_ahu_v2,pricelist_ahu_v2_prod_22,"TGH : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,1,-1,3410 +pricelist_ahu_v2_prod_23,pricelist_ahu_v2,pricelist_ahu_v2_prod_23,"CJ : PU Panel (T) 50 mm. (Off White/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,1,-1,1210 +pricelist_ahu_v2_prod_24,pricelist_ahu_v2,pricelist_ahu_v2_prod_24,"CJ : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,1,-1,2310 +pricelist_ahu_v2_prod_25,pricelist_ahu_v2,pricelist_ahu_v2_prod_25,"CJ : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,1,-1,3410 +pricelist_ahu_v2_prod_26,pricelist_ahu_v2,pricelist_ahu_v2_prod_26,Rockwool Panel (T) 50 mm. ( Off White / Off White steel sheet),,1,-1,2755 +pricelist_ahu_v2_prod_27,pricelist_ahu_v2,pricelist_ahu_v2_prod_27,Rockwool Panel (T) 50 mm. ( Styainless / Off White steel sheet),,1,-1,3855 +pricelist_ahu_v2_prod_28,pricelist_ahu_v2,pricelist_ahu_v2_prod_28,Rockwool Panel (T) 50 mm. ( Stainlesse / Stainless steel sheet),,1,-1,4955 +pricelist_ahu_v2_prod_29,pricelist_ahu_v2,pricelist_ahu_v2_prod_29,Single swing door 4 frame.(Color/Color steel sheet) (W) 500 x (H) 700 x (T) 50 mm.(Standard size),,1,-1,1 +pricelist_ahu_v2_prod_30,pricelist_ahu_v2,pricelist_ahu_v2_prod_30,CJ : Single swing door 4 frame.(Color/Color steel sheet),,1,-1,2450 +pricelist_ahu_v2_prod_31,pricelist_ahu_v2,pricelist_ahu_v2_prod_31,TGH : Single swing door 4 frame.(Color / Color steel sheet),,1,-1,3300 +pricelist_ahu_v2_prod_32,pricelist_ahu_v2,pricelist_ahu_v2_prod_32,Stainless steel sheet (T) 0.5 mm. (Add 1 side panel),,1,-1,1100 +pricelist_ahu_v2_prod_33,pricelist_ahu_v2,pricelist_ahu_v2_prod_33,Aluminium Angle 40x40 (Off white color) (L) 6 m.,,1,-1,1 +pricelist_ahu_v2_prod_34,pricelist_ahu_v2,pricelist_ahu_v2_prod_34,Off white color steel sheet (T) 0.5 mm. ,,1,-1,345 +pricelist_ahu_v2_prod_35,pricelist_ahu_v2,pricelist_ahu_v2_prod_35,Color Off White Spray (MT158),,1,-1,370 +pricelist_ahu_v3_prod_1,pricelist_ahu_v3,pricelist_ahu_v3_prod_1,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) None PVC. Frame,,1,-1,830 +pricelist_ahu_v3_prod_2,pricelist_ahu_v3,pricelist_ahu_v3_prod_2,PU Panel (T) 25 mm. (Off White/Off White steel sheet) None PVC. Frame,,1,-1,850 +pricelist_ahu_v3_prod_3,pricelist_ahu_v3,pricelist_ahu_v3_prod_3,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) None PVC. Frame,,1,-1,1900 +pricelist_ahu_v3_prod_4,pricelist_ahu_v3,pricelist_ahu_v3_prod_4,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) None PVC. Frame,,1,-1,2900 +pricelist_ahu_v3_prod_5,pricelist_ahu_v3,pricelist_ahu_v3_prod_5,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) PVC. Frame,,1,-1,900 +pricelist_ahu_v3_prod_6,pricelist_ahu_v3,pricelist_ahu_v3_prod_6,PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame,,1,-1,950 +pricelist_ahu_v3_prod_7,pricelist_ahu_v3,pricelist_ahu_v3_prod_7,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame,,1,-1,2000 +pricelist_ahu_v3_prod_8,pricelist_ahu_v3,pricelist_ahu_v3_prod_8,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame,,1,-1,3000 +pricelist_ahu_v3_prod_9,pricelist_ahu_v3,pricelist_ahu_v3_prod_9,"PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v3_prod_10,pricelist_ahu_v3,pricelist_ahu_v3_prod_10,"PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v3_prod_11,pricelist_ahu_v3,pricelist_ahu_v3_prod_11,"PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame. , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v3_prod_12,pricelist_ahu_v3,pricelist_ahu_v3_prod_12,PU Panel (T) 42 mm. (Galvanized/Off White steel sheet) Slip joint with PVC. Frame,,1,-1,1 +pricelist_ahu_v3_prod_13,pricelist_ahu_v3,pricelist_ahu_v3_prod_13,PU Panel (T) 42 mm. (Off White/Off White steel sheet) Slip joint with PVC. Frame,,1,-1,1 +pricelist_ahu_v3_prod_14,pricelist_ahu_v3,pricelist_ahu_v3_prod_14,PU Panel (T) 42 mm. (Stainless/Off White steel sheet) Slip joint with PVC. Frame,,1,-1,1 +pricelist_ahu_v3_prod_15,pricelist_ahu_v3,pricelist_ahu_v3_prod_15,PU Panel (T) 42 mm. (Stainless/Stainless steel sheet) Slip joint with PVC. Frame,,1,-1,1 +pricelist_ahu_v3_prod_16,pricelist_ahu_v3,pricelist_ahu_v3_prod_16,PU Panel (T) 50 mm. (Galvanized/Off White steel sheet) Slip joint with Camlock,,1,-1,1080 +pricelist_ahu_v3_prod_17,pricelist_ahu_v3,pricelist_ahu_v3_prod_17,PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint with Camlock,,1,-1,1100 +pricelist_ahu_v3_prod_18,pricelist_ahu_v3,pricelist_ahu_v3_prod_18,PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint with Camlock,,1,-1,2100 +pricelist_ahu_v3_prod_19,pricelist_ahu_v3,pricelist_ahu_v3_prod_19,PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint with Camlock,,1,-1,3100 +pricelist_ahu_v3_prod_20,pricelist_ahu_v3,pricelist_ahu_v3_prod_20,"TGH : PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v3_prod_21,pricelist_ahu_v3,pricelist_ahu_v3_prod_21,"TGH : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v3_prod_22,pricelist_ahu_v3,pricelist_ahu_v3_prod_22,"TGH : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v3_prod_23,pricelist_ahu_v3,pricelist_ahu_v3_prod_23,"CJ : PU Panel (T) 50 mm. (Off White/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v3_prod_24,pricelist_ahu_v3,pricelist_ahu_v3_prod_24,"CJ : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v3_prod_25,pricelist_ahu_v3,pricelist_ahu_v3_prod_25,"CJ : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,1,-1,1 +pricelist_ahu_v3_prod_26,pricelist_ahu_v3,pricelist_ahu_v3_prod_26,Rockwool Panel (T) 50 mm. ( Off White / Off White steel sheet),,1,-1,1 +pricelist_ahu_v3_prod_27,pricelist_ahu_v3,pricelist_ahu_v3_prod_27,Rockwool Panel (T) 50 mm. ( Styainless / Off White steel sheet),,1,-1,1 +pricelist_ahu_v3_prod_28,pricelist_ahu_v3,pricelist_ahu_v3_prod_28,Rockwool Panel (T) 50 mm. ( Stainlesse / Stainless steel sheet),,1,-1,1 +pricelist_ahu_v3_prod_29,pricelist_ahu_v3,pricelist_ahu_v3_prod_29,Single swing door 4 frame.(Color/Color steel sheet) (W) 500 x (H) 700 x (T) 50 mm.(Standard size),,1,-1,3500 +pricelist_ahu_v3_prod_30,pricelist_ahu_v3,pricelist_ahu_v3_prod_30,CJ : Single swing door 4 frame.(Color/Color steel sheet),,1,-1,1 +pricelist_ahu_v3_prod_31,pricelist_ahu_v3,pricelist_ahu_v3_prod_31,TGH : Single swing door 4 frame.(Color / Color steel sheet),,1,-1,1 +pricelist_ahu_v3_prod_32,pricelist_ahu_v3,pricelist_ahu_v3_prod_32,Stainless steel sheet (T) 0.5 mm. (Add 1 side panel),,1,-1,1000 +pricelist_ahu_v3_prod_33,pricelist_ahu_v3,pricelist_ahu_v3_prod_33,Aluminium Angle 40x40 (Off white color) (L) 6 m.,,1,-1,1 +pricelist_ahu_v3_prod_34,pricelist_ahu_v3,pricelist_ahu_v3_prod_34,Off white color steel sheet (T) 0.5 mm. ,,1,-1,350 +pricelist_ahu_v3_prod_35,pricelist_ahu_v3,pricelist_ahu_v3_prod_35,Color Off White Spray (MT158),,1,-1,1 diff --git a/masterdata/rev2_ahu_pricelist/product.pricelist.version.csv b/masterdata/rev2_ahu_pricelist/product.pricelist.version.csv new file mode 100755 index 0000000..b1b1877 --- /dev/null +++ b/masterdata/rev2_ahu_pricelist/product.pricelist.version.csv @@ -0,0 +1,4 @@ +id,name,pricelist_id/id +pricelist_ahu_v1,Default AHU Pricelist #1 Version,pricelist_ahu_1 +pricelist_ahu_v2,Default AHU Pricelist #2 Version,pricelist_ahu_2 +pricelist_ahu_v3,Default AHU Pricelist #3 Version,pricelist_ahu_3 diff --git a/masterdata/rev3_test_supplier_and_product/10.product.category.csv b/masterdata/rev3_test_supplier_and_product/10.product.category.csv new file mode 100755 index 0000000..317846d --- /dev/null +++ b/masterdata/rev3_test_supplier_and_product/10.product.category.csv @@ -0,0 +1,8 @@ +id,name,type,parent_id +product_cat_rawmat,Raw Materials,Normal,All products +product_cat_aluminium,Aluminium,Normal,Raw Materials +product_cat_install_supply,Installation Supplies,Normal,Raw Materials +product_cat_supply,Supplies,Normal,Raw Materials +product_cat_pvc,PVC,Normal,Raw Materials +product_cat_coil,Coil,Normal,Raw Materials +product_cat_fg,Finished Goods,Normal,Raw Materials diff --git a/masterdata/rev3_test_supplier_and_product/20.res.partner.category.csv b/masterdata/rev3_test_supplier_and_product/20.res.partner.category.csv new file mode 100755 index 0000000..bb91830 --- /dev/null +++ b/masterdata/rev3_test_supplier_and_product/20.res.partner.category.csv @@ -0,0 +1,8 @@ +id,name +partner_categ_1,ALUMINIUM +partner_categ_2,INSTALLATION +partner_categ_3,วัสดุสิ้นเปลือง +partner_categ_4,PVC +partner_categ_5,วัตถุดิบ +partner_categ_6,อุปกรณ์/เครื่องใช้สำนักงาน +partner_categ_7,อื่น ๆ diff --git a/masterdata/rev3_test_supplier_and_product/30.res.partner.csv b/masterdata/rev3_test_supplier_and_product/30.res.partner.csv new file mode 100755 index 0000000..1c28ccd --- /dev/null +++ b/masterdata/rev3_test_supplier_and_product/30.res.partner.csv @@ -0,0 +1,27 @@ +id,name,ref,is_company,customer,supplier,parent_id,type,use_parent_address,street,street2,zip,city,country_id/id,phone,mobile,fax,email,category_id/id,website,comment,property_supplier_payment_term +Supplier_1,"KRUNGTEP UNION MFG. CO.,LTD.",,TRUE,FALSE,TRUE,,Default,FALSE,47 หมู่ 2 ถ.สุวินทวงศ์,ลำผักชี หนองจอก,10530,กรุงเทพฯ,,02-989 7791-4,,02-989 7878,,,,"PVC , ยาง ", +Supplier_2,คุณสุนีย์รัตน์,,FALSE,FALSE,TRUE,"KRUNGTEP UNION MFG. CO.,LTD.",Default,FALSE,,,,,,,081 - 1701490,,,,,, +Supplier_3,บริษัท เอส. จี สยาม จำกัด,,TRUE,FALSE,TRUE,,Default,FALSE,11/272-272 ม.10 ถ.เอกชัย,แขวงบางบอน เขตบางบอน,10150,กรุงเทพฯ,,02 - 895 0545 -6 ,,02 - 895 3029 ,,,,"PVC , ยาง ",CASH +Supplier_4,คุณหน่อย,,FALSE,FALSE,TRUE,บริษัท เอส. จี สยาม จำกัด,Default,FALSE,,,,,,,089-4949485,,,,,, +Supplier_5,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,,TRUE,FALSE,TRUE,,Default,FALSE,4/7 ม.9,ต.นาดี อ.เมืองสมุทรสาคร,74000,สมุทรสาคร,,034-466011-6,,034-466017-8,,,,"PVC , ยาง ",30 +Supplier_6,คุณทักษิณ ,,FALSE,FALSE,TRUE,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,Default,FALSE,,,,,,,01-9099456,,,,,, +Supplier_7,คุณเสริมศักดิ์,,FALSE,FALSE,TRUE,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,Default,FALSE,,,,,,,081-6301569,,,,,, +Supplier_8,คุณบี,,FALSE,FALSE,TRUE,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,Default,FALSE,,,,,,,06-3247323,,,,,, +Supplier_9,คุณศิริรัตน์-CN,,FALSE,FALSE,TRUE,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,Default,FALSE,,,,,,,,,,,,, +Supplier_10,บริษัท ซิลเวอร์โกลด์ พลาสติก จำกัด,,TRUE,FALSE,TRUE,,Default,FALSE,81/70-72 ม.20 (ไทรอัมพ์ เซ็นเตอร์) ถ.เทพารักษ์ กม.12,ต.บางพลีใหญ่ อ.บางพลี,10540,สมุทรปราการ,,01-3183339 / 02-3129720-22,,02-3129723,,,,"PVC , ยาง ",30 +Supplier_11,คุณคฑาวุธ ,,FALSE,FALSE,TRUE,บริษัท ซิลเวอร์โกลด์ พลาสติก จำกัด,Default,FALSE,,,,,,,,,,,,, +Supplier_12,บริษัท วีเทค อีเล็คตริค เซ็นเตอร์ จำกัด,,TRUE,FALSE,TRUE,,Default,FALSE,1063 ถ.พระราม 4,แขวงวังใหม่ เขตปทุมวัน ,10330,กรุงเทพฯ,,02-6117719,,02-6117721,,,,อุปกรณ์ไฟฟ้า ,60 +Supplier_13,สมชาย,,FALSE,FALSE,TRUE,บริษัท วีเทค อีเล็คตริค เซ็นเตอร์ จำกัด,Default,FALSE,,,,,,,,,,,,, +Supplier_14,บริษัท เค.ซี.(กระทุ่มแบน) อุตสาหกรรม จำกัด ,,TRUE,FALSE,TRUE,,Default,FALSE,107 หมู่ 10,ต.คลองมะเดือ อ.กระทุ่มแบน ,,สมุทรสาคร,,0-2878-0432-6,,0-2468-3728,,,,Aluminium,CASH +Supplier_15,บริษัท ซิมเมอร์ เมตัล สแตนดาร์ด จำกัด,,TRUE,FALSE,TRUE,,Default,FALSE,1/4 ม.7,ต.บ้านแถว อ.เสนา,13110,พระนครศรีอยุธยา,,02-6176025-6 /081-6856926,,"02-2721546, 2720877",,,,Aluminium,45 +Supplier_16,ปราวีณา / จิน,,FALSE,FALSE,TRUE,บริษัท ซิมเมอร์ เมตัล สแตนดาร์ด จำกัด,Default,FALSE,,,,,,,,,,,,, +Supplier_17,บริษัท ไทยเม็ททอล จำกัด,,TRUE,FALSE,TRUE,,Default,FALSE,205 ม.2 ถ.บางปิ้ง-แพรกษา (พุทธรักษา),ต.ท้ายบ้าน อ.เมือง,10280,สมุทรปราการ,,02-7029787-91,,02-7028559,,,,Aluminium,60 +Supplier_18,คุณกชพร,,FALSE,FALSE,TRUE,บริษัท ไทยเม็ททอล จำกัด,Default,FALSE,,,,,,,,,,,,, +Supplier_19,บริษัท พรนครินทร์ อลูมินั่ม จำกัด,,TRUE,FALSE,TRUE,,Default,FALSE,407/25-27 ม.5 ถนนศรีนครินทร์,ตำบลสำโรงเหนือ อำเภอเมือง,10270,สมุทรปราการ ,,"02-3857871, 02-7587372",,"02-3857871, 02-7587372",,,,"Aluminium ( สำเร็จรูป , PART ขายตามท้องตลาด)",15 +Supplier_20,คุณอัมพร,,FALSE,FALSE,TRUE,บริษัท พรนครินทร์ อลูมินั่ม จำกัด,Default,FALSE,,,,,,,,,,,,, +Supplier_21,บริษัท รัตนดำรงค์ จำกัด,,TRUE,FALSE,TRUE,,Default,FALSE,258 หมู่ 4 ซอย ว.ป.อ. 11 ( พิเศษ) ถ.เศรษฐกิจ 1,ต.ท่าไม้ อ.กระทุ่มแบน,,สมุทรสาคร,,"02 - 810 0179-80 ,02-429 1929",,02 - 4291929 ,,,,Aluminium,45 +Supplier_22,คุณสะรากรณ์,,FALSE,FALSE,TRUE,บริษัท รัตนดำรงค์ จำกัด,Default,FALSE,,,,,,,0-81 331 1687 ,,,,,, +Supplier_23,บริษัท แอลเมทไทย จำกัด,,TRUE,FALSE,TRUE,,Default,FALSE,235 ม.7 ถ.สุขุมวิท กม35,ต.บางปูใหม่ อ.เมือง,,สมุทรปราการ ,,"02 - 323 2635 - 40 , 02 - 709 5608 -11",,02-709 5607,,,,Aluminium,30 +Supplier_24,คุณพิสิต,,FALSE,FALSE,TRUE,บริษัท แอลเมทไทย จำกัด,Default,FALSE,,,,,,,,,,,,, +Supplier_25,ร้านสมานมิตร ,,TRUE,FALSE,TRUE,,Default,FALSE,802 หมู่ 1,ต.พนมสารคาม อ.พนมสารคาม,,ฉะเชิงเทรา,, (038)883 9191,, (038)883 9191,,,,"Aluminium ( สำเร็จรูป , PART ขายตามท้องตลาด)",CASH +Supplier_26,คุณไพรวัลย์,,FALSE,FALSE,TRUE,ร้านสมานมิตร ,Default,FALSE,,,,,,,089-964 0222,,,,,, diff --git a/masterdata/rev3_test_supplier_and_product/60.product.product.csv b/masterdata/rev3_test_supplier_and_product/60.product.product.csv new file mode 100755 index 0000000..458b882 --- /dev/null +++ b/masterdata/rev3_test_supplier_and_product/60.product.product.csv @@ -0,0 +1,113 @@ +id,name,description_sale,description_purchase,default_code,partner_id,seller_ids/name,seller_ids/delay,seller_ids/min_qty,tag_ids,sale_ok,purchase_ok,type,procure_method,supply_method,cost_method,categ_id,uom_id,uom_po_id,description,valuation,standard_price,list_price,qty_available +rawmat_pvc_1,PVC FRAME FOR DAIKIN 25 MM. (BROWN),,,SP04001,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),31.39,, +rawmat_pvc_2,PVE FRAME FOR DAIKIN 41.5 MM.(BROWN),,,SP04002,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),41.5,, +rawmat_pvc_3,CEILING CORNER FRAME (WHITE),,,SP04003,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_4,DOOR FRAME 42 MM. (BROWN),,,SP04004-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_5,DOOR FRAME 42 MM. (WHITE),,,SP04004-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_6,PVC FRAME 50 MM. (GRAY),,,SP04005-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),19,, +rawmat_pvc_7,PVC FRAME 50 MM. (WHITE),,,SP04005-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),19,, +rawmat_pvc_8,PVC FRAME 75 MM. (GRAY),,,SP04006-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),63.22,, +rawmat_pvc_9,PVC FRAME 75 MM. (WHITE),,,SP04006-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),63.22,, +rawmat_pvc_10,PVC FRAME 100 MM. (GRAY),,,SP04007-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),68.8,, +rawmat_pvc_11,PVC FRAME 100 MM. (WHITE),,,SP04007-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),68.8,, +rawmat_pvc_12,PVC FRAME 125 MM. (GREY),,,SP04008,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_13,DOOR FRAME 100 MM. (BROWN),,,SP04009,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),101.16,, +rawmat_pvc_14,PVC FRAME 25 MM. (GREY),,,SP04010,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),11.88,, +rawmat_pvc_15,MALE FRAME [42MM] (BLACK),,,SP04011-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),26.13,, +rawmat_pvc_16,MALE FRAME [42MM] (WHITE),,,SP04011-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),26.13,, +rawmat_pvc_17,FEMALE FRAME [42MM] (BLACK),,,SP04012-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),26.13,, +rawmat_pvc_18,FEMALE FRAME [42MM] (WHITE),,,SP04012-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),26.13,, +rawmat_pvc_19,"CORNER FRAME R,L [42MM] (WHITE)",,,SP04013,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_20,MALE FRAME 100 MM. (GRAY),,,SP04014-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),66.5,, +rawmat_pvc_21,MALE FRAME 100 MM. (WHITE),,,SP04014-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),66.5,, +rawmat_pvc_22,PVC SPACER 25 MM.,,,SP04015,,บริษัท เอส. จี สยาม จำกัด,15,20000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),0.75,, +rawmat_pvc_23,PVC SPACER 42 MM.,,,SP04016,,บริษัท เอส. จี สยาม จำกัด,15,20000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),0.9,, +rawmat_pvc_24,PVC SPACER 50 MM.,,,SP04017,,บริษัท เอส. จี สยาม จำกัด,15,20000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),1.25,, +rawmat_pvc_25,PVC SPACER 75 MM.,,,SP04018,,บริษัท เอส. จี สยาม จำกัด,15,20000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),1.4,, +rawmat_pvc_26,PVC SPACER 100 MM.,,,SP04019,,บริษัท เอส. จี สยาม จำกัด,15,20000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),1.65,, +rawmat_pvc_27,PVC SPACER 125 MM.,,,SP04020,,บริษัท เอส. จี สยาม จำกัด,15,20000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),1.85,, +rawmat_pvc_28,PVC SPACER 150 MM.,,,SP04021,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),2.5,, +rawmat_pvc_29,PVC ELBOW FOR DOOR SEAL (BLACK),,,SP04022,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_30,FLOOR & CEILING FRAME 100 MM. (GRAY),,,SP04023-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_31,FLOOR & CEILING FRAME 100 MM. (WHITE),,,SP04023-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_32,FEMALE FRAME 100 MM. (GRAY),,,SP04024,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),47.5,, +rawmat_pvc_33,PVC CAP สีเทาตัวเล็ก (WHITE),,,SP04025,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),4.63,, +rawmat_pvc_34,CORNER FRAME 100 MM. (WHITE),,,SP04026,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_35,PVC PIPE 20 MM. (WHITE),,,SP04027,,บริษัท วีเทค อีเล็คตริค เซ็นเตอร์ จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),32,, +rawmat_pvc_36,PVC FRAME ANGLE 65 MM.(OFF WHITE),,,SP04028,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),21.84,, +rawmat_pvc_37,PVC CAP FOR ANGLE 65 MM.(OFF WHITE),,,SP04031,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),21.84,, +rawmat_pvc_38,PVC FRAME ANGLE 65 MM.(ALPINE WHITE),,,SP04033,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),21.84,, +rawmat_pvc_39,MALE FRAME 75 MM. (BLACK),,,SP04034,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),53.19,, +rawmat_pvc_40,FEMALE FRAME 75 MM. (BLACK),,,SP04035,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),49.8,, +rawmat_pvc_41,FLOOR & CEILING 75 MM. (WHITE),,,SP04036,,,,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_42,PVC CORNER 75 MM. (BLACK),,,SP04037,,,,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_43,PVC FRAME 25 X 50 (SINKO) (GREY),,,SP04038,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),23.58,, +rawmat_pvc_44,PVC DOOR FRAME 49 MM. (GREY),,,SP04039-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),35.29,, +rawmat_pvc_45,PVC DOOR FRAME 49 MM. (OFF WHITE),,,SP04039-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),35.29,, +rawmat_pvc_46,PVC FRAME H9X17X32 FOR TAKAHASHI (GRAY),,,SP04040-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),28.5,, +rawmat_pvc_47,PVC FRAME H9X17X32 FOR TAKAHASHI (WHITE),,,SP04040-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),28.5,, +rawmat_pvc_48,PVC FRAME H9X16X53 FOR TAKAHASHI (GRAY),,,SP04041-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),33.25,, +rawmat_pvc_49,PVC FRAME H9X16X53 FOR TAKAHASHI (WHITE),,,SP04041-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),33.25,, +rawmat_pvc_50,PVC FEMALE FRAME 42MM SIZE : L 2400 MM. (@ 14.25/M.) (WHITE),,,SP04042,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),14.25,, +rawmat_pvc_51,ฝาฉีดโฟมตัวเมีย 42 MM. (BLACK),,,SP04043,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,5000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),2.09,, +rawmat_pvc_52,ฝาฉีดโฟมตัวเมีย 50 MM. (BLACK),,,SP04044,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,5000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),2.53,, +rawmat_pvc_53,ฝาฉีดโฟมตัวเมีย 75 MM. (BLACK),,,SP04045,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,5000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),2.62,, +rawmat_pvc_54,ฝาฉีดโฟมตัวเมีย 100 MM. (BLACK),,,SP04046,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,5000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),2.93,, +rawmat_pvc_55,ฝาฉีดโฟมตัวผู้ 42 MM. (BLACK),,,SP04047,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,5000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),2.09,, +rawmat_pvc_56,ฝาฉีดโฟมตัวผู้ 50 MM. (BLACK),,,SP04048,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,5000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),2.53,, +rawmat_pvc_57,ฝาฉีดโฟมตัวผู้ 75 MM. (BLACK),,,SP04049,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,5000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),2.62,, +rawmat_pvc_58,ฝาฉีดโฟมตัวผู้ 100 MM. (BLACK),,,SP04050,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,5000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),2.93,, +rawmat_pvc_59,PVC GUIDE 26X29 MM. (WHITE) L:2200 MM.,,,SP04051,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,1000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),34.91,, +rawmat_pvc_60,PVC GUIDE 26X86 MM. (WHITE) L:2200 MM.,,,SP04052,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),49.88,, +rawmat_pvc_61,PVC GUIDE 29X27X26 MM. (WHITE) L:2200 MM.,,,SP04053-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),42.75,, +rawmat_pvc_62,PVC GUIDE 29X27X26 MM. (WHITE) L:2200 MM.,,,SP04053-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),42.75,, +rawmat_pvc_63,PVC FRAME FOR DAIKIN 25X25X49 MM. (สีเทา) L:3000 MM.,,,SP04054,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),18.87,, +rawmat_pvc_64,END CAP FOR DOORCLOSER (R) ,,,SP04055,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),5.78,, +rawmat_pvc_65,END CAP FOR DOORCLOSER (L) ,,,SP04056,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,5000,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),5.78,, +rawmat_pvc_66,PVC FRAME 42 MM.(OFF WHITE),,,SP04057,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),20.9,, +rawmat_pvc_67,ตัวปิดรูฝาฉีดโฟม,,,SP04058,,,,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_68,PVC CURVE OUTSIDE(OFF WHITE),,,SP04059,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,set,set,,Real Time (automated),8.5,, +rawmat_pvc_69,PVC CURVE OUTSIDE(ALPINE WHITE),,,SP04060,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,set,set,,Real Time (automated),8.5,, +rawmat_pvc_70,"PVC CORNER 65MM.TYPE""B""(OFF WHITE)",,,SP04061,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,set,set,,Real Time (automated),8.8,, +rawmat_pvc_71,"PVC CORNER 65MM.TYPE""B""(ALPINE WHITE)",,,SP04062,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,set,set,,Real Time (automated),8.8,, +rawmat_pvc_72,"PVC ANGLE 65MM.TYPE""B""(OFF WHITE)",,,SP04063,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),8.8,, +rawmat_pvc_73,"PVC ANGLE 65MM.TYPE""B""(ALPINE WHITE)",,,SP04064,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),8.8,, +rawmat_pvc_74,PVC DOOR FRAME 25 MM.(AHU) (GRAY),,,SP04068,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),16.72,, +rawmat_pvc_75,PVC DOOR PANEL 25 MM.(AHU) (GRAY),,,SP04069,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),16.72,, +rawmat_pvc_76,"FLOOR & CELLING FRAME 50 MM. L = 3 M./ "" GREY 5342 "" (99.75-/M) ",,,SP04070,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),99.75,, +rawmat_pvc_77,MALE FRAME 50 MM. (GRAY),,,SP04071,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),24.94,, +rawmat_pvc_78,"LOCK PIPE Ø 3/4""",,,SP04072,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),50.88,, +rawmat_pvc_79,"LOCK PIPE Ø 1/2""",,,SP04073,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_80,END CAP FOR FLOOR & CEILING FRAME 50 MM. (R) ,,,SP04076,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),3.15,, +rawmat_pvc_81,END CAP FOR FLOOR & CEILING FRAME 50 MM. (L) ,,,SP04077,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),3.15,, +rawmat_pvc_82,END CAP FOR DOOR CLOSER DOR MA (R) ,,,SP04079,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),4.2,, +rawmat_pvc_83,END CAP FOR DOOR CLOSER DORMA (L) ,,,SP04080,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),4.2,, +rawmat_pvc_84,PVC GUIDE FOR DOOR AND WINDOW 42 MM. ,,,SP04081,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),24.94,, +rawmat_pvc_85,PVC GUIDE FOR DOOR AND WINDOW 100 MM. ,,,SP04082,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),42.89,, +rawmat_pvc_86,"PVC CONNECTOR 1/2""",,,SP04083,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),2.1,, +rawmat_pvc_87,"PVC CONNECTOR 3/4""",,,SP04084,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),2.63,, +rawmat_pvc_88,"PP PIPE Ø 1/2"" L : 2500 MM.(BLACK)",,,SP04085,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_89,"PP PIPE Ø 3/4"" L : 2500 MM.(BLACK)",,,SP04086,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),55.8,, +rawmat_pvc_90,"PVC CORNER 65MM.TYPE""C"" (OFF WHITE)",,,SP04087,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,set,set,,Real Time (automated),,, +rawmat_pvc_91,"PVC CORNER 65MM.TYPE""C"" (ALPINE WHITE)",,,SP04088,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,set,set,,Real Time (automated),10.56,, +rawmat_pvc_92,"PVC ANGLE 65MM.TYPE""C""(OFF WHITE)",,,SP04089,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),10.56,, +rawmat_pvc_93,"PVC ANGLE 65MM.TYPE""C""(ALPINE WHITE)",,,SP04090,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),10.56,, +rawmat_pvc_94,PVC CURVE OUTSIDE(OFF WHITE),,,SP04091,,,,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_95,PVC CURVE OUTSIDE(ALPINE WHITE),,,SP04092,,,,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_96,PVC DOOR FRAME 50 MM.(AHU) (GRAY),,,SP04093-1,,,,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_97,PVC DOOR FRAME 50 MM.(AHU) (WHITE),,,SP04093-2,,,,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_98,PVC PLUG (WHITE),,,SP04094,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_99,PVC PLUG (GRAY),,,SP04095-1,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_100,PVC PLUG (WHITE),,,SP04095-2,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_101,PVC GUIDE 25X36 MM. (WHITE) L:2200 MM.,,,SP04096,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),42.75,, +rawmat_pvc_102,PVC GUIDE FOR DOOR AND WINDOW 50 MM. ,,,SP04097,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),3.35,, +rawmat_pvc_103,LAMP COVER ( PC ใส),,,SP04098,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),83.12,, +rawmat_pvc_104,รางล็อคโคมไฟล่าง PP (WHITE),,,SP04099,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),5,, +rawmat_pvc_105,ฝาครอบสวิตช์ 1 ช่อง,,,SP04100,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),10,, +rawmat_pvc_106,ฝาครอบสวิตช์ 2 ช่อง,,,SP04101,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),10,, +rawmat_pvc_107,MOBILE DRIAN FOR BACK STOCK,,,SP04102,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,set,set,,Real Time (automated),15,, +rawmat_pvc_108,PVC DOOR FRAME 25 MM.(AHU),,,SP04103,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),17.56,, +rawmat_pvc_109,PVC DOOR PANEL 25 MM.(AHU),,,SP04104,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),17.56,, +rawmat_pvc_110,PVC CORNER COVER FOR BACK STOCK,,,SP04105,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, +rawmat_pvc_111,"PP BOX 2"" X 4""",,,SP04106,,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,15,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),10.5,, +rawmat_pvc_112,GUID LIMIT SWITCH,,,SP04107,,,,,,FALSE,TRUE,Stockable Product,Make to Order,Buy,Standard Price,PVC,pcs.,pcs.,,Real Time (automated),,, diff --git a/masterdata/rev4_final/10.saleperson.res.users.csv b/masterdata/rev4_final/10.saleperson.res.users.csv new file mode 100755 index 0000000..55b0d9f --- /dev/null +++ b/masterdata/rev4_final/10.saleperson.res.users.csv @@ -0,0 +1,8 @@ +id,name,login,password,company_id/id,active,lang,tz,action_id/id,notification_email_send,email,signature,groups_id/id +base.user_chatchai,Chatchai T.,chatchai,chatchai,base.main_company,True,en_US,Asia/Bangkok,,Never,admin@example.com,Chatchai T.,base.group_user +base.user_weeranuwat,Weeranuwat S.,weeranuwat,weeranuwat,base.main_company,True,en_US,Asia/Bangkok,,Never,admin@example.com,Weeranuwat S.,base.group_user +base.user_dusit,Dusit T.,dusit,dusit,base.main_company,True,en_US,Asia/Bangkok,,Never,admin@example.com,Dusit T.,base.group_user +base.user_surasak,Surasak S.,surasak,surasak,base.main_company,True,en_US,Asia/Bangkok,,Never,admin@example.com,Surasak S.,base.group_user +base.user_visak,Visak T.,visak,visak,base.main_company,True,en_US,Asia/Bangkok,,Never,admin@example.com,Visak T.,base.group_user +base.user_somboon,Somboon T.,somboon,somboon,base.main_company,True,en_US,Asia/Bangkok,,Never,admin@example.com,Somboon T.,base.group_user +base.user_chairat,Chairat S.,chairat,chairat,base.main_company,True,en_US,Asia/Bangkok,,Never,admin@example.com,Chairat S.,base.group_user diff --git a/masterdata/rev4_final/20.customer.res.partner.csv b/masterdata/rev4_final/20.customer.res.partner.csv new file mode 100755 index 0000000..d05cb53 --- /dev/null +++ b/masterdata/rev4_final/20.customer.res.partner.csv @@ -0,0 +1,317 @@ +id,name,ref,property_payment_term,credit_limit,is_company,customer,supplier,parent_id,type,use_parent_address,street,street2,zip,city,country_id/id,phone,mobile,fax,email,category_id/id,website,comment,user_id +res_partner_supplier_1,ห้างหุ้นส่วนจำกัด สามที เซ็นเตอร์เซอร์วิส,,30 Days,100000,TRUE,TRUE,FALSE,,Default,FALSE,61/70 หมู่ 6 ,ลำลูกกา ลำลูกกา,12150,ปทุมธานี,,0-2987-1753,,0-2987-1164,,,,,Chatchai T. +res_partner_supplier_2,บริษัท แอดวานซ์ ซีวิล กรุ๊ป จำกัด,,30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,295 สามเสน,วัดสามพระยา พระนคร,10200,กรุงเทพมหานคร,,"0-2280-5274, 0-2280-2164",,0-2628-5568,,,,,Chatchai T. +res_partner_supplier_3,บริษัท แอดวานซ์ ซีวิล กรุ๊ป จำกัด (Shipping),,,,FALSE,TRUE,FALSE,บริษัท แอดวานซ์ ซีวิล กรุ๊ป จำกัด,Shipping,FALSE,35/172 หมู่ 1 ,ตลาดขวัญ เมือง,11000,นนทบุรี,,"0-2282-4280, 0-2282-6789",,,,,,, +res_partner_supplier_4,บริษัท แอร์โค จำกัด,,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,1126/2 อาคาร วานิช 2 ชั้น 30-31 เพชรบุรีตัดใหม่,มักกะสัน ราชเทวี,10400,กรุงเทพมหานคร,,0-2704-9999,,0-2704-9631,,,,,Chairat S. +res_partner_supplier_5,บริษัท แอดวานซ์ ฟาร์มาซูติคอล แมนูแฟคเจอริ่ง จำกัด,,30 Days,20000000,TRUE,TRUE,FALSE,,Default,FALSE,601/5-8 ซอย สุทธิพร ประชาสงเคราะห์,ดินแดง ดินแดง,10400,กรุงเทพมหานคร,,0-2663-2323,,0-2248-5370,,,,,Chairat S. +res_partner_supplier_6,บริษัท เอ - โอเค จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,19/72 หมู่ 1 หมู่บ้านรอยัลนครินทร์วิลล่า ศรีนครินทร์,หนองบอน ประเวศ,10250,กรุงเทพมหานคร,,0-2743-3744-5,,0-2743-3746,,,,,Weeranuwat S. +res_partner_supplier_7,บริษัท เอ.ดี.ดี เอ็นจิเนียริ่ง จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,205 ซอย สมเด็จพระเจ้าตากสิน 18 ,บุคคโล ธนบุรี,10600,กรุงเทพมหานคร,,0-2890-4600,,0-2890-4600,,,,,Chairat S. +res_partner_supplier_8,บริษัท อารีย์ เอ็นจิเนียร์ ซัพพลายส์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,22/323 หมู่ 10 อาคาร เอเวอร์กรีน ทาวเวอร์ ชั้น 1 ซอย บางนา 56 บางนา-ตราด,บางนา บางนา,10260,กรุงเทพมหานคร,,0-2751-5125,,0-2751-5124,,,,,Chatchai T. +res_partner_supplier_9,ห้างหุ้นส่วนจำกัด เอ.อาร์.แอล.เอ็นจิเนียริ่ง,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,2535-2536 หมู่ 2 ,คลองจิก บางปะอิน,13160,พระนครศรีอยุธยา,,0-3522-0766,,0-3522-0748,,,,, +res_partner_supplier_10,บริษัท แอม.เจ คอนสตรัคชั่น แอนด์ แมนเนจเม้นท์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,52/478 หมู่ 7 ซอย เอกทักษิณ พหลโยธิน,หลักหก เมือง,12000,ปทุมธานี,,0-2533-9977,,0-2997-7364,,,,,Dusit T. +res_partner_supplier_11,บริษัท ออริก้า เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,4/31 หมู่ 1 พระราม 2 ซอย 18,บางมด จอมทอง,10150,กรุงเทพมหานคร,,0-2877-1193-4,,0-2877-1140,,,,,Dusit T. +res_partner_supplier_12,บริษัท แอร์บอร์น เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,51/14 ซอย ศิริถาวร พระราม 9,สวนหลวง สวนหลวง,10250,กรุงเทพมหานคร,,0-2719-1114,,0-2719-1114,,,,,Chatchai T. +res_partner_supplier_13,บริษัท เอ อี เอส วิศวกรรม จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1451 ซอย ลาดพร้าว 94 ลาดพร้าว,วังทองหลาง วังทองหลาง,10310,กรุงเทพมหานคร,,0-2530-3974-8,,0-2530-3976,,,,,Chatchai T. +res_partner_supplier_14,บริษัท แอกเซส อินดัสเตรียล เทคโนโลยี จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,274 อาคาร เอ2 ชั้น 1 ซอย ศูนย์วิจัย 4 (โรงเรียนญี่ปุ่น) พระราม 9,บางกะปิ ห้วยขวาง,10320,กรุงเทพมหานคร,,"0-2319-9961-4, 0-2319-9372-3",,0-2319-9960,,,,,Surasak S. +res_partner_supplier_15,บริษัท เอ แอล เค เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,39 หมู่ 12 ,ทรายมูล สันกำแพง,50130,เชียงใหม่,,0-5330-8362,,0-5330-8319,,,,,Surasak S. +res_partner_supplier_16,บริษัท ออลเทอร์ แอร์คอนดิชั่นนิ่ง จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,410 ซอย พระยาสุเรนทร์ 30 รามอินทรา 109,บางชัน คลองสามวา,10510,กรุงเทพมหานคร,,0-2540-6871,,0-2918-6954,,,,,Dusit T. +res_partner_supplier_17,บริษัท เอเชีย วี.เอส.ซี. คอร์ปอเรชั่น จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,8/2 ซอย สามแยกบายพาส สุขุมวิท,เนินพระ เมือง,21150,ระยอง,,0-3868-8589-92,,0-3868-8591,,,,, +res_partner_supplier_18,บริษัท ออโตเมชั่นเซอร์วิส จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,4 อโศก-ดินแดง,ดินแดง ดินแดง,10400,กรุงเทพมหานคร,,"0-2246-0330, 0-2246-0324",,0-3862-4663,,,,,Visak T. +res_partner_supplier_19,บริษัท เอ.แอล.ที. อินเตอร์ คอร์ปอเรชั่น จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,51 หมู่ 5 บางกรวย-ไทรน้อย,บางสีทอง บางกรวย,11130,นนทบุรี,,0-2886-3356,,0-2886-3084,,,,, +res_partner_supplier_20,บริษัท แอมแอร์ จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,999/1 หมู่ 9 บางนา-ตราด กม.19,บางโฉลง บางพลี,10540,สมุทรปราการ,,0-2769-2222,,0-2769-2254,,,,,Visak T. +res_partner_supplier_21,ห้างหุ้นส่วนจำกัด เอซีซีโอ กรุ๊ป,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,7/984 หมู่ 6 ,สามวาตะวันตก คลองสามวา,10510,กรุงเทพมหานคร,,0-2914-1358-9,,0-2914-4899,,,,, +res_partner_supplier_22,บริษัท อนุสรณ์มหาชัยห้องเย็น จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,59/6 หมู่ 8 ,ท่าทราย เมือง,74000,สมุทรสาคร,,0-3442-9005-10,,0-3442-9009-10,,,,,Somboon T. +res_partner_supplier_23,บริษัท แอ๊พพลายคูล เซอร์วิส จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,4 ซอย ชุ่มชื่น อโศก-ดินแดง,ดินแดง ดินแดง,10400,กรุงเทพมหานคร,,0-2246-0218,,0-2246-0330,,,,, +res_partner_supplier_24,บริษัท แอร์พลัส แอ๊พพลาย จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,48/259 หมู่ 1 รามคำแหง,สะพานสูง สะพานสูง,10240,กรุงเทพมหานคร,,"0-2729-6796-9, 0-2729-4523",,0-2729-4532,,,,,Chatchai T. +res_partner_supplier_25,บริษัท เอ.อาร์.ซี เอ็นจิเนียริ่ง จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,389/114 หมู่ 6 สุขุมวิท,นาเกลือ บางละมุง,20150,ชลบุรี,,0-3871-6867-8,,0-3871-6896,,,,, +res_partner_supplier_26,บริษัท ไบเออร์ไทย จำกัด,,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,130/1 สาทรเหนือ,สีลม บางรัก,10500,กรุงเทพมหานคร,,0-2324-620,,0-2709-4325,,,,,Surasak S. +res_partner_supplier_27,ห้างหุ้นส่วนจำกัด บีบีเอส บ่อวิน เอ็นจิเนียริ่ง,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,75/37 หมู่ 7 ,บ่อวิน ศรีราชา,20230,ชลบุรี,,0-3805-7726,,0-3805-7727,,,,,Weeranuwat S. +res_partner_supplier_28,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,54 หมู่ 14 สุวินทวงศ์,กระทุ่มราย หนองจอก,10530,กรุงเทพมหานคร,,0-2988-2391-7,,0-2988-2144,,,,,Visak T. +res_partner_supplier_29,บริษัท เบลล์เลอร์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,105/105 หมู่ 10 หมู่บ้านพฤกษาทาวน์ 1 (ราชพฤกษ์) ,บางกร่าง เมือง,11000,นนทบุรี,,0-2444-5076,,0-2444-5079,,,,,Weeranuwat S. +res_partner_supplier_30,บริษัท บางกอกอินเตอร์คอน จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,35/14 หมู่ 6 สุขุมวิท 77,ประเวศ ประเวศ,10250,กรุงเทพมหานคร,,"0-2321-2602, 0-2321-9049",,0-2721-2791,,,,, +res_partner_supplier_31,บริษัท บิลเดอร์ มาสเตอร์ จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,99/79 หมู่ พุทธมณฑลสาย 5,บางกระทึก สามพราน,13210,นครปฐม,,0-2482-1491-2,,0-2800-1634,,,,,Surasak S. +res_partner_supplier_32,บริษัท ไบโอมูฟ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,222/24 หมู่ 12 ซอย มัยลาภ รามอินทรา 14,ลาดพร้าว ลาดพร้าว,10230,กรุงเทพมหานคร,,0-2274-8614,,0-2274-8615,,,,,Weeranuwat S. +res_partner_supplier_33,บริษัท บี ไอ เอส เอส จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,4/250 ซอย หมู่บ้านมิตรภาพ ศรีนครินทร์,หนองบอน ประเวศ,10250,กรุงเทพมหานคร,,0-2322-4833,,0-2322-4833,,,,,Weeranuwat S. +res_partner_supplier_34,บริษัท บี.กริม เฮ็ลธ แคร์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,88 กรุงเทพกรีฑา,หัวหมาก บางกะปิ,10240,กรุงเทพมหานคร,,0-2710-3000,,"0-2379-4252, 0-2374-4469",,,,,Surasak S. +res_partner_supplier_35,ร้านบุญญลิต,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,1806-07 หมู่ 4 สุขุมวิท,เทพารักษ์ เมือง,10270,สมุทรปราการ,,0-2384-1574,,0-2757-7387,,,,,Chairat S. +res_partner_supplier_36,บริษัท เบสเทรด พรีซิชั่น จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,701/20 ซอย วัดจันทร์ใน ,บางโคล่ บางคอแหลม,10120,กรุงเทพมหานคร,,0-2264-1600,,0-2284-1591-2,,,,,Dusit T. +res_partner_supplier_37,ห้างหุ้นส่วนจำกัด บางพลี แฟคตอรี่ คอนซัลท์,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,300/27 หมู่ 11 ,บางพลีใหญ่ บางพลี,10540,สมุทรปราการ,,0-2337-3614,,0-2752-1184,,,,, +res_partner_supplier_38,บริษัท บัลมอรัล จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,177/25 หมู่ 8 ซอย ชนบท รามคำแหง,มีนบุรี มีนบุรี,10510,กรุงเทพมหานคร,,0-2919-4077,,,,,,, +res_partner_supplier_39,บริษัท บ้านสีเขียว จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,494 หมู่ 6 ,พนานิคม กิ่งอำเภอนิคม,21180,ระยอง,,0-3889-7434-5,,0-3889-7435,,,,,Visak T. +res_partner_supplier_40,ห้างหุ้นส่วนจำกัด บูญรวม เอ็นจิเนียริ่ง,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,88/1034 หมู่ 6 พระราม 2,แสมดำ บางขุนเทียน,10150,กรุงเทพมหานคร,,0-2416-6534,,0-2416-6550,,,,,Visak T. +res_partner_supplier_41,บริษัท บีที ฮีท-ชีล โซลูชั่น (ประเทศไทย) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,531/64 ซอย ศูนย์วิจัย 4 พระราม 9,บางกะปิ ห้วยขวาง,10310,กรุงเทพมหานคร,,0-2719-7396,,0-2719-7397,,,,,Chatchai T. +res_partner_supplier_42,บริษัท บิทไว้ส์ (ประเทศไทย) จำกัด,,30 Days,200000,TRUE,TRUE,FALSE,,Default,FALSE,25/12 หมู่ 20 ซอย ศรีทองสุข 2 เทพารักษ์ กม. 12,บางพลีใหญ่ บางพลี,10540,สมุทรปราการ,,0-2312-3995-8,,0-2312-3104,,,,,Dusit T. +res_partner_supplier_43,บริษัท เบิร์ค ก่อสร้าง จำกัด,,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,19/12 อาคาร เคพีเอ็นทาวเวอร์ ชั้น 11 โซน D1 พระราม 9,บางกะปิ ห้วยขวาง,10320,กรุงเทพมหานคร,,0-2717-1300,,0-2717-1310,,,,,Chatchai T. +res_partner_supplier_44,บริษัท เบอร์ลี่ยุคเกอร์ จำกัด (มหาชน),,Cash,1000000,TRUE,TRUE,FALSE,,Default,FALSE,99 ซอย รูเบีย สุขุมวิท 42,พระโขนง คลองเตย,10110,กรุงเทพมหานคร,,"0-2367-1199, 0-2367-1177",,0-2381-4541,,,,,Weeranuwat S. +res_partner_supplier_45,บริษัท ไบโอเนท-เอเชีย จำกัด,,Cash,10000000,TRUE,TRUE,FALSE,,Default,FALSE,19/1 ซอย อุดมสุข 37 สุขุมวิท 103,บางจาก พระโขนง,10260,กรุงเทพมหานคร,,0-2361-8110,,0-2361-8105,,,,,Visak T. +res_partner_supplier_46,บริษัท บิ๊ค เคมิคอล จำกัด,,30 Days,10000000,TRUE,TRUE,FALSE,,Default,FALSE,333/12-13 หมู่ 9 บางบัวทอง-สุพรรณบุรี,ละหาร บางบัวทอง,11110,นนทบุรี,,"0-2964-4912-4, 0-2964-4973-6",,0-2964-4915,,,,,Chatchai T. +res_partner_supplier_47,บริษัท บิวเดอสมาร์ท จำกัด (มหาชน),,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,905/7 ซอย พระราม 3 ที่ 51 พระราม 3,บางโพงพาง ยานนาวา,10120,กรุงเทพมหานคร,,0-2683-4900,,0-2683-4949,,,,,Weeranuwat S. +res_partner_supplier_48,บริษัท เบตเตอร์ เบสท์ อิมเมจ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,452 ซอย 28 รัชดาภิเษก,สามเสนนอก ห้วยขวาง,10320,กรุงเทพมหานคร,,0-2938-2568-9,,0-2938-1405,,,,, +res_partner_supplier_49,บริษัท เบตเตอร์ เบสท์ อิมเมจ จำกัด (Shipping),,,,FALSE,TRUE,FALSE,บริษัท เบตเตอร์ เบสท์ อิมเมจ จำกัด,Shipping,FALSE,253 หมู่ 2 ,ขามทะเลสอ ขามทะเลสอ,30280,นครราชสีมา,,0-4433-3001-4,,0-4433-3338,,,,, +res_partner_supplier_50,บริษัท เบสท์ไดเรคชั่น ซิสเต็ม จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,52/1 หมู่ 13 ,สะพานสูง สะพานสูง,10250,กรุงเทพมหานคร,,"0-2736-1700-3, 0-2736-1705-8",,"0-2736-1704, 0-2736-1709",,,,, +res_partner_supplier_51,บริษัท บางกอกมีท โปรเซสซิ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,3/2 ซอย สุขุมวิท 27 สุขุมวิท,คลองเตยเหนือ วัฒนา,10110,กรุงเทพมหานคร,,0-2661-7560-9,,0-2261-0888-9,,,,, +res_partner_supplier_52,บริษัท บางกอก เดค-คอน จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,52/3 หมู่ 8 บางบัวทอง-สุพรรณบุรี,ละหาร บางบัวทอง,11110,นนทบุรี,,0-2925-5777,,0-2925-5778,,,,, +res_partner_supplier_53,บริษัท เบลตัน อินดัสเตรียล (ประเทศไทย) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,101/110 หมู่ 20 พหลโยธิน,คลองหนึ่ง คลองหลวง,12120,ปทุมธานี,,0-2529-7400,,0-2529-5076,,,,,Chairat S. +res_partner_supplier_54,บริษัท บี.พี.เอส. รีฟริกเจอเรชั่น จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,161/173 หมู่ 9 หมู่บ้านเก้าแสน เทพารักษ์,บางปลา บางพลี,10540,สมุทรปราการ,,0-2706-6484,,0-2706-4673,,,,, +res_partner_supplier_55,บริษัท ซี อี แอนด์ ที อินเตอร์เนชั่นแนล จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,209/1 พระราม 3,บางคอแหลม บางคอแหลม,10120,กรุงเทพมหานคร,,0-2289-4029-30,,0-2289-3979,,,,,Chatchai T. +res_partner_supplier_56,บริษัท คลีนแอร์ เทคโนโลยี จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,68/127 หมู่ 7 รามคำแหง,มีนบุรี มีนบุรี,10510,กรุงเทพมหานคร,,0-2722-7307-8,,0-2722-9068,,,,,Chatchai T. +res_partner_supplier_57,บริษัท คอนเวอร์แซนต์ เทคโนโลยี จำกัด,,30 Days,200000,TRUE,TRUE,FALSE,,Default,FALSE,9/10 ซอย อ่อนนุช 27 ,สวนหลวง สวนหลวง,10250,กรุงเทพมหานคร,,0-2742-2872-3,,0-2742-2677,,,,,Weeranuwat S. +res_partner_supplier_58,บริษัท ซายน์เทค จำกัด,,PDC. 15 Days,,TRUE,TRUE,FALSE,,Default,FALSE,321/43 นางลิ้นจี่,ช่องนนทรี ยานนาวา,10120,กรุงเทพมหานคร,,0-2285-4101,,0-2854-4178,,,,,Dusit T. +res_partner_supplier_59,ห้างหุ้นส่วนจำกัด เชียงใหม่วีระวิศวการ,,PDC. 30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,44-44/1-2 หมู่ 5 ,ฟ้าฮ่าม เมือง,50000,เชียงใหม่,,0-5385-3100,,0-5385-2344,,,,,Chatchai T. +res_partner_supplier_60,บริษัท ซีที โฟลว์ จำกัด,,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,801/212 หมู่ 8 ,คูคต ลำลูกกา,12130,ปทุมธานี,,0-2531-6801-2,,0-2351-7951,,,,,Chatchai T. +res_partner_supplier_61,บริษัท ซีพีเอฟ ผลิตภัณฑ์อาหาร จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,111 ซอย บางนา-ตราด 20 ,บางนา บางนา,10260,กรุงเทพมหานคร,,0-2746-9731-8,,0-2746-9708,,,,,Weeranuwat S. +res_partner_supplier_62,บริษัท คลีนสแตท (ประเทศไทย) จำกัด,,30 Days,200000,TRUE,TRUE,FALSE,,Default,FALSE,207 หมู่ 1 ,บ้านเลน บางปะอิน,13160,พระนครศรีอยุธยา,,0-3595-0511,,0-3595-0509,,,,,Weeranuwat S. +res_partner_supplier_63,บริษัท คลีนแอร์อินโนเวชั่น จำกัด,,30 Days,5000000,TRUE,TRUE,FALSE,,Default,FALSE,551/80 ซอย สรรค์สุข สาธุประดิษฐ์,ช่องนนทรี ยานนาวา,10120,กรุงเทพมหานคร,,0-2682-0438,,0-2294-6068,,,,,Chairat S. +res_partner_supplier_64,บริษัท แคนนอน ฟาร์อีสต์ (ไทยแลนด์) จำกัด,,Cash,50000,TRUE,TRUE,FALSE,,Default,FALSE,48 ซอย รามคำแหง 14 รามคำแหง,หัวหมาก บางกะปิ,10240,กรุงเทพมหานคร,,0-2319-2591-7,,0-2319-2598,,,,,Visak T. +res_partner_supplier_65,บริษัท จิรสิน แมชชีนเนอรี่ เซอร์วิส จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,3/253-255 หมู่ 9 สุวินทวงศ์,ลำผักชี หนองจอก,10530,กรุงเทพมหานคร,,0-2543-5151,,0-2543-5663,,,,,Weeranuwat S. +res_partner_supplier_66,บริษัท คลีน แอร์ โปรดักท์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,14/2 ซอย รามคำแหง 21 รามคำแหง,วังทองหลาง วังทองหลาง,10310,กรุงเทพมหานคร,,"0-2319-7035-6, 0-2319-3780, 0-2718-6140, 0-2718-6421",,0-2718-5859,,,,,Chatchai T. +res_partner_supplier_67,ห้างหุ้นส่วนจำกัด เชียงใหม่กฤษฎาการช่าง,,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,22 หมู่ 10 ,ป่าไผ่ สันทราย,50210,เชียงใหม่,,0-5349-8896,,0-5349-8896,,,,,Chairat S. +res_partner_supplier_68,บริษัท คลูเทค เอ็นจิเนียริ่ง จำกัด,,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,108/26 หมู่ 4 พุทธมณฑลสาย 2,บางแคเหนือ บางแค,10160,กรุงเทพมหานคร,,0-2805-4008-9,,0-2805-4008,,,,, +res_partner_supplier_69,บริษัท ซีทีแลบอราตอรี่ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,99/99 ซอย ติวานนท์ 38 ติวานนท์,ท่าทราย เมือง,11000,นนทบุรี,,0-2950-7738-42,,0-2589-4098,,,,,Weeranuwat S. +res_partner_supplier_70,ห้างหุ้นส่วนจำกัด ซี.เค.เอส. เทคโนโลยี,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,525/58 หมู่ 2 ,ประชาธิปัตย์ ธัญบุรี,,ปทุมธานี,,0-2979-0739,,0-2979-0739,,,,, +res_partner_supplier_71,บริษัท เชียร์ ซิสเต็ม อินเตอร์เนชั่นแนล (ไทยแลนด์) จำกัด,,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,103/1-2 หมู่ 12 ,บางปลา บางพลี,10540,สมุทรปราการ,,0-2174-6182-6,,0-2174-6187,,,,,Chatchai T. +res_partner_supplier_72,บริษัท ชัยภัฎ เทรดดิ้ง แอนด์ คอนสตรัคชั่น จำกัด,,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,69/114 จรัญสนิทวงศ์,บางขุนศรี บางกอกน้อย,10700,กรุงเทพมหานคร,,0-2865-8736-7,,0-2865-8738,,,,,Chatchai T. +res_partner_supplier_73,บริษัท เจริญไชย โฮม ซิสเต็ม จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,84/9 หมู่ 3 ติวานนท์,บางพูด ปากเกร็ด,11120,นนทบุรี,,0-2582-2679,,0-2582-2680,,,,,Dusit T. +res_partner_supplier_74,บริษัท คอนเนลส์ เอ็นจิเนียริ่ง (ประเทศไทย) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,48/53 หมู่ 7 บุญคุ้ม,คูคต ลำลูกกา,12130,ปทุมธานี,,0-2900-6900-4,,0-2900-6905,,,,,Chairat S. +res_partner_supplier_75,บริษัท แคเรียร์ ริฟริจเจอเรชั่น (ประเทศไทย) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,46/63-74 ชั้น 14 อาคาร เนชั่นทาวเวอร์ บางนา-ตราด กม.4.5,บางนา บางนา,10260,กรุงเทพมหานคร,,0-2751-4777,,"0-2751-4778, 0-2751-4780",,,,, +res_partner_supplier_76,บริษัท ซีอาร์ที ดิสเพลย์ เทคโนโลยี จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1 อาคาร เนชั่นทาวเวอร์ ปูนซิเมนต์ไทย,บางซื่อ บางซื่อ,10800,กรุงเทพมหานคร,,0-2586-5581,,0-2587-2135,,,,, +res_partner_supplier_77,บริษัท ซีอาร์ที ดิสเพลย์ เทคโนโลยี จำกัด (Shipping),,,,FALSE,TRUE,FALSE,บริษัท ซีอาร์ที ดิสเพลย์ เทคโนโลยี จำกัด,Shipping,FALSE,133 หมู่ 3 ,หนองละลอก บ้านค่าย,21120,ระยอง,,0-3889-2245-7,,"0-3889-2244, 0-3889-2366",,,,, +res_partner_supplier_78,บริษัท คลูแมน คอร์ปอเรชั่น จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,99 หมู่ 3 ซอย โรงหมี่ บางบัวทองไทรน้อย,บางบัวทอง บางบัวทอง,,นนทบุรี,,0-2922-6250,,0-2922-6240,,,,, +res_partner_supplier_79,บริษัท ซี.เอ็น.คูลส์ แอนด์ คอนโทรลเลอร์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,112/1503 หมู่ 11 บางนา-ตราด,บางนา บางนา,10260,กรุงเทพมหานคร,,0-2746-8822,,0-2393-5399,,,,,Chatchai T. +res_partner_supplier_80,บริษัท โชคประพันธ์ก่อสร้าง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,47/2 วิภาวดีรังสิต,ลาดยาว จตุจักร,10900,กรุงเทพมหานคร,,0-2941-0970-3,,0-2941-3134,,,,, +res_partner_supplier_81,ห้างหุ้นส่วนจำกัด ชลบุรีเฮงกลการ,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,18/24 หมู่ 6 ซอย พงษ์ทิพย์ เศรษกิจ,บ้านสวน เมือง,20000,ชลบุรี,,"0-3879-9887, 0-3879-8171",,0-3879-8171,,,,, +res_partner_supplier_82,บริษัท ไซเบอร์ แม็คคานิค จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,32/185 หมู่ 8 ซอย นวลจันทร์ 12 นวลจันทร์,คลองกุ่ม บึงกุ่ม,10230,กรุงเทพมหานคร,,"0-2946-0323-4, 0-2946-0350",,0-2946-0606,,,,, +res_partner_supplier_83,บริษัท ซี.พี.กรุ๊ป (1994) จำกัด,,PDC. 60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,5 หมู่ 10 ,บางปลา บางพลี,10540,สมุทรปราการ,,0-2750-7187-89,,0-2750-7190,,,,,Visak T. +res_partner_supplier_84,บริษัท คอมพลีท ไลน์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,220 ซอย อ่อนนุช 35 สุขุมวิท 77,สวนหลวง สวนหลวง,10250,กรุงเทพมหานคร,,0-2320-1427-8,,0-2721-5290,,,,,Surasak S. +res_partner_supplier_85,บริษัท โคลด์ ไบรท์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,47 หลานหลวง,วัดโสมนัส ป้อมปราบศรัตรูพ่าย,10100,กรุงเทพมหานคร,,0-2628-0901,,0-2628-1568,,,,, +res_partner_supplier_86,บริษัท คูลเทค จำกัด,,PDC. 30 Days,100000,TRUE,TRUE,FALSE,,Default,FALSE,38/34 หมู่ 4 ,ลำลูกกา ลำลูกกา,12150,ปทุมธานี,,"0-2569-1849, 0-2987-0103",,0-2987-0075,,,,,Weeranuwat S. +res_partner_supplier_87,บริษัท ซี.ไอ. กรุ๊ป จำกัด (มหาชน),,60 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,1/1 หมู่ 7 บางคูวัด,บางคูวัด เมือง,12000,ปทุมธานี,,"0-2976-5290-9, 0-2598-2331-2",,0-2976-5023,,,,,Dusit T. +res_partner_supplier_88,บริษัท ซีเอ็มวีซี เอ็นจิเนียริ่ง จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1/369 หมู่ 11 ซอย หมู่บ้านเพชรมณฑลกรีน บางบอน 5,หนองแขม หนองแขม,10160,กรุงเทพมหานคร,,0-2811-3931,,0-2814-9616,,,,,Chatchai T. +res_partner_supplier_89,บริษัท แคพซูลเจล (ประเทศไทย) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1/82 หมู่ 5 ซอย สวนอุตสาหกรรมโรจนะ โรจนะ,คานหาม อุทัย,13210,พระนครศรีอยุธยา,,0-3533-4000,,0-3533-4072,,,,,Chairat S. +res_partner_supplier_90,บริษัท ครีเอทีฟเวย์ เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,129/48 หมู่ 2 ,สุรศักดิ์ ศรีราชา,20110,ชลบุรี,,0-3810-4064,,0-3810-4065,,,,,Chairat S. +res_partner_supplier_91,บริษัท ชัยรัตน์ อลูมิเนียม จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,130/1 สุขุมวิท,ศรีราชา ศรีราชา,20110,ชลบุรี,,0-3831-3231,08-1340-2462,0-3831-3231,,,,,Chairat S. +res_partner_supplier_92,บริษัท แคร์เรียร์ ลินเด้ รีฟริเจอเรชั่น (ประเทศไทย) จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,72 รามอินทรา,มีนบุรี มีนบุรี,10510,กรุงเทพมหานคร,,"0-2517-2000, 0-2517-2021, 0-217-2404, 0-2517-2407",,"0-2517-2625, 0-2517-2652",,,,,Chatchai T. +res_partner_supplier_93,บริษัท ดีไซน์ ออลเทอร์เนทีฟ จำกัด,,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,480 หมู่ 3 ซอย ประชาอุทิศ 90 ประชาอุทิศ,บ้านคลองสวน พระสมุทรเจดีย์,10290,สมุทรปราการ,,0-2848-4889,,0-2848-4881-2,,,,,Dusit T. +res_partner_supplier_94,บริษัท ไดนามิกส์ ซิสเต็ม แอนด์ โซลูชั่น (เอเชีย) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,53/8 หมู่ 12 รามอินทรา,คลองกุ่ม บึงกุ่ม,10230,กรุงเทพมหานคร,,0-2187-1184,,0-2187-1185,,,,,Weeranuwat S. +res_partner_supplier_95,บริษัท ดีเน็ต โซลูชั่น จำกัด,,7 Days,300000,TRUE,TRUE,FALSE,,Default,FALSE,177/1 อาคาร บางกอกสหประกันภัย ชั้น 14 ยูนิต 4 สุรวงศ์,สุริยวงศ์ บางรัก,10500,กรุงเทพมหานคร,,0-2634-7667-8,,0-2634-7669,,,,,Weeranuwat S. +res_partner_supplier_96,บริษัท ดีแซด การ์ด (ไทยแลนด์) จำกัด,,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,139 หมู่ 17 นิคมอุตสาหกรรมบางพลี บางนา-ตราด,บางเสาธง บางเสาธง,10540,สมุทรปราการ,,0-2705-1939,,0-2705-1938,,,,,Weeranuwat S. +res_partner_supplier_97,บริษัท ดีคูล (ประเทศไทย) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,168/8 หมู่ 1 ประชาอุทิศ,ทุ่งครุ ทุ่งครุ,10140,กรุงเทพมหานคร,,0-2873-1585,,0-2427-6047,,,,,Weeranuwat S. +res_partner_supplier_98,บริษัท ไดกิ้นแอร์คอนดิชั่นนิ่ง (ประเทศไทย) จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,700/444 หมู่ 7 บางนา-ตราด กม. 57,ดอนหัวฬ่อ เมือง,20000,ชลบุรี,,0-3871-7066-70,,0-3845-4184,,,,,Surasak S. +res_partner_supplier_99,บริษัท ดี เอ ดี ซัพพลาย จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,410 ซอย พระยาสุเรนทร์ 30 รามอินทรา 109,บางชัน คลองสามวา,10510,กรุงเทพมหานคร,,0-2540-6871,,0-2918-6954,,,,,Dusit T. +res_partner_supplier_100,บริษัท ผักด๊อกเตอร์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,3 หมู่ 6 ,บึงกาสาม หนองเสือ,12170,ปทุมธานี,,0-2150-6098,,0-2150-6099,,,,,Surasak S. +res_partner_supplier_101,บริษัท ดี-คุลเลอร์ (ประเทศไทย) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,69/73 หมู่ 8 ซอย รามอินทรา 30 รามอินทรา,ท่าแร้ง บางเขน,10290,กรุงเทพมหานคร,,0-2509-3449-50,,0-2509-3396,,,,,Dusit T. +res_partner_supplier_102,บริษัท เอกธนัช จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,42/51 ซอย นิมิตรใหม่ 6/1 ,มีนบุรี มีนบุรี,10510,กรุงเทพมหานคร,,0-2942-1697,,0-2942-1697,,,,,Chairat S. +res_partner_supplier_103,บริษัท อี๋เผิง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,369/11 หมู่ 3 สุขุมวิท,บางปูใหม่ เมือง,10280,สมุทรปราการ,,0-2709-7130-2,,0-2709-7133,,,,, +res_partner_supplier_104,บริษัท เอ็นจ์อีคอน จำกัด,,45 Days,,TRUE,TRUE,FALSE,,Default,FALSE,125/7 หมู่ 5 แจ้งวัฒนะ,ปากเก็ด ปากเกร็ด,11120,นนทบุรี,,"0-2962-1174, 0-2962-2581-4",,0-2962-1175,,,,,Weeranuwat S. +res_partner_supplier_105,บริษัท อี เอส ดี เทคโนโลยี จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,30/146 หมู่ 17 บางนา-ตราด,บางพลีใหญ่ บางพลี,10540,สมุทรปราการ,,"0-2750-000, 0-2316-3417",,0-2316-3417,,,,, +res_partner_supplier_106,บริษัท เอ็นโปร โปรดักส์ (ไทยแลนด์) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,101/47/18 หมู่ 20 นิคมอุตสาหกรรมนวนคร พหลโยธิน กม. 46,คลองหนึ่ง คลองหลวง,12120,ปทุมธานี,,"0-2529-1069-71, 0-2529-1380-82",,"0-2529-1067, 0-2529-2177",,,,,Surasak S. +res_partner_supplier_107,บริษัท เอ็นโค่ เอ็ม แอนด์ อี จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,28/3 หมู่ 5 ,ลำลูกกา ลำลูกกา,12150,ปทุมธานี,,0-2720-4360,,0-2720-4360,,,,,Chairat S. +res_partner_supplier_108,บริษัท อีโค่ ลิฟวิ่ง จำกัด,,60 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,26 หมู่บ้านรุ่งกิจวิลล่า 4 ซอย ร่มเกล้า 54 ,คลองสามประเวศ ลาดกระบัง,10520,กรุงเทพมหานคร,,0-2737-5525,,0-2737-5526,,,,,Visak T. +res_partner_supplier_109,บริษัท เอลีท เทคโนโลยี จำกัด,,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,945/54 หมู่ 12 ซอย อุดมสุข 27 สุขุมวิท 103,บางนา บางนา,10260,กรุงเทพมหานคร,,0-2743-2334-8,,0-2399-3223,,,,, +res_partner_supplier_110,บริษัท เอ็นจิเน็ท จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,10/773 หมู่ 6 นวมินทร์,คลองกุ่ม บึงกุ่ม,10240,กรุงเทพมหานคร,,,,,,,,, +res_partner_supplier_111,บริษัท ฟลูโทรล (ประเทศไทย) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,49/44/45 หมู่ 5 กาญจนาภิเษก,บางแค บางแค,10160,กรุงเทพมหานคร,,0-2454-3553,,"0-2801-1680, 0-2801-2621-2",,,,, +res_partner_supplier_112,บริษัท เฟรชมีท ฟู้ด โปรดักส์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,12/2 หมู่ 2 ,ขุนแก้ว นครชัยศรี,73120,นครปฐม,,0-3423-2462-4,,0-3423-4457,,,,,Surasak S. +res_partner_supplier_113,ห้างหุ้นส่วนจำกัด แฟค 99 เอ็นจิเนียริ่ง,,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,101/16 หมู่ 15 ,คลองหนึ่ง คลองหลวง,12120,ปทุมธานี,,0-2908-010,,0-2908-0728,,,,,Chatchai T. +res_partner_supplier_114,บริษัท ฟูจิกซ์ (ไทยแลนด์) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,296/2 หมู่ 1 ,บางบ่อ บางบ่อ,10560,สมุทรปราการ,,"0-2708-1812-3, 0-2708-3484",,0-2708-5290,,,,,Chairat S. +res_partner_supplier_115,บริษัท เฟิร์มกรุ๊ป จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,"213, 215 หมู่ 9 หลวงแพ่ง",ทับยาว ลาดกระบัง,10520,กรุงเทพมหานคร,,"0-2360-7601-4, 0-2738-1530-7",,0-2360-7612,,,,, +res_partner_supplier_116,บริษัท แกรนด์ครอส เซอร์วิส แอนด์ ซัพพลาย จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,148 หมู่ 9 พุทธมณฑลสาย 4,กระทุ่มล้ม สามพราน,73220,นครปฐม,,0-2889-9192,,0-2889-9940,,,,, +res_partner_supplier_117,บริษัท เกรท อะโกร จำกัด,,15 Days,,TRUE,TRUE,FALSE,,Default,FALSE,98/17 ซอย แฟคตอรี่แลนด์ 2 พุทธมณฑลสาย 5,ไร่ขิง สามพราน,73210,นครปฐม,,0-2811-8051-4,,0-2811-9847,,,,, +res_partner_supplier_118,บริษัท จี.อี. เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,5 หมู่ 8 ซอย บางคูลัด ตลิ่งชัน-สุพรรณบุรี,บางม่วง บางใหญ่,11140,นนทบุรี,,0-2921-4390-3,,0-2921-4394,,,,, +res_partner_supplier_119,บริษัท เยเนอรัล ฮอสปิตัล โปรดัคส์ จำกัด (มหาชน),,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,8 อาคาร โกลด์มาร์เก็ต ชั้น 5 เทศบาลสงเคราะห์,ลาดยาว จตุจักร,10900,กรุงเทพมหานคร,,0-2158-0100,,0-2158-0110-1,,,,,Chatchai T. +res_partner_supplier_120,บริษัท เยเนอรัล ฮอสปิตัล โปรดัคส์ จำกัด (มหาชน) (Shipping),,,,FALSE,TRUE,FALSE,บริษัท เยเนอรัล ฮอสปิตัล โปรดัคส์ จำกัด (มหาชน),Shipping,FALSE,101/99 ซอย นวนครโครงการ 1 ซ. 7 ,คลองหนึ่ง คลองหลวง,12120,ปทุมธานี,,0-2529-2560-5,,0-2529-2566,,,,,Chatchai T. +res_partner_supplier_121,ห้างหุ้นส่วนจำกัด จี.บี.พี. คูลลิ่ง แอนด์ เซอร์วิส 2005,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,419/405 หมู่ 10 ,ในคลองบางปลากด พระสมุทรเจดีย์,10290,สมุทรปราการ,,0-2817-8735,,0-2464-1630,,,,,Chairat S. +res_partner_supplier_122,บริษัท จีซีเอส กรุ๊ป คอร์ปอเรชั่น จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,88/8 หมู่ 1 ,คลองด่าน บางบ่อ,10550,สมุทรปราการ,,"0-2317-9134-5, 0-2317-9208",,0-2317-9209,,,,,Chatchai T. +res_partner_supplier_123,บริษัท จีอี เฮลธแคร์ ไบโอไซส์ (ประเทศไทย) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1550 อาคาร ธนภูมิ ชั้น 12 ห้อง จี เพชรบุรีตัดใหม่,มักกะสัน ราชเทวี,10400,กรุงเทพมหานคร,,0-2624-8484,,0-2624-8490,,,,,Dusit T. +res_partner_supplier_124,บริษัท โกลบอลเทค จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,35/51 ซอย ลาดพร้าว 124 ลาดพร้าว,วังทองหลาง วังทองหลาง,10310,กรุงเทพมหานคร,,"0-2934-0433-5, 0-2538-6217, 0-2539-7018",,0-2539-0695,,,,,Chairat S. +res_partner_supplier_125,บริษัท กรีนส์ดี จำกัด,,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,55/157 หมู่บ้านพฤกษาวิลเลจ คลอง 7 รังสิต-นครนายก,ลำผักกูด ธัญบุรี,12110,ปทุมธานี,,0-2577-0907,,0-2577-3015,,,,,Weeranuwat S. +res_partner_supplier_126,บริษัท องค์การเภสัชกรรม-เมอร์ริเออร์ชีววัตถุ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,241 หมู่ 7 ,หัวสำโรง แปลงยาว,24190,ฉะเชิงเทรา,,0-3857-9200,,0-3857-5428,,,,,Weeranuwat S. +res_partner_supplier_127,บริษัท เกรท คูล เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,41/13 หมู่ 10 ,บางด้วน ภาษีเจริญ,10160,กรุงเทพมหานคร,,0-2454-1708,,0-2454-1708,,,,,Dusit T. +res_partner_supplier_128,บริษัท โกลด์แมน เทรด จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,22 จรัญสนิทวงศ์,อรุณอมรินทร์ บางกอกน้อย,10700,กรุงเทพมหานคร,,,,,,,,,Chairat S. +res_partner_supplier_129,บริษัท โกลด์แมน เทรด จำกัด (Invoice),,,,FALSE,TRUE,FALSE,บริษัท โกลด์แมน เทรด จำกัด,Invoice,FALSE,689/26 จรัญสนิทวงศ์,อรุณอมรินทร์ บางกอกน้อย,10700,กรุงเทพมหานคร,,0-2882-4063,,,,,,,Chairat S. +res_partner_supplier_130,บริษัท ไฮคีย์ แอร์คอนด์ เทคโนโลยี จำกัด,,30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,39/66 หมู่ 1 ,รังสิต ธัญบุรี,12110,ปทุมธานี,,0-2577-5642,08-7682-3500,0-2577-5642,,,,,Chatchai T. +res_partner_supplier_131,บริษัท ฮิตาชิ จำกัด,,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,952 อาคาร รามาแลนด์ ชั้น 19 พระราม 4,สุริยวงศ์ บางรัก,10500,กรุงเทพมหานคร,,0-2879-5770,,0-2879-5771,,,,,Surasak S. +res_partner_supplier_132,บริษัท แฮส 155 จำกัด,,30 Days,10000000,TRUE,TRUE,FALSE,,Default,FALSE,99/134 ปทุมสามโคก,บางปรอก เมือง,12000,ปทุมธานี,,0-2581-7099,,0-2581-1134,,,,,Chairat S. +res_partner_supplier_133,บริษัท เฮลท์แคร์เทคโนโลยี จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,13 ซอย 13 เสรี 4 ราม 9 ตัดใหม่,สวนหลวง สวนหลวง,10250,กรุงเทพมหานคร,,0-2261-6539,,0-2258-3862,,,,,Weeranuwat S. +res_partner_supplier_134,บริษัท ห้องเย็นท่าข้าม จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,100/3 หมู่ 7 พระราม 2,แสมดำ บางขุนเทียน,10150,กรุงเทพมหานคร,,0-2908-8200,,0-2908-1832,,,,,Dusit T. +res_partner_supplier_135,บริษัท อินไซท์ เอ็นจิเนียริ่ง จำกัด,,45 Days,,TRUE,TRUE,FALSE,,Default,FALSE,77/16 หมู่ 10 ,บางม่วง บางใหญ่,11140,นนทบุรี,,"0-2443-6667-9, 0-2921-4137-9",,0-2921-4145,,,,,Chairat S. +res_partner_supplier_136,บริษัท ไอเอคิวเอ็นจิเนียริ่ง จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,700/63 อาคาร รีเจ้นท์ศรีนครินทร์ ทาวเวอร์ ศรีนครินทร์,สวนหลวง สวนหลวง,10250,กรุงเทพมหานคร,,0-2722-7307,,0-2722-9068,,,,,Chatchai T. +res_partner_supplier_137,บริษัท อินเตอร์ เอเชีย ซิสเต็มส์ เอ็นจิเนียริ่ง จำกัด,,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,19/146 หมู่ 7 บางนา-ตราด กม. 17.5,บางโฉลง บางพลี,10540,สมุทรปราการ,,0-2312-7836-7,,0-2312-7929,,,,,Chatchai T. +res_partner_supplier_138,บริษัท ไอโซ พาแนล จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,82 หมู่ 6 เศรษกิจ 1,นาดี เมือง,74000,สมุทรสาคร,,0-3446-8542-3,,0-3446-8541,,,,,Chairat S. +res_partner_supplier_139,บริษัท ไอ คอน ดักส์ จำกัด,,30 Days,200000,TRUE,TRUE,FALSE,,Default,FALSE,23/28 หมู่ 7 ,ลาดสวาย ลำลูกกา,12150,ปทุมธานี,,0-2994-4809,,0-2994-4809,,,,,Chatchai T. +res_partner_supplier_140,บริษัท ไอซีเอ็มเอส เอเชีย (ประเทศไทย) จำกัด,,30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,39/13-16 ชั้น 4 ห้อง 4 เอ-ซี ซอย สวนพลู สาทร,ทุ่งมหาเมฆ สาทร,10120,กรุงเทพมหานคร,,0-2675-4101,,0-2675-4108,,,,,Dusit T. +res_partner_supplier_141,บริษัท อิตาเลี่ยนไทย เซรามิค เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,17/12 หมู่ 1 เสรีไทย,คลองกุ่ม บึงกุ่ม,10240,กรุงเทพมหานคร,,0-2138-0437,,0-2138-0435,,,,,Weeranuwat S. +res_partner_supplier_142,บริษัท อินโนเวท คูล จำกัด,,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,204 ซอ่ย หมู่บ้านเลคการ์เด้น ซอย 2 ขุมทอง-ลำต้อยติ่ง,ขุมทอง ลาดกระบัง,10520,กรุงเทพมหานคร,,0-2704-1218,,0-2704-1218,,,,,Chairat S. +res_partner_supplier_143,บริษัท อินวินซิเบิ้ล จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,347/10 หมู่ 6 พหลโยธิน,สายไหม สายไหม,10220,กรุงเทพมหานคร,,0-2533-8501-3,,0-2531-9855,,,,,Chairat S. +res_partner_supplier_144,บริษัท อินเพ็ท จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,700/635 หมู่ 3 ,บ้านเก่า พานทอง,20160,ชลบุรี,,0-3844-7006-8,,0-3844-7009,,,,,Chatchai T. +res_partner_supplier_145,บริษัท อินซูล คูลลิ่ง เซ็นเตอร์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,130/6 หมู่ 3 ,รังสิต ธัญบุรี,12150,ปทุมธานี,,0-2904-4395-6,"08-1701-2110, 08-9815-9494, 08-1859-5840",0-2904-4397,,,,,Chatchai T. +res_partner_supplier_146,บริษัท เจ.อี.พี. เอ็นเตอร์ไพรส์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,235/8 ซอย สุขุมวิท 21 (อโศก) สุขุมวิท,คลองเตยเหนือ วัฒนา,10110,กรุงเทพมหานคร,,"0-2580-4479, 0-2261-6531",,"0-2258-3862, 0-2261-6530",,,,,Weeranuwat S. +res_partner_supplier_147,บริษัท เจดับบิว พาร์ท แอนด์ อีควิปเม้นท์ จำกัด,,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,733/405 หมู่ 8 ,คูคต ลำลูกกา,12130,ปทุมธานี,,0-2998-9389,,0-2998-9388,,,,,Weeranuwat S. +res_partner_supplier_148,ห้างหุ้นส่วนจำกัด ห้างขายยา กรุงเทพฯ ฟามาซี,,Cash,1000000,TRUE,TRUE,FALSE,,Default,FALSE,783 เจริญนคร,บางปะกอก ราษฎ์บูรณะ,10140,กรุงเทพมหานคร,,"0-2468-1412, 0-2468-1194",,0-2476-1366,,,,,Visak T. +res_partner_supplier_149,บริษัท เค.ท็อท (1993) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,458/2 หมู่ 2 ,ช้างเผือก เมือง,50300,เชียงใหม่,,0-5321-3925,,0-5321-3925,,,,, +res_partner_supplier_150,บริษัท คิง เพาเวอร์ สุวรรณภูมิ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,999 หมู่ 1 สนามบินสุวรรณภูมิ อาคารคอนคอร์ส เอ ชั้น 2 ,หนองปรือ บางพลี,10540,สมุทรปราการ,,,,,,,,,Chairat S. +res_partner_supplier_151,บริษัท คีพ คูล พาแนล จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,72 ซอย ลาดพร้าว 126 ลาดพร้าว,ลาดพร้าว วังทองหลาง,10310,กรุงเทพมหานคร,,0-2934-1188,,0-2934-1188,,,,,Surasak S. +res_partner_supplier_152,บริษัท เคทูวิน จำกัด,,30 Days,100000,TRUE,TRUE,FALSE,,Default,FALSE,102/3 หมู่ 3 ปทุมธานี-สามโคก,กระแชง สามโคก,12160,ปทุมธานี,,0-2581-7220-1,,0-2581-7221,,,,,Surasak S. +res_partner_supplier_153,บริษัท คันเนจึ (ประเทศไทย) จำกัด,,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,84/5 หมู่ 9 บางนา-ตราด กม.39,บางวัว บางปะกง,24180,ฉะเชิงเทรา,,0-3898-9155-159,,0-3898-9160,,,,,Chairat S. +res_partner_supplier_154,ห้างหุ้นส่วนจำกัด เค.ดับบลิว.เทรดดิ้ง แอนด์ ซัพพลาย,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,27 ซอย บุญวงศ์ ,หาดใหญ่ หาดใหญ่,90110,สงขลา,,0-7425-3653,,0-7425-2325,,,,,Chatchai T. +res_partner_supplier_155,ห้างหุ้นส่วนจำกัด เค อาร์ อาร์ ดีไซด์ กรุ๊ป,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,25/16 หมู่ 8 ,บางตลาด ปากเกร็ด,11120,นนทบุรี,,0-2984-4298-9,,0-2984-4404,,,,,Weeranuwat S. +res_partner_supplier_156,บริษัท คัมภีร์วิศวกรรม จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,96/98 ซอย นพเก้า ประชาชื่น,บางซื่อ บางซื่อ,108000,กรุงเทพมหานคร,,0-2926-5650,,0-2195-2807,,,,,Weeranuwat S. +res_partner_supplier_157,บริษัท กาญจน์ญาณ์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,77/38 หมู่ 6 ,บึงคำพร้อย ลำลูกกา,12150,ปทุมธานี,,,08-7917-5175,0-2532-7386,,,,,Chatchai T. +res_partner_supplier_158,บริษัท โกเบ เอ็นจิเนียริ่ง จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,67/9 หมู่ 5 ,บางหญ้าแพรก พระประแดง,10130,สมุทรปราการ,,0-2754-5503,,,,,,,Chatchai T. +res_partner_supplier_159,บริษัท คาวาซูมิ ลาบอราทอรี่ (ประเทศไทย) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,55/26 หมู่ 13 พหลโยธิน กม. 46,คลองหนึ่ง คลองหลวง,12120,ปทุมธานี,,0-2966-0911,,0-2966-0916-7,,,,, +res_partner_supplier_160,บริษัท ไลฟบอคซ์ โมดูล่า จำกัด,,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,455/64 หมู่ 1 รัตนราช,บางบ่อ บางบ่อ,10560,สมุทรปราการ,,,,,,,,,Visak T. +res_partner_supplier_161,ห้างหุ้นส่วนจำกัด ลำพูน เจเนอร์รัล เอ็นจิเนียริ่ง,,30 Days,2000000,TRUE,TRUE,FALSE,,Default,FALSE,192/36 หมู่ 15 ,ป่าสัก เมือง,51000,ลำพูน,,0-5358-4991-2,,"0-5358-4993, 0-5358-4458",,,,,Chatchai T. +res_partner_supplier_162,บริษัท แม็คคาตริค จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1564/19 ประชาราษฎร์ 1,บางซื่อ บางซื่อ,10800,กรุงเทพมหานคร,,"0-2913-2237-8, 0-2587-8462-3",,0-2913-2239,,,,,Chairat S. +res_partner_supplier_163,บริษัท เอ็ม แอนด์ ดับเบิลยู แซนเดอร์ (ไทย) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,252/91 อาคาร เมืองไทยภัทร ทาวเวอร์ ชั้น 16 รัชดาภิเษก,ห้วยขวาง ห้วยขวาง,10320,กรุงเทพมหานคร,,0-2693-3222-4,,0-2693-3225,,,,,Chairat S. +res_partner_supplier_164,บริษัท เอ็ม.ที. อินโนเวชั่น จำกัด,,Cash,1000000,TRUE,TRUE,FALSE,,Default,FALSE,293/310 ซอย รามอินทรา 119 รามอินทรา,มีนบุรี มีนบุรี,10510,กรุงเทพมหานคร,,0-2934-4026,,0-2934-4027,,,,,Dusit T. +res_partner_supplier_165,บริษัท โมดูลาร์เอ็นจิเนียร์โปรดักส์ซัพพลาย จำกัด,,30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,39/13-16 ชั้น 4 ห้อง D ซอย สวนพลู สาทร,ทุ่งมหาเมฆ สาทร,10270,กรุงเทพมหานคร,,0-2755-0779,,0-2755-0780,,,,,Dusit T. +res_partner_supplier_166,ห้างหุ้นส่วนจำกัด เอ็ม.เอส.โคลด์รูม แอนด์ คลีนรูม,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,530/5 หมู่ 11 นวมินทร์,คันนายาว คันนายาว,10230,กรุงเทพมหานคร,,,08-7612-1751,0-2944-0324,,,,,Chairat S. +res_partner_supplier_167,บริษัท พี เอ็ม เอส โปรดักส์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,551/32-34 ซอย สรรค์สุข สาธุประดิษฐ์,ช่องนนทรี ยานนาวา,10120,กรุงเทพมหานคร,,0-2284-2159-62,,0-2294-6068,,,,,Chairat S. +res_partner_supplier_168,ห้างหุ้นส่วนจำกัด เอ็ม เอ็ม ซี,,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,38/18 หมู่ 9 สุขประยูร,นาป่า เมือง,20000,ชลบุรี,,,,,,,,,Chatchai T. +res_partner_supplier_169,ห้างหุ้นส่วนจำกัด เอ็ม เอ็ม ซี (Invoice),,,,FALSE,TRUE,FALSE,ห้างหุ้นส่วนจำกัด เอ็ม เอ็ม ซี,Invoice,FALSE,25/142 หมู่ 12 เพชรเกษม,หนองค้างพลู หนองแขม,,กรุงเทพมหานคร,,,,,,,,,Chatchai T. +res_partner_supplier_170,บริษัท เอ็ม เอ็ม ที เซอร์วิส จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,11/4 หมู่ 4 ,โคกช้าง บางไทร,13190,พระนครศรีอยุธยา,,0-3571-8459,,"0-3571-8433, 0-3571-8459",,,,,Dusit T. +res_partner_supplier_171,บริษัท โมดูล่า กรุ๊ป (ไทยแลนด์) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,455/64 หมู่ 1 ,บางบ่อ บางบ่อ,10560,สมุทรปราการ,,0-2721-3544,,0-2721-3545,,,,,Surasak S. +res_partner_supplier_172,บริษัท โมเดอร์นฟอร์ม เฮลท์แอนด์แคร์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,699 อาคาร โมเดอร์นฟอร์มทาวเวอร์ ศรีนครินทร์,สวนหลวง สวนหลวง,10250,กรุงเทพมหานคร,,0-2722-8033-5,,0-2722-8032,,,,,Weeranuwat S. +res_partner_supplier_173,บริษัท มหาจักรไกร เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,3/47 หมู่ 9 ,ลำลูกกา ลำลูกกา,12150,ปทุมธานี,,0-2905-2030-1,,0-2905-2031,,,,,Weeranuwat S. +res_partner_supplier_174,บริษัท เมเจอร์ แอร์คอนดิชั่นนิ่ง จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,89 หมู่ 11 เทพารักษ์,บางปลา บางพลี,10540,สมุทรปราการ,,0-2185-7254-55,,0-2185-7256,,,,,Surasak S. +res_partner_supplier_175,บริษัท มาเยคาว่า (ประเทศไทย) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,2/3 หมู่ 14 อาคาร บางนาทาวเวอร์ อาคารเอ ชั้น 9 บางนา-ตราด,บางแก้ว บางพลี,10540,สมุทรปราการ,,0-2751-9610-7,,0-2751-9565-6,,,,,Chatchai T. +res_partner_supplier_176,บริษัท แมคโครฟาร์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,89 ซอย พัฒนาการ 20 แยก 4 พัฒนาการ,สวนหลวง สวนหลวง,10250,กรุงเทพมหานคร,,0-2314-6671,,0-2318-6091,,,,,Chatchai T. +res_partner_supplier_177,บริษัท มีนา แอสโซซิเอทส์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,779 สุขุมวิท 103,บางจาก พระโขนง,10250,กรุงเทพมหานคร,,0-2729-7900-1,,0-2729-7903,,,,,Weeranuwat S. +res_partner_supplier_178,ณัฐวุฒิการช่าง,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,101/86 หมู่ 7 ,บางพลีใหญ่ บางพลี,10540,สมุทรปราการ,,,,,,,,,Chairat S. +res_partner_supplier_179,บริษัท นิวเทค ซีสเต็มส์ ดีเวล็อปเมนท์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,1/740 หมู่ 17 ,คูคต ลำลูกกา,12130,ปทุมธานี,,0-2532-4800-2,,0-2533-8488,,,,,Chairat S. +res_partner_supplier_180,บริษัท ณัฐธน จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,43 อาคาร พิทักษ์คอร์ทชั้นล่าง ซอย อรรถการประสิทธิ์ สาทรใต้,ทุ่งมหาเมฆ สาทร,10120,กรุงเทพมหานคร,,0-2411-1693,,0-2411-1693,,,,,Surasak S. +res_partner_supplier_181,บริษัท โนวา เมดิซีน จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,20/1 หมู่ 3 เทศบาล 1,บ้านฉาง เมือง,,ปทุมธานี,,,,,,,,,Chairat S. +res_partner_supplier_182,บริษัท เอ็น.ซี.เอส เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,18/7 ซอย ลาดพร้าว 113 ลาดพร้าว,คลองจั่น บางกะปิ,10310,กรุงเทพมหานคร,,0-2704-7051-2,,0-2704-7053,,,,, +res_partner_supplier_183,ห้างหุ้นส่วนจำกัด เอ็น ซี เอช อีควิปเมนท์ แอนด์ เซอร์วิส,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,63 จันทรคามพิทักษ์,สนามจันทร์ เมือง,73000,นครปฐม,,0-2976-6385,,0-2976-7011,,,,,Weeranuwat S. +res_partner_supplier_184,บริษัท เอ็น.เอส.แอล. คอนสตรัคชั่น จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1447 ซอย ลาดพร้าว 94 ลาดพร้าว,วังทองหลาง วังทองหลาง,10310,กรุงเทพมหานคร,,"0-2934-7215-6, 0-2559-2680-2",,"0-2934-7215-6, 0-2559-2680-2",,,,,Dusit T. +res_partner_supplier_185,บริษัท พี.เอม.ฟูด จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1 อาคาร พรีเมียร์คอร์ปอเรทปาร์ค ซอย พรีเมียร์ ศรีนครินทร์,หนองบอน ประเวศ,10260,กรุงเทพมหานคร,,0-2301-1794,,0-2748-2080,,,,,Dusit T. +res_partner_supplier_186,บริษัท พี.เอส.ฟู้ดโปรดักส์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,"949, 941/1999 หมู่ 7 ซอย วิทยุการบิน ",ท้ายบ้านใหม่ เมือง,10280,สมุทรปราการ,,"0-2709-1063, 0-2709-1959, 0-2323-2055",,"0-2709-1062, 0-2323-3050",,,,, +res_partner_supplier_187,บริษัท ปาร์คเกอร์ เอ็นจิเนียริ่ง (ไทยแลนด์) จำกัด,,45 Days,,TRUE,TRUE,FALSE,,Default,FALSE,62 อาคาร ธนิยะ ชั้น 5 ห้อง 501 และ 510 สีลม,สุริยวงศ์ บางรัก,10500,กรุงเทพมหานคร,,"0-2238-4704, 0-2236-0120, 0-2236-7330, 0-2236-3096",,0-2236-0122,,,,,Chairat S. +res_partner_supplier_188,บริษัท พี.เอ็น.เอ็นจิเนียริ่ง แอนด์ เทคโนโลยี จำกัด,,15 Days,,TRUE,TRUE,FALSE,,Default,FALSE,105/15-16 หมู่ 7 ,คลองหนึ่ง คลองหลวง,12120,ปทุมธานี,,0-2516-5803-5,,0-2902-8902,,,,,Chatchai T. +res_partner_supplier_189,บริษัท โปร เทคนิคเชี่ยน แอนด์ เอ็นจิเนียริ่ง จำกัด,,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,10/196-197 หมู่ 3 ซอย 28 พระราม 2,บางมด จอมทอง,10150,กรุงเทพมหานคร,,0-2877-1167-8,,0-2877-1169,,,,,Weeranuwat S. +res_partner_supplier_190,ห้างหุ้นส่วนจำกัด ปุญญิศา เทคโนโลยี,,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,145 หมู่ 6 ,คลองมะเดื่อ กระทุ่มแบน,74110,สมุทรสาคร,,"0-2892-2601, 0-3487-4132",,0-2892-2601,,,,,Chatchai T. +res_partner_supplier_191,บริษัท พาตาร์แลบ (2517) จำกัด,,Cash,20000000,TRUE,TRUE,FALSE,,Default,FALSE,51 หมู่ 3 เลียบคลอง 7 (ธัญบุรี-ลำลูกกา),บึงคำพร้อย ลำลูกกา,,ปทุมธานี,,0-2391-2045,,0-2391-2044,,,,,Chairat S. +res_partner_supplier_192,บริษัท โปรฟู้ด (ไทย) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,28/88 หมู่ 1 ,โคกขาม เมือง,74000,สมุทรสาคร,,"0-2663-0430, 0-2259-7620-1",,0-2663-0431,,,,,Chairat S. +res_partner_supplier_193,บริษัท แพคโคเมติก จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,296/19 หมู่ 9 ซอย ติวานนท์ 28 ติวานนท์,บางกระสอ เมือง,11000,นนทบุรี,,0-2950-7510-3,,0-2580-3687,,,,,Dusit T. +res_partner_supplier_194,บริษัท เภสัชกรรมศรีประสิทธิ์ จำกัด,,Cash,20000000,TRUE,TRUE,FALSE,,Default,FALSE,619 เจริญรัถ,คลองสาน คลองสาน,10600,กรุงเทพมหานคร,,0-2437-0343-5,,0-2438-8060,,,,,Dusit T. +res_partner_supplier_195,บริษัท พรีม่าแฮม (ไทยแลนด์) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,392 หมู่ 7 ,ท่าตูม ศรีมหาโพธิ,25140,ปราจีนบุรี,,0-3748-1041-6,,0-3748-1048-50,,,,,Chatchai T. +res_partner_supplier_196,บริษัท ฟาร์ม่า อินโนว่า จำกัด,,30 Days,2000000,TRUE,TRUE,FALSE,,Default,FALSE,26/19 หมู่ 9 ,ท่าแร้ง บางเขน,,กรุงเทพมหานคร,,0-2532-7181,,0-2532-7019,,,,,Chairat S. +res_partner_supplier_197,บริษัท ภูมิวิศว์ เอ็นจิเนียริ่ง จำกัด,,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,230/15 หมู่ 6 ,ท่าสะอ้าน บางปะกง,24130,ฉะเชิงเทรา,,"0-3853-2212, 0-3853-0250",,0-3853-0259,,,,,Surasak S. +res_partner_supplier_198,บริษัท แปซิฟิค อลูมินั่ม แอนด์ กลาส จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,33 ซอย เลียบฯฝั่งใต้ 5/4 ,หนองแขม หนองแขม,,กรุงเทพมหานคร,,0-2811-33359,,0-2811-3359,,,,,Weeranuwat S. +res_partner_supplier_199,บริษัท แปดริ้วเครื่องเย็นเชียงใหม่ (1994) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,223 หมู่ 3 ,ท่าศาลา เมือง,50000,เชียงใหม่,,"0-5385-0932-3, 0-5326-00227",,0-5324-0840,,,,,Weeranuwat S. +res_partner_supplier_200,บริษัท โพลีไทพ์ เอเชีย แปซิฟิก จำกัด,,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,77 หมู่ 9 ซอย นิคมอุตสาหกรรมเวลโกร์ บางนา-ตราด,บางวัว บางปะกง,24180,ฉะเชิงเทรา,,0-3898-9045-053,,0-3898-9054,,,,,Surasak S. +res_partner_supplier_201,บริษัท ปราการ บิวดิ้ง (2008) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,921 ซอย วชิรธรรมสาธิต 57 สุขุมวิท 101/1,บางจาก พระโขนง,10260,กรุงเทพมหานคร,,0-2327-0570,08-9216-2386,0-2327-2570,,,,,Weeranuwat S. +res_partner_supplier_202,บริษัท เพียวคีน จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,55/523 หมู่ 5 หมู่บ้านพฤกษลดา ,ลาดสวาย ลำลูกกา,12150,ปทุมธานี,,0-3526-7820,,0-3526-7811,,,,,Weeranuwat S. +res_partner_supplier_203,บริษัท ฟาร์มาแฟค แพลน เทคโนโลยี จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,199/265 หมู่ 1 ,บึงยี่โถ ธัญบุรี,12130,ปทุมธานี,,,08-6337-0080,,,,,,Dusit T. +res_partner_supplier_204,บริษัท พี.เอส.พี. มารีน จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,119/53 หมู่ 1 ,ท่าจีน เมือง,74000,สมุทรสาคร,,0-3482-1046-7,,0-3482-1048,,,,,Dusit T. +res_partner_supplier_205,บริษัท พี.พี.เจ. เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,52/50 หมู่ 4 สุขาประชาสวรรค์,บางพูด ปากเกร็ด,11120,นนทบุรี,,0-2583-0396-99,,0-2583-0416,,,,,Dusit T. +res_partner_supplier_206,บริษัท ผู้จัดระบบเครื่องอำนวยประโยชน์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,437/5 หมู่ 21 มิตรภาพ,ศิลา เมือง,40000,ขอนแก่น,,0-4324-7466-7,,0-4324-7464,,,,,Surasak S. +res_partner_supplier_207,บริษัท ผู้จัดระบบเครื่องอำนวยประโยชน์ จำกัด (Shipping),,,,FALSE,TRUE,FALSE,บริษัท ผู้จัดระบบเครื่องอำนวยประโยชน์ จำกัด,Shipping,FALSE,49/554 หมู่ 4 เสรีไทย,คลองกุ่ม บึงกุ่ม,,กรุงเทพมหานคร,,,,,,,,,Surasak S. +res_partner_supplier_208,บริษัท คิว.ที.ที. จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,801/127-128 หมู่ 8 ซอย หมู่บ้านวังทองเทรดเซ็นเตอร์ พหลโยธิน,คูคต ลำลูกกา,12130,ปทุมธานี,,0-2900-6900-4,,0-2900-6905,,,,,Chairat S. +res_partner_supplier_209,บริษัท คิวด็อท ซีสเต็ม เทคโนโลยี จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,50/1200-1201 หมู่ 9 หมู่บ้านเมืองทองธานี ซี 12 แยก 1 บอนด์สตีท,บางพูด ปากเกร็ด,11120,นนทบุรี,,0-2960-0133-5,,0-2960-2200,,,,,Dusit T. +res_partner_supplier_210,บริษัท คิว.เอ็ม แอร์ เอ็นจิเนียริ่ง เซอร์วิส จำกัด,,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,555/21 ซอย อ่อนนุช 65-67 อ่อนนุช,ประเวศ ประเวศ,10250,กรุงเทพมหานคร,,0-2720-0274-8,,0-2720-0103,,,,,Weeranuwat S. +res_partner_supplier_211,บริษัท รังสิต โปรเฟสชั่นแนล แอพไพรแอนซ์ เซอร์วิส จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,"53, 55 รังสิต-นครนายก 27 ซอย 1 ",ประชาธิปัตย์ ธัญบุรี,12130,ปทุมธานี,,0-2996-2571-3,,0-2996-2578,,,,,Surasak S. +res_partner_supplier_212,บริษัท รีเนาน์ เทคนิคอล จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,"3811, 3813 พระราม 4",พระโขนง คลองเตย,10110,กรุงเทพมหานคร,,0-2185-4333,,0-2333-1235,,,,,Dusit T. +res_partner_supplier_213,บริษัท อาร์เอ็นอาร์ เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,46/32 หมู่ 7 ราษฎร์อุทิศ,แสนแสบ มีนบุรี,10510,กรุงเทพมหานคร,,0-2989-0982,08-1347-6119,0-2989-1005,,,,,Weeranuwat S. +res_partner_supplier_214,บริษัท อาร์เอ็กซ์ แมนูแฟคเจอริ่ง จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,76 หมู่ 10 ,นราภิรมย์ บางเลน,73130,นครปฐม,,0-3429-8117-120,,0-3429-8117-120,,,,,Chairat S. +res_partner_supplier_215,บริษัท ริว่าโคลด์ (นอร์ธเธิร์น) จำกัด,,30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,332/27 หมู่ 2 ,หนองจ๊อม สันทราย,50210,เชียงใหม่,,0-5326-6240-1,,0-5326-6177,,,,,Weeranuwat S. +res_partner_supplier_216,บริษัท รวมนครก่อสร้าง (ประเทศไทย) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,21/139 ซอย ลาดพร้าว 15 ,จอมพล จตุจักร,10900,กรุงเทพมหานคร,,0-2938-6868,,0-2938-7562,,,,,Chatchai T. +res_partner_supplier_217,บริษัท ซาโต้ โคเกียว กรุงเทพ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,21/99 ไทยวาทาวเวอร์ 2 ชั้น 14 สาทรใต้,ทุ่งมหาเมฆ สาทร,10120,กรุงเทพมหานคร,,0-2679-1405-10,,0-2679-1411,,,,,Dusit T. +res_partner_supplier_218,บริษัท สปริงคูล จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,265/395 ซอย ทวีวัฒนา สาธุประดิษฐ์,ช่องนนทรี ยานนาวา,10120,กรุงเทพมหานคร,,"0-2212-8360-1, 0-2674-0563-6",,0-2212-7126,,,,,Dusit T. +res_partner_supplier_219,บริษัท โซเลยู (ไทยแลนด์) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,6/1 หมู่ 7 ,บางพระ ศรีราชา,20210,ชลบุรี,,0-3829-8362-4,,0-3829-8361,,,,, +res_partner_supplier_220,บริษัท เอส เอ็ม ไอ รีฟริกเจอเรชั่น จำกัด,,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,20/6 หมู่ 8 ซอย พหลโยธิน 30 พหลโยธิน,จันทรเกษม จตุจักร,10900,กรุงเทพมหานคร,,0-2941-9500-1,,0-2941-5207,,,,,Chatchai T. +res_partner_supplier_221,บริษัท สยาม ซันซุย จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,36 หมู่ 4 ,บ่อวิน ศรีราชา,20230,ชลบุรี,,0-2398-8564,,0-2398-8564,,,,,Dusit T. +res_partner_supplier_222,บริษัท สองสมาน จำกัด,,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,2102/46 รามคำแหง,หัวหมาก บางกะปิ,,กรุงเทพมหานคร,,0-2374-9258,,0-2374-9258,,,,,Dusit T. +res_partner_supplier_223,บริษัท แสงชัย รีฟริเจอเรชั่น จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,283 หลานหลวง,วัดโสมนัส ป้อมปราบศรัตรูพ่าย,10100,กรุงเทพมหานคร,,"0-2628-2600, 0-2280-3444",,"0-2628-0484-5, 0-2280-0352",,,,,Visak T. +res_partner_supplier_224,บริษัท สยามแพนเทค เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,92/3 ซอย อาคารสงเคราะห์ ,ทุ่งมหาเมฆ สาทร,10120,กรุงเทพมหานคร,,0-2676-1490-2,,0-2286-1052,,,,,Somboon T. +res_partner_supplier_225,บริษัท ซันโย เอส.เอ็ม.ไอ. (ประเทศไทย) จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,"50, 52 ซอย รามอินทรา 64 รามอินทรา กม. 10",คันนายาว คันนายาว,10230,กรุงเทพมหานคร,,"0-2918-0550, 0-2918-0515",,,,,,,Dusit T. +res_partner_supplier_226,บริษัท เอส พลัส ซิสเทมส์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,77/6 หมู่ 4 ,บางแก้ว บางพลี,10540,สมุทรปราการ,,0-2753-7563-65,,0-2753-7566,,,,,Visak T. +res_partner_supplier_227,บริษัท ซินโกะ แอร์ คอนดิชันนิ่ง (ประเทศไทย) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,134/1 หมู่ 1 นิคมอุตสาหกรรมไฮเทค ,บ้านโพ บางปะอิน,13160,พระนครศรีอยุธยา,,0-3531-4009-12,,0-3531-4013,,,,,Surasak S. +res_partner_supplier_228,บริษัท เซฟ-ที-เซลล์ แอนด์ เซอร์วิส จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,36/14 งามวงศ์วาน,ลาดยาว จตุจักร,10900,กรุงเทพมหานคร,,"0-2589-1268-9, 0-2589-1320-1",,0-2589-2542,,,,,Dusit T. +res_partner_supplier_229,บริษัท ศิวกร ซี แอนด์ อี จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,54 หมู่ 3 รังสิต-นครนายก,บึงยี่โถ ธัญบุรี,12130,ปทุมธานี,,0-2577-1398,,0-2577-2503,,,,,Surasak S. +res_partner_supplier_230,บริษัท ศิวะพรอินเตอร์เทคโนโลยี จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,102 ซอย รามอินทรา 64 ,คันนายาว คันนายาว,10230,กรุงเทพมหานคร,,0-2918-1971-4,,0-2918-1975,,,,,Dusit T. +res_partner_supplier_231,บริษัท สตาร์วอลล์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,98/32 หมู่ 6 ซอย เอกชัย 64 เอกชัย,บางบอน บางบอน,10150,กรุงเทพมหานคร,,0-2415-9306,,0-2415-8707,,,,,Weeranuwat S. +res_partner_supplier_232,บริษัท สกิล ดิเวลลอปเมนท์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,109 หมู่ 7 กิ่งแก้ว-บางพลี,บางพลีใหญ่ บางพลี,10540,สมุทรปราการ,,"0-2751-1256, 0-2751-1257",,0-2751-1258,,,,,Chatchai T. +res_partner_supplier_233,บริษัท ชิบุซัน (ไทยแลนด์) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,108 หมู่ 2 ,ท้ายเกาะ สามโคก,10216,ปทุมธานี,,"0-2978-8708, 0-2978-8503",,0-2978-8505,,,,,Dusit T. +res_partner_supplier_234,บริษัท สยามเภสัช จำกัด,,90 Days,,TRUE,TRUE,FALSE,,Default,FALSE,123 ซอย โชคชัยร่วมมิตร วิภาวดีรังสิต,จอมพล จตุจักร,10900,กรุงเทพมหานคร,,0-2690-0360-8,,"0-2275-2223, 0-2276-2459",,,,,Chairat S. +res_partner_supplier_235,บริษัท สยามเอเซีย อลูเทค จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,68/9 หมู่ 6 สุขาภิบาล 5,ท่าแร้ง บางเขน,10220,กรุงเทพมหานคร,,0-2948-7624-9,,0-2949-8881-2,,,,,Chatchai T. +res_partner_supplier_236,บริษัท สยาม อินคูเบเตอร์ ซีสเต็ม จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,4 ซอย รามคำแหง 164 แยก 4 ,มีนบุรี มีนบุรี,10810,กรุงเทพมหานคร,,0-2917-6057-59,,0-2917-6060,,,,,Chairat S. +res_partner_supplier_237,บริษัท เอส.ดี.เอ็นจิเนียริ่ง แอนด์ คอนสตรัคชั่น จำกัด,,7 Days,300000,TRUE,TRUE,FALSE,,Default,FALSE,155/1 ซอย ลาดพร้าว 130 ลาดพร้าว,คลองจั่น บางกะปิ,10240,กรุงเทพมหานคร,,0-2731-1713,,0-2731-1395,,,,,Weeranuwat S. +res_partner_supplier_238,บริษัท เซนต์โกเบน ซีคิวริท (ประเทศไทย) จำกัด,,30 Days,300000,TRUE,TRUE,FALSE,,Default,FALSE,64/8 หมู่ 4 ,ปลวกแดง ปลวกแดง,21140,ระยอง,,0-3866-7800-7,,0-3866-7865,,,,,Weeranuwat S. +res_partner_supplier_239,บริษัท สุพัตร์ เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,7/2 หมู่ 4 ซอย สำเร็จพัฒนา 8 ,ปลายบาง บางกรวย,11130,นนทบุรี,,0-2903-9399,,0-2903-9035,,,,,Chairat S. +res_partner_supplier_240,บริษัท สยามไบโอไซเอนซ์ จำกัด,,7 Days,100000000,TRUE,TRUE,FALSE,,Default,FALSE,44 อาคาร ศรีจุลทรัพย์ ชั้น 18 ยูนิต เอ พระราม 1,รองเมือง ปทุมวัน,10330,กรุงเทพมหานคร,,0-2613-9939,,0-2613-9979,,,,,Dusit T. +res_partner_supplier_241,บริษัท สยาม อินเตอร์ คูล จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1178/267 ซอย พหลโยธิน 32 ,จันทรเกษม จตุจักร,10900,กรุงเทพมหานคร,,0-2941-5735,,0-2941-5736,,,,,Weeranuwat S. +res_partner_supplier_242,บริษัท เอส.ดับบลิว.เค.เอ็นจิเนียริ่ง แอนด์ ซัพพลาย จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,69/113 หมู่ 15 ,คลองหนึ่ง คลองหลวง,12120,ปทุมธานี,,0-2908-0501,,0-2908-0779,,,,,Weeranuwat S. +res_partner_supplier_243,บริษัท เอสไอซี คูลลิ่ง เซอร์วิส จำกัด,,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,80/1671 หมู่ 5 เทพารักษ์,บางเมืองใหม่ เมือง,10270,สมุทรปราการ,,0-2941-5735,,0-2941-5736,,,,,Weeranuwat S. +res_partner_supplier_244,บริษัท เซจ ดีซายน์ แอนด์ คอนสตรัคชั่น จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,12 อยู่เย็น,ลาดพร้าว ลาดกระบัง,10230,กรุงเทพมหานคร,,0-2508-2475-7,,0-2942-9951,,,,,Weeranuwat S. +res_partner_supplier_245,บริษัท เอส.อินเตอร์ แอนด์ แอสโซซิเอทส์ จำกัด,,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,8 ซอย อ่อนนุช 62 สุขุมวิท 77,สวนหลวง สวนหลวง,10250,กรุงเทพมหานคร,,0-2721-1641-4,,0-2721-1649,,,,,Weeranuwat S. +res_partner_supplier_246,บริษัท สมูท อี จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,15/1-15 หมู่ 9 บรมราชชนนี,ตลิ่งชัน ตลิ่งชัน,10170,กรุงเทพมหานคร,,0-2880-8787,,0-2880-7190,,,,,Surasak S. +res_partner_supplier_247,บริษัท เอส.เอ็น.เค. วิศวกรรมไฟฟ้า จำกัด,,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,101/466 หมู่ 4 ร่มเกล้า,คลองสองต้นนุ่น ลาดกระบัง,10520,กรุงเทพมหานคร,,"0-2588-4653, 0-2952-6429",,"0-2588-4694, 0-2952-5488",,,,,Weeranuwat S. +res_partner_supplier_248,บริษัท โชเอะ คันเกียว (ประเทศไทย) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,200 หมู่ 4 แจ้งวัฒนะ,ปากเกร็ด ปากเกร็ด,11120,นนทบุรี,,0-2962-2114-6,,0-2962-2117,,,,,Dusit T. +res_partner_supplier_249,บริษัท เอส.พี.บี.เอ็นจิเนียริ่ง จำกัด,,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,156 หมู่ 4 ,พะยอม วังน้อย,13170,พระนครศรีอยุธยา,,0-3574-4527-30,,0-3574-4526,,,,,Dusit T. +res_partner_supplier_250,บริษัท สินธุมาสโสภณ จำกัด,,PDC. 30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,479/1 หมู่ 9 ซอย ประชาอุทิศ 12 ประชาอุทิศ,ราษฎร์บูรณะ ราษฎ์บูรณะ,10140,กรุงเทพมหานคร,,0-2874-7537-39,,0-2874-7536,,,,,Chatchai T. +res_partner_supplier_251,บริษัท เสาหลักก่อสร้าง จำกัด,,15 Days,,TRUE,TRUE,FALSE,,Default,FALSE,99/379 หมู่ 8 ซอย รัตนาธิเบศน์ 17 รัตนาธิเบศร์,บางกระสอ เมือง,11000,นนทบุรี,,0-2965-6400-5,,0-2965-6406,,,,,Chairat S. +res_partner_supplier_252,สถาบัน เทคโนโลยีนิวเคลียร์แห่งชาติ (องค์การมหาชน),,90 Days,,TRUE,TRUE,FALSE,,Default,FALSE,9/9 หมู่ 7 ,ทรายมูล องครักษ์,26120,นครนายก,,0-3739-2924,,0-3739-2923,,,,,Dusit T. +res_partner_supplier_253,บริษัท ทรงชัยเอ็นจิเนียริ่ง แอนด์ คอนสตรัคชั่น จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,12/6 หมู่ 7 บางนา-ตราด,บางโฉลง บางพลี,10540,สมุทรปราการ,,0-2312-7184-87,,0-2312-7188,,,,,Visak T. +res_partner_supplier_254,บริษัท ไทย อินเตอร์ฟิล จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,80 สุทธิสารวินิจฉัย,สามเสนนอก ห้วยขวาง,10320,กรุงเทพมหานคร,,0-2693-4302-5,,0-2693-0191,,,,,Surasak S. +res_partner_supplier_255,บริษัท ที-เร็กซ์ สตีล จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,55/121 หมู่ 12 หมู่บ้านการเคหะสุวินทวงศ์ ,แสนแสบ มีนบุรี,10510,กรุงเทพมหานคร,,0-2989-4893,,0-2989-4348,,,,,Somboon T. +res_partner_supplier_256,บริษัท อุตสาหกรรมแว่นตาไทย จำกัด,,30 Days,100000,TRUE,TRUE,FALSE,,Default,FALSE,83 หมู่ 2 งามวงศ์วาน,บางเขน เมือง,11000,นนทบุรี,,"0-2588-4653, 0-2952-6429",,"0-2588-4694, 0-2952-5488",,,,,Weeranuwat S. +res_partner_supplier_257,ห้างหุ้นส่วนจำกัด ธรรมเกสรการโยธา,,7 Days,400000,TRUE,TRUE,FALSE,,Default,FALSE,1188 ซอย มิตรภาพ 15 ,ในเมือง เมือง,30000,นครราชสีมา,,0-2585-0605,,0-2587-4533,,,,,Weeranuwat S. +res_partner_supplier_258,บริษัท ทรีวอลล์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,166/43 หมู่ 4 ,บางเพรียง บางบ่อ,,สมุทรปราการ,,,08-6322-7839,,,,,,Weeranuwat S. +res_partner_supplier_259,บริษัท ที เอส อลูมินั่ม แอนด์ กลาส 2009 จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,323/15 หมู่ 4 สายไหม,สายไหม สายไหม,10220,กรุงเทพมหานคร,,0-2996-3301,,0-2996-3302,,,,,Weeranuwat S. +res_partner_supplier_260,บริษัท เทอร์โมคูล ซัพพลาย แอนด์ เซอร์วิส จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,"136, 138 ซอย พระราม 2 ซอย 33 ",บางมด จอมทอง,10150,กรุงเทพมหานคร,,"0-2459-3174, 0-2874-0463-4",,0-2874-0844,,,,,Weeranuwat S. +res_partner_supplier_261,บริษัท ธันเดอร์ เทคโนโลยี จำกัด,,60 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,199/1 หมู่ 7 บางนา-ตราด,บางโฉลง บางพลี,10540,สมุทรปราการ,,"0-2750-8725-27, 0-2183-9083",,0-2750-8729,,,,,Dusit T. +res_partner_supplier_262,บริษัท ไทยนากาฮารา เอ็นจิเนียริ่ง จำกัด,,Cash,500000,TRUE,TRUE,FALSE,,Default,FALSE,498 ซอย รังสิต-นครนายก 52 ,ประชาธิปัตย์ ธัญบุรี,12130,ปทุมธานี,,0-2974-2951,08-1456-4706,0-2974-2938,,,,,Weeranuwat S. +res_partner_supplier_263,บริษัท ไทยนิชิมัตสุก่อสร้าง จำกัด,,30 Days,10000000,TRUE,TRUE,FALSE,,Default,FALSE,1 อาคาร ชิโน-ไทย ทาวเวอร์ ชั้น 19 สุขุมวิท 21,คลองเตยเหนือ วัฒนา,10110,กรุงเทพมหานคร,,0-2258-9590-7,,0-2258-9599,,,,,Chatchai T. +res_partner_supplier_264,บริษัท ไทยสแตนเลย์การไฟฟ้า จำกัด (มหาชน),,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,10 หมู่ 1 บางพูน-รังสิต,บ้านกลาง เมือง,12000,ปทุมธานี,,0-2581-5462,,0-2581-5397,,,,,Weeranuwat S. +res_partner_supplier_265,บริษัท เดอะ บาร์บีคิว พลาซ่า จำกัด,,30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,333 หมู่ 6 ประชาชื่น,ทุ่งสองห้อง หลักสี่,10210,กรุงเทพมหานคร,,0-2954-1333,,0-2954-1911,,,,,Weeranuwat S. +res_partner_supplier_266,บริษัท ไทยนครพัฒนา จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,94/7 หมู่ 9 ซอย ยิ้มประกอบ งามวงศ์วาน,บางเขน เมือง,11000,นนทบุรี,,0-2555-9999,,0-2589-2729,,,,,Chairat S. +res_partner_supplier_267,บริษัท เท็มโก้ ซีสเต็ม แอนด์ คอนสตรัคชั่น จำกัด,,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,331 ชั้น 2 อาคารเจริญผลคอนโดมิเนียม บรรทัดทอง,เพชรบุรี ราชเทวี,10400,กรุงเทพมหานคร,,"0-2216-7060, 0-2611-1022-23",,0-2216-6836,,,,,Chatchai T. +res_partner_supplier_268,บริษัท เทอร์แมท อินเตอร์เนชั่นแนล จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,335/45 อาคาร ไพร์มสเตท ชั้น 6 ซอย ผูกมิตร ศรีนครินทร์,หนองบอน ประเวศ,10250,กรุงเทพมหานคร,,0-2366-0353,,0-2366-0354,,,,, +res_partner_supplier_269,บริษัท ไทย-อเมริกัน พาแนล จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,129/153 หมู่ 11 หมู่บ้านทรัพย์หมื่นแสน ซอย นวลจันทร์ 36 นวลจันทร์,คลองกุ่ม บึงกุ่ม,10230,กรุงเทพมหานคร,,0-2949-5057,,0-2949-5058,,,,,Dusit T. +res_partner_supplier_270,บริษัท โตชิบา เซมิคอนดัคเตอร์ (ประเทศไทย) จำกัด,,45 Days,,TRUE,TRUE,FALSE,,Default,FALSE,135 หมู่ 5 สวนอุตสาหกรรมบางกะดี่ ติวานนท์,บางกะดี่ เมือง,12000,ปทุมธานี,,"0-2501-1030, 0-2501-1621",,"0-2501-1642, 0-2501-1643-44",,,,,Dusit T. +res_partner_supplier_271,บริษัท ไทคิชา (ประเทศไทย) จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,62 อาคาร ธนิยะ ชั้น 6 สีลม,สุริยวงศ์ บางรัก,10500,กรุงเทพมหานคร,,0-2236-8055-9,,"0-2236-6189, 0-2236-9505",,,,,Dusit T. +res_partner_supplier_272,บริษัท ไทยทาเคนาคา สากลก่อสร้าง จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,191 อาคาร สีลมคอมเพล็กซ์ ชั้น 26 สีลม,สุริยวงศ์ บางรัก,10500,กรุงเทพมหานคร,,0-2266-2800,,"0-2266-2808, 0-2266-2809",,,,,Surasak S. +res_partner_supplier_273,บริษัท ไทย-เลเซอร์ เอ็นจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,5 ซอย ลาดพร้าว 80 แยก 22 ลาดพร้าว,วังทองหลาง วังทองหลาง,10310,กรุงเทพมหานคร,,0-2539-5439,,0-2539-5437,,,,,Weeranuwat S. +res_partner_supplier_274,บริษัท ไทยเอ็นวาเทค จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,195 หมู่ 4 ,พะยอม วังน้อย,13170,พระนครศรีอยุธยา,,0-3574-4501-3,,0-3574-4505,,,,,Dusit T. +res_partner_supplier_275,บริษัท ไทยคอนสตรัคชั่น แอนด์ เอ็นจิเนียริ่งซิสเทม จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,60/49 หมู่ 5 ,ดอนหัวฬ่อ เมือง,20000,ชลบุรี,,,08-9987-7757,0-3844-0534,,,,,Weeranuwat S. +res_partner_supplier_276,บริษัท เดอะ คูล จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,193/53 อาคาร เลครัชดา ออฟฟิศ คอมเพล็กซ์ ชั้น 14 รัชดาภิเษก,คลองเตย คลองเตย,10110,กรุงเทพมหานคร,,0-2661-8228,,0-2661-8822,,,,,Weeranuwat S. +res_partner_supplier_277,บริษัท เทวยุทธ ก่อสร้าง จำกัด,,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,24/36 อาคาร เมืองทองธานี อาคาร ที 11 ปอปปูลาร์,บ้านใหม่ ปากเกร็ด,11120,นนทบุรี,,0-3571-1222,,0-3571-1221,,,,,Chatchai T. +res_partner_supplier_278,บริษัท ทัสค์ อินทีเรีย จำกัด,,Cash,1000000,TRUE,TRUE,FALSE,,Default,FALSE,79/6-9 ซอย รามอินทรา 14 รามอินทรา,ท่าแร้ง บางเขน,10230,กรุงเทพมหานคร,,0-2943-5000,,0-2943-8025-6,,,,,Surasak S. +res_partner_supplier_279,บริษัท เทลสตาร์ โซลูชั่น (ประเทศไทย) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,43 ซอย พระรามเก้า 62 พระราม 9,สวนหลวง สวนหลวง,10250,กรุงเทพมหานคร,,0-2300-1735,,0-2300-1735,,,,,Surasak S. +res_partner_supplier_280,บริษัท ที-คอน สตรัคชั่น แอนด์ คลีนรูม เอ็นจิเนียริ่ง จำกัด,,30 Days,2000000,TRUE,TRUE,FALSE,,Default,FALSE,130/30 หมู่ 11 หมู่บ้านสินสุข ,คลองกุ่ม บึงกุ่ม,10230,กรุงเทพมหานคร,,0-2949-5474-5,,0-2949-5475,,,,,Chatchai T. +res_partner_supplier_281,บริษัท ที.โอ.แลบ จำกัด,,7 Days,10000000,TRUE,TRUE,FALSE,,Default,FALSE,2/052 หมู่ 1 แจ้งวัฒนะ,ทุ่งสองห้อง หลักสี่,10210,กรุงเทพมหานคร,,0-2573-2139,,0-2573-2140,,,,,Chairat S. +res_partner_supplier_282,บริษัท ที.โอ.เคมีคอลล์ (1979) จำกัด,,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,280 ซอย สบายใจ สุทธิสารวินิจฉัย,สามเสนนอก ห้วยขวาง,10320,กรุงเทพมหานคร,,0-2275-6053-9,,0-2277-7350,,,,,Chairat S. +res_partner_supplier_283,บริษัท ทีทีเอ็ม เทคโนโลยี่ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,110/27 ซอย รามคำแหง 43/1 รามคำแหง,พลับพลา วังทองหลาง,10310,กรุงเทพมหานคร,,0-2374-3742,,0-2374-3743,,,,,Weeranuwat S. +res_partner_supplier_284,บริษัท ที เอ็น ดี ฟู้ดส์ อินดัสตรีย์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,229 หมู่ 3 ,ทุ่งสุขลา ศรีราชา,20230,ชลบุรี,,0-3849-0314-7,,0-3849-0592,,,,,Weeranuwat S. +res_partner_supplier_285,บริษัท ที เอ็น เอ็ม อินเตอร์เนชั่นแนล จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,30/59 หมู่ 5 ,คอกกระบือ เมือง,74000,สมุทรสาคร,,"0-3444-1344, 0-3444-1152",,0-3444-1167,,,,,Weeranuwat S. +res_partner_supplier_286,บริษัท ตามรภาค เอนจิเนียริ่ง จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,981/7-8 พระราม 3,บางโพงพาง ยานนาวา,10120,กรุงเทพมหานคร,,0-2284-3994-6,,0-2284-3997,,,,,Weeranuwat S. +res_partner_supplier_287,บริษัท ที อาร์ เอส คลูลิ่งซีสเต็ม จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,367/67 หมู่ 7 ,ดีลัง พัฒนานิคม,15220,ลพบุรี,,,"08-1785-5935, 08-0795-9255",0-4547-5029,,,,,Weeranuwat S. +res_partner_supplier_288,บริษัท ไทย กรีน เทค จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,"62/277, 279 ซอย เสรีไทย 72 เสรีไทย",มีนบุรี มีนบุรี,10510,กรุงเทพมหานคร,,0-2918-9061-2,,0-2918-9063,,,,,Weeranuwat S. +res_partner_supplier_289,บริษัท ไทย ริห์ติง โคทติ้ง เทคโนโลยี จำกัด,,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,289 หมู่ 6 เมืองใหม่บางพลี,บางเพรียง บางบ่อ,10560,สมุทรปราการ,,0-2705-9604-6,,0-2705-9644,,,,,Weeranuwat S. +res_partner_supplier_290,บริษัท เทวกิจ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,282/23 อาคาร การ์เด้นเพลส 1 ชั้น 5 ซอย รุ่งเรือง สุทธิสาร,สามเสนนอก ห้วยขวาง,10310,กรุงเทพมหานคร,,0-2693-4326-7,,0-2693-4336,,,,, +res_partner_supplier_291,บริษัท เทอร์มอลแลนด์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,43/5 หมู่ 7 ,ท่าจีน เมือง,74000,สมุทรสาคร,,,,0-3449-7014,,,,,Dusit T. +res_partner_supplier_292,บริษัท ยูนีซัน จำกัด,,30 Days,20000000,TRUE,TRUE,FALSE,,Default,FALSE,39 หมู่ 4 ,คลองอุดมชลจร เมือง,24000,ฉะเชิงเทรา,,0-2329-1020-5,,0-2329-1279,,,,,Dusit T. +res_partner_supplier_293,บริษัท ยูนีซัน จำกัด (Invoice),,,,FALSE,TRUE,FALSE,บริษัท ยูนีซัน จำกัด,Invoice,FALSE,736-742 ประชาอุทิศ,สามเสนนอก ห้วยขวาง,10320,กรุงเทพมหานคร,,0-2274-3500-19,,,,,,,Dusit T. +res_partner_supplier_294,บริษัท ยูโทเปี้ยน จำกัด,,Cash,5000000,TRUE,TRUE,FALSE,,Default,FALSE,602 หมู่ 3 ซอย ท่านผู้หญิง เทพารักษ์,เทพารักษ์ เมือง,10270,สมุทรปราการ,,"0-2394-1703, 0-2394-6505, 0-2394-6869",,0-2758-4334,,,,,Chairat S. +res_partner_supplier_295,บริษัท ยูนิค ผลิตภัณฑ์ อุตสาหกรรม จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,100/58 หมู่ 4 ,โสนลอย บางบัวทอง,11110,นนทบุรี,,0-2924-9523,,0-2924-9523,,,,,Chatchai T. +res_partner_supplier_296,บริษัท ยูไนเต็ดอินสทรูเมนท์ จำกัด,,PDC. 15 Days,,TRUE,TRUE,FALSE,,Default,FALSE,148/4 ซอย สุขุมวิท 22 สุขุมวิท,คลองเตย คลองเตย,10110,กรุงเทพมหานคร,,0-2259-5785,,0-2259-1321,,,,,Chatchai T. +res_partner_supplier_297,บริษัท ยูแมค ไซแอนทิฟิค จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,40 ดรุณสำราญ,ในเมือง เมือง,40000,ขอนแก่น,,0-4332-2995,08-1592-6865,0-4332-2996,,,,,Weeranuwat S. +res_partner_supplier_298,บริษัท ยูไนเต็ด สตีลเวอร์ค จำกัด,,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,266/3 จรัญสนิทวงศ์,ศิริราช บางกอกน้อย,10700,กรุงเทพมหานคร,,0-2435-0051-4,,0-2435-1141,,,,,Chatchai T. +res_partner_supplier_299,บริษัท ยูไนเต็ด สตีลเวอร์ค จำกัด (Invoice),,,,FALSE,TRUE,FALSE,บริษัท ยูไนเต็ด สตีลเวอร์ค จำกัด,Invoice,FALSE,340 หมู่ 4 ซอย สวนหลวง 1 เศรษกิจ,ท่าไม้ กระทุ่มแบน,74110,สมุทรสาคร,,0-3447-2710-1,,,,,,,Chatchai T. +res_partner_supplier_300,บริษัท ยูแทคไทย จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,40/10 สุขุมวิท 105 สุขุมวิท,บางนา บางนา,10800,กรุงเทพมหานคร,,"0-2749-1680, 0-2393-3126-35",,"0-2398-7157, 0-2749-2872",,,,,Chatchai T. +res_partner_supplier_301,บริษัท ยูเอฟเอ็ม ฟู้ดเซ็นเตอร์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,"593, 593/29-39 ซอย สุขุมวิท 33/1 สุขุมวิท",คลองตันเหนือ วัฒนา,10110,กรุงเทพมหานคร,,0-2260-5280-30,,0-2259-0620-30,,,,,Surasak S. +res_partner_supplier_302,บริษัท วิสโก้ เอ็นจิเนียริ่ จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,800/378 หมู่ 11 นวมินทร์,คันนายาว คันนายาว,10230,กรุงเทพมหานคร,,0-2947-7389,,0-2944-7929,,,,,Visak T. +res_partner_supplier_303,บริษัท วีพีเอส รีครีเอชั่น จำกัด,,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,58 ซอย ตรอกศรีรับสุข ซอย วิภาวดี 62 ,ตลาดบางเขน หลักสี่,10210,กรุงเทพมหานคร,,0-2973-5440,,0-2973-4425,,,,,Weeranuwat S. +res_partner_supplier_304,บริษัท วี.เมน.ฟิลส์ (ประเทศไทย) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,284 หมู่ 4 นิคมอุตสาหกรรมลาดกระบัง เขตทั่วไป โครงการ 3 ฉลองกรุง,ลำปลาทิว ลาดกระบัง,10520,กรุงเทพมหานคร,,0-2326-0100,,0-2326-0155,,,,,Somboon T. +res_partner_supplier_305,บริษัท วี.ดับบลิว.กรุ๊ป จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,68/79 หมู่ 6 ซอย บางใหญ่ซิตี้ กาญจนาภิเษก,เสาธงหิน บางใหญ่,11140,นนทบุรี,,0-2903-3190-2,,0-2903-3193,,,,,Chatchai T. +res_partner_supplier_306,บริษัท วาลิเทค จำกัด,,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,274 อาคารเอ 2 ชั้น 1 ซอย ศูนย์วิจัย 4 พระราม 9,บางกะปิ ห้วยขวาง,10320,กรุงเทพมหานคร,,0-2319-9769,,0-2319-9770,,,,,Surasak S. +res_partner_supplier_307,ห้างหุ้นส่วนจำกัด วีอาร์ เอ็กซ์เพิร์ท,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,100/3 หมู่ 7 ราษฎร์พัฒนา,สะพานสูง สะพานสูง,10240,กรุงเทพมหานคร,,0-2917-3440,,0-2917-3441,,,,,Weeranuwat S. +res_partner_supplier_308,บริษัท วี.ที.ซี. คูล จำกัด,,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,82/92 หมู่ 6 ,ท่าทราย เมือง,74000,สมุทรสาคร,,0-3481-0688,08-6315-0272,0-3442-1473,,,,,Weeranuwat S. +res_partner_supplier_309,บริษัท วีโอวี อินเตอร์เนชั่นแนบ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,51/1004 หมู่ 2 ลำลูกกา,คูคต ลำลูกกา,12130,ปทุมธานี,,0-2995-7470-5,,0-2995-7475,,,,,Dusit T. +res_partner_supplier_310,บริษัท เวคเตอร์ไทย เทคโนโลยี จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,299 ซอย ลาดพร้าว 101 ลาดพร้าว,คลองจั่น บางกะปิ,10240,กรุงเทพมหานคร,,"0-2736-9288, 0-2736-9588",,0-2376-0860,,,,,Surasak S. +res_partner_supplier_311,บริษัท วรธนาวงศ์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,77/16 หมู่ 10 ,บางม่วง บางใหญ่,11140,นนทบุรี,,"0-2443-6667-9, 0-2921-4137-9",,0-2921-4145,,,,,Chairat S. +res_partner_supplier_312,บริษัท เวสเทิร์น สตาร์ คอนสตรัคชั่น (2000) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,339/31 หมู่ 1 ,ปากแพรก เมือง,71000,กาญจนบุรี,,0-3424-1187,08-1434-9266,0-3424-1187,,,,,Chatchai T. +res_partner_supplier_313,บริษัท วินด์ชิลล์ จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,159/16 หมู่ 17 กาญจนาภิเษก,ศาลาธรรมสพน์ ทวีวัฒนา,10170,กรุงเทพมหานคร,,0-2885-2995-97,,0-2885-2998,,,,,Chatchai T. +res_partner_supplier_314,บริษัท วูวี่ คอร์ปอเรชั่น จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,333 หมู่ 9 ศรีนครินทร์,บางนา บางนา,10260,กรุงเทพมหานคร,,0-2748-7420-1,,0-2748-7420,,,,,Chairat S. +res_partner_supplier_315,บริษัท ยงไถ่ คอนสตรัคชั่น จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,4 ซอย สุขุมวิท 101/1 สุขุมวิท,บางจาก พระโขนง,10260,กรุงเทพมหานคร,,0-2743-9240-3,,0-2743-9240,,,,,Chairat S. +res_partner_supplier_316,ห้างหุ้นส่วนจำกัด วาย.โอ.เอส ชัยยศเซอร์วิส,,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,31/13 หมู่ 4 ,บ้านม้า บางไทร,13190,พระนครศรีอยุธยา,,0-3571-8115,,0-3571-8115,,,,,Surasak S. diff --git a/masterdata/rev4_final/30.supplier.res.partner.category.csv b/masterdata/rev4_final/30.supplier.res.partner.category.csv new file mode 100755 index 0000000..3fd0ee0 --- /dev/null +++ b/masterdata/rev4_final/30.supplier.res.partner.category.csv @@ -0,0 +1,8 @@ +id,name,parent_id/id +res_partner_category_aluminium,ALUMINIUM, +res_partner_category_installation,INSTALLATION , +res_partner_category_expendables,วัสดุสิ้นเปลือง , +res_partner_category_pvc,PVC , +res_partner_category_rawmat,วัตถุดิบ, +res_partner_category_office,อุปกรณ์/เครื่องใช้สำนักงาน, +res_partner_category_others,อื่น ๆ , diff --git a/masterdata/rev4_final/40.supplier.res.partner.csv b/masterdata/rev4_final/40.supplier.res.partner.csv new file mode 100755 index 0000000..3597723 --- /dev/null +++ b/masterdata/rev4_final/40.supplier.res.partner.csv @@ -0,0 +1,963 @@ +id,name,ref,is_company,customer,supplier,parent_id_NOT_USE,parent_id/id,type,use_parent_address,street,street2,zip,city,country_id,phone,mobile,fax,email,category_id,website,comment,property_supplier_payment_term,LEAD_TIME +res_partner_aluminum_1,บริษัท เค.ซี.(กระทุ่มแบน) อุตสาหกรรม จำกัด,SP01S001,TRUE,FALSE,TRUE,,,Default,FALSE,107 หมู่ 10,ต.คลองมะเดือ อ.กระทุ่มแบน,,สมุทรสาคร,Thailand,0-2878-0432-6,,0-2468-3728,,ALUMINIUM,,Aluminium,Cash,21 +res_partner_aluminum_2,บริษัท ซิมเมอร์ เมตัล สแตนดาร์ด จำกัด,SP01S002,TRUE,FALSE,TRUE,,,Default,FALSE,1/4 ม.7,ต.บ้านแถว อ.เสนา,13110,พระนครศรีอยุธยา,Thailand,02-6176025-6 /081-6856926,,"02-2721546, 2720877",,ALUMINIUM,,Aluminium,45 Days,21 +res_partner_aluminum_3,ปราวีณา / จิน,,FALSE,FALSE,TRUE,บริษัท ซิมเมอร์ เมตัล สแตนดาร์ด จำกัด,res_partner_aluminum_2,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_aluminum_4,บริษัท ไทยเม็ททอล จำกัด,SP01S003,TRUE,FALSE,TRUE,,,Default,FALSE,205 ม.2 ถ.บางปิ้ง-แพรกษา (พุทธรักษา),ต.ท้ายบ้าน อ.เมือง,10280,สมุทรปราการ,Thailand,02-7029787-91,,02-7028559,,ALUMINIUM,,Aluminium,60 Days,21 +res_partner_aluminum_5,คุณกชพร,,FALSE,FALSE,TRUE,บริษัท ไทยเม็ททอล จำกัด,res_partner_aluminum_4,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_aluminum_6,บริษัท พรนครินทร์ อลูมินั่ม จำกัด,SP01S004,TRUE,FALSE,TRUE,,,Default,FALSE,407/25-27 ม.5 ถนนศรีนครินทร์,ตำบลสำโรงเหนือ อำเภอเมือง,10270,สมุทรปราการ,Thailand,"02-3857871, 02-7587372",,"02-3857871, 02-7587372",,ALUMINIUM,,"Aluminium ( สำเร็จรูป , PART ขายตามท้องตลาด)",15 Days,7 +res_partner_aluminum_7,คุณอัมพร,,FALSE,FALSE,TRUE,บริษัท พรนครินทร์ อลูมินั่ม จำกัด,res_partner_aluminum_6,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_aluminum_8,บริษัท รัตนดำรงค์ จำกัด,SP01S005,TRUE,FALSE,TRUE,,,Default,FALSE,258 หมู่ 4 ซอย ว.ป.อ. 11 ( พิเศษ) ถ.เศรษฐกิจ 1,ต.ท่าไม้ อ.กระทุ่มแบน,,สมุทรสาคร,Thailand,"02 - 810 0179-80 ,02-429 1929",,02 - 4291929 ,,ALUMINIUM,,Aluminium,45 Days,21 +res_partner_aluminum_9,คุณสะรากรณ์,,FALSE,FALSE,TRUE,บริษัท รัตนดำรงค์ จำกัด,res_partner_aluminum_8,Contact,TRUE,,,,,Thailand,,0-81 331 1687 ,,,,,,, +res_partner_aluminum_10,บริษัท แอลเมทไทย จำกัด,SP01S006,TRUE,FALSE,TRUE,,,Default,FALSE,235 ม.7 ถ.สุขุมวิท กม35,ต.บางปูใหม่ อ.เมือง,,สมุทรปราการ,Thailand,"02 - 323 2635 - 40 , 02 - 709 5608 -11",,02-709 5607,,ALUMINIUM,,Aluminium,30 Days,21 +res_partner_aluminum_11,คุณพิสิต,,FALSE,FALSE,TRUE,บริษัท แอลเมทไทย จำกัด,res_partner_aluminum_10,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_aluminum_12,ร้านสมานมิตร,SP01S007,TRUE,FALSE,TRUE,,,Default,FALSE,802 หมู่ 1,ต.พนมสารคาม อ.พนมสารคาม,,ฉะเชิงเทรา,Thailand, (038)883 9191,, (038)883 9191,,ALUMINIUM,,"Aluminium ( สำเร็จรูป , PART ขายตามท้องตลาด)",Cash,3 +res_partner_aluminum_13,คุณไพรวัลย์,,FALSE,FALSE,TRUE,ร้านสมานมิตร,res_partner_aluminum_12,Contact,TRUE,,,,,Thailand,,089-964 0222,,,,,,, +res_partner_pvc_1,"KRUNGTEP UNION MFG. CO.,LTD.",SP04S001,TRUE,FALSE,TRUE,,,Default,FALSE,47 หมู่ 2 ถ.สุวินทวงศ์,ลำผักชี หนองจอก,10530,กรุงเทพฯ,Thailand,02-989 7791-4,,02-989 7878,,PVC ,,"PVC , ยาง ",, +res_partner_pvc_2,คุณสุนีย์รัตน์,,FALSE,FALSE,TRUE,"KRUNGTEP UNION MFG. CO.,LTD.",res_partner_pvc_1,Contact,TRUE,,,,,Thailand,,081 - 1701490,,,,,,, +res_partner_pvc_3,บริษัท เอส. จี สยาม จำกัด,SP04S002,TRUE,FALSE,TRUE,,,Default,FALSE,11/272-272 ม.10 ถ.เอกชัย,แขวงบางบอน เขตบางบอน,10150,กรุงเทพฯ,Thailand,02 - 895 0545 -6 ,,02 - 895 3029 ,,PVC ,,"PVC , ยาง ",Cash, +res_partner_pvc_4,คุณหน่อย,,FALSE,FALSE,TRUE,บริษัท เอส. จี สยาม จำกัด,res_partner_pvc_3,Contact,TRUE,,,,,Thailand,,089-4949485,,,,,,, +res_partner_pvc_5,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,SP04S003,TRUE,FALSE,TRUE,,,Default,FALSE,4/7 ม.9,ต.นาดี อ.เมืองสมุทรสาคร,74000,สมุทรสาคร,Thailand,034-466011-6,,034-466017-8,,PVC ,,"PVC , ยาง ",30 Days, +res_partner_pvc_6,คุณทักษิณ,,FALSE,FALSE,TRUE,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,res_partner_pvc_5,Contact,TRUE,,,,,Thailand,,01-9099456,,,,,,, +res_partner_pvc_7,คุณเสริมศักดิ์,,FALSE,FALSE,TRUE,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,res_partner_pvc_5,Contact,TRUE,,,,,Thailand,,081-6301569,,,,,,, +res_partner_pvc_8,คุณบี,,FALSE,FALSE,TRUE,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,res_partner_pvc_5,Contact,TRUE,,,,,Thailand,,06-3247323,,,,,,, +res_partner_pvc_9,คุณศิริรัตน์-CN,,FALSE,FALSE,TRUE,บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด,res_partner_pvc_5,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_pvc_10,บริษัท ซิลเวอร์โกลด์ พลาสติก จำกัด,SP04S004,TRUE,FALSE,TRUE,,,Default,FALSE,81/70-72 ม.20 (ไทรอัมพ์ เซ็นเตอร์) ถ.เทพารักษ์ กม.12,ต.บางพลีใหญ่ อ.บางพลี,10540,สมุทรปราการ,Thailand,01-3183339 / 02-3129720-22,,02-3129723,,PVC ,,"PVC , ยาง ",30 Days, +res_partner_pvc_11,คุณคฑาวุธ,,FALSE,FALSE,TRUE,บริษัท ซิลเวอร์โกลด์ พลาสติก จำกัด,res_partner_pvc_10,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_1,บริษัท เซ้าท์ ซิตี้ ปิโตรเคม จำกัด,SP04S001,TRUE,FALSE,TRUE,,,Default,FALSE,99/1 ม.8 ถ.ทางหลวงหมายเลข 3191,ต.มาบข่า กิ่ง อ.นิคมพัฒนา,21180,ระยอง,Thailand,0-2717-1730-48 : 324,01-8899240,0-2717-1750,,วัตถุดิบ,,น้ำยา / สารเคมี / WAX (DOP น้ำยาล้างเครื่องฉีดโฟม),,- +res_partner_rawmat_2,กาญจนา เลิศอัมพรวิทย์,,FALSE,FALSE,TRUE,บริษัท เซ้าท์ ซิตี้ ปิโตรเคม จำกัด,res_partner_rawmat_1,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_3,บริษัท พรีซีสชั่น เอนยีเนียริ่ง จำกัด,SP04S002,TRUE,FALSE,TRUE,,,Default,FALSE,153/13 ซ.รองเมือง 3 ถ.รองเมือง,แขวงรองเมือง เขตปทุมวัน,10330,กรุงเทพฯ,Thailand,"04-1457049, 02-2164762, 2165858",,02-2170214,,วัตถุดิบ,,น้ำยา / สารเคมี / WAX,,- +res_partner_rawmat_4,คุณเอกรัฐ,,FALSE,FALSE,TRUE,บริษัท พรีซีสชั่น เอนยีเนียริ่ง จำกัด,res_partner_rawmat_3,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_5,คุณนวลทิพย์,,FALSE,FALSE,TRUE,บริษัท พรีซีสชั่น เอนยีเนียริ่ง จำกัด,res_partner_rawmat_3,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_6,บริษัท เชลล์แห่งประเทศไทย จำกัด ( Flintkote No.5 ),SP04S003,TRUE,FALSE,TRUE,,,Default,FALSE,10 ถนนสุนทรโกษา,แขวงคลองเตย เขตคลองเตย,10110,กรุงเทพฯ,Thailand,"0-2249-0491, 0-2262-6341",06-977 5614,0-2249-8334,,วัตถุดิบ,,น้ำยา / สารเคมี / WAX,Cash,7 +res_partner_rawmat_7,กิ่งแก้ว สุภูตะโยธิน,,FALSE,FALSE,TRUE,บริษัท เชลล์แห่งประเทศไทย จำกัด ( Flintkote No.5 ),res_partner_rawmat_6,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_8,บริษัท พรีเทรนเคมี จำกัด ( Methylene Chloride น้ำยาล้างโฟม),SP04S004,TRUE,FALSE,TRUE,,,Default,FALSE,127/217 หมู่บ้านสวนทองวิลล่า ถ.รามอินทรา,แขวงคลองกุ่ม เขตบึงกุ่ม,10230,กรุงเทพฯ,Thailand,"09-4990990, 02-9445450-2",,02-9445454,,วัตถุดิบ,,น้ำยา / สารเคมี / WAX,,- +res_partner_rawmat_9,คุณจารุวัฒน์,,FALSE,FALSE,TRUE,บริษัท พรีเทรนเคมี จำกัด ( Methylene Chloride น้ำยาล้างโฟม),res_partner_rawmat_8,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_10,ห้างหุ้นส่วนจำกัด ฟิแลนโทรป,SP04S005,TRUE,FALSE,TRUE,,,Default,FALSE,256 ถ.สีลม แขวงสุริยวงศ์ เขตบางรัก กรุงเทพ ฯ 10500,256 ถ.สีลม แขวงสุริยวงศ์ เขตบางรัก,10500,กรุงเทพฯ,Thailand," 0-2234-1288, 233-0306 ",,0-2233-7496,,วัตถุดิบ,,น้ำยา / สารเคมี / WAX,30 Days,5 +res_partner_rawmat_11,คุณสุรพงษ์,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ฟิแลนโทรป,res_partner_rawmat_10,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_12,บริษัท เคมเอ็กซ์ จำกัด,SP04S006,TRUE,FALSE,TRUE,,,Default,FALSE,77/249 อาคารราชเทวีทาวเวอร์ ชั้น 19 ถนนพยาไทย กรุงเทพ ฯ / 1296/4 ถ.ประชาราษฏร์ แขวงบางซื่อ กรุงเทพฯ 10800,77/249 อาคารราชเทวีทาวเวอร์ ชั้น 19 ถนนพยาไทย กรุงเทพ ฯ / 1296/4 ถ.ประชาราษฏร์ แขวงบางซื่อ กรุงเทพฯ 10800,,,Thailand,"0-225 7599,252 9897 ",,0-2254 4182,,วัตถุดิบ,,น้ำยา / สารเคมี / WAX,30 Days,3 +res_partner_rawmat_13,คุณพงษ์เทพ,,FALSE,FALSE,TRUE,บริษัท เคมเอ็กซ์ จำกัด,res_partner_rawmat_12,Contact,TRUE,,,,,Thailand, ,086- 688 5775,,,,,,, +res_partner_rawmat_14,บริษัท แม็คฮิลล์ กรุ๊ป จำกัด,SP04S007,TRUE,FALSE,TRUE,,,Default,FALSE,"69/108 หมู่ที่ 5 ซอยอำนวยโชค ถนนเลียบคลองทวีวัฒนา +บรรทัด :บริษัท แม็คฮิลล์ กรุ๊ป จำกัด","แขวงทวีวัฒนา เขตทวีวัฒนา +บรรทัด :บริษัท แม็คฮิลล์ กรุ๊ป จำกัด",10170,กรุงเทพฯ,Thailand,0-2814-0291-4 (01-6943256),,0-2814-0290,,วัตถุดิบ,,น้ำยา / สารเคมี / WAX ( น้ำยา Wax ),,- +res_partner_rawmat_15,คุณวิชาย แซ่ลี้,,FALSE,FALSE,TRUE,บริษัท แม็คฮิลล์ กรุ๊ป จำกัด,res_partner_rawmat_14,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_16,บริษัท อัลติม่า โพลีเมอร์ จำกัด,SP04S008,TRUE,FALSE,TRUE,,,Default,FALSE,44/5 ม.4 ถ.พหลโยธิน-ลำลูกกา,ต.ลำลูกกา อ.ลำลูกกา,12150,ปทุมธานี,Thailand,"0-2987-1157-9, 01-9259236",,0-2968-3713,,วัตถุดิบ,,น้ำยา / สารเคมี / WAX ( น้ำยา Wax ),,- +res_partner_rawmat_17,ณัฐกฤตย์,,FALSE,FALSE,TRUE,บริษัท อัลติม่า โพลีเมอร์ จำกัด,res_partner_rawmat_16,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_18,ตุ๊กตา,,FALSE,FALSE,TRUE,บริษัท อัลติม่า โพลีเมอร์ จำกัด,res_partner_rawmat_16,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_19,เตย,,FALSE,FALSE,TRUE,บริษัท อัลติม่า โพลีเมอร์ จำกัด,res_partner_rawmat_16,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_20,CB MARKETING,SP04S009,TRUE,FALSE,TRUE,,,Default,FALSE,90 Soi Sangngoen Sukhumvit 55 Rd.,Wattana Bangkok,10110,กรุงเทพฯ,Thailand," 02 - 185 0747 ,02 - 185 0749 ",,02-712 6438,,วัตถุดิบ,,น้ำยา / สารเคมี / WAX ( MC ) ,30 Days,5 +res_partner_rawmat_21,คุณปอ,,FALSE,FALSE,TRUE,CB MARKETING,res_partner_rawmat_20,Contact,TRUE,,,,,Thailand,,089-816 3100,,,,,,, +res_partner_rawmat_22,บริษัท โมเดอนเคมีเคิล จำกัด,SP04S010,TRUE,FALSE,TRUE,,,Default,FALSE,59/5-6 ซ.สุขุมวิท 42 ถ.สุขุมวิท,แขวงพระโขนง เขตคลองเตย กรุงเทพฯ 10110,10110,กรุงเทพฯ,Thailand,02-7120405-9 /0-1920-9800,,02-3911571,,วัตถุดิบ,,น้ำยา / สารเคมี / WAX ( MC ) ,60 Days,5 +res_partner_rawmat_23,พรทวี,,FALSE,FALSE,TRUE,บริษัท โมเดอนเคมีเคิล จำกัด,res_partner_rawmat_22,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_24,ห้างหุ้นส่วนจำกัด ดีมาร์ค อาร์ซี.,SP04S011,TRUE,FALSE,TRUE,,,Default,FALSE,"59/742, 744 ม.4 ถ.นิมิตรใหม่",แขวงสามวาตะวันออก เขตคลองสามวา,10510,กรุงเทพฯ,Thailand,"02-9156727, 9157016",,02-9156970,,วัตถุดิบ,,น้ำยา / สารเคมี / WAX ( กาวขาว กาวดำ ) ,30 Days,3 +res_partner_rawmat_25,พงษ์เทพ,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ดีมาร์ค อาร์ซี.,res_partner_rawmat_24,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_26,กรองทิพย์,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ดีมาร์ค อาร์ซี.,res_partner_rawmat_24,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_27,"BAYER THAI CO.,LTD.",SP04S012,TRUE,FALSE,TRUE,,,Default,FALSE,130/1 North Sathon Rd. Silom,Bangrak,10500,กรุงเทพฯ,Thailand,,,,,วัตถุดิบ,,"น้ำยา / สารเคมี / WAX ( ISO , POLY )",60 Days,ตามข้อตกลง +res_partner_rawmat_28,K.Thanitnun,,FALSE,FALSE,TRUE,"BAYER THAI CO.,LTD.",res_partner_rawmat_27,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_29,บริษัท บัลมอรัล จำกัด,SP04S013,TRUE,FALSE,TRUE,,,Default,FALSE,46 ซอยรามคำแหง 192,แขวงมีนบุรี เขตมีนบุรี,10510,กรุงเทพฯ,Thailand,"0-2919-4162-3, 9194077",,0-2919-4163,,วัตถุดิบ,,"น้ำยา / สารเคมี / WAX ( ISO , POLY )",,- +res_partner_rawmat_30,คุณจันคำ กูนวงศ์,,FALSE,FALSE,TRUE,บริษัท บัลมอรัล จำกัด,res_partner_rawmat_29,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_31,บริษัท บางกอก อินทิเกรเท็ด เทรดดิ้ง จำกัด,SP04S014,TRUE,FALSE,TRUE,,,Default,FALSE,255 หมู่บ้านทาวน์อินทาวน์ ซ.94 ถ.ลาดพร้าว,แขวง/เขตวังทองหลาง,10310,กรุงเทพฯ,Thailand,02-5303811-2,,02-5303846,,วัตถุดิบ,,"น้ำยา / สารเคมี / WAX ( ISO , POLY )",90 Days,- +res_partner_rawmat_32,รัตน์,,FALSE,FALSE,TRUE,บริษัท บางกอก อินทิเกรเท็ด เทรดดิ้ง จำกัด,res_partner_rawmat_31,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_33,สมชาย,,FALSE,FALSE,TRUE,บริษัท บางกอก อินทิเกรเท็ด เทรดดิ้ง จำกัด,res_partner_rawmat_31,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_34,บริษัท พี. เมทัลเคม เทรดดิ้ง จำกัด,SP04S015,TRUE,FALSE,TRUE,,,Default,FALSE,129/ 157 หมู่ 2 ถนนบางบอน 3,แขวงหลักสอง เขตบางแค,10160,กรุงเทพฯ,Thailand,"0-2806 5083-4 , 02- 476 6582",,0-2460 0112,,วัตถุดิบ,,น้ำยา / สารเคมี / WAX (น้ำยาล้างไข Aluminium ),30 Days,5 +res_partner_rawmat_35,คุณธวัชชัย มงคลอุดมรัตน์,,FALSE,FALSE,TRUE,บริษัท พี. เมทัลเคม เทรดดิ้ง จำกัด,res_partner_rawmat_34,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_36,บริษัท ซีเอสอาร์ อินซูเลชั่น (ประเทศไทย) จำกัด,SP04S016,TRUE,FALSE,TRUE,,,Default,FALSE,"52/160 ซอยประชาร่วมใจ กรุงเทพ-กรีฑา + +","แขวงหัวหมาก เขตบางกะปิ + +",10250,กรุงเทพฯ,Thailand,"Tel :02 - 7360924,02 - 7360564,02 - 7360845 ",,02 - 736 0934,,วัตถุดิบ,,ROCK WOOLS,30 Days,15 +res_partner_rawmat_37,บริษัท เอเซีย วี.เอส.ซี. คอร์ปอเรชั่น จำกัด,SP04S017,TRUE,FALSE,TRUE,,,Default,FALSE,8/2 ซ.สามแยกบายพาส ถ.สุขุมวิท,อ.เมืองระยอง,21150,ระยอง,Thailand,038-688589-92,,038-688591,,วัตถุดิบ,,ROCK WOOLS,30 Days,15 +res_partner_rawmat_38,คุณตุ่น (ขาย),,FALSE,FALSE,TRUE,บริษัท เอเซีย วี.เอส.ซี. คอร์ปอเรชั่น จำกัด,res_partner_rawmat_37,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_39,คุณya (บัญชี)),,FALSE,FALSE,TRUE,บริษัท เอเซีย วี.เอส.ซี. คอร์ปอเรชั่น จำกัด,res_partner_rawmat_37,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_40,บริษัท ร็อควูล (ประเทศไทย) จำกัด,SP04S018,TRUE,FALSE,TRUE,,,Default,FALSE,52/160 ม.13 ซ.ประชาร่วมใจ ถ.กรุงเทพ-กรีฑา,แขวงสะพานสูง เขตสะพานสูง,10250,กรุงเทพฯ,Thailand,02- 0 2736 0924 , ,0 2736 0934,,วัตถุดิบ,,ROCKWOOL ,30 Days,15 +res_partner_rawmat_41,K. ศิรินทิพย์,,FALSE,FALSE,TRUE,บริษัท ร็อควูล (ประเทศไทย) จำกัด,res_partner_rawmat_40,Contact,TRUE,,,,,Thailand,,089 - 893 6007,,,,,,, +res_partner_rawmat_42,National Starch And Chemical (Thailand) Limited,SP04S019,TRUE,FALSE,TRUE,,,Default,FALSE,"216/5 L.P.N.Tower 7th Floor, Nanglinchee Road","Chongnonsee, Yannawa,",10120,Bangkok,Thailand,0-2517-0045-9 ,,0-2906-0680,,วัตถุดิบ,,กาว ROCKWOOL ,60 Days,- +res_partner_rawmat_43,คุณสุวรี,,FALSE,FALSE,TRUE,National Starch And Chemical (Thailand) Limited,res_partner_rawmat_42,Contact,TRUE,,,,,Thailand,,081 - 647 3273 ,,,,,,, +res_partner_rawmat_44,Henkel (Thailand) Ltd.,SP04S020,TRUE,FALSE,TRUE,,,Default,FALSE,"At Centralworld , 35th floor , 999/9 Rama 1 Rd.","Kwang Patumwan , Ket Patumwan,",10330,Bangkok,Thailand,02-209-8000,,"02-209-8108 , 02-209-8109",,วัตถุดิบ,,กาว ROCKWOOL ,30 Days,3 +res_partner_rawmat_45,K.Suvalee Peugsupa,,FALSE,FALSE,TRUE,Henkel (Thailand) Ltd.,res_partner_rawmat_44,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_46,คุณทิพมนต์,,FALSE,FALSE,TRUE,Henkel (Thailand) Ltd.,res_partner_rawmat_44,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_47,บริษัท ฮันทส์แมน (ประเทศไทย) จำกัด,SP04S021,TRUE,FALSE,TRUE,,,Default,FALSE,899 หมู่ 4 นิคมอุตสาหกรรมบางปู ซอย 6 ถ.สุขุมวิท,แพรกษา เมือง,10540,สมุทรปราการ,Thailand, 0-2709-4466 /,, 0-2709-4360,,วัตถุดิบ,,กาว ROCKWOOL ,60 Days,5 +res_partner_rawmat_48,คุณอ้อ # 404,,FALSE,FALSE,TRUE,บริษัท ฮันทส์แมน (ประเทศไทย) จำกัด,res_partner_rawmat_47,Contact,TRUE,,,,,Thailand,,404,,,,,,, +res_partner_rawmat_49,บริษัท นิปปอน พาเนล (ไทยแลนด์) จำกัด,SP04S022,TRUE,FALSE,TRUE,,,Default,FALSE,99/11 ม.3 ซ.วัดบัวโรย ถ.บางนา-ตราด,ต.บางเสาธง กิ่งอ.บางเสาธง,10540,สมุทรปราการ,Thailand,02-3979153-6,,02-3979157,,วัตถุดิบ,,ห้อง Clean Room . Cold Room,,- +res_partner_rawmat_50,อารียา,,FALSE,FALSE,TRUE,บริษัท นิปปอน พาเนล (ไทยแลนด์) จำกัด,res_partner_rawmat_49,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_51,บริษัท ซี.เอส. สตีลเทค จำกัด,SP04S023,TRUE,FALSE,TRUE,,,Default,FALSE,29/376 ม.11 ถ.บางบอน 5,แขวงบางบอน เขตบางบอน,10150,กรุงเทพฯ,Thailand,02-8068604 / 01-4001033,,02-8068616,,วัตถุดิบ,,"เหล็ก , สังกะสี ",30 Days,ตามข้อตกลง +res_partner_rawmat_52,ชวลิต,,FALSE,FALSE,TRUE,บริษัท ซี.เอส. สตีลเทค จำกัด,res_partner_rawmat_51,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_53,บริษัท เอส.เอ. สตีล เซ็นเตอร์ จำกัด,SP04S024,TRUE,FALSE,TRUE,,,Default,FALSE,2842-2844 ถ.พระราม 4,แขวงคลองเตย เขตคลองเตย,10110,กรุงเทพฯ,Thailand,"0-2240-1669-70, 240-1847 ",,0-2240-1849,,วัตถุดิบ,,"เหล็ก , สังกะสี ",30 Days,ตามข้อตกลง +res_partner_rawmat_54,สมศรี,,FALSE,FALSE,TRUE,บริษัท เอส.เอ. สตีล เซ็นเตอร์ จำกัด,res_partner_rawmat_53,Contact,TRUE,,,,,Thailand,,01-9845070,,,,,,, +res_partner_rawmat_55,บริษัท บลูสโคป สตีล (ประเทศไทย ) จำกัด,SP04S025,TRUE,FALSE,TRUE,,,Default,FALSE,108 อาคารบางกอกไทย ชั้น 7 ถนนรางน้ำ,แขวงพญาไท เขตราชเทวี,10400,กรุงเทพฯ,Thailand,0-2642-7155,,0-2642-7156,,วัตถุดิบ,,"เหล็ก , สังกะสี ",30 Days,ตามข้อตกลง +res_partner_rawmat_56,คุณกุสุมา ( โอ๋ ),,FALSE,FALSE,TRUE,บริษัท บลูสโคป สตีล (ประเทศไทย ) จำกัด,res_partner_rawmat_55,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_57,บริษัท ไทยเอ็นวาเทค จำกัด,SP04S026,TRUE,FALSE,TRUE,,,Default,FALSE,"195 หมู่ 4 ซอยเอนกถาวร + +","ตำบลพยอม อำเภอวังน้อย + +",13170,พระนครศรีอยุธยา,Thailand,035 - 744501-3,,35744504035744500,,วัตถุดิบ,,"เหล็ก , สังกะสี ",30 Days,ตามข้อตกลง +res_partner_rawmat_58,บริษัท เพิ่มสินสตีลเวิร์ค จำกัด (มหาชน),SP04S027,TRUE,FALSE,TRUE,,,Default,FALSE,"เลขที่ 4, 95-96 หมู่ที่ 6 ถนนพระราม 2",ตำบลโคกขาม อำเภอเมืองสมุทรสาคร,74000,สมุทรสาคร,Thailand,034-825 090-100,,"034-825 081, 034-825 078-9",,วัตถุดิบ,,"เหล็ก , สังกะสี ",30 Days,ตามข้อตกลง +res_partner_rawmat_59,คุณสมพงษ์,,FALSE,FALSE,TRUE,บริษัท เพิ่มสินสตีลเวิร์ค จำกัด (มหาชน),res_partner_rawmat_58,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_60,"SK NETWORKS CO.,LTD.",SP04S028,TRUE,FALSE,TRUE,,,Default,FALSE,"SK BLDG.119-15 EULIIRO-ZGA ,",JUNG-GU SEOUL 110-192,,,Thailand,,,,,วัตถุดิบ,,"เหล็ก , สังกะสี ",,45 +res_partner_rawmat_61,"ALUTHAI METALS CO.,LTD.",SP04S029,TRUE,FALSE,TRUE,,,Default,FALSE,104/3 Moo 12 Bangpla Dist,Tumbol Bang Pla Amphoe Bang Phli,10540,Samut Prakan,Thailand,02- 1746015-6,,02 - 1746014 ,,วัตถุดิบ,,"เหล็ก , สังกะสี ",Cash,ตามข้อตกลง +res_partner_rawmat_62,คุณนิตยา,,FALSE,FALSE,TRUE,"ALUTHAI METALS CO.,LTD.",res_partner_rawmat_61,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_63,บริษัท วิบูลย์ชัยเกียรติพงษ์ จำกัด ( อลูมิเนียมรวมลาย ),SP04S030,TRUE,FALSE,TRUE,,,Default,FALSE,765,แขวงสี่พระยา เขตบางรัก,10500,กรุงเทพฯ,Thailand,"02-2351922-3, 2374822-3",,02-2363407,,วัตถุดิบ,,"เหล็ก , สังกะสี ",,- +res_partner_rawmat_64,ภคนันท์,,FALSE,FALSE,TRUE,บริษัท วิบูลย์ชัยเกียรติพงษ์ จำกัด ( อลูมิเนียมรวมลาย ),res_partner_rawmat_63,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_65,บริษัท วี.อาร์. เม็ททอล จำกัด,SP04S031,TRUE,FALSE,TRUE,,,Default,FALSE,30/17 ม.12,ท่าอิฐ อ.ปากเกร็ด,11120,นนทบุรี,Thailand,"02- 924 6136 -7 , 02 - 926 1756 - 7",,02 - 594 3943,,วัตถุดิบ,,"เหล็ก , สังกะสี ,สแตนเลส",,- +res_partner_rawmat_66,คุณวีระนันท์,,FALSE,FALSE,TRUE,บริษัท วี.อาร์. เม็ททอล จำกัด,res_partner_rawmat_65,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_67,บริษัท ศรีราชพฤกษ์ จำกัด,SP04S032,TRUE,FALSE,TRUE,,,Default,FALSE,"745,747 พระราม 3",แขวงบางโพงพาง เขตยานนาวา,10120,กรุงเทพฯ,Thailand,02-2948974-7,,02-2945069,,วัตถุดิบ,,"เหล็ก , สังกะสี ,สแตนเลส",30 Days,ตามข้อตกลง +res_partner_rawmat_68,สุวณี,,FALSE,FALSE,TRUE,บริษัท ศรีราชพฤกษ์ จำกัด,res_partner_rawmat_67,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_69,บริษัท ชลบุรีศรีเจริญโลหะ จำกัด,SP04S033,TRUE,FALSE,TRUE,,,Default,FALSE,"39/39,39/40 ม.4 ถนนบายพลาส",ต.หนองไม้แดงอ.เมืองชลบุรี,20000,ชลบุรี,Thailand,038-458737-41,,038-458742,,วัตถุดิบ,,"เหล็ก , สังกะสี ,สแตนเลส",Cash,ตามข้อตกลง +res_partner_rawmat_70,จิตรา,,FALSE,FALSE,TRUE,บริษัท ชลบุรีศรีเจริญโลหะ จำกัด,res_partner_rawmat_69,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_71,บริษัท ไทยยูนีคอยล์เซ็นเตอร์ จำกัด (มหาชน ),SP04S034,TRUE,FALSE,TRUE,,,Default,FALSE,809 ซอย 14 ถ.พัฒนา 1,ต.แพรกษา อ.เมืองสมุทรปราการ จ.สมุทรปราการ 10280,10280,สมุทรปราการ,Thailand,"0-2709 3034-6 ,02-709 3984-9 / 085- 810 1639 ",,"0-2709 3037-8,02 - 709 3988",,วัตถุดิบ,,"สแตนเลส, สังกะสี , เหล็กแผ่นลาย ",45 Days,ตามข้อตกลง +res_partner_rawmat_72,คุณทิวา,,FALSE,FALSE,TRUE,บริษัท ไทยยูนีคอยล์เซ็นเตอร์ จำกัด (มหาชน ),res_partner_rawmat_71,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_73,บริษัท สินสยามเม็ททอลเซ็นเตอร์ (1984) จำกัด,SP04S035,TRUE,FALSE,TRUE,,,Default,FALSE,136 ถนนกรุงธนบุรี,แขวงบางลำภูล่าง เขตคลองสาน กรุงเทพมหานคร 10600,10600,กรุงเทพฯ,Thailand,"0-2860-9119, 0-2860-9191",,0-2860-9500-1,,วัตถุดิบ,,"สแตนเลส, สังกะสี , เหล็กแผ่นลาย ",45 Days,ตามข้อตกลง +res_partner_rawmat_74,คุณวีรพงษ์,,FALSE,FALSE,TRUE,บริษัท สินสยามเม็ททอลเซ็นเตอร์ (1984) จำกัด,res_partner_rawmat_73,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_rawmat_75,บริษัท โตชิน อินเตอร์เนชั่นแนล คอร์ปอเรชั่น จำกัด,SP04S036,TRUE,FALSE,TRUE,,,Default,FALSE,246 นิคมอุตสาหรรม ลาดกระบัง ( Phase 3) ถ. ฉลองกรุง,แหลมประทิว เขตลาดกระบัง กรุงเทพ ฯ 10520,10520,กรุงเทพฯ,Thailand,01-7346556 / 02-7384800,,"02-7384801, 4808",,วัตถุดิบ,,"สแตนเลส, สังกะสี , เหล็กแผ่นลาย ",30 Days,ตามข้อตกลง +res_partner_rawmat_76,วิชัย,,FALSE,FALSE,TRUE,บริษัท โตชิน อินเตอร์เนชั่นแนล คอร์ปอเรชั่น จำกัด,res_partner_rawmat_75,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_1,บริษัท โอปนายิกุล จำกัด,SP02S001,TRUE,FALSE,TRUE,,,Default,FALSE,410/24-30 ถนน รัชดาภิเษก แขวงสามเสนนอก เขตห้วยขวาง กรุงเทพฯ 10310,แขวงสามเสนนอก เขตห้วยขวาง,10310,กรุงเทพฯ,Thailand,02-5415320-7,,02-5415329,,INSTALLATION ,,"PVC , ยาง ",30 Days,14 +res_partner_installation_2,คุณกิตติ,,FALSE,FALSE,TRUE,บริษัท โอปนายิกุล จำกัด,res_partner_installation_1,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_3,"ASIAN MODULAR SYSTEMS (THAILAND) CO.,LTD.",SP02S002,TRUE,FALSE,TRUE,,,Default,FALSE,410 ซอยพระยาสุเรนทร์ 30 ถนนรามอินทรา (109),แขวงบางชัน เขตคลองสามวา,10510,กรุงเทพฯ,Thailand,0-2540 6871,,0-2918 6954,,INSTALLATION ,,อุปกรณ์ประตู,30 Days,7 +res_partner_installation_4,คุณวิไล,,FALSE,FALSE,TRUE,"ASIAN MODULAR SYSTEMS (THAILAND) CO.,LTD.",res_partner_installation_3,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_5,คุณไกรกฤษ,,FALSE,FALSE,TRUE,"ASIAN MODULAR SYSTEMS (THAILAND) CO.,LTD.",res_partner_installation_3,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_6,CAC PACIFIC LIMITED,SP02S003,TRUE,FALSE,TRUE,,,Default,FALSE,89 Chalermprakiat Soi 34,Nongbon Pravet,10250,Bangkok,Thailand,02-328-1984( 10 Lines),,02 - 328 1985 ,,INSTALLATION ,,อุปกรณ์ประตู / ตัวแทน DORMA ,60 Days,7 +res_partner_installation_7,คุณพลสิทธิ์,,FALSE,FALSE,TRUE,CAC PACIFIC LIMITED,res_partner_installation_6,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_8,คุณพิมกมล,,FALSE,FALSE,TRUE,CAC PACIFIC LIMITED,res_partner_installation_6,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_9,CAMFIL FARR ( THAILAND ) LIMITED,SP02S004,TRUE,FALSE,TRUE,,,Default,FALSE,"202 Le Concorde Tower Room A305, Ratchadapisek Rd.,","Hual Khwang, Hual Khwang ,",10310,Bangkok,Thailand,02 - 694 1480-4,,02-964 1464,,INSTALLATION ,,FILTER ,30 Days,7 +res_partner_installation_10,คุณพิมพิชา,,FALSE,FALSE,TRUE,CAMFIL FARR ( THAILAND ) LIMITED,res_partner_installation_9,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_11,"Daiowa (Thailand) Co.,Ltd.",SP02S005,TRUE,FALSE,TRUE,,,Default,FALSE,865 /7 ซ.อุดมสุข 42 ถนนสุขุมวิท 103,เขตบางนา,10260,กรุงเทพฯ,Thailand,02-979 4941-2,,02-979 4943,,INSTALLATION ,,FILTER ,30 Days,7 +res_partner_installation_12,คุณก้อง,,FALSE,FALSE,TRUE,"Daiowa (Thailand) Co.,Ltd.",res_partner_installation_11,Contact,TRUE,,,,,Thailand,,087 - 070 3758,,,,,,, +res_partner_installation_13,Delier Int'L (H.K.) Company Limited ID174 Panel Joints for Cold Room (Camlock),SP02S006,TRUE,FALSE,TRUE,,,Default,FALSE,"No.12 Floor, Tower B,","Yuquan S Jinan, Shandong, 250063",,,China,[86] (531) 86012834,,[86] (531) 86012734 ,,INSTALLATION ,,อุปกรณ์ประตู,,Within 45 Days +res_partner_installation_14,Door Seals of Australia,SP02S007,TRUE,FALSE,TRUE,,,Default,FALSE,"Unit 13/81 Bishop Street,","KELVIN GROVE QLD 4059,",,,Australia,61 7 3856 6660,,61 7 3352 7488,,INSTALLATION ,,อุปกรณ์ประตู,,Within 45 Days +res_partner_installation_15,Mr. Joe Buttafuoco,,FALSE,FALSE,TRUE,Door Seals of Australia,res_partner_installation_14,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_16,"GUANGDONG KIN LONG HARDWARE PRODUCT CO.,LTD.",SP02S008,TRUE,FALSE,TRUE,,,Default,FALSE,"No.1 Xizibian Rd,Daping Industrial Zone,","Tangxia Town,DongGuan City,GuangDong Province, +",,,China,0086-769-87943133,,0086-769-87942388 0086-769-87943188,,INSTALLATION ,,อุปกรณ์ประตู,,45 +res_partner_installation_17,HAFALE ( THAILAND ) LIMITED,SP02S009,TRUE,FALSE,TRUE,,,Default,FALSE,57 ซอย สุขุมวิท 64 ถนนสุขุมวิท,บางจาก,,กรุงเทพฯ,Thailand,0-2741-7171,,0-2741-7272,,INSTALLATION ,,อุปกรณ์ประตู,45 Days,7 +res_partner_installation_18,คุณประจวบ,,FALSE,FALSE,TRUE,HAFALE ( THAILAND ) LIMITED,res_partner_installation_17,Contact,TRUE,,,,,Thailand,,081-8340984,,,,,,, +res_partner_installation_19,"HEBEI JUSHANG COMMERCIAL TRADE CO.,LTD.",SP02S010,TRUE,FALSE,TRUE,,,Default,FALSE,"No. 94 Xida Street ,","Shijiazhuang 050081 , Hebei ,",,,China,Tel. : +86-311 + 86668681 ,,Fax : 86 - 311 - 86668681 ,,INSTALLATION ,,อุปกรณ์ประตู,,Within 45 Days +res_partner_installation_20,"ICELANDIC CO.,LTD.",SP02S011,TRUE,FALSE,TRUE,,,Default,FALSE,"99 Moo 2 , Bangna-Trad KM.15 Rd.,","Bangchalong , Bangplee ,",10540,Samutprakan,Thailand,02-750-9444 ,,02-752-6139,,INSTALLATION ,,แม่เหล็ก ,30 Days,15 +res_partner_installation_21,คุณดาม,,FALSE,FALSE,TRUE,"ICELANDIC CO.,LTD.",res_partner_installation_20,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_22,คุณแนน,,FALSE,FALSE,TRUE,"ICELANDIC CO.,LTD.",res_partner_installation_20,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_23,JINAN LIXIA SOFTWARE DEVELOPMENT CENTER,SP02S012,TRUE,FALSE,TRUE,,,Default,FALSE,"Dongguan Street 3, Lixia,","Jinan 250013 Shandong,",,,China,86-531-8601-2834,,86-531-8601-2734,,INSTALLATION ,,อุปกรณ์ประตู,,Within 45 Days +res_partner_installation_24,Micron Clean Limited.,SP02S013,TRUE,FALSE,TRUE,,,Default,FALSE,"1246 Moo 13, Phahol Yothin Rd.,","T. Klong Nung , A. Klong Luang ,",12120,Pathumthanee,Thailand,02-908-8200 ,,02-908-8211,,INSTALLATION ,,Pass Box ,30 Days,ตามตกลง +res_partner_installation_25,คุณปรีชา,,FALSE,FALSE,TRUE,Micron Clean Limited.,res_partner_installation_24,Contact,TRUE,,,,,Thailand,,081-205-9330,,,,,,, +res_partner_installation_26,คุณเกวลิน,,FALSE,FALSE,TRUE,Micron Clean Limited.,res_partner_installation_24,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_27,OMERIN ASIA Pte. Ltd.,SP02S014,TRUE,FALSE,TRUE,,,Default,FALSE,"10, Rue des Frères Lumière Z.A. du Bois rond 69720",AINT BONNET DE MURE,,,France,"Tél. +33 (0)4 72 48 30 90 +",," +Fax +33 (0)4 78 40 82 81 +",,INSTALLATION ,,อุปกรณ์ประตู,,45 +res_partner_installation_28,"SUPER VAC CO.,LTD.",SP02S015,TRUE,FALSE,TRUE,,,Default,FALSE,22/33-40 SOI.16 PHACHA-UTHID RD.,RATBURANA,10140,BANGKOK,Thailand,(662) 870-9595 ,," (662) 427-8045,870-9595 # 314",,INSTALLATION ,,แว๊กซ์ ,Cash,- +res_partner_installation_29,คุณพรชัย,,FALSE,FALSE,TRUE,"SUPER VAC CO.,LTD.",res_partner_installation_28,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_30,คุณวิ,,FALSE,FALSE,TRUE,"SUPER VAC CO.,LTD.",res_partner_installation_28,Contact,TRUE,,,,,Thailand,, ,,,,,,, +res_partner_installation_31,"YONG DA REFRIGERATION PRODUCTS CO.,LTD.",SP02S016,TRUE,FALSE,TRUE,,,Default,FALSE,"Xinhe County, Wanjiang District,","Dongguan City,Guangdong Province , P.R.C.",,,Thailand, +86-769-2701625,, +86-769-2701629,,INSTALLATION ,,อุปกรณ์ประตู,,45 +res_partner_installation_32,คุงเจริญโลหะกิจ,SP02S017,TRUE,FALSE,TRUE,,,Default,FALSE,154/10-11 ม.4 ต.เมืองเก่า,อ.พนมสารคาม,24120,ฉะเชิงเทรา,Thailand,038-836749,,,,INSTALLATION ,,เหล็กรูปพรรณ,Cash,3 +res_partner_installation_33,บริษัท 555 ซีพีเอส มาร์เก็ตติ้ง จำกัด,SP02S018,TRUE,FALSE,TRUE,,,Default,FALSE,"74/5-6 สุขสวัสดิ์ + +","แขวงราษฎร์บูรณะ เขตราษฎร์บูรณะ + +",10140,กรุงเทพฯ,Thailand,0-2877-0510 ,,0- 2477-3022,,INSTALLATION ,,อุปกรณ์ประตู ,Cash,7 +res_partner_installation_34,คุณเกตุ,,FALSE,FALSE,TRUE,บริษัท 555 ซีพีเอส มาร์เก็ตติ้ง จำกัด,res_partner_installation_33,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_35,บริษัท กิ้มหยูเส็งค้ากระจก จำกัด,SP02S019,TRUE,FALSE,TRUE,,,Default,FALSE,41/8 ซ.59 ถ.พระราม 3,แขวงช่องนนทรี เขตยานนาวา,10120,กรุงเทพฯ,Thailand,02-2946291-8,,02-2941780,,INSTALLATION ,,กระจก ,30 Days,7 +res_partner_installation_36,หยก,,FALSE,FALSE,TRUE,บริษัท กิ้มหยูเส็งค้ากระจก จำกัด,res_partner_installation_35,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_37,อรุโณทัย,,FALSE,FALSE,TRUE,บริษัท กิ้มหยูเส็งค้ากระจก จำกัด,res_partner_installation_35,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_38,บริษัท แกรนด์ โฟร์ซี จำกัด,SP02S020,TRUE,FALSE,TRUE,,,Default,FALSE,19/224 หมู่ 10 พระราม 2,แขวงบางมด เขตจอมทอง,10150,กรุงเทพฯ,Thailand,02-898-3104-5,,02-898-4852,,INSTALLATION ,,ซิลิกา-เจล,Cash,Within 15 Days +res_partner_installation_39,คุณจุฬาภรณ์,,FALSE,FALSE,TRUE,บริษัท แกรนด์ โฟร์ซี จำกัด,res_partner_installation_38,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_40,บริษัท โกลด์เวสท์ เทรดดิ้ง (ประเทศไทย) จำกัด,SP02S021,TRUE,FALSE,TRUE,,,Default,FALSE,"69/60 หมู่ 6 ซอยกิ่งแก้ว 54 + +","ตำบลราชาเทวะ อำเภอบางพลี + +",10540,สมุทรปราการ,Thailand,02-7384930-39,,02-7384928-9,,INSTALLATION ,,อุปกรณ์ประตู,,- +res_partner_installation_41,ประภัสสร,,FALSE,FALSE,TRUE,บริษัท โกลด์เวสท์ เทรดดิ้ง (ประเทศไทย) จำกัด,res_partner_installation_40,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_42,บริษัท คอมพลีท ไลน์ จำกัด,SP02S022,TRUE,FALSE,TRUE,,,Default,FALSE,220 ซ.อ่อนนุช 35 ถ.สุขุมวิท 77,แขวง/เขตสวนหลวง,10250,กรุงเทพฯ,Thailand,02-3201427-8 / 01-4444573,,02-7215290,,INSTALLATION ,,ชุดประตูอัตโนมัติ,30 Days,7 +res_partner_installation_43,อนันต์,,FALSE,FALSE,TRUE,บริษัท คอมพลีท ไลน์ จำกัด,res_partner_installation_42,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_44,บริษัท คอมฟอร์ตโฟลว์ เอส.อี. จำกัด,SP02S023,TRUE,FALSE,TRUE,,,Default,FALSE,367 ถนนอ่อนนุช,"แขวงประเวศ,กรุงเทพฯ",10250,กรุงเทพฯ,Thailand,"02-321-2511 ,321-4124,321-4154 ",, 02-321-5204,,INSTALLATION ,,GRILL ,30 Days,Within 15 Days +res_partner_installation_45,คุณสรนันท์ เตชอัครกุล,,FALSE,FALSE,TRUE,บริษัท คอมฟอร์ตโฟลว์ เอส.อี. จำกัด,res_partner_installation_44,Contact,TRUE,,,,,Thailand,,084-639 9990,,,,,,, +res_partner_installation_46,บริษัท คิดเซลล์ (เอเชีย ) จำกัด,SP02S024,TRUE,FALSE,TRUE,,,Default,FALSE,2893ม 2895 ถนนพัฒนาการ,แขวงสวนหลวง เขต สวนหลวง,10250,กรุงเทพฯ,Thailand,"02-321 3078, 02-722 0245 , ",,02-320 2520 ,,INSTALLATION ,,เครื่องลดความชื้น ,60 Days,3 +res_partner_installation_47,คุณกมลวรรณ,,FALSE,FALSE,TRUE,บริษัท คิดเซลล์ (เอเชีย ) จำกัด,res_partner_installation_46,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_48,บริษัท จิรันธนิน จำกัด,SP02S025,TRUE,FALSE,TRUE,,,Default,FALSE,"1350/130-131 ชั้น 10 อาคารไทยรงค์ ถ.พัฒนาการ 36 + + +","แขวงสวนหลวง เขตสวนหลวง + + +",10250,กรุงเทพฯ,Thailand,0-2713-7707-8,,0-2713-7706,,INSTALLATION ,,"งานสั่งทำ ,งานเจาะรูตะแกรง",Cash,7 +res_partner_installation_49,คุณพัทธนันท์,,FALSE,FALSE,TRUE,บริษัท จิรันธนิน จำกัด,res_partner_installation_48,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_50,บริษัท จีคอนส์ (ประเทศไทย) จำกัด,SP02S026,TRUE,FALSE,TRUE,,,Default,FALSE,1093/33 อาคารเซ็นทรัลซิตี้ ทาวเวอร์ 1. ถนนบางนา - ตราด กม.3 หมู่ 12,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,02-7457181-7,,02-7457188,,INSTALLATION ,,ซิลิโคน,30 Days,7 +res_partner_installation_51,วิโรจน์,,FALSE,FALSE,TRUE,บริษัท จีคอนส์ (ประเทศไทย) จำกัด,res_partner_installation_50,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_52,บริษัท เจริญวิทย์ ซัพพลาย จำกัด,SP02S027,TRUE,FALSE,TRUE,,,Default,FALSE,"268 ซอยทินกร ดินแดง + +","แขวงดินแดง เขตดินแดง + +",10400,กรุงเทพฯ,Thailand,"02 - 6433502,026433153-4,02 - 6434412",,02 - 2453327,,INSTALLATION ,,อุปกรณ์ประตู ,Cash,7 +res_partner_installation_53,บริษัท ชาญอินทร์ อินสทรูเม้นท์ จำกัด,SP02S028,TRUE,FALSE,TRUE,,,Default,FALSE,81 ถ.เยาวราช 00,แขวงสัมพันธวงศ์ เขตสัมพันธวงศ์,10100,กรุงเทพฯ,Thailand,"02-2221582, 2227563, 2251969",,02-2251970,,INSTALLATION ,,อุปกรณ์ประตู,Cash,7 +res_partner_installation_54,ใหญ่,,FALSE,FALSE,TRUE,บริษัท ชาญอินทร์ อินสทรูเม้นท์ จำกัด,res_partner_installation_53,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_55,บริษัท ซันซูเลท (ไทยแลนด์) จำกัด,SP02S029,TRUE,FALSE,TRUE,,,Default,FALSE,"2/3 ซอย 109 รามอินทรา + +","แขวงมีนบุรี เขตมีนบุรี + +",10510,กรุงเทพฯ,Thailand,"02- 5174560,025173579,02 - 5403244-6,02 - 5174085",,02 - 5178527,,INSTALLATION ,,FILTER ,Cash,ตามตกลง +res_partner_installation_56,บริษัท ซิก้า (ประเทศไทย) จำกัด,SP02S030,TRUE,FALSE,TRUE,,,Default,FALSE,"700/37 หมู่ที่ 5 นิคมอุตสาหกรรมบางปะกง เฟส 2 กม. 57 ถ. บางนา-ตราด +กม. 57 ถ. บางนา-ตราด","ต. คลองตำหรุ อ. เมือง + +อ. เมือง จ. ชลบุรี 20000 +",20000,ชลบุรี,Thailand,038 21 4270-85,,038 21 4286,,INSTALLATION ,,ซิลิ โคน,30 Days,5 +res_partner_installation_57,บริษัท ซิตี้พาร์คสตีล อิมพอร์ต (2002) จำกัด,SP02S031,TRUE,FALSE,TRUE,,,Default,FALSE,830 หมู่ที่1 ถ. เทพารักษ์,ต.บางเสาธง อ.บางเสาธง,10540,สมุทรปราการ,Thailand, 02 - 313 1313 ,,02 - 313 1555 ( ฝ่ายขาย ) 02 - 706 1177 (บัญชี),,INSTALLATION ,,เหล็กรูปพรรณ,30 Days,7 +res_partner_installation_58,คุณดวงชีวัน ( คุณดวง),,FALSE,FALSE,TRUE,บริษัท ซิตี้พาร์คสตีล อิมพอร์ต (2002) จำกัด,res_partner_installation_57,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_59,บริษัท ซิลเวอร์ดรากอน (ไทย) จำกัด,SP02S032,TRUE,FALSE,TRUE,,,Default,FALSE,263 ถนนพระราม 4,แขวงรองเมือง เขตประทุมวัน,10330,กรุงเทพฯ,Thailand,"0-2214-0241 , 0-2215-2116",,"0-2214-0241 , 0-2215-2116",,INSTALLATION ,,อุปกรณ์ประตู,30 Days,7 +res_partner_installation_60,"คุณสมเกียรติ , คุณผึ้ง",,FALSE,FALSE,TRUE,บริษัท ซิลเวอร์ดรากอน (ไทย) จำกัด,res_partner_installation_59,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_61,คุณผึ้ง,,FALSE,FALSE,TRUE,บริษัท ซิลเวอร์ดรากอน (ไทย) จำกัด,res_partner_installation_59,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_62,บริษัท ดิคเซลล์ (เอเชีย) จำกัด,SP02S033,TRUE,FALSE,TRUE,,,Default,FALSE,"2893 , 2895 ถ.พัฒนาการ",แขวงสวนหลวง เขตสวนหลวง,10250,กรุงเทพฯ,Thailand,"02 - 321 - 3078 , 02 - 722 - 0245 ",,"02 - 722 - 0250 , 02 - 320 - 2520",,INSTALLATION ,,อุปกรณ์ประตู,30 Days,7 +res_partner_installation_63,คุณกมลวรรณ ( ป่าน ),,FALSE,FALSE,TRUE,บริษัท ดิคเซลล์ (เอเชีย) จำกัด,res_partner_installation_62,Contact,TRUE,,,,,Thailand,,081-6291708 ,,,,,,, +res_partner_installation_64,บริษัท ติยะไพบูลย์ จำกัด,SP02S034,TRUE,FALSE,TRUE,,,Default,FALSE,57 ซอยศูนย์วิจัย 14,ห้วยขวาง,10320,กรุงเทพฯ,Thailand,02-3185320,,,,INSTALLATION ,,อุปกรณ์ไฟฟ้า ,Cash,7 +res_partner_installation_65,คุณอาทิตย์,,FALSE,FALSE,TRUE,บริษัท ติยะไพบูลย์ จำกัด,res_partner_installation_64,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_66,คุณแอ๊ว,,FALSE,FALSE,TRUE,บริษัท ติยะไพบูลย์ จำกัด,res_partner_installation_64,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_67,บริษัท ไตตันโค อินเตอร์เนชั่นแนล จำกัด,SP02S035,TRUE,FALSE,TRUE,,,Default,FALSE,2 ซอยเจริญใจ ถนนสุขุมวิท 63,แขวงคลองตันเหนือ เขตวัฒนา,10110,กรุงเทพฯ,Thailand,"02-3902081-7 , 02-392 9197",,02-381 1734,,INSTALLATION ,,อุปกรณ์ประตู,30 Days,7 +res_partner_installation_68,คุณโสมาภา,,FALSE,FALSE,TRUE,บริษัท ไตตันโค อินเตอร์เนชั่นแนล จำกัด,res_partner_installation_67,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_69,บริษัท ทรู เซิร์ฟ จำกัด,SP02S036,TRUE,FALSE,TRUE,,,Default,FALSE,129/63 ม. 7 ถ.บางกรวย - จงถนอม,ต.มหาสวัสดิ์ อ.บางกรวย,11130,นนทบุรี,Thailand,02 - 489 4022 ,,02 - 489 4022 ,,INSTALLATION ,,ซิลิโคน,60 Days,7 +res_partner_installation_70,คุณธงชัย,,FALSE,FALSE,TRUE,บริษัท ทรู เซิร์ฟ จำกัด,res_partner_installation_69,Contact,TRUE,,,,,Thailand,,085 - 1124291 ,,,,,,, +res_partner_installation_71,บริษัท ทูเดย์ สไตล์ 2100 จำกัด,SP02S037,TRUE,FALSE,TRUE,,,Default,FALSE,10/2 ซ.สุขุมวิท 40 แขวงพระโขนง,เขตคลองเตย,10110,กรุงเทพฯ,Thailand,02-7121872-4,,02-7121876-7,,INSTALLATION ,,อุปกรณ์ประตู,30 Days,7 +res_partner_installation_72,คุณสามารถ,,FALSE,FALSE,TRUE,บริษัท ทูเดย์ สไตล์ 2100 จำกัด,res_partner_installation_71,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_73,บริษัท ไทยพอลลูเทค แมชชีนเนอรี่ จำกัด,SP02S038,TRUE,FALSE,TRUE,,,Default,FALSE,865/7 ซอยอุมสุข 42 ถนนบางนา-ตราด,เขตบางนา,10260,กรุงเทพฯ,Thailand, 02 - 979 - 5175 - 8 ,, 02 -979 4172,,INSTALLATION ,,FILTER ,30 Days,Within 15 Days +res_partner_installation_74,คุณก้อง,,FALSE,FALSE,TRUE,บริษัท ไทยพอลลูเทค แมชชีนเนอรี่ จำกัด,res_partner_installation_73,Contact,TRUE,,,,,Thailand,,087-070 3758,,,,,,, +res_partner_installation_75,คุณธงชัย,,FALSE,FALSE,TRUE,บริษัท ไทยพอลลูเทค แมชชีนเนอรี่ จำกัด,res_partner_installation_73,Contact,TRUE,,,,,Thailand,,087-0703758,,,,,,, +res_partner_installation_76,บริษัท ไทยไพศาล สลักภัณฑ์ จำกัด,SP02S039,TRUE,FALSE,TRUE,,,Default,FALSE,43-45-47 จึ่งเจริญพานิชย์,แขวงป้อมปราบ เขตป้อมปราบศัตรูพ่าย,10100,กรุงเทพฯ,Thailand,02-622 5194-9 ,,"02 - 225 7817 , 02-2261965",,INSTALLATION ,,วัสดุสิ้นเปลือง NUT / SCREW ,30 Days,7 +res_partner_installation_77,คุณอุทัย,,FALSE,FALSE,TRUE,บริษัท ไทยไพศาล สลักภัณฑ์ จำกัด,res_partner_installation_76,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_78,บริษัท ไทยแมคมอร์ จำกัด,SP02S040,TRUE,FALSE,TRUE,,,Default,FALSE,1529/540 อาคารศุภาลัย ริเวอร์ เพลส ถ.เจริญนคร,แขวงบางลำภู เขตคลองสาน,10600,กรุงเทพฯ,Thailand,02 - 861 7295,, 02 - 861 7297 ,,INSTALLATION ,,FIRE ALARM ,PDC. 30 Days,7 +res_partner_installation_79,คุณสุภกาญจน์,,FALSE,FALSE,TRUE,บริษัท ไทยแมคมอร์ จำกัด,res_partner_installation_78,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_80,คุณวรเทพ,,FALSE,FALSE,TRUE,บริษัท ไทยแมคมอร์ จำกัด,res_partner_installation_78,Contact,TRUE,,,,,Thailand,,081-633 3872,,,,,,, +res_partner_installation_81,บริษัท ไทย-เยอรมัน สเปเชียลตี้ กลาส จำกัด,SP02S041,TRUE,FALSE,TRUE,,,Default,FALSE,41/8 ถ.พระราม 3 แขวงข่องนนทรี,เขตยานนาวา,10120,กรุงเทพฯ,Thailand,09-1092744 / 0-2294-6287 : 552,,0-2294-6286,,INSTALLATION ,,กระจก ,30 Days,Within 10 Days +res_partner_installation_82,คุณปราโมทย์,,FALSE,FALSE,TRUE,บริษัท ไทย-เยอรมัน สเปเชียลตี้ กลาส จำกัด,res_partner_installation_81,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_83,จิตรา,,FALSE,FALSE,TRUE,บริษัท ไทย-เยอรมัน สเปเชียลตี้ กลาส จำกัด,res_partner_installation_81,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_84,บริษัท ไทยรุ่งโรจน์ไพศาล จำกัด,SP02S042,TRUE,FALSE,TRUE,,,Default,FALSE,21/587 -589 หมู่ 12 ถนนบางนา-ตราด,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,02-3980159,,02-3981864,,INSTALLATION ,,อุปกรณ์ไฟฟ้า,30 Days,3 +res_partner_installation_85,เอ,,FALSE,FALSE,TRUE,บริษัท ไทยรุ่งโรจน์ไพศาล จำกัด,res_partner_installation_84,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_86,บริษัท ธนาสตีล เวิร์ค จำกัด,SP02S043,TRUE,FALSE,TRUE,,,Default,FALSE,69 หมู่ 7 ตำบลคลองสี่,อำเภอคลองหลวง,12120,ปทุมธานี,Thailand,02 - 524 - 0857 - 60 ,,02 - 524 - 0861 ,,INSTALLATION ,,งาน Punch รู ( งานสั่งทำตามแบบ ) ,30 Days,Within 10 Days +res_partner_installation_87,คุณเกสรา,,FALSE,FALSE,TRUE,บริษัท ธนาสตีล เวิร์ค จำกัด,res_partner_installation_86,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_88,คุณวิสิต,,FALSE,FALSE,TRUE,บริษัท ธนาสตีล เวิร์ค จำกัด,res_partner_installation_86,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_89,บริษัท น่ำเซ่งฮวด โลหะกิจ จำกัด,SP02S044,TRUE,FALSE,TRUE,,,Default,FALSE,21/575-577 ม.12 ถ.บางนา-ตราด กม.2,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,"02-3930773, 3980823",,02-3980860,,INSTALLATION ,,เหล็กรูปพรรณ,60 Days,7 +res_partner_installation_90,สุภรณ์,,FALSE,FALSE,TRUE,บริษัท น่ำเซ่งฮวด โลหะกิจ จำกัด,res_partner_installation_89,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_91,ไพสิฐ,,FALSE,FALSE,TRUE,บริษัท น่ำเซ่งฮวด โลหะกิจ จำกัด,res_partner_installation_89,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_92,บริษัท พี.เค. เทคโนโลยี จำกัด,SP02S045,TRUE,FALSE,TRUE,,,Default,FALSE,781 ม.4 ซ.อภิชาต ถ.สุขุมวิท 115,ต.เทพารักษ์ อ.เมือง,10270,สมุทรปราการ,Thailand,"0-2380-4851, 380-4845-7",,0-2380-4852,,INSTALLATION ,,"PVC , ยาง ",30 Days,14 +res_partner_installation_93,แป๊ด,,FALSE,FALSE,TRUE,บริษัท พี.เค. เทคโนโลยี จำกัด,res_partner_installation_92,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_94,ปิยะ,,FALSE,FALSE,TRUE,บริษัท พี.เค. เทคโนโลยี จำกัด,res_partner_installation_92,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_95,บริษัท พี.โอ. ฟาสเทนเนอร์ จำกัด,SP02S046,TRUE,FALSE,TRUE,,,Default,FALSE,1995 ซอยกาญจนาภิเษก 008,แขวงบางแค เขตบางแค,10160,กรุงเทพฯ,Thailand,"083-611 6567, 034 -458 137 ",,034-458 139,,INSTALLATION ,,คุณโอ,60 Days,7 +res_partner_installation_96,คุณโอ,,FALSE,FALSE,TRUE,บริษัท พี.โอ. ฟาสเทนเนอร์ จำกัด,res_partner_installation_95,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_97,บริษัท แฟคทอรี่ คอนโทรลเลอร์ จำกัด,SP02S047,TRUE,FALSE,TRUE,,,Default,FALSE,67/1473 หมู่ที่ 16 ซอย15 ถ. ตลิ่งชัน-สุพรรณบุรี,แขวง บางแม่นาง เขคบางใหญ่,,นนทบุรี,Thailand,,,,,INSTALLATION ,,อุปกรณ์ประตู ระบบ Inter Lock,30 Days,15 +res_partner_installation_98,คุณนุ,,FALSE,FALSE,TRUE,บริษัท แฟคทอรี่ คอนโทรลเลอร์ จำกัด,res_partner_installation_97,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_99,บริษัท แม็กนั่ม สตีล จำกัด,SP02S048,TRUE,FALSE,TRUE,,,Default,FALSE,29/12 หมู่ 5 ตำบลพันท้ายนรสิงห์,อำเภอเมืองสมุทรสาคร,74000,สมุทรสาคร,Thailand,"034865330-2,034865347-8,034865345",,,,INSTALLATION ,,เหล็กรูปพรรณ,30 Days,7 +res_partner_installation_100,คุณโอ๋,,FALSE,FALSE,TRUE,บริษัท แม็กนั่ม สตีล จำกัด,res_partner_installation_99,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_101,บริษัท ยางไทย อุตสาหกรรม จำกัด,SP02S049,TRUE,FALSE,TRUE,,,Default,FALSE,75 ม.1 ถนนสุคนธวิท,ต.ท่าเสา อ.กระทุ่มแบน,74110,สมุทรสาคร,Thailand,"034-844360 , 034-470529-30",,034-470531,,INSTALLATION ,,"PVC , ยาง , EPDM ",30 Days,14 +res_partner_installation_102,คุณสุจิดา,,FALSE,FALSE,TRUE,บริษัท ยางไทย อุตสาหกรรม จำกัด,res_partner_installation_101,Contact,TRUE,,,,,Thailand,,081-625-4425,,,,,,, +res_partner_installation_103,บริษัท โรงงานไทยสถาวร จำกัด,SP02S050,TRUE,FALSE,TRUE,,,Default,FALSE,27 ม.9 ซ.วัดมหาวงษ์,ต.สำโรงกลาง อ.พระประแดง,10130,สมุทรปราการ,Thailand,"02-394 4535,02-183 2131,02-183 2133,02-183 2135",,02-3943735,,INSTALLATION ,,งานสั่งทำเฉพาะ ,30 Days,3 +res_partner_installation_104,ทศพร,,FALSE,FALSE,TRUE,บริษัท โรงงานไทยสถาวร จำกัด,res_partner_installation_103,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_105,บริษัท วิบูลย์วัฒนอุตสาหกรรม จำกัด,SP02S051,TRUE,FALSE,TRUE,,,Default,FALSE,3/1 ม.15,ต.เกาะขนุน อ.พนมสารคาม,24120,ฉะเชิงเทรา,Thailand,038-816264,,038-512419,,INSTALLATION ,,วีว่าบอร์ด,7 Days,3 +res_partner_installation_106,ไก่,,FALSE,FALSE,TRUE,บริษัท วิบูลย์วัฒนอุตสาหกรรม จำกัด,res_partner_installation_105,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_107,บริษัท วี.วี.พี. มาร์เก็ตติ้ง จำกัด,SP02S052,TRUE,FALSE,TRUE,,,Default,FALSE,"ฝ่ายขาย 84/49 พระราม 2 แขวงแสมดำ + +","เขตบางขุนเทียน + +",10150,กรุงเทพฯ,Thailand,0-2894-0020-6,,"0-2894-1008, 415-4743",,INSTALLATION ,,อุปกรณ์ประตู,,7 +res_partner_installation_108,วิไล ภู่ชาญสิน,,FALSE,FALSE,TRUE,บริษัท วี.วี.พี. มาร์เก็ตติ้ง จำกัด,res_partner_installation_107,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_109,บริษัท วีทีซี เอ็นเตอร์ไพรส จำกัด,SP02S053,TRUE,FALSE,TRUE,,,Default,FALSE,65/126-8 อาคารชำนาญเพ็ญชาติ ชั้น 15 ถนน พระราม 9,เขตห้วยขวาง,10320,กรุงเทพฯ,Thailand,02-245-4834/02-248-4550-1 ,,02-248-3839,,INSTALLATION ,,อุปกรณ์ประตู,30 Days,ตามตกลง +res_partner_installation_110,คุณศุภกร,,FALSE,FALSE,TRUE,บริษัท วีทีซี เอ็นเตอร์ไพรส จำกัด,res_partner_installation_109,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_111,บริษัท วีเทค อีเล็คตริค เซ็นเตอร์ จำกัด,SP02S054,TRUE,FALSE,TRUE,,,Default,FALSE,1063 ถ.พระราม 4,แขวงวังใหม่ เขตปทุมวัน,10330,กรุงเทพฯ,Thailand,02-6117719,,02-6117721,,INSTALLATION ,,อุปกรณ์ไฟฟ้า ,60 Days,5 +res_partner_installation_112,สมชาย,,FALSE,FALSE,TRUE,บริษัท วีเทค อีเล็คตริค เซ็นเตอร์ จำกัด,res_partner_installation_111,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_113,บริษัท เวคเตอร์ไทยเทคโนโลยี จำกัด,SP02S055,TRUE,FALSE,TRUE,,,Default,FALSE,1157/3 ซ.ลาดพร้าว 101 ถ.ลาดพร้าว,แขวงคลองจั่น เขตบางกะปิ,10240,กรุงเทพฯ,Thailand,02-5093883-5,,02-5093878,,INSTALLATION ,,ซิลิโคน,30 Days,7 +res_partner_installation_114,ธีรุตม์,,FALSE,FALSE,TRUE,บริษัท เวคเตอร์ไทยเทคโนโลยี จำกัด,res_partner_installation_113,Contact,TRUE,,,,,Thailand,,089-968 2868,,,,,,, +res_partner_installation_115,บริษัท สแตนดาร์ด ฟอร์มูล่า จำกัด,SP02S056,TRUE,FALSE,TRUE,,,Default,FALSE,11/5 ซอยสามเสน 3 ถนนสามพระยา,แขวงวัดสามพระยา เขตพระนคร,,กรุงเทพฯ,Thailand,02-281-2672 ,,"02-281-2674 ,02-281 3052",,INSTALLATION ,,น้ำยา / สารเคมี / WAX ( เซฟโปร ),30 Days,3 +res_partner_installation_116,คุณจรรยา,,FALSE,FALSE,TRUE,บริษัท สแตนดาร์ด ฟอร์มูล่า จำกัด,res_partner_installation_115,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_117,บริษัท สเปเชี่ยล สตีล เซ็นเตอร์ จำกัด,SP02S057,TRUE,FALSE,TRUE,,,Default,FALSE,"495/69 Sathupradit Rd.,","Chongnonsi, Yannawa,",10120,Bangkok,Thailand,"0-2674-2829-30, 0-2674-2992/ 02-8159395",,02-815 9396,,INSTALLATION ,,เหล็กรูปพรรณ,Cash,3 +res_partner_installation_118,คุณพีรพล,,FALSE,FALSE,TRUE,บริษัท สเปเชี่ยล สตีล เซ็นเตอร์ จำกัด,res_partner_installation_117,Contact,TRUE,,,,,Thailand,,081-5831818,,,,,,, +res_partner_installation_119,บริษัท สมบูรณ์ แอนด์ เอส.พี. รับเบอร์ จำกัด,SP02S058,TRUE,FALSE,TRUE,,,Default,FALSE,9/16 ม.2 ถ.รถไฟเก่า,ต.สำโรงใต้ อ.พระประแดง,10130,สมุทรปราการ,Thailand," 02 - 183 - 3322 , 02 - 754 - 3994 ",,02 - 183 - 3323,,INSTALLATION ,,"PVC , ยาง , EPDM ",30 Days,Within 15 Days +res_partner_installation_120,คุณจิตรา,,FALSE,FALSE,TRUE,บริษัท สมบูรณ์ แอนด์ เอส.พี. รับเบอร์ จำกัด,res_partner_installation_119,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_121,บริษัท สยามอาร์มสตรองค์ จำกัด,SP02S059,TRUE,FALSE,TRUE,,,Default,FALSE,103/53 หมู่ 1 สุขาภิบาล 1,แขวงบางแค เขตบางแค,10160,กรุงเทพฯ,Thailand,"0-2454-1137, 802-3511-2, 802-3848-9", ,0-2454-1623,,INSTALLATION ,,PACKING /Double Sides Adhesive Foam,30 Days,ตามตกลง +res_partner_installation_122,สุมิตรา,,FALSE,FALSE,TRUE,บริษัท สยามอาร์มสตรองค์ จำกัด,res_partner_installation_121,Contact,TRUE,,,,,Thailand,,081-8102508,,,,,,, +res_partner_installation_123,บริษัท สหภัณฑ์ พลาสติกโปรดักส์ จำกัด,SP02S060,TRUE,FALSE,TRUE,,,Default,FALSE,"เลขที่ 2131 - 2133 หมู่ 4 ถนนเทพารักษ์ +","ต.เทพารักษ์, เมืองสมุทรปราการ +",10270,สมุทรปราการ,Thailand,"02-3840546, 3842363",,02-7454967,,INSTALLATION ,,แผ่นอะคริลิค,,- +res_partner_installation_124,บุษ,,FALSE,FALSE,TRUE,บริษัท สหภัณฑ์ พลาสติกโปรดักส์ จำกัด,res_partner_installation_123,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_125,บริษัท สินประเสริฐ เอ็นจิเนียริ่ง จำกัด,SP02S061,TRUE,FALSE,TRUE,,,Default,FALSE,"1596/273-4 ซอยอภิชาติ สุขุมวิท 115 + +","ตำบลเทพารักษ์ อำเภอเมืองสมุทรปราการ + +",10270,สมุทรปราการ,Thailand,"02-7577358, 7578684, 7579724",,02-7576431,,INSTALLATION ,,"อุปกรณ์ทั่วไป - สกรูเกลียว, น็อต",30 Days,7 +res_partner_installation_126,แหวว,,FALSE,FALSE,TRUE,บริษัท สินประเสริฐ เอ็นจิเนียริ่ง จำกัด,res_partner_installation_125,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_127,บริษัท สีมาโลหะภัณฑ์ จำกัด,SP02S062,TRUE,FALSE,TRUE,,,Default,FALSE,"169/1,169/2 หมู่ที่ 3 ถ.เทพารักษ์",ต.บางเพรียง อ.บางบ่อ,10560,สมุทรปราการ,Thailand,"02-754 8527 - 8 ,02-7089001-3",,02- 7 54852902 - 7089499,,INSTALLATION ,,งานเจาะรู มตะแกรง,Cash,7 +res_partner_installation_128,บริษัท ห้างกระจกตังน้ำ จำกัด,SP02S063,TRUE,FALSE,TRUE,,,Default,FALSE,"226 ถนนพระรามที่ 2 + + +","แขวงแสมดำ เขตบางขุนเทียน + + +",10150,กรุงเทพฯ,Thailand,(น้อย/พร 7280900-3 F.3731165) 02-4165678,,0-2894-0433,,INSTALLATION ,,กระจก ,30 Days,Within 10 Days +res_partner_installation_129,อรุณี,,FALSE,FALSE,TRUE,บริษัท ห้างกระจกตังน้ำ จำกัด,res_partner_installation_128,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_130,รุ่งฟ้า,,FALSE,FALSE,TRUE,บริษัท ห้างกระจกตังน้ำ จำกัด,res_partner_installation_128,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_131,บริษัท ออนวัลล่า จำกัด,SP02S064,TRUE,FALSE,TRUE,,,Default,FALSE,50 ม. 20 ต. ลำลูกกา,อ. ลำลูกกา,12150,ปทุมธานี,Thailand, 02 - 193 5380- 5 ,,02-193 5386-7,,INSTALLATION ,,อุปกรณ์ประตู / ม่าน PVC ,30 Days,7 +res_partner_installation_132,คุณพิมพิยู,,FALSE,FALSE,TRUE,บริษัท ออนวัลล่า จำกัด,res_partner_installation_131,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_133,บริษัท ออลล่า จำกัด,SP02S065,TRUE,FALSE,TRUE,,,Default,FALSE,"935, 937, 939 ซ.อ่อนนุช 46 ถ.อ่อนนุช",แขวง/เขตสวนหลวง,10250,กรุงเทพฯ,Thailand,"02-3220777, 7215699",,02-3221892,,INSTALLATION ,,อุปกรณ์ประตู / ม่าน PVC ,30 Days,7 +res_partner_installation_134,จุฑามาศ,,FALSE,FALSE,TRUE,บริษัท ออลล่า จำกัด,res_partner_installation_133,Contact,TRUE,,,,,Thailand,,085-0420668,,,,,,, +res_partner_installation_135,บริษัท อินซูลคูลลิ่ง เซ็นเตอร์ จำกัด จำกัด,SP02S066,TRUE,FALSE,TRUE,,,Default,FALSE,130/6 หมู่ที่ 3,ต. รังสิต อ. ธัญบุรี,12110,ปทุมธานี,Thailand,02-904 4395 - 6 ,, 0-2904 4397 ,,INSTALLATION ,,จำหน่ายส่งเครื่องทำความเย็น,30 Days,7 +res_partner_installation_136,คุณนัด,,FALSE,FALSE,TRUE,บริษัท อินซูลคูลลิ่ง เซ็นเตอร์ จำกัด จำกัด,res_partner_installation_135,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_137,คุณเจมส์,,FALSE,FALSE,TRUE,บริษัท อินซูลคูลลิ่ง เซ็นเตอร์ จำกัด จำกัด,res_partner_installation_135,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_138,บริษัท อินเตอร์ไลท์ ไลท์ติ้ง จำกัด,SP02S067,TRUE,FALSE,TRUE,,,Default,FALSE,"131,133 ซ.ลาซาล 79",แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,02-745-8859-62 ,, 02-745-8388,,INSTALLATION ,,อุปกรณ์ไฟฟ้า,30 Days,7 +res_partner_installation_139,คุณพรรณทิพย์,,FALSE,FALSE,TRUE,บริษัท อินเตอร์ไลท์ ไลท์ติ้ง จำกัด,res_partner_installation_138,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_140,คุณวราวุธ,,FALSE,FALSE,TRUE,บริษัท อินเตอร์ไลท์ ไลท์ติ้ง จำกัด,res_partner_installation_138,Contact,TRUE,,,,,Thailand,,081-5522508,,,,,,, +res_partner_installation_141,บริษัท เอ็กซ์เซนจ์ อินเตอร์ จำกัด,SP02S068,TRUE,FALSE,TRUE,,,Default,FALSE,3/365 ซ.รามคำแหง 184 ถ.รามคำแหง,แขวงมีนบุรี เขตมีนบุรี,10510,กรุงเทพฯ,Thailand,"02 - 916 7640 ,080-294 1100",, 02-976 9119,,INSTALLATION ,,วัสดุสิ้นเปลือง NUT / SCREW ,60 Days,7 +res_partner_installation_142,คุณโอ,,FALSE,FALSE,TRUE,บริษัท เอ็กซ์เซนจ์ อินเตอร์ จำกัด,res_partner_installation_141,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_143,บริษัท เอเชี่ยน โมดูลาร์ ชิสเต็มส์ (ไทยแลนด์) จำกัด,SP02S069,TRUE,FALSE,TRUE,,,Default,FALSE,410 ซ.พระยาสุเรนทร์ 30 ถ.รามอินทรา (109),บางชัน คลองสามวา,10510,กรุงเทพฯ,Thailand,02 - 540 6871 - 5 ,, 02- 918 6954,,INSTALLATION ,,จำหน่ายอุปกรณ์แอร์ อุปกรณ์ตู้เย็น เครื่องทำความเย็นทุกชนิด ,30 Days,7 +res_partner_installation_144,คุณป้อม,,FALSE,FALSE,TRUE,บริษัท เอเชี่ยน โมดูลาร์ ชิสเต็มส์ (ไทยแลนด์) จำกัด,res_partner_installation_143,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_145,บริษัท เอ็น.ซี.อาร์. รับเบอร์อินดัสตรี้ จำกัด,SP02S070,TRUE,FALSE,TRUE,,,Default,FALSE,"6971-73 ถนนบำรุงรัฐ +","แขวงสัมพันธวงศ์ เขตสัมพันธวงศ์ +",10100,กรุงเทพฯ,Thailand,"(662) 225 7656-7, 662 6992-6 +",,"(662) 224 0707, 224 0791 +",,INSTALLATION ,,"PVC , ยาง , EPDM ",30 Days,30 +res_partner_installation_146,บริษัท เอ็ม อาร์ ซันรับเบอร์ จำกัด,SP02S071,TRUE,FALSE,TRUE,,,Default,FALSE,24/75 ม.6 ซอยวัดยายร่ม,แขวงบางมด เขตจอมทอง,10150,กรุงเทพฯ,Thailand,"02-427 1828 , 02-428 4577",,02-4284577,,INSTALLATION ,,"PVC , ยาง ",30 Days,Within 15 Days +res_partner_installation_147,คุณกาหลง,,FALSE,FALSE,TRUE,บริษัท เอ็ม อาร์ ซันรับเบอร์ จำกัด,res_partner_installation_146,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_148,บริษัท เอ็ม เอ็ม พี ดิสทริบิวเตอร์ จำกัด,SP02S072,TRUE,FALSE,TRUE,,,Default,FALSE,41 ซอย สุขุมวิท 62,แขวงบางจาก เขตพระโขนง,10260,กรุงเทพฯ,Thailand,"0-2741 4790 , 02-741 4792",,02 - 741 4791,,INSTALLATION ,,วัสดุสิ้นเปลือง NUT / SCREW ,30 Days,7 +res_partner_installation_149,คุณวรรณา (แอน),,FALSE,FALSE,TRUE,บริษัท เอ็ม เอ็ม พี ดิสทริบิวเตอร์ จำกัด,res_partner_installation_148,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_150,บริษัท เอ็มอาร์จีเอ (ประเทศไทย) จำกัด ซิลิโคน DOW GM กลาส แอนด์ เมทัล (สีขาว),SP02S073,TRUE,FALSE,TRUE,,,Default,FALSE,"55 หมู่ 2 เฉลิมพระเกียรติ ร9 + +","แขวงดอกไม้ เขตประเวศ + +",10260,กรุงเทพฯ,Thailand,"0-2726-3214, (09-7714473)",,0-2956-6705 ต่อ 15,,INSTALLATION ,,ซิลิโคน,,- +res_partner_installation_151,นิมิตร (อัฑฒ์) พรัดภู่,,FALSE,FALSE,TRUE,บริษัท เอ็มอาร์จีเอ (ประเทศไทย) จำกัด ซิลิโคน DOW GM กลาส แอนด์ เมทัล (สีขาว),res_partner_installation_150,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_152,บริษัท เอส.เจ สกรูไทย จำกัด,SP02S074,TRUE,FALSE,TRUE,,,Default,FALSE,1347 ซ.จรัญสนิทวงศ์ 75 ถ.จรัญสนิทวงศ์,แขวง/เขตบางพลัด,10700,กรุงเทพฯ,Thailand,02-8803636-8,,02-4248110,,INSTALLATION ,,วัสดุสิ้นเปลือง NUT / SCREW ,60 Days,7 +res_partner_installation_153,อรพงศ์,,FALSE,FALSE,TRUE,บริษัท เอส.เจ สกรูไทย จำกัด,res_partner_installation_152,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_154,โอ,,FALSE,FALSE,TRUE,บริษัท เอส.เจ สกรูไทย จำกัด,res_partner_installation_152,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_155,บริษัท แอดฮีซีล จำกัด,SP02S075,TRUE,FALSE,TRUE,,,Default,FALSE,44 ซ.สมเด็จพระเจ้าตากสิน 27 ถ.สมเด็จพระเจ้าตากสิน,แขวงบุคคโล เขตธนบุรี,10600,กรุงเทพฯ,Thailand,02-8779935-7/01-6363130,,02-8779009,,INSTALLATION ,,ซิลิโคน,60 Days,7 +res_partner_installation_156,ดวงกมล,,FALSE,FALSE,TRUE,บริษัท แอดฮีซีล จำกัด,res_partner_installation_155,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_157,บริษัท แอบบอน จำกัด,SP02S076,TRUE,FALSE,TRUE,,,Default,FALSE,"403,405,407,409 ถนนสี่พระยา",แขวงสี่พระยา เขตบางรัก,10500,กรุงเทพฯ,Thailand,02 - 631 4400,," 02 - 631 4264 - 5 , 02 - 268 1692,02 - 6314260",,INSTALLATION ,,วัสดุสิ้นเปลือง NUT / SCREW ,30 Days,5 +res_partner_installation_158,คุณปริศนา,,FALSE,FALSE,TRUE,บริษัท แอบบอน จำกัด,res_partner_installation_157,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_159,บริษัท ฮั่วหยงโลหะการ จำกัด,SP02S077,TRUE,FALSE,TRUE,,,Default,FALSE,848 ม.3 ถ.เทพารักษ์,ต.เทพารักษ์ อ.เมืองสมุทราปราการ,10270,สมุทรปราการ,Thailand,"0-2312-1910-11, 0-23825-216-7",,0-2312-1959,,INSTALLATION ,,"งานสั่งทำ ,งานเจาะรูตะแกรง",30 Days,7 +res_partner_installation_160,คุณอาทิตย์,,FALSE,FALSE,TRUE,บริษัท ฮั่วหยงโลหะการ จำกัด,res_partner_installation_159,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_161,คุณเปิ้ล,,FALSE,FALSE,TRUE,บริษัท ฮั่วหยงโลหะการ จำกัด,res_partner_installation_159,Contact,TRUE,,,,,Thailand,,089-6699232,,,,,,, +res_partner_installation_162,สำเร็จการช่าง,SP02S078,TRUE,FALSE,TRUE,,,Default,FALSE,13/10 หมที่ 6 ซอยลาซาน 42 สุขุมวิท 105,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,02-7486480-2 ,,02-7486480-2 ,,INSTALLATION ,,งานทำตะแกรง,Cash,7 +res_partner_installation_163,คุณรัศมี,,FALSE,FALSE,TRUE,สำเร็จการช่าง,res_partner_installation_162,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_164,ห้างหุ้นส่วนจำกัด กรเทพกระจก อลูมิเนียม,SP02S079,TRUE,FALSE,TRUE,,,Default,FALSE,"418, 418/1-2 ม.5 ถ.ศรีนครินทร์",ต.สำโรงเหนือ อ.เมือง,10270,สมุทรปราการ,Thailand,"02-7486881, 7486884",,02-7486869,,INSTALLATION ,,กระจก,Cash,Within 15 Days +res_partner_installation_165,ห้างหุ้นส่วนจำกัด ซ้งเฮงลิ้ม,SP02S080,TRUE,FALSE,TRUE,,,Default,FALSE,2/6 ซ.บำเพ็ญกุศล ถ.จันทร์,แขวงทุ่งวัดดอน เขตสาทร,10120,กรุงเทพฯ,Thailand,"0-2867-2488, 896-5162",,0-2896-5162,,INSTALLATION ,,อุปกรณ์ประตู,30 Days,7 +res_partner_installation_166,คุณออย,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ซ้งเฮงลิ้ม,res_partner_installation_165,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_167,ห้างหุ้นส่วนจำกัด ธนาชล,SP02S081,TRUE,FALSE,TRUE,,,Default,FALSE,6/92-93 ม.5 ซ.วัดด่าน ถ.ศรีนครินทร์,ต.สำโรงเหนือ อ.เมือง,10270,สมุทรปราการ,Thailand,01-8262246 / 02-7571495-6,,02-7570992,,INSTALLATION ,,อุปกรณ์ประตู,30 Days,7 +res_partner_installation_168,ธนะ,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ธนาชล,res_partner_installation_167,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_169,ศศิ,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ธนาชล,res_partner_installation_167,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_170,ห้างหุ้นส่วนจำกัด น่ำเซ่งฮวด จารุเมือง,SP02S082,TRUE,FALSE,TRUE,,,Default,FALSE,528-532 ถ.บางนา-ตราด,แขวงบางนา เขตบางนา,10250,กรุงเทพฯ,Thailand,0-2398-0823 ,,0-2398-0860,,INSTALLATION ,,เหล็กรูปพรรณ,60 Days,7 +res_partner_installation_171,คุณสุภรณ์,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด น่ำเซ่งฮวด จารุเมือง,res_partner_installation_170,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_172,คุณไพศิต,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด น่ำเซ่งฮวด จารุเมือง,res_partner_installation_170,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_173,สุนีย์,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด น่ำเซ่งฮวด จารุเมือง,res_partner_installation_170,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_174,ห้างหุ้นส่วนจำกัด วิชัยพันธ์พาณิชย์,SP02S083,TRUE,FALSE,TRUE,,,Default,FALSE,81 ถ.เยาวราช,แขวงสัมพันธวงศ์ เขตสัมพันธวงศ์,10100,กรุงเทพฯ,Thailand,"02-2251969 , 02-222 7563",,02-2251970,,INSTALLATION ,,อุปกรณ์ประตู,30 Days,7 +res_partner_installation_175,ใหญ่,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด วิชัยพันธ์พาณิชย์,res_partner_installation_174,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_176,ห้างหุ้นส่วนจำกัด อินเตอร์แสตนเลส โปรดักท์,SP02S084,TRUE,FALSE,TRUE,,,Default,FALSE,2222/12-13 ม.4 ถ.สุขุมวิท,ต.เทพารักษ์ อ.เมืองสมุทราปราการ,10270,สมุทรปราการ,Thailand,"0-2384-7418, 384-3579, 394-6565",,0-2757-8056,,INSTALLATION ,,อุปกรณ์ประตู / มือจับห้องเย็น COLD ROOM HINGE + LATCH ,Cash,7 +res_partner_installation_177,อนิวัฒน์,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด อินเตอร์แสตนเลส โปรดักท์,res_partner_installation_176,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_178,สุรัสวดี,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด อินเตอร์แสตนเลส โปรดักท์,res_partner_installation_176,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_179,"PVN ENGINEERING CO,.LTD.",SP02S085,TRUE,FALSE,TRUE,,,Default,FALSE,"1532/22-25 Soi Tanuthai, Bangkok-Nonthaburi Road,","Bangsue,",10800,Bangkok,Thailand,0-2911-4761(auto 10 Lines),,"0-2911-4760, 0-2587-3655",,INSTALLATION ,,Differential Pressure Transmitter,, +res_partner_installation_180,คุณวิไลพร,,FALSE,FALSE,TRUE,"PVN ENGINEERING CO,.LTD.",res_partner_installation_179,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_installation_181,วีระเผ่า # 109,,FALSE,FALSE,TRUE,"PVN ENGINEERING CO,.LTD.",res_partner_installation_179,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_1,บริษัท โกริตา แพคเกจจิ้ง จำกัด,SP03S001,TRUE,FALSE,TRUE,,,Default,FALSE,2/3 หมู่ 21,แขวงมีนบุรี เขตมีนบุรี,10510,กรุงเทพฯ,Thailand,0-3745-7067-8,,0-3745-7073,,วัสดุสิ้นเปลือง ,,"PACKING / PE FOAM , AIR BUBBLE",30 Days,7 +res_partner_expendables_2,คุณตุ๊ก,,FALSE,FALSE,TRUE,บริษัท โกริตา แพคเกจจิ้ง จำกัด,res_partner_expendables_1,Contact,TRUE,,,,,Thailand,,01-7811537,,,,,,, +res_partner_expendables_3,BANGKOK TOOLS CENTER,SP03S002,TRUE,FALSE,TRUE,,,Default,FALSE,31 ซ.ประชาอุทิศ 79 หมู่ 1 ถ.ประชาอุทิศ,แขวงทุ่งครุ เขตทุ่งครุ,10140,กรุงเทพฯ,Thailand,"02-426 0471 , 02 - 871 7566 ,02 - 426 0933 ",,02 - 426 0933,,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,30 Days,3 +res_partner_expendables_4,คุณแสงอรุณ,,FALSE,FALSE,TRUE,BANGKOK TOOLS CENTER,res_partner_expendables_3,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_5,"Cleanstat ( Thailand ) Co.,Ltd",SP03S003,TRUE,FALSE,TRUE,,,Default,FALSE,"207 M.1 Hi-Tech Industrial Estate,","T.Banine , Abangpra-In ,",13160,Ayutthaya,Thailand,035-350 555,,035-959 269 - 70,,วัสดุสิ้นเปลือง ,,น้ำยา / สารเคมี / WAX ( น้ำยาทำความสะอาด ),30 Days,3 +res_partner_expendables_6,คุณนาตยา (คุณเอ๋),,FALSE,FALSE,TRUE,"Cleanstat ( Thailand ) Co.,Ltd",res_partner_expendables_5,Contact,TRUE,,,,,Thailand,,086-316-3172,,,,,,, +res_partner_expendables_7,"GENERAL VACUUM & FLOW CO.,LTD.",SP03S004,TRUE,FALSE,TRUE,,,Default,FALSE,7/8 หมู่ 2,ตำบลท่าอิฐ อ.ปากเกร็ด,11120,นนทบุรี,Thailand,02 - 924 5770,, 02 - 924 5796 ,,วัสดุสิ้นเปลือง ,,"วาวล์ แวคคัมปั๊ม นิวเมติก +",Cash,ตามข้อตกลง +res_partner_expendables_8,คุณนิติกร,,FALSE,FALSE,TRUE,"GENERAL VACUUM & FLOW CO.,LTD.",res_partner_expendables_7,Contact,TRUE,,,,,Thailand,,081-8230023,,,,,,, +res_partner_expendables_9,"NITTO DENKO MATERIAL (THAILAND) CO.,LTD.",SP03S005,TRUE,FALSE,TRUE,,,Default,FALSE,"Rojana Industrial Park, 1/75 Moo5, Rojana Rd.,","T.Kanham, A.U-Thai,",13210,Pranakornsriayuthaya,Thailand," 035- 226750 ,02-6790990 ",,"035 - 226 745 ,02-6790997",,วัสดุสิ้นเปลือง ,,วัสดุสิ้นเปลือง เทปกาว,30 Days,21 +res_partner_expendables_10,คุณแนนปนัสญา (แนน),,FALSE,FALSE,TRUE,"NITTO DENKO MATERIAL (THAILAND) CO.,LTD.",res_partner_expendables_9,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_11,SAIYAKAYA (M) Sdn. Bhd.,SP03S006,TRUE,FALSE,TRUE,,,Default,FALSE,"7, JALAN 11,","TAMAN KEPONG, KEPONG,",52100,KUALA LUMPUR,Malaysia,603-6272-1668/3227/9778,,603-6272-1696,,วัสดุสิ้นเปลือง ,,Protection Film,,45 +res_partner_expendables_12,"SIMAC ART & DECOR PAINT CO.,LTD.",SP03S007,TRUE,FALSE,TRUE,,,Default,FALSE,"313 Sirinthorn Road,","Bangbumru,Bangplad,",10700,Bangkok,Thailand,0-2434-9979,,0-2434-9979,,วัสดุสิ้นเปลือง ,,สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ,Cash,7 +res_partner_expendables_13,คุณสินี,,FALSE,FALSE,TRUE,"SIMAC ART & DECOR PAINT CO.,LTD.",res_partner_expendables_12,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_14,บริษัท ก.บุญชัยก่อสร้างและจักรกล จำกัด,SP03S008,TRUE,FALSE,TRUE,,,Default,FALSE,1193/5 ม.1,ต.พนมสารคาม อ.พนมสารคาม,,ฉะเชิงเทรา,Thailand,"(038) 551 - 104,551 726",,"(038) 553 - 139 , (038) 552-915",,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,30 Days,3 +res_partner_expendables_15,คุณมด,,FALSE,FALSE,TRUE,บริษัท ก.บุญชัยก่อสร้างและจักรกล จำกัด,res_partner_expendables_14,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_16,บริษัท เกรียงกมล 2009 จำกัด,SP03S009,TRUE,FALSE,TRUE,,,Default,FALSE,"44,50 เยาวราช + +","แขวงจักรวรรดิ์ เขตสัมพันธวงศ์ + +",10100,กรุงเทพฯ,Thailand,"02 - 2250138,022 - 255297-8",,02 - 2256027,,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,Cash,3 +res_partner_expendables_17,คุณปู,,FALSE,FALSE,TRUE,บริษัท เกรียงกมล 2009 จำกัด,res_partner_expendables_16,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_18,บริษัท โกเวล พาวเวอร์ (2002) จำกัด,SP03S010,TRUE,FALSE,TRUE,,,Default,FALSE,1815 ถ.ลาซาล,แขวงบางนา เขตบางนา (เริ่ม 9 มิ.ย.2549),10260,กรุงเทพฯ,Thailand,02-3494587-8,,02-3839483,,วัสดุสิ้นเปลือง ,,"สายพาน, Bearing",,- +res_partner_expendables_19,ติ๊ก,,FALSE,FALSE,TRUE,บริษัท โกเวล พาวเวอร์ (2002) จำกัด,res_partner_expendables_18,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_20,พูนสิน,,FALSE,FALSE,TRUE,บริษัท โกเวล พาวเวอร์ (2002) จำกัด,res_partner_expendables_18,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_21,บริษัท คลีนแอร์ โปรดักท์ จำกัด,SP03S011,TRUE,FALSE,TRUE,,,Default,FALSE,14/2 ซ. รามคำแหง 21( นวศรี 1 ) ถนน รามคำแหง,แขวงวังทองหลาง เขตวังทองหลาง,10310,กรุงเทพฯ,Thailand,"0-2319 7035-6,02-3193780",,0-2718 5859,,วัสดุสิ้นเปลือง ,,"PACKING / PE FOAM , AIR BUBBLE",Cash,- +res_partner_expendables_22,คุณต้อม,,FALSE,FALSE,TRUE,บริษัท คลีนแอร์ โปรดักท์ จำกัด,res_partner_expendables_21,Contact,TRUE,,,,,Thailand,,086-5355567,,,,,,, +res_partner_expendables_23,บริษัท คาร์ โคทติ้งส์ ซิสเต็ม (ประเทศไทย) จำกัด ( สีมิป้า),SP03S012,TRUE,FALSE,TRUE,,,Default,FALSE,109/85 ถ.เทพารักษ์ (กม.26),ต.บางเสาธง อ.บางเสาธง,10540,สมุทรปราการ,Thailand,"02 708 0733, 088 022 0045 ",,02 - 7087034 ,,วัสดุสิ้นเปลือง ,,สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ,Cash,7 +res_partner_expendables_24,บริษัท โจตัน พาวเดอร์ โค้ทติ้งส์ ( ประเทศไทย ) จำกัด,SP03S013,TRUE,FALSE,TRUE,,,Default,FALSE,700/355 ม.6,ต. ดอนหัวพ่อ อ.เมืองชลบุรี,20000,ชลบุรี,Thailand, 038 - 468 744 - 5,, 038 - 468 757,,วัสดุสิ้นเปลือง ,,สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ,30 Days,15 +res_partner_expendables_25,คุณเล็ก,,FALSE,FALSE,TRUE,บริษัท โจตัน พาวเดอร์ โค้ทติ้งส์ ( ประเทศไทย ) จำกัด,res_partner_expendables_24,Contact,TRUE,,,,,Thailand,,, ,,,,,, +res_partner_expendables_26,คุณโกมุต,,FALSE,FALSE,TRUE,บริษัท โจตัน พาวเดอร์ โค้ทติ้งส์ ( ประเทศไทย ) จำกัด,res_partner_expendables_24,Contact,TRUE,,,,,Thailand,,081 - 9117427,,,,,,, +res_partner_expendables_27,บริษัท ชินเตอร์โปรดักส์ จำกัด,SP03S014,TRUE,FALSE,TRUE,,,Default,FALSE,39/80 ม.11,แขวงคลองกุ่ม เขตบึงกุ่ม,10230,กรุงเทพฯ,Thailand,"02-916 1211, 543 9664 , 916 1949 ",, 02-543 9497,,วัสดุสิ้นเปลือง ,,"PACKING , PE FOAM",Cash,7 +res_partner_expendables_28,คุณเมธาพร,,FALSE,FALSE,TRUE,บริษัท ชินเตอร์โปรดักส์ จำกัด,res_partner_expendables_27,Contact,TRUE,,,,,Thailand,, ,,,,,,, +res_partner_expendables_29,เม,,FALSE,FALSE,TRUE,บริษัท ชินเตอร์โปรดักส์ จำกัด,res_partner_expendables_27,Contact,TRUE,,,,,Thailand,,081 - 636 7332 ,,,,,,, +res_partner_expendables_30,บริษัท ซัฟฟิเชียนท์ จำกัด (ฟองน้ำ PU FOAM ),SP03S015,TRUE,FALSE,TRUE,,,Default,FALSE,606/43 ม.2 ถ.พัฒนา,ต.บางปูใหม่ อ.เมืองสมุทรปราการ,10280,สมุทรปราการ,Thailand,0-2709 9183 - 4,,02-709 9185,,วัสดุสิ้นเปลือง ,,PACKING ,30 Days,- +res_partner_expendables_31,คุณประภัทร,,FALSE,FALSE,TRUE,บริษัท ซัฟฟิเชียนท์ จำกัด (ฟองน้ำ PU FOAM ),res_partner_expendables_30,Contact,TRUE,,,,,Thailand,,081 - 839 3431 ,,,,,,, +res_partner_expendables_32,คุณวิชัย,,FALSE,FALSE,TRUE,บริษัท ซัฟฟิเชียนท์ จำกัด (ฟองน้ำ PU FOAM ),res_partner_expendables_30,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_33,บริษัท ไซคลอพ แพคเกจจิ้ง (ประเทศไทย) จำกัด,SP03S016,TRUE,FALSE,TRUE,,,Default,FALSE,114 ซ.อ่อนนุช 13,แขวงสวนหลวง เขตสวนหลวง,10250,กรุงเทพฯ,Thailand,(06-6631313) 0-2730-0213-6,,0-2730-0217,,วัสดุสิ้นเปลือง ,,"PACKING / PE FOAM , AIR BUBBLE",,- +res_partner_expendables_34,บุษกร,,FALSE,FALSE,TRUE,บริษัท ไซคลอพ แพคเกจจิ้ง (ประเทศไทย) จำกัด,res_partner_expendables_33,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_35,บริษัท ตะวันออกโพลิเมอร์ จำกัด,SP03S017,TRUE,FALSE,TRUE,,,Default,FALSE,770 หมู่ 6,ต.เทพารักษ์ อ.เมือง,10270,สมุทรปราการ,Thailand,02-2493976 # 135 or 75 # 135 ,, FAX : 02 - 249 498,,วัสดุสิ้นเปลือง ,,"PACKING / PE FOAM , AIR BUBBLE",Cash,- +res_partner_expendables_36,คุณนีรนุช (นุช),,FALSE,FALSE,TRUE,บริษัท ตะวันออกโพลิเมอร์ จำกัด,res_partner_expendables_35,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_37,บริษัท ไต้หวัน ฮัอยซท แอนด์ เครน (ประเทศไทย) จำกัด,SP03S018,TRUE,FALSE,TRUE,,,Default,FALSE,28/2 ซ.45 ถ.พระราม 9,แขวงสวนหลวง เขตสวนหลวง,10250,กรุงเทพฯ,Thailand,(081-9) / 0-2720-1035-6,,0-2718-9709,,วัสดุสิ้นเปลือง ,,"สายเครน, รอก",30 Days,7 +res_partner_expendables_38,คุณทวีศักดิ์,,FALSE,FALSE,TRUE,บริษัท ไต้หวัน ฮัอยซท แอนด์ เครน (ประเทศไทย) จำกัด,res_partner_expendables_37,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_39,บริษัท ท เทียนชัย จำกัด,SP03S019,TRUE,FALSE,TRUE,,,Default,FALSE,"184/2 สายลวด + +","ตำบลปากน้ำ อำเภอเมืองสมุทรปราการ + +",10280,สมุทรปราการ,Thailand,"02-7018014-5, 7016295",,02-3953552,,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,30 Days,3 +res_partner_expendables_40,ปรียา,,FALSE,FALSE,TRUE,บริษัท ท เทียนชัย จำกัด,res_partner_expendables_39,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_41,บริษัท ทวีทรัพย์ไทยเทรดดิ้ง จำกัด,SP03S020,TRUE,FALSE,TRUE,,,Default,FALSE,516 - 518 ถนนบางนา - ตราด,แขวงบางนา เจตบางนา,10260,กรุงเทพฯ,Thailand,0-2744 6377-8 ,, FAX : 0-27446379,,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,30 Days,3 +res_partner_expendables_42,คุณธัญ,,FALSE,FALSE,TRUE,บริษัท ทวีทรัพย์ไทยเทรดดิ้ง จำกัด,res_partner_expendables_41,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_43,บริษัท ทานากะ เคมีคอล (ประเทศไทย) จำกัด,SP03S021,TRUE,FALSE,TRUE,,,Default,FALSE,2344 หมู่บ้านโฮมเพลส ถนนพัฒนาการ,แขวงสวนหลวง เขตสวนหลวง,102500,กรุงเทพฯ,Thailand,02 - 722 7900 - 2 ,, 02 - 722 7887,,วัสดุสิ้นเปลือง ,,สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ,30 Days,7 +res_partner_expendables_44,คุณผนิดา,,FALSE,FALSE,TRUE,บริษัท ทานากะ เคมีคอล (ประเทศไทย) จำกัด,res_partner_expendables_43,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_45,คุณสืบพงษ์,,FALSE,FALSE,TRUE,บริษัท ทานากะ เคมีคอล (ประเทศไทย) จำกัด,res_partner_expendables_43,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_46,บริษัท ที.พี.ซี. (2000) อินเตอร์เนชั่นแนล กรุ๊ป จำกัด,SP03S022,TRUE,FALSE,TRUE,,,Default,FALSE,34-34/1 ม.7 ถนนศรีนครินทร์,ต.เทพารักษ์ อ.เมืองสมุทรปราการ,10270,สมุทรปราการ,Thailand,"0-2883-0440,883-0330-1",,02-8830493,,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,30 Days,3 +res_partner_expendables_47,คุณธนพล,,FALSE,FALSE,TRUE,บริษัท ที.พี.ซี. (2000) อินเตอร์เนชั่นแนล กรุ๊ป จำกัด,res_partner_expendables_46,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_48,คุณปู,,FALSE,FALSE,TRUE,บริษัท ที.พี.ซี. (2000) อินเตอร์เนชั่นแนล กรุ๊ป จำกัด,res_partner_expendables_46,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_49,บริษัท เทพเทวา มั่นคง จำกัด,SP03S023,TRUE,FALSE,TRUE,,,Default,FALSE,"64,66,68,70,72,76 ถ.ท่าดินแดง ซ.18",แขวงคลองสาน เขตคลองสาน,10600,กรุงเทพฯ,Thailand,"02 - 439 - 5937 ,02-437 0387 ",,02-438 9581,,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,30 Days,3 +res_partner_expendables_50,คุณแอม,,FALSE,FALSE,TRUE,บริษัท เทพเทวา มั่นคง จำกัด,res_partner_expendables_49,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_51,กระแต,,FALSE,FALSE,TRUE,บริษัท เทพเทวา มั่นคง จำกัด,res_partner_expendables_49,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_52,บริษัท โทเทิล พลาส แพ็ค จำกัด,SP03S024,TRUE,FALSE,TRUE,,,Default,FALSE,95/356-358 ซ.พระราม 3 (ซ.52) ถ.พระราม 3,แขวงช่องนนทรี เขตยานนาวา,10120,กรุงเทพฯ,Thailand,01-6155181 / 0-2681-4920,,0-2681-4921,,วัสดุสิ้นเปลือง ,,ฟิล์มยืด STRETCH FILM,,- +res_partner_expendables_53,นพงษ์ วิวัฒน์ธนสาร,,FALSE,FALSE,TRUE,บริษัท โทเทิล พลาส แพ็ค จำกัด,res_partner_expendables_52,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_54,บริษัท ไทย โกลบอล ซัพพลาย จำกัด,SP03S025,TRUE,FALSE,TRUE,,,Default,FALSE,"1098 ศรีนครินทร์ + +","แขวงสวนหลวง เขตสวนหลวง + +",10250,กรุงเทพฯ,Thailand,"023224145-7,027213092,023228970-2",,02362-4948,,วัสดุสิ้นเปลือง ,,อุปกรณ์เซฟตี้,,- +res_partner_expendables_55,บริษัท ไทยเทคโนเพลท จำกัด,SP03S026,TRUE,FALSE,TRUE,,,Default,FALSE,12/1 หมู่ 9 ถนนบางคูวัด,อ.เมือง,12000,ปทุมธานี,Thailand,0-2976-5281-4 (นุช - บัญชี),,0-2598-6490,,วัสดุสิ้นเปลือง ,,Sticker ,30 Days,15 +res_partner_expendables_56,คุณรุ่งทิพย์,,FALSE,FALSE,TRUE,บริษัท ไทยเทคโนเพลท จำกัด,res_partner_expendables_55,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_57,บริษัท ไทยนครพัฒนา ( 1982 ) จำกัด,SP03S027,TRUE,FALSE,TRUE,,,Default,FALSE,2242-4 รามคำแหง,แขวงหัวหมาก เขตบางกะปิ,10240,กรุงเทพฯ,Thailand,"0-2377 0737, 02 - 3779488 ",,0-2377 2812,,วัสดุสิ้นเปลือง ,,"ร้านขายปลีกสี น้ำมันชักเงา และแลกเกอร์ +",Cash,7 +res_partner_expendables_58,คุณเปรี้ยว,,FALSE,FALSE,TRUE,บริษัท ไทยนครพัฒนา ( 1982 ) จำกัด,res_partner_expendables_57,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_59,บริษัท ไทยพัฒนสิน ( จิ้นเส็ง 2000 ) จำกัด,SP03S028,TRUE,FALSE,TRUE,,,Default,FALSE,286-288 ถ.สุขุมวิท,ต.มาบตาพุด อ.เมือง,,ระยอง,Thailand,"038-691994-9 ,( Office) 02-886 9506",,"038-692000,0-288 30612",,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,30 Days,3 +res_partner_expendables_60,คุณรพีพร,,FALSE,FALSE,TRUE,บริษัท ไทยพัฒนสิน ( จิ้นเส็ง 2000 ) จำกัด,res_partner_expendables_59,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_61,บริษัท ไทยรุ่งเรือง ฟิตติ้ง แอนด์ วาวล์ จำกัด,SP03S029,TRUE,FALSE,TRUE,,,Default,FALSE,15 ถนนมหานคร,แขวงมหาพฤฒาราม เขตบางรัก,10500,กรุงเทพฯ,Thailand,0-2233-4320,,0-2236-2404,,วัสดุสิ้นเปลือง ,,วาล์ว ,30 Days,3 +res_partner_expendables_62,คุณเอ๋,,FALSE,FALSE,TRUE,บริษัท ไทยรุ่งเรือง ฟิตติ้ง แอนด์ วาวล์ จำกัด,res_partner_expendables_61,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_63,บริษัท ไทยวัฒนาพลาสติก จำกัด,SP03S030,TRUE,FALSE,TRUE,,,Default,FALSE,267 หมู่ 4 ถนนเศรษฐกิจ 1,ต.ท่าไม้ อ.กระทุ่มแบน,,สมุทรสาคร,Thailand,02-8621080-7,,02-8623204,,วัสดุสิ้นเปลือง ,,พลาสติกใส,30 Days,7 +res_partner_expendables_64,สุดาณี (บี),,FALSE,FALSE,TRUE,บริษัท ไทยวัฒนาพลาสติก จำกัด,res_partner_expendables_63,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_65,บริษัท พรพรหมเพิ่มพัฒนา (2002) จำกัด,SP03S031,TRUE,FALSE,TRUE,,,Default,FALSE,72 ซอยท่าดินแดง 18 ถนนท่าดินแดงคลองสาน,กรุงเทพมหานคร,10600,กรุงเทพฯ,Thailand,"02-4370387, 4392874",,02-4372960,,วัสดุสิ้นเปลือง ,,ถุงขยะ,30 Days,7 +res_partner_expendables_66,วิไล,,FALSE,FALSE,TRUE,บริษัท พรพรหมเพิ่มพัฒนา (2002) จำกัด,res_partner_expendables_65,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_67,บริษัท เฟอร์โกอุตสาหกรรม จำกัด,SP03S032,TRUE,FALSE,TRUE,,,Default,FALSE,388 ม.7,ต.บางเสาธง อ.บางเสาธง,10540,สมุทรปราการ,Thailand,02-708 3745-50,, 02-708 -3722 ,,วัสดุสิ้นเปลือง ,,PACKING / โฟมแผ่น,Cash, +res_partner_expendables_68,คุณสมศักดิ์,,FALSE,FALSE,TRUE,บริษัท เฟอร์โกอุตสาหกรรม จำกัด,res_partner_expendables_67,Contact,TRUE,,,,,Thailand,,089-665 5382,,,,,,, +res_partner_expendables_69,บริษัท โฟร์เคม จำกัด ( สีเคลือบกระจก (สีทึบ),SP03S033,TRUE,FALSE,TRUE,,,Default,FALSE,116/67 หมู่ 9 ถ.เทพารักษ์,ต.บางปลา อ.บางพลี,10540,สมุทรปราการ,Thailand, 02 - 706-3337,, 02 - 706-3337,,วัสดุสิ้นเปลือง ,,สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ,Cash,7 +res_partner_expendables_70,คุณวรพงศ์,,FALSE,FALSE,TRUE,บริษัท โฟร์เคม จำกัด ( สีเคลือบกระจก (สีทึบ),res_partner_expendables_69,Contact,TRUE,,,,,Thailand,,089-499 1644,,,,,,, +res_partner_expendables_71,บริษัท มหพงษ์ค้ากระดาษ จำกัด,SP03S034,TRUE,FALSE,TRUE,,,Default,FALSE,461-3 ถ.ไมตรีจิตต์,ป้อมปราบ ป้อมปราบศัตรูพ่าย,10100,กรุงเทพฯ,Thailand,"0-2222-7307, 0-2225-2212",,02-2252213,,วัสดุสิ้นเปลือง ,,กระดาษสีน้ำตาล,30 Days,15 +res_partner_expendables_72,หมี,,FALSE,FALSE,TRUE,บริษัท มหพงษ์ค้ากระดาษ จำกัด,res_partner_expendables_71,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_73,บริษัท มาสเตอร์ แมค อินดัสทรี จำกัด,SP03S035,TRUE,FALSE,TRUE,,,Default,FALSE,49/57 ม.12 ถ.กิ่งแก้ว,ต.ราชาเทวะ อ.บางพลี,10540,สมุทรปราการ,Thailand,0-2750-2901-3/01-5662182,,0-2750-2909,,วัสดุสิ้นเปลือง ,,อุปกรณ์เซฟตี้,,- +res_partner_expendables_74,คุณกาญจนา,,FALSE,FALSE,TRUE,บริษัท มาสเตอร์ แมค อินดัสทรี จำกัด,res_partner_expendables_73,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_75,บริษัท ยู.เอส.ซีเนี่ยน จำกัด,SP03S036,TRUE,FALSE,TRUE,,,Default,FALSE,326-328 ถ.ลาดพร้าว 132,บางกะปิ,10240,กรุงเทพฯ,Thailand,"02-2377 4854,02-3751171",,"02-3752667,5142489",,วัสดุสิ้นเปลือง ,,น้ำมัน / น้ำมันอุตสาหรรม ,30 Days,3 +res_partner_expendables_76,คุณพรพรรณ,,FALSE,FALSE,TRUE,บริษัท ยู.เอส.ซีเนี่ยน จำกัด,res_partner_expendables_75,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_77,บริษัท ยูไนเต็ด ดีสทริบิวชั่น จำกัด,SP03S037,TRUE,FALSE,TRUE,,,Default,FALSE,1367-1369 ถ.สุทธิสารวินิจฉัย,แขวงดินแดง เขตดินแดง,10400,กรุงเทพฯ,Thailand,02-6938585-90,,02-6938833,,วัสดุสิ้นเปลือง ,,วัสดุสิ้นเปลือง เทปกาว,30 Days,3 +res_partner_expendables_78,อาม,,FALSE,FALSE,TRUE,บริษัท ยูไนเต็ด ดีสทริบิวชั่น จำกัด,res_partner_expendables_77,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_79,บริษัท รุ่งพัฒนา อิมปอร์ต เอ็กปอร์ต จำกัด,SP03S038,TRUE,FALSE,TRUE,,,Default,FALSE,743 ซอย 42,แขวงบางมด เขตจอมทอง,10150,กรุงเทพฯ,Thailand,028983104-5,,02-8984852,,วัสดุสิ้นเปลือง ,,สารกันชื้น ,Cash,7 +res_partner_expendables_80,บริษัท รุ่งศิริ ซัพพลาย จำกัด,SP03S039,TRUE,FALSE,TRUE,,,Default,FALSE,188/4 ถ.สายลวด,ต.ปากน้ำ อ.เมือง,10280,สมุทรปราการ,Thailand,"0-2701-6500, 701-6400",,0-2701-7331,,วัสดุสิ้นเปลือง ,,"น้ำยา / สารเคมี / WAX (กาวพ่นสแตนเลส, กาวยาง, กาพ่นสี )",30 Days,3 +res_partner_expendables_81,คุณสุมาลี,,FALSE,FALSE,TRUE,บริษัท รุ่งศิริ ซัพพลาย จำกัด,res_partner_expendables_80,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_82,บริษัท วานิชย์เจริญ ฮาร์ดแวร์ จำกัด,SP03S040,TRUE,FALSE,TRUE,,,Default,FALSE,2025/27 ถ.เจริญกรุง,แขวงวัดพระยาไกร เขตบางคอแหลม,10120,กรุงเทพฯ,Thailand,"02 - 727 0664-5,02-7270667-9 ",,02 - 7270890,,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,60 Days,3 +res_partner_expendables_83,คุณปนัดดา,,FALSE,FALSE,TRUE,บริษัท วานิชย์เจริญ ฮาร์ดแวร์ จำกัด,res_partner_expendables_82,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_84,เบียร์,,FALSE,FALSE,TRUE,บริษัท วานิชย์เจริญ ฮาร์ดแวร์ จำกัด,res_partner_expendables_82,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_85,บริษัท วี-ไนน แพคเกจจิ้ง จำกัด,SP03S041,TRUE,FALSE,TRUE,,,Default,FALSE,140/39 ถ.นนทรี,แขวงช่องนนทรี เขตยานนาวา,10120,กรุงเทพฯ,Thailand,0-2681-5840-2 (01-8494160),,02-681 5839,,วัสดุสิ้นเปลือง ,,ฟิล์มยืด STRETCH FILM,30 Days,3 +res_partner_expendables_86,บริษัท สแควร์ คอมเมอร์เชียล จำกัด,SP03S042,TRUE,FALSE,TRUE,,,Default,FALSE,69-110/4 หมู่ 8,ต.บางกระสอ อ.เมืองนนทบุรี,11000,นนทบุรี,Thailand,0-2591-9864-6,,0-2950-3369,,วัสดุสิ้นเปลือง ,,น้ำมัน / น้ำมันอุตสาหรรม ,30 Days,3 +res_partner_expendables_87,คุณนี,,FALSE,FALSE,TRUE,บริษัท สแควร์ คอมเมอร์เชียล จำกัด,res_partner_expendables_86,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_88,บริษัท สลิงอ่อน (ประเทศไทย) จำกัด,SP03S043,TRUE,FALSE,TRUE,,,Default,FALSE,40/32-35 ถ.รามคำแหง,แขวงหัวหมาก เขตบางกะปิ,10240,กรุงเทพฯ,Thailand,"02-3793840, 7316000-2",,02-3793889,,วัสดุสิ้นเปลือง ,,สายสลิง,30 Days,7 +res_partner_expendables_89,ทัศนีย์ รอดเกษี,,FALSE,FALSE,TRUE,บริษัท สลิงอ่อน (ประเทศไทย) จำกัด,res_partner_expendables_88,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_90,บริษัท สีอีซามุไทย จำกัด,SP03S044,TRUE,FALSE,TRUE,,,Default,FALSE,81ถนน ประดิพัทธ์ ซอย9,สามเสนใน พญาไท,10400,กรุงเทพฯ,Thailand,"02 - 279 9060 ,02 - 618 6938",,02- 6187188,,วัสดุสิ้นเปลือง ,,สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ,Cash,7 +res_partner_expendables_91,คุณทิพย์ญาดา,,FALSE,FALSE,TRUE,บริษัท สีอีซามุไทย จำกัด,res_partner_expendables_90,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_92,บริษัท แสงเจริญวานิช จำกัด,SP03S045,TRUE,FALSE,TRUE,,,Default,FALSE,1565 ม.6 ถ.สุขุมวิท,ต.สำโรงเหนือ อ.เมือง,10270,สมทุรปราการ,Thailand,"02-398 2598,02-393 8390",,02-3987749,,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,30 Days,3 +res_partner_expendables_93,มงคล,,FALSE,FALSE,TRUE,บริษัท แสงเจริญวานิช จำกัด,res_partner_expendables_92,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_94,สมแก้ว,,FALSE,FALSE,TRUE,บริษัท แสงเจริญวานิช จำกัด,res_partner_expendables_92,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_95,บริษัท อ.ชัยวัฒน์ แพคเกจจิ้ง ซิสเท็ม จำกัด,SP03S046,TRUE,FALSE,TRUE,,,Default,FALSE,"52/40 หมู่ 9 ซอยเอกชัย 72 + +","เอกชัย แขวงบางบอน เขตบางบอน + +",10150,กรุงเทพฯ,Thailand,"02-8944036, 4161311",,02-8944107,,วัสดุสิ้นเปลือง ,,"PACKING / PE FOAM , AIR BUBBLE",,- +res_partner_expendables_96,ญาณวัฒน์,,FALSE,FALSE,TRUE,บริษัท อ.ชัยวัฒน์ แพคเกจจิ้ง ซิสเท็ม จำกัด,res_partner_expendables_95,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_97,บริษัท อำนวยการดับเพลิง จำกัด,SP03S047,TRUE,FALSE,TRUE,,,Default,FALSE,52/1-2 ถนนรามคำแหง 60/4,แขวงหัวหมาก เขตบางกะปิ,10240,กรุงเทพฯ,Thailand,"0-2374 5593, 02-374 8738 ",,0-2374 5593 ,,วัสดุสิ้นเปลือง ,,อุปกรณ์เซฟตี้,30 Days,3 +res_partner_expendables_98,คุณบี,,FALSE,FALSE,TRUE,บริษัท อำนวยการดับเพลิง จำกัด,res_partner_expendables_97,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_99,บริษัท อุตสาหกรรมยูเนี่ยนเปเปอร์ทิ้ว จำกัด,SP03S048,TRUE,FALSE,TRUE,,,Default,FALSE,522 ม.1 ซ.ปลั่งเปล่ง ถ.พุทธรักษา,ต.ท้ายบ้าน อ.เมือง,10280,สมทุรปราการ,Thailand,"02-3951217, 3952068",,02-3870679,,วัสดุสิ้นเปลือง ,,กระดาษสีน้ำตาล,Cash,7 +res_partner_expendables_100,ประกายรัตน์,,FALSE,FALSE,TRUE,บริษัท อุตสาหกรรมยูเนี่ยนเปเปอร์ทิ้ว จำกัด,res_partner_expendables_99,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_101,คุณน้อย,,FALSE,FALSE,TRUE,บริษัท อุตสาหกรรมยูเนี่ยนเปเปอร์ทิ้ว จำกัด,res_partner_expendables_99,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_102,บริษัท เอเซียโพลีพลาสติค อินดัสทรี จำกัด,SP03S049,TRUE,FALSE,TRUE,,,Default,FALSE,230 หมู่ที่ 6 ถนนสุขสวัสดิ์ 78,ตำบลในคลองบางปลากด พระสมุทรเจดีย์,10290,สมทุรปราการ,Thailand,"02-2942166, 2940772, 2942215",,02-2942216,,วัสดุสิ้นเปลือง ,,"PACKING / PE FOAM , AIR BUBBLE",30 Days,- +res_partner_expendables_103,ยุกต์ จิระกิจจา,,FALSE,FALSE,TRUE,บริษัท เอเซียโพลีพลาสติค อินดัสทรี จำกัด,res_partner_expendables_102,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_104,บริษัท เอ็ม พี แอล มาร์เก็ตติ้ง จำกัด,SP03S050,TRUE,FALSE,TRUE,,,Default,FALSE,112/285-288 ซ.วัจนะ ม.8 ถ.จอมทอง,แขวง/เขตจอมทอง,10150,กรุงเทพฯ,Thailand,02-4770430-7,,02-4770439,,วัสดุสิ้นเปลือง ,,วัสดุสิ้นเปลือง เทปกาว,60 Days,5 +res_partner_expendables_105,วันชัย,,FALSE,FALSE,TRUE,บริษัท เอ็ม พี แอล มาร์เก็ตติ้ง จำกัด,res_partner_expendables_104,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_106,บริษัท เอ็ม เอ็ม พี แพ็คเกจจิ้ง กรุ๊พ จำกัด,SP03S051,TRUE,FALSE,TRUE,,,Default,FALSE,3075/1-2 ถ.สุขุมวิท,แขวงบางจาก เขตพระโขนง,10260,กรุงเทพฯ,Thailand,02-7418444,,"02-3320514, 7418425",,วัสดุสิ้นเปลือง ,,ฟิล์มยืด M-STRETCH,Cash,3 +res_partner_expendables_107,K. สมถวิน,,FALSE,FALSE,TRUE,บริษัท เอ็ม เอ็ม พี แพ็คเกจจิ้ง กรุ๊พ จำกัด,res_partner_expendables_106,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_108,ร้านจงวิศาล,SP03S052,TRUE,FALSE,TRUE,,,Default,FALSE,100 ม.8,ต.โคกปีบอ.ศรีมโหสถ,25190,ปราจีนบุรี,Thailand,037 - 276 - 328 ,,"037 - 276 - 460 , 037 - 276 - 328",,วัสดุสิ้นเปลือง ,,ร้านวัสดุก่อสร้าง ,30 Days,7 +res_partner_expendables_109,คุณอุไรวรรณ,,FALSE,FALSE,TRUE,ร้านจงวิศาล,res_partner_expendables_108,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_110,สถานีบริการน้ำมันสหกรณ์การเกษตรโคกปีบ จำกัด,SP03S053,TRUE,FALSE,TRUE,,,Default,FALSE,224 หมู่ที่ 7,ต.โคกปีบอ.ศรีมโหสถ,25190,ปราจีนบุรี,Thailand,"037 - 276 - 742 , 037 - 276 - 049",, 037 - 276 - 049,,วัสดุสิ้นเปลือง ,,น้ำมัน,Cash,3 +res_partner_expendables_111,คุณนงเยาว์,,FALSE,FALSE,TRUE,สถานีบริการน้ำมันสหกรณ์การเกษตรโคกปีบ จำกัด,res_partner_expendables_110,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_112,แสงเจริญรับเบอร์ส (1996),SP03S054,TRUE,FALSE,TRUE,,,Default,FALSE,228/8-9 ม.11,ต.บางพลีใหญ่ อ.บางพลี,10540,สมทุรปราการ,Thailand,02-3121737 (01-3728022),,02-7524944,,วัสดุสิ้นเปลือง ,,"ปะเก็นยาง, ท่อสายใยลวด (สายยางฉีดโฟม)",30 Days,7 +res_partner_expendables_113,วี,,FALSE,FALSE,TRUE,แสงเจริญรับเบอร์ส (1996),res_partner_expendables_112,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_114,ห้างหุ้นส่วนจำกัด กิจเจริญวัฒนาโลหะภัณฑ์,SP03S055,TRUE,FALSE,TRUE,,,Default,FALSE,21/230-232 ม.12 ถ.บางนา-ตราด,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,02-7490722-6,,"02-3938046, 7444584",,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,30 Days,3 +res_partner_expendables_115,พัฒน์,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด กิจเจริญวัฒนาโลหะภัณฑ์,res_partner_expendables_114,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_116,ห้างหุ้นส่วนจำกัด ทูลลิ่ง ซัพพลาย,SP03S056,TRUE,FALSE,TRUE,,,Default,FALSE,46/90 ซอยนวลจันทร์ 31,แขวงนวลจันท์ เขตบึงกุ่ม,10230,กรุงเทพฯ,Thailand,02 - 363-7748-51,, 02 - 509-9227,,วัสดุสิ้นเปลือง ,,เครื่องต๊าปเกลียว,30 Days,7 +res_partner_expendables_117,คุณธีรพล,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ทูลลิ่ง ซัพพลาย,res_partner_expendables_116,Contact,TRUE,,,,,Thailand,,081-988 8718,,,,,,, +res_partner_expendables_118,ห้างหุ้นส่วนจำกัด พิพัฒนกิจเทรดดิ้ง,SP03S057,TRUE,FALSE,TRUE,,,Default,FALSE,113 ถนนเสือป่า,แขวงป้อมปราบ,10100,กรุงเทพฯ,Thailand,02-623 2434,,"02-623 2433, 02 - 252 455-6 ",,วัสดุสิ้นเปลือง ,,พลาสติกใส,Cash,3 +res_partner_expendables_119,คุณนิตยา,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด พิพัฒนกิจเทรดดิ้ง,res_partner_expendables_118,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_120,ห้างหุ้นส่วนจำกัด รุ่งพิทักษ์ ปิโตรเลียม,SP03S058,TRUE,FALSE,TRUE,,,Default,FALSE,123 ม.4,ต.เมืองเก่า อ.พนมสารคาม,,ฉะเชิงเทรา,Thailand," 038 - 551 - 219 , 038 - 551 - 650 ",,"038 - 552 - 812 ,038 - 551 - 219",,วัสดุสิ้นเปลือง ,,แก๊ส,30 Days,5 - 7 +res_partner_expendables_121,คุณปราณี,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด รุ่งพิทักษ์ ปิโตรเลียม,res_partner_expendables_120,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_122,ห้างหุ้นส่วนจำกัด วงศ์วิวัฒน์ฮาร์ดแวร์,SP03S059,TRUE,FALSE,TRUE,,,Default,FALSE,4509/7-8 ถ.สุขุมวิท,แขวงบางนา เขตบางนา (เริ่ม 9 มิ.ย.2549),10260,กรุงเทพฯ,Thailand,"0-2398-0916-7, 744-4540-4",,02-3988963,,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,Cash,3 +res_partner_expendables_123,คุณแอนนา,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด วงศ์วิวัฒน์ฮาร์ดแวร์,res_partner_expendables_122,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_124,ห้างหุ้นส่วนจำกัด วี.เอ็น.คอมเมอร์เชียล,SP03S060,TRUE,FALSE,TRUE,,,Default,FALSE,118/134 ซอยบัวทอง 10/4,ตำบลบางรักพัฒนา อำเภอบางบัวทอง,11110,นทบุรี,Thailand,02 - 5946105,,02 - 5946106,,วัสดุสิ้นเปลือง ,,ถุงขยะ,,- +res_partner_expendables_125,ห้างหุ้นส่วนจำกัด ศรีวิกรณ์เพ้นท์ ( สีซ่อมผนัง ),SP03S061,TRUE,FALSE,TRUE,,,Default,FALSE,487/13 หมู่ 6 แพรกษา,อำเภอเมืองสมุทรปราการ,10280,สมุทรปราการ,Thailand,02- 7037449,, 02 - 7011301,,วัสดุสิ้นเปลือง ,,สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ,Cash,7 +res_partner_expendables_126,ห้างหุ้นส่วนจำกัด สแตนดาร์ด เทป,SP03S062,TRUE,FALSE,TRUE,,,Default,FALSE,479/19 วอยวัดปรก 2 ถนนจันทน์,แขวงทุ่งวัดดอน เขตสาทร,10120,กรุงเทพฯ,Thailand,02 - 675 6969,,02-6756202,,วัสดุสิ้นเปลือง ,,วัสดุสิ้นเปลือง เทปกาว,30 Days,3 +res_partner_expendables_127,คุณเอกฤทธิ์,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด สแตนดาร์ด เทป,res_partner_expendables_126,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_128,ห้างหุ้นส่วนจำกัด สมชาติฮาร์ดแวร์,SP03S063,TRUE,FALSE,TRUE,,,Default,FALSE,176 แขวงบุคคโล,เขตธนบุรี,10600,กรุงเทพฯ,Thailand,02-8760308-9,,02-4764452,,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,30 Days,3 +res_partner_expendables_129,สมหญิง,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด สมชาติฮาร์ดแวร์,res_partner_expendables_128,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_130,ห้างหุ้นส่วนจำกัด สีไดโน (สี RUST-OLEUM),SP03S064,TRUE,FALSE,TRUE,,,Default,FALSE,69 หมู่ 14 ถนนกิ่งแก้ว,ต.ราชาเทวะ อ.บางพลี,10540,สมุทรปราการ,Thailand," 02-175 2577 ,02-738 4111",,02 - 738 4341,,วัสดุสิ้นเปลือง ,,สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ,Cash,7 +res_partner_expendables_131,คุณเอ๋,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด สีไดโน (สี RUST-OLEUM),res_partner_expendables_130,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_132,ห้างหุ้นส่วนจำกัด อนุสรณ์ โปรดักส์,SP03S065,TRUE,FALSE,TRUE,,,Default,FALSE,92/7 ม.5 ถ.อ่อนนุช,แขวงประเวศ เขตประเวศ,10250,กรุงเทพฯ,Thailand,"02-3219448, 3223360",,"02-3215206, 3214402",,วัสดุสิ้นเปลือง ,,อุปกรณ์เซฟตี้,30 Days,3 +res_partner_expendables_133,คุณหนิง,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด อนุสรณ์ โปรดักส์,res_partner_expendables_132,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_expendables_134,คุณอั้ม,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด อนุสรณ์ โปรดักส์,res_partner_expendables_132,Contact,TRUE,,,,,Thailand,,085-1242709,,,,,,, +res_partner_expendables_135,ห้างหุ้นส่วนจำกัด สำโรงรวมกิจ,SP03S066,TRUE,FALSE,TRUE,,,Default,FALSE,"229,299/1-2 หมู่ 9 ถ.สุขุมวิท",ต.เทพารักษ์ อ.เมืองสมุทรปราการ,10270,สมุทรปราการ,Thailand, 02- 756-9980-85,,02-756-9978-79,,วัสดุสิ้นเปลือง ,,วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป,Cash,3 +res_partner_expendables_136,คุณประชา,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด สำโรงรวมกิจ,res_partner_expendables_135,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_1,บริษัท ควอซาร์ ซิสเท็ม จำกัด,SP06S0001,TRUE,FALSE,TRUE,,,Default,FALSE,264/7 ซ.ปรีดีพนมยงค์ ถฬสุขุมวิท 71,แขวงพระโขนงเหนือ เขตวัฒนา,10110,กรุงเทพฯ,Thailand,02-751 2929 ,,02-751 2988,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,- +res_partner_office_2,บริษัท มัลติเทค คอมพิวเตอร์ โซลูชั่น จำกัด,SP06S0002,TRUE,FALSE,TRUE,,,Default,FALSE,38 ม.3,ต.ท้ายบ้าน อ.เมือง,10280,สมุทรปราการ,Thailand,"04-0710364 / 02-7028098, 3892695",,02-3956129,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,Cash,7 +res_partner_office_3,แก้ว / โยธิน,,FALSE,FALSE,TRUE,บริษัท มัลติเทค คอมพิวเตอร์ โซลูชั่น จำกัด,res_partner_office_2,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_4,บริษัท ออฟฟิต เบส ดอท คอม จำกัด,SP06S0003,TRUE,FALSE,TRUE,,,Default,FALSE,"2371 Petchaburi Rd., 7/F Petchburi Bldg.",Bangkapi Huay - Kwang,10320,Bangkok,Thailand,0-2718-0818,, 0-2716-5663,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,7 +res_partner_office_5,คุณสุนทร,,FALSE,FALSE,TRUE,บริษัท ออฟฟิต เบส ดอท คอม จำกัด,res_partner_office_4,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_6,"NetSys & Computer Co.,Ltd.",SP06S0004,TRUE,FALSE,TRUE,,,Default,FALSE,842 ถนนประชาอุทิศ,แขวงสามเสนนอก เขตห้วยขวาง,10320,กรุงเทพฯ,Thailand,"66 (0) 2274 2924-6, 66 (0) 2274 4479",,66 (0) 2274 4614,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,- +res_partner_office_7,บริษัท แอมโปไมโครซิส จำกัด,SP06S0005,TRUE,FALSE,TRUE,,,Default,FALSE,99/349 อาคาร ณ นคร หมู่ที่ 2 ถนนแจ้งวัฒนะ,แขวงทุ่งสองห้อง เขตหลักสี่,,กรุงเทพฯ,Thailand,02-235-3999 ,,02-235-9939,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,7 +res_partner_office_8,คุณวรรณา,,FALSE,FALSE,TRUE,บริษัท แอมโปไมโครซิส จำกัด,res_partner_office_7,Contact,TRUE,,,,,Thailand,,"081-3745821, 086-340-9310",,,,,,, +res_partner_office_9,"LEO ELECTRONIC CO.,LTD.",SP06S0006,TRUE,FALSE,TRUE,,,Default,FALSE,"27 ,29 Bangna - Trad 34 ,","Bangna , Bangna Bangkok",10260,Bangkok,Thailand,"02-746 9500 ,02-746 8708",,02 - 746 8712,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,Cash,7 +res_partner_office_10,คุณหทัยชนก,,FALSE,FALSE,TRUE,"LEO ELECTRONIC CO.,LTD.",res_partner_office_9,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_11,บริษัท แคนนอน มาร์เก็ตติ้ง (ไทยแลนด์) จำกัด,SP06S0007,TRUE,FALSE,TRUE,,,Default,FALSE,179/34-35 อาคารบางกอกซิตี้ทาวเวอร์ ชั้น 9-10 ถนนสาทรใต้,แขวงทุ่งมหาเมฆ เขตสาทร,10120,กรุงเทพฯ,Thailand,0-2344-9999 ext 720-721/ 09-1404997,,0-2344-9960,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,3 +res_partner_office_12,คุณคมกฤษ,,FALSE,FALSE,TRUE,บริษัท แคนนอน มาร์เก็ตติ้ง (ไทยแลนด์) จำกัด,res_partner_office_11,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_13,ANGEL WATER SYSTEM,SP06S0008,TRUE,FALSE,TRUE,,,Default,FALSE,999/339 หมู่ที่ 6,แขวงหลักสอง เชตบางแค,10160,กรุงเทพฯ,Thailand,02 - 404 4001,,02 - 404 4003,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,60 Days,3 +res_partner_office_14,บริษัท ออฟฟิศเมท จำกัด (มหาชน),SP06S0009,TRUE,FALSE,TRUE,,,Default,FALSE,24 ซอยอ่อนนุช 66/1,แขวงสวนหลวง เขตสวนหลวง,10250,กรุงเทพฯ,Thailand,02- 739 5555 #155,,02-721 1717,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,3 +res_partner_office_15,คุณสมฤดี 155,,FALSE,FALSE,TRUE,บริษัท ออฟฟิศเมท จำกัด (มหาชน),res_partner_office_14,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_16,บริษัท เอ็ม-พลัส เทค จำกัด,SP06S0010,TRUE,FALSE,TRUE,,,Default,FALSE,4/6 ซ. รามคำแหง 30,แขวงหัวหมาก เขตบางกะปิ,10240,กรุงเทพฯ,Thailand,02-7322090,,02-7329435,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,3 +res_partner_office_17,มนต์ชัย,,FALSE,FALSE,TRUE,บริษัท เอ็ม-พลัส เทค จำกัด,res_partner_office_16,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_18,จิ๊บ,,FALSE,FALSE,TRUE,บริษัท เอ็ม-พลัส เทค จำกัด,res_partner_office_16,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_19,บริษัท ลีเรคโก ( ประเทศไทย ) จำกัด,SP06S0011,TRUE,FALSE,TRUE,,,Default,FALSE,41/10-11 หมู่ 6 ถนนบางนาตราด ก.ม.16.5,ตำบลบางโฉลง อำเภอบางพลี,10540,สมุทรปราการ,Thailand,02 338 0200,,02 349 6552,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,7 Days,3 +res_partner_office_20,บริษัท ไทยฟูจิซีร็อกซ์ จำกัด,SP06S0012,TRUE,FALSE,TRUE,,,Default,FALSE,123 อาคารซันทาวเวอร์ส เอ ชั้นที่ 23-26 ถนน วิภาวดีรังสิต,แขวงจอมพล เขตจตุจักร,10900,กรุงเทพฯ,Thailand,02-6796050-68,,02-6796048-9,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,3 +res_partner_office_21,บริษัท เอ็ม-พลัส เทค จำกัด,SP06S0013,TRUE,FALSE,TRUE,,,Default,FALSE,33/38 ม.10 ถ.เทพารักษ์,ต.บางปลา อ.บางพลี,10540,สมุทรปราการ,Thailand,0-2750-4852-8,09-1681699,0-2750-7299,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,15 +res_partner_office_22,คุณชูศักดิ์ ปู่หล่อ,,FALSE,FALSE,TRUE,บริษัท เอ็ม-พลัส เทค จำกัด,res_partner_office_21,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_23,บริษัท โปรเจคเตอร์ เวิลค์จำกัด,SP06S0014,TRUE,FALSE,TRUE,,,Default,FALSE,202 อาคารเลอ คองคอร์ด ชั้น 10 ถนนรัชดาภิเษก,แขวงสามเสนนอก เขตห้วยขวาง,10310,กรุงเทพฯ,Thailand,02-6942355 ต่อ 1,08-36666546,02-6942369,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,Cash,7 +res_partner_office_24,บริษัท ดำรงค์ชัย เซฟแอนด์สตีล เฟอร์นิเจอร์ จำกัด,SP06S0015,TRUE,FALSE,TRUE,,,Default,FALSE,1945/6-9 ม.1 ถ.สุขุมวิท,ต.สำโรงเหนือ อ.เมืองสมุทรปราการ,,สมุทรปราการ,Thailand,01-4037315 / 02-755 0955-65,, 0-2755 -0953-4,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,7 +res_partner_office_25,พิชชาพร (ออย),,FALSE,FALSE,TRUE,บริษัท ดำรงค์ชัย เซฟแอนด์สตีล เฟอร์นิเจอร์ จำกัด,res_partner_office_24,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_26,บริษัท เน็ตซีส แอนด์ คอมพิวเตอร์ จำกัด,SP06S0016,TRUE,FALSE,TRUE,,,Default,FALSE,842 ถนนประชาอุทิศ,แขวงสามเสนนอก เขตห้วยขวาง,10310,กรุงเทพฯ,Thailand,,,,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,7 +res_partner_office_27,บริษัท ไมร่า คอมพิวเตอร์ อินเตอร์ เนชั่นแนล จำกัด,SP06S0017,TRUE,FALSE,TRUE,,,Default,FALSE,"509, 511 ถนนรามอินทรา",แขวงคันนายาว เขต/อำเภอ คันนายาว,10230,กรุงเทพฯ,Thailand, 0-2943 0180-9 ,,0-2519 2825,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,7 +res_partner_office_28,การะเกษ# 1329,,FALSE,FALSE,TRUE,บริษัท ไมร่า คอมพิวเตอร์ อินเตอร์ เนชั่นแนล จำกัด,res_partner_office_27,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_29,คุณกรพิกุล,,FALSE,FALSE,TRUE,บริษัท ไมร่า คอมพิวเตอร์ อินเตอร์ เนชั่นแนล จำกัด,,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_30,บริษัท พีแอนด์เจ ฟรีเวย์ เทรดดิ้ง จำกัด (หมึก ),SP06S0018,TRUE,FALSE,TRUE,,,Default,FALSE,88 ซอยพร้อมพงษ์ ถนนสุขุมวิท 39,แขวงคลองตันเหนือ เขตวัฒนา,10110,กรุงเทพฯ,Thailand,02-7184110 /02-720 3496-7,,02-720 3495,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,3 +res_partner_office_31,คุณกวาง,,FALSE,FALSE,TRUE,บริษัท พีแอนด์เจ ฟรีเวย์ เทรดดิ้ง จำกัด (หมึก ),res_partner_office_30,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_32,บริษัท ที เอ็น . แม็คเน็ท เซ็นเตอร์ จำกัด (หมึก ),SP06S0019,TRUE,FALSE,TRUE,,,Default,FALSE,99/11 ม.6 ซ.พัฒนาชุมชน 1 ถ.ศรีนครินทร์,บางแก้ว อ.บางพลี,,สมุทรปราการ,Thailand," 02 - 348 - 2411 , 02 - 348 - 2422 ",,02 - 348 - 2424 - 5 ,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,60 Days,3 +res_partner_office_33,คุณหญิง,,FALSE,FALSE,TRUE,บริษัท ที เอ็น . แม็คเน็ท เซ็นเตอร์ จำกัด (หมึก ),res_partner_office_32,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_34,บริษัท ไอ.ที.โซลูชั่น คอมพิวเตอร์ (ไทยแลนด์) จำกัด,SP06S0020,TRUE,FALSE,TRUE,,,Default,FALSE,937 ถนนศรีนครินทร์,แขวงสวนหลวง เขตสวนหลวง,10250,กรุงเทพฯ,Thailand, 0-2725-6499 ,,0-2725-6499,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,3 +res_partner_office_35,คุณพัชมณ,,FALSE,FALSE,TRUE,บริษัท ไอ.ที.โซลูชั่น คอมพิวเตอร์ (ไทยแลนด์) จำกัด,res_partner_office_34,Contact,TRUE,,,,,Thailand,,085-143-3067,,,,,,, +res_partner_office_36,ห้างหุ้นส่วนจำกัด วุฒิชัยซัพพลายส์,SP06S0021,TRUE,FALSE,TRUE,,,Default,FALSE,736 ซ.เทอดไท 33 ถ.เทอดไท,แขวงบุคคโล เขตธนบุรี,10600,กรุงเทพฯ,Thailand,"05-1485133,0-2878-8021, 878-8033",,0-2878-8022,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,3 +res_partner_office_37,วิสูตรวุฒิ,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด วุฒิชัยซัพพลายส์,res_partner_office_36,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_38,คุณโป่ง,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด วุฒิชัยซัพพลายส์,res_partner_office_36,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_39,"Point IT Consulting Co., Ltd.",SP06S0022,TRUE,FALSE,TRUE,,,Default,FALSE,"17 Soi On Nut 35,","Kweng Suan Luang, Khet Suan Luang",10250,Bangkok,Thailand,666-322-8010, ,662-322-8011,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,,- +res_partner_office_40,Mr.Kreangkrai Sangseeda,,FALSE,FALSE,TRUE,"Point IT Consulting Co., Ltd.",res_partner_office_39,Contact,TRUE,,,,,Thailand,,087-083-7026,,,,,,, +res_partner_office_41,"ThaiBiz Provider Co.,Ltd.",SP06S0023,TRUE,FALSE,TRUE,,,Default,FALSE,99/23 เขตอุตสาหกรรมซอฟต์แวร์ชั้น 12 ถ.แจ้งวัฒนะ,คลองเกลือ ปากเกร็ด,11120,นนทบุรี,Thailand,02 - 962 2112 ,,02 - 962 7320 ,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,7 +res_partner_office_42,คุณนันทนา,,FALSE,FALSE,TRUE,"ThaiBiz Provider Co.,Ltd.",res_partner_office_41,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_43,บริษัท เอ เอ เปเปอร์ แอนด์ สเตชั่นเนอรี่ จำกัด,SP06S0024,TRUE,FALSE,TRUE,,,Default,FALSE,เลขที่ 109/2 หมู่ที่ 3,ต.บางสมัคร อ.บางประกง,24180,ฉะเชิงเทรา,Thailand," 02-659-1234 # 4 , 1759 # 4",, 02-659-1399,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,3 +res_partner_office_44,คุณบอย,,FALSE,FALSE,TRUE,บริษัท เอ เอ เปเปอร์ แอนด์ สเตชั่นเนอรี่ จำกัด,res_partner_office_43,Contact,TRUE,,,,,Thailand,,085-835 3281,,,,,,, +res_partner_office_45,ห้างหุ้นส่วนจำกัด เปเปอร์เทรดดิ้ง,SP06S0025,TRUE,FALSE,TRUE,,,Default,FALSE,11/37 ซ.พหลโยธิน 32 ถ.พหลโยธิน,แขวงเสนานิคม เขตจตุจักร,10900,กรุงเทพฯ,Thailand,02-5612099,,02-5612120,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,3 +res_partner_office_46,อ้วน,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด เปเปอร์เทรดดิ้ง,res_partner_office_45,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_47,บริษัท เค.พี.ไอ. เทรดดิ้ง จำกัด,SP06S0026,TRUE,FALSE,TRUE,,,Default,FALSE,47/2 หมู่ 1,แขวงพระโขนง เขตคลองเตย,10260,กรุงเทพฯ,Thailand,02-311 0413-5,,02-3110413-5 : 128-130,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,3 +res_partner_office_48,บอย,,FALSE,FALSE,TRUE,บริษัท เค.พี.ไอ. เทรดดิ้ง จำกัด,res_partner_office_47,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_49,บริษัท เอ็น พี เค มาสเตอร์แพลน จำกัด,SP06S0027,TRUE,FALSE,TRUE,,,Default,FALSE,11 - 13 ซอยบางนา-ตราด 12 ถ.บางนา-ตราด,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,"0-2749-1282, 749-2183",,0-2749-2185,,อุปกรณ์/เครื่องใช้สำนักงาน,,เครื่องใช้สำนักงาน ,30 Days,3 +res_partner_office_50,คุณสุกัญญา,,FALSE,FALSE,TRUE,บริษัท เอ็น พี เค มาสเตอร์แพลน จำกัด,res_partner_office_49,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_51,บริษัท ไทยแอมโน อินเตอร์เนชั่นแนล จำกัด,SP06S0028,TRUE,FALSE,TRUE,,,Default,FALSE,267/15 ซ.สุขุมวิท 63 ถ.สุขุมวิท,แขวงคลองตันเหนือ เขตวัฒนา,10110,กรุงเทพฯ,Thailand,02-3821523-5,,02-3819895,,อุปกรณ์/เครื่องใช้สำนักงาน,,"เครื่องใช้สำนักงาน ( บัตรตอก, ผ้าหมึก ) ",45 Days,3 +res_partner_office_52,เริงศักดิ์,,FALSE,FALSE,TRUE,บริษัท ไทยแอมโน อินเตอร์เนชั่นแนล จำกัด,res_partner_office_51,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_53,นุช,,FALSE,FALSE,TRUE,บริษัท ไทยแอมโน อินเตอร์เนชั่นแนล จำกัด,res_partner_office_51,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_54,ตั้ว,,FALSE,FALSE,TRUE,บริษัท ไทยแอมโน อินเตอร์เนชั่นแนล จำกัด,res_partner_office_51,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_55,บริษัท เทคโนวเลจ คอนซัลติง จำกัด,SP06S0029,TRUE,FALSE,TRUE,,,Default,FALSE,72 อาคาร PAV ชั้น 2 ซ.ลาดพร้าว 42 ถนนลาดพร้าว,แขวงสามเสนนอก เขตห้วยขวาง,10310,กรุงเทพฯ,Thailand,0-2513-9416 ,,0- 2513-9413,,อุปกรณ์/เครื่องใช้สำนักงาน,,"งานระบบ Hardware , software",30 Days,3 +res_partner_office_56,K. Wichet,,FALSE,FALSE,TRUE,บริษัท เทคโนวเลจ คอนซัลติง จำกัด,res_partner_office_55,Contact,TRUE,,,,,Thailand,,,089-031 2540,,,,,, +res_partner_office_57,คุณจักรพงษ์,,FALSE,FALSE,TRUE,บริษัท เทคโนวเลจ คอนซัลติง จำกัด,res_partner_office_55,Contact,TRUE,,,,,Thailand,,,"086-5719603,081-3187777",,,,,, +res_partner_office_58,บริษัท มายเซลส์ แอนด์ เซอร์วิส จำกัด,SP06S0030,TRUE,FALSE,TRUE,,,Default,FALSE,61/251 หมู่ 6 ถ.ลำลูกกา,ต.บึงคำพล้อย อ.ลำลูกกา,12150,ปทุมธานี,Thailand, 0-2987-9947 ,, 0-2987-9948,,อุปกรณ์/เครื่องใช้สำนักงาน,,ระบบ Telecom ,30 Days,3 +res_partner_office_59,คุณศรุต,,FALSE,FALSE,TRUE,บริษัท มายเซลส์ แอนด์ เซอร์วิส จำกัด,res_partner_office_58,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_60,บริษัท จัสมิน อินเตอร์เนต จำกัด,SP06S0031,TRUE,FALSE,TRUE,,,Default,FALSE,200 ม.4 อาคาร จัสมิน อินเตอร์เนชั่นแนล,ปากเกร็ด,11120,นนทบุรี,Thailand,02-502 - 3700-4,,02-502 3793 ,,อุปกรณ์/เครื่องใช้สำนักงาน,,ระบบโทรศัพท์,30 Days,3 +res_partner_office_61,คุณนัฐกร,,FALSE,FALSE,TRUE,บริษัท จัสมิน อินเตอร์เนต จำกัด,res_partner_office_60,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_62,บริษัท ซันไทย กรุ๊ป จำกัด,SP06S0032,TRUE,FALSE,TRUE,,,Default,FALSE,61/162 ทวีมิตร ซ.5 ถ.พระราม 9,แขวง/เขตห้วยขวาง,10320,กรุงเทพฯ,Thailand,"02-2479991-5, 7468994-5",,"02-2455122, 7468993",,อุปกรณ์/เครื่องใช้สำนักงาน,,ระบบโทรศัพท์,30 Days,3 +res_partner_office_63,คุณวนิดา,,FALSE,FALSE,TRUE,บริษัท ซันไทย กรุ๊ป จำกัด,res_partner_office_62,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_64,คุณอดุลย์,,FALSE,FALSE,TRUE,บริษัท ซันไทย กรุ๊ป จำกัด,res_partner_office_62,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_65,ห้างหุ้นส่วนจำกัด ซี. เอส. คอมมูนิเคชั่น เซอร์วิส,SP06S0033,TRUE,FALSE,TRUE,,,Default,FALSE,61/235 หมู่ที่ 6 ถ. ลำลูกกา,ต. บึงคำพร้อย อ.ลำลูกกา,12150,ปทุมธานี,Thailand,02 - 987 9947 ,,02 - 987 9948,,อุปกรณ์/เครื่องใช้สำนักงาน,,ระบบโทรศัพท์,30 Days,3 +res_partner_office_66,คุณวิชัย,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ซี. เอส. คอมมูนิเคชั่น เซอร์วิส,res_partner_office_65,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_67,บริษัท โสภณแพคกิ้ง จำกัด,SP07S001,TRUE,FALSE,TRUE,,,Default,FALSE,96 หมู่ 12,ต.บางพลีใหญ่ อ.บางพลี,10540,สมุทรปราการ,Thailand,02 - 316 - 9278 - 80 ,,02- 3169279 02 - 730 7300- 1,,อื่น ๆ ,,"PACKING / พาเลท ,ลังไม้",30 Days,7 +res_partner_office_68,คุณทวี,,FALSE,FALSE,TRUE,บริษัท โสภณแพคกิ้ง จำกัด,res_partner_office_67,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_69,คุณธนทัตต์,,FALSE,FALSE,TRUE,บริษัท โสภณแพคกิ้ง จำกัด,res_partner_office_67,Contact,TRUE,,,,,Thailand,,089-7714599,,,,,,, +res_partner_office_70,"SIAM WOOD INTERTRADE CO.,LTD.",SP07S002,TRUE,FALSE,TRUE,,,Default,FALSE,"38/1 Moo 1 Kingkaew Road,","T. Rachateva , A. Bangplee",10540,Samuthprakarn,Thailand,0-2750 0647 - 8,,0-2750 0649 ,,อื่น ๆ ,,"PACKING / พาเลท ,ลังไม้",30 Days,7 +res_partner_office_71,คุณวุฒิชัย,,FALSE,FALSE,TRUE,"SIAM WOOD INTERTRADE CO.,LTD.",res_partner_office_70,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_72,"DEUTSCHE FREIGHT LOGISTICE ( THAI) CO.,LTD.",SP07S003,TRUE,FALSE,TRUE,,,Default,FALSE,"138/23 Soi Ladprao 80 (Chantima),",Kwng/Khet Wangthonglang,10310,Bangkok,Thailand,(66) 2-995-3092-5 ,,"(66) 2-995-3389 , 3391",,อื่น ๆ ,,provide services on a worldwide basis,,45 +res_partner_office_73,"TOZEN (THAILAND ) CO.,LTD.",SP07S004,TRUE,FALSE,TRUE,,,Default,FALSE,3388/62 อาคารสิริริรรัตน์ พระราม 4,แขวงคลองจัน เขตคลองเตย,10110,กรุงเทพฯ,Thailand,0-2367-5721-8 ,,0-2367-5729,,อื่น ๆ ,,"TCI Texfilm 404/2 "" Fabric Expansion Joint ",30 Days,- +res_partner_office_74,คุณปานจิต,,FALSE,FALSE,TRUE,"TOZEN (THAILAND ) CO.,LTD.",res_partner_office_73,Contact,TRUE,,,,,Thailand,,, 081-859 2725 ,,,,,, +res_partner_office_75,ณสุบรร,,FALSE,FALSE,TRUE,"TOZEN (THAILAND ) CO.,LTD.",res_partner_office_73,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_76,บริษัท วาลิเทค จำกัด,SP07S005,TRUE,FALSE,TRUE,,,Default,FALSE,274 อาคารเอ2 ชั้นที่ 1 ซอยศูนย์วิจัย 4 (โรงเรียนญี่ปุ่น) ถนนพระราม 9,แขวงบางกะปิ เขตห้วยขวาง,10320,กรุงเทพฯ,Thailand,02 - 319 9769,,02 - 319 9770,,อื่น ๆ ,,Test Helpa ,30 Days,7 +res_partner_office_77,คุณพนิสรา,,FALSE,FALSE,TRUE,บริษัท วาลิเทค จำกัด,res_partner_office_76,Contact,TRUE,,,,,Thailand,,081-913 8832,,,,,,, +res_partner_office_78,"ACT ADVANCE COOL TECHNOLOGY CO.,LTD.",SP07S006,TRUE,FALSE,TRUE,,,Default,FALSE,"55/39 M.9 SOI CHOLLATEB 6.TEPARAK ROAD,","BANGPLEEYAI,BANGPLEE",10540,SAMUTPLAKARN,Thailand, 02-3123990-1 ,, 02-3123992,,อื่น ๆ ,,WATER CHILLER,Cash,15 +res_partner_office_79,คุณมงคล,,FALSE,FALSE,TRUE,"ACT ADVANCE COOL TECHNOLOGY CO.,LTD.",res_partner_office_78,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_80,บริษัท ไพธากอรัส เอส อี เอ จำกัด,SP07S007,TRUE,FALSE,TRUE,,,Default,FALSE,337,แขวงประเวศ เขตประเวศ,10250,กรุงเทพฯ,Thailand,02-7216969,,23202808027217500,,อื่น ๆ ,,"กล้องเลเซอร์ , คาริเบต",Cash,7 +res_partner_office_81,ชลดา,,FALSE,FALSE,TRUE,บริษัท ไพธากอรัส เอส อี เอ จำกัด,res_partner_office_80,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_82,ติ๊ก,,FALSE,FALSE,TRUE,บริษัท ไพธากอรัส เอส อี เอ จำกัด,res_partner_office_80,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_83,บริษัท สายทิพย์เอ็นจิเนียริ่ง จำกัด,SP07S008,TRUE,FALSE,TRUE,,,Default,FALSE,337,แขวงประเวศ เขตประเวศ,10250,กรุงเทพฯ,Thailand,02-7216969,,23202808027217500,,อื่น ๆ ,,"กล้องเลเซอร์ , คาริเบต",Cash,7 +res_partner_office_84,ชลดา,,FALSE,FALSE,TRUE,บริษัท สายทิพย์เอ็นจิเนียริ่ง จำกัด,res_partner_office_83,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_85,ติ๊ก,,FALSE,FALSE,TRUE,บริษัท สายทิพย์เอ็นจิเนียริ่ง จำกัด,res_partner_office_83,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_86,บริษัท เอส เอส อินเตอร์โปรดักส์ จำกัด,SP07S009,TRUE,FALSE,TRUE,,,Default,FALSE,21 ซ.ลาซาล 29,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,"0-2399-0331, 399-1382-3 (09-8951790)",,0-2398-5771,,อื่น ๆ ,,กาพ่นสี ,30 Days,3 +res_partner_office_87,คุณพัฒน์,,FALSE,FALSE,TRUE,บริษัท เอส เอส อินเตอร์โปรดักส์ จำกัด,res_partner_office_86,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_88,บริษัท เมมเบอร์ คอนโทรล & เซอร์วิส จำกัด,SP07S010,TRUE,FALSE,TRUE,,,Default,FALSE,"233/143-144 ถนนสรรพาวุธ คร + +","แขวงบางนา เขตบางนา + +",10260,กรุงเทพฯ,Thailand,"027453421, 027457874-5 ",,27455322,,อื่น ๆ ,,"กำจัดปลวก , ปลวก ",Cash,3 +res_partner_office_89,บริษัท เทวกิจ จำกัด,SP07S011,TRUE,FALSE,TRUE,,,Default,FALSE,282/23 การ์เด้นเพลส 1 ถ.รัชดาภิเษก ซ.รุ่งเรือง,แขวงสามเสนนอก เขตห้วยขวาง,10310,กรุงเทพฯ,Thailand,0-2693-4326-7 / 09-1255336,,0-2693-4336,,อื่น ๆ ,,ควบคุมงานสนามบินสุวรรณภูมิ,30 Days,7 +res_partner_office_90,คุณสุรศักดิ์,,FALSE,FALSE,TRUE,บริษัท เทวกิจ จำกัด,res_partner_office_89,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_91,คุณน้อง,,FALSE,FALSE,TRUE,บริษัท เทวกิจ จำกัด,res_partner_office_89,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_92,ห้างหุ้นส่วนจำกัด เจ. เอ็ม. คอนกรีตผสมสร็จ ( 1995 ),SP07S012,TRUE,FALSE,TRUE,,,Default,FALSE,121 หมู่ที่ 2 พนมสารคาม-สนามชัยเขต,เกาะขนุน พนมสารคาม,24120,ฉะเชิงเทรา,Thailand,038- 551 119 ,,038-836 536,,อื่น ๆ ,,คอนกรีต,30 Days,7 +res_partner_office_93,บริษัท แมคกราฟฟิค จำกัด,SP07S013,TRUE,FALSE,TRUE,,,Default,FALSE,158/9 หมู่ 9,ตำบลบางปลา อำเภอบางพลี,10540,สมุทรปราการ,Thailand,"0-2315-4722, 706-3096-7 (01-5639033)",,0-2315-4725,,อื่น ๆ ,,ค่าแรงไสเหล็ก,Cash,3 +res_partner_office_94,คุณอนุชา การสมชิต,,FALSE,FALSE,TRUE,บริษัท แมคกราฟฟิค จำกัด,res_partner_office_93,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_95,บริษัท ยีไทยอินเตอร์เนชั่นแนล จำกัด,SP07S014,TRUE,FALSE,TRUE,,,Default,FALSE,45 ถนนเฉลิมพระเกียรติ ร.๙ ซ. 48,แขวงดอกไม้ เขตประเวศ,10250,กรุงเทพฯ,Thailand,0-2726 7036 ,,0-2726 3734 ,,อื่น ๆ ,,เครื่องกรองน้ำ ,Cash,3 +res_partner_office_96,คุณเป้,,FALSE,FALSE,TRUE,บริษัท ยีไทยอินเตอร์เนชั่นแนล จำกัด,res_partner_office_95,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_97,บริษัท อัทโค จำกัด,SP07S015,TRUE,FALSE,TRUE,,,Default,FALSE,"35/489 หมู่ 3 หมู่บ้านภัสสร 3 ถนนเลียบคลองสาม +","ตำบลคลองสาม อำเภอคลองหลวง จังหวัดปทุมธานี +",,ปทุมธานี,Thailand,0-2661-4130,,0-2661-4133,,อื่น ๆ ,,เครื่องขัดพื้น,30 Days,- +res_partner_office_98,ขวัญฤทัย เอี่ยมต่อม,,FALSE,FALSE,TRUE,บริษัท อัทโค จำกัด,res_partner_office_97,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_99,บริษัท ตังไถ่แอคเซสซอรี จำกัด,SP07S016,TRUE,FALSE,TRUE,,,Default,FALSE,52/72 ซ.พระราม 2 - 59 ม.6 ถ.พระราม 2,แขวงแสมดำ เขตบางขุนเทียน,10150,กรุงเทพฯ,Thailand,0-2840-1229 / (01-4833963),,0-2894-1318,,อื่น ๆ ,,เครื่องจักรโรงงาน,30 Days,30 +res_partner_office_100,คุณศิริพาพร พิลาชัย,,FALSE,FALSE,TRUE,บริษัท ตังไถ่แอคเซสซอรี จำกัด,res_partner_office_99,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_101,บริษัท ตงชางเครื่องชั่ง (ประเทศไทย) จำกัด,SP07S017,TRUE,FALSE,TRUE,,,Default,FALSE,53/14 ม.5 ถ.เทพารักษ์ กม.11,ต.บางพลีใหญ่ อ.บางพลี,10540,สมุทรปราการ,Thailand,0-2730-4861-3 / 09-7995434,,0-2730-4864,,อื่น ๆ ,,เครื่องชั่ง ,60 Days,3 +res_partner_office_102,คุณไพศาล,,FALSE,FALSE,TRUE,บริษัท ตงชางเครื่องชั่ง (ประเทศไทย) จำกัด,res_partner_office_101,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_103,"FLOOR PRO SUMMIT CO.,LTD.",SP07S018,TRUE,FALSE,TRUE,,,Default,FALSE,42/1 MOO.2,"Mabpong , Panthong ,",20160,Chonburi,Thailand,038-209516,,038-451894,,อื่น ๆ ,,เครื่องชั่ง ,30 Days,- +res_partner_office_104,คุณประสงค์,,FALSE,FALSE,TRUE,"FLOOR PRO SUMMIT CO.,LTD.",res_partner_office_103,Contact,TRUE,,,,,Thailand,,086-1110033,,,,,,, +res_partner_office_105,บริษัท ลาฟา เทค จำกัด,SP07S019,TRUE,FALSE,TRUE,,,Default,FALSE,35 ซอยแสนสุข ประดิพัทธ์,แขวงสามเสนใน เขตพญาไท,10400,กรุงเทพฯ,Thailand,"02 - 6167500-9,022713823 ",,02 - 2710674 */ 02 - 6167509,,อื่น ๆ ,,เครื่องดูดฝุ่น,Cash,7 +res_partner_office_106,คุณอุทัยวรรณ,,FALSE,FALSE,TRUE,บริษัท ลาฟา เทค จำกัด,res_partner_office_105,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_107,บริษัท เอ็มบิส เอเชีย จำกัด,SP07S020,TRUE,FALSE,TRUE,,,Default,FALSE,"65/170 20th Fl., Chamnan Phenjati Bldg.,Rama 9 Rd.,","Huaykwang, Huaykwang,",10310,Bangkok,Thailand,02-2453334,,02-6431045,,อื่น ๆ ,,เครื่องตะไบเพชร Diamond,Cash,7 +res_partner_office_108,บัณฑิต,,FALSE,FALSE,TRUE,บริษัท เอ็มบิส เอเชีย จำกัด,res_partner_office_107,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_109,บริษัท เวิลด์แมชชีน เซ็นเตอร์ จำกัด,SP07S021,TRUE,FALSE,TRUE,,,Default,FALSE,99/5 ม.8 ถ.บางนา-ตราด,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,0-2746-9851-5,,0-2746-9850,,อื่น ๆ ,,เครื่องตัดมุม,30 Days,3 +res_partner_office_110,ศุภมิตร,,FALSE,FALSE,TRUE,บริษัท เวิลด์แมชชีน เซ็นเตอร์ จำกัด,res_partner_office_109,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_111,บริษัท วี.เอส.พี. กรุ๊ป จำกัด,SP07S022,TRUE,FALSE,TRUE,,,Default,FALSE,210 ถ.รัชดาภิเษก,แขวงบุคคโล เขตธนบุรี,10600,กรุงเทพฯ,Thailand,"0-2476-0522, 476-3572",,0-2476-9723,,อื่น ๆ ,,เครื่องทำความเย็น ,30 Days,3 +res_partner_office_112,สุรเชษฐ์,,FALSE,FALSE,TRUE,บริษัท วี.เอส.พี. กรุ๊ป จำกัด,res_partner_office_111,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_113,ห้างหุ้นส่วนจำกัด เทอร์โมวิศวกรรม (โฟมหุ้มท่อ),SP07S023,TRUE,FALSE,TRUE,,,Default,FALSE,24/69-71 ม.6 ซ.วัดยายร่ม ถ.พระราม 2,แขวงบางมด เขตจอมทอง,10150,กรุงเทพฯ,Thailand,"02-4279991-2, 8740463-4",,02-8740844,,อื่น ๆ ,,เครื่องทำความเย็น / (โฟมหุ้มท่อ ),Cash,3 +res_partner_office_114,บริษัท ไทยนิปปอนแอร์ จำกัด,SP07S024,TRUE,FALSE,TRUE,,,Default,FALSE,"44/141-2 ซอยถนอมมิตร รามอินทรา 65 + +","แขวงท่าแร้ง เขตบางเขน + +",10230,กรุงเทพฯ,Thailand,02-9459005-7,,02-9458587,,อื่น ๆ ,,เครื่องปรับอากาศ,Cash,3 +res_partner_office_115,ส้ม,,FALSE,FALSE,TRUE,บริษัท ไทยนิปปอนแอร์ จำกัด,res_partner_office_114,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_116,"HILTI ( THAILAND ) CO.,LTD",SP07S025,TRUE,FALSE,TRUE,,,Default,FALSE,"1858/31-32 อาคารเนชั่นทาวเวอร์ ชั้น 8 ถนนบางนา-ตราด กม. 4.5 + +","แขวงบางนา เขตบางนา + +",10260,กรุงเทพฯ,Thailand,+662 714 5300,,+662 714 5399,,อื่น ๆ ,,เครื่องมือช่าง ,60 Days,7 +res_partner_office_117,คุณวิชัย,,FALSE,FALSE,TRUE,"HILTI ( THAILAND ) CO.,LTD",res_partner_office_116,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_118,"TONAN ASIA AUTOTECH CO.,LTD.",SP07S026,TRUE,FALSE,TRUE,,,Default,FALSE,160/356 หมู่ 1 ถ.ช่างอากาศอุทิศ,แขวงสีกัน เขตดอนเมือง กรุงเทพฯ,,กรุงเทพฯ,Thailand,"0-2983-5227-8, 0-2983-5231-2 + +",,"0-2983-5229 +",,อื่น ๆ ,,เครื่องมือวัด ,Cash,7 +res_partner_office_119,คุณพัชรี,,FALSE,FALSE,TRUE,"TONAN ASIA AUTOTECH CO.,LTD.",res_partner_office_118,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_120,บริษัท แสงไทยอินเตอร์เทรด จำกัด,SP07S027,TRUE,FALSE,TRUE,,,Default,FALSE,"330-4 เจริญกรุง + +",แขวงจักรวรรดิ์ เขตสัมพันธวงศ์,10100,กรุงเทพฯ,Thailand,"02-2261232, 2243602, 2226252",,02-2241888,,อื่น ๆ ,,เครื่องเลื่อยสายพาน,,- +res_partner_office_121,อุดม ตรงมณีธรรม,,FALSE,FALSE,TRUE,บริษัท แสงไทยอินเตอร์เทรด จำกัด,res_partner_office_120,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_122,บริษัท ดิคเซลล์ ( เอเชีย ) จำกัด,SP07S028,TRUE,FALSE,TRUE,,,Default,FALSE,"2893 , 2895 ถ.พัฒนาการ",แขวงสวนหลวง เขตสวนหลวง,10250,กรุงเทพฯ,Thailand,"0-2321 3078, 722 - 0245 ",,0-2320 2520,,อื่น ๆ ,,เครื่องวัด,30 Days,- +res_partner_office_123,คุณกมลวรรณ ( ป่าน ),,FALSE,FALSE,TRUE,บริษัท ดิคเซลล์ ( เอเชีย ) จำกัด,res_partner_office_122,Contact,TRUE,,,,,Thailand,,081-6291708,,,,,,, +res_partner_office_124,"SHENZHEN ZHENXUN SCREEN PRINTING MACHINERY CO.,LTD.",SP07S029,TRUE,FALSE,TRUE,,,Default,FALSE,"No.7 Fengye Road 1, Fenhuang First Industrial Area, Fuyong Town,","Baooan District, Shenzhen",,,Thailand," +86 755 27378805 +",," +86 755 27378809 +",,อื่น ๆ ,,เครื่องสกรีนกระจก ,Cash,3 +res_partner_office_125,บริษัท ไทย พินนะเคิ้ล เอ็นจิเนียริ่ง จำกัด,SP07S030,TRUE,FALSE,TRUE,,,Default,FALSE,"8/1 ซอยเพชรเกษม 77 แยก 3-10 + +","แขวงหนองค้างพลู เขตหนองแขม + +",10160,กรุงเทพฯ,Thailand,02 - 8098915-8,,02 - 8098933,,อื่น ๆ ,,เครื่องสูบน้ำในบ้านและโรงงานอุตสาหกรรม ,,- +res_partner_office_126,บริษัท แมชชีนิโอโทรนิค จำกัด,SP07S031,TRUE,FALSE,TRUE,,,Default,FALSE,"17/100 ซอยเพชรเกษม 81 มาเจริญ + +","แขวงหนองค้างพลู เขตหนองแขม + +",10160,กรุงเทพฯ,Thailand,"0-2812-4988 ,0-2812-3381 , 0-2812-1576- 8, 0-2814-6238",,02-812-4989,,อื่น ๆ ,,เครื่องอัดกระดาษ,,- +res_partner_office_127,คุณนำพล,,FALSE,FALSE,TRUE,บริษัท แมชชีนิโอโทรนิค จำกัด,res_partner_office_126,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_128,บริษัท ไลท์ติ้ง แอนด์ อีควิปเมนท์ จำกัด (มหาชน),SP07S032,TRUE,FALSE,TRUE,,,Default,FALSE,539/2 ชั้น 16-17 อาคารมหานครยิบซั่ม,ถ.ศรีอยุธยา,10400,กรุงเทพฯ,Thailand,"02-2488133, 02-6425092",,"02-6425091, 2488144",,อื่น ๆ ,,โคมคลีนรูม,30 Days,3 +res_partner_office_129,จุฑา,,FALSE,FALSE,TRUE,บริษัท ไลท์ติ้ง แอนด์ อีควิปเมนท์ จำกัด (มหาชน),res_partner_office_128,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_130,"Fight Engi - Trade Co.,Ltd.",SP07S033,TRUE,FALSE,TRUE,,,Default,FALSE,"47/7 Moo 6 Phathumthani-Ladlumkaew,","Khu Bangluang, Latlumkaew",12140,Pathum Thani,Thailand,(66) 2979 4771 to 3,,(66) 2979 4775 ,,อื่น ๆ ,,โครงกระตูบ้าน ,Cash,5 +res_partner_office_131,บริษัท ร้อคกรีต ( ประเทศไทย) จำกัด,SP07S034,TRUE,FALSE,TRUE,,,Default,FALSE,37/4 ซ.จามจุรี ถ.รามอินทรา 39,"แขวงท่าแร้ง เขตบางเขน + +",10220,กรุงเทพฯ,Thailand,02- 973 1796 ,,02-973 1798,,อื่น ๆ ,,งานคอนกรีต,60 Days,3 +res_partner_office_132,บริษัท ร๊อค เอเชีย,SP07S035,TRUE,FALSE,TRUE,,,Default,FALSE,107 หมู่ 2,ตำบลบางสมัคร อำเภอบางปะกง,24180,ฉะเชิงเทรา,Thailand,038-540241,,038-538 397,,อื่น ๆ ,,งานเจาะรู มตะแกรง,,- +res_partner_office_133,คุณนุจรี ขันธรูป,,FALSE,FALSE,TRUE,บริษัท ร๊อค เอเชีย,res_partner_office_132,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_134,บริษัท เค. ซี. ไอ. เอ็นจิเนียริ่ง จำกัด,SP07S036,TRUE,FALSE,TRUE,,,Default,FALSE,81/9 ม.2,ต.สามโคก อ.สามโคก,12160,ปทุมธานี,Thailand,0-2979 1400-8 / ,,"02 - 979 13999 , 02-9791678",,อื่น ๆ ,,"งานซ่อมสลิง / สลิง , รอก",30 Days,- +res_partner_office_135,คุณแอน,,FALSE,FALSE,TRUE,บริษัท เค. ซี. ไอ. เอ็นจิเนียริ่ง จำกัด,res_partner_office_134,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_136,คุณวัฒนา,,FALSE,FALSE,TRUE,บริษัท เค. ซี. ไอ. เอ็นจิเนียริ่ง จำกัด,res_partner_office_134,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_137,บริษัท อี.เอ็ม.ทีม จำกัด,SP07S037,TRUE,FALSE,TRUE,,,Default,FALSE,679/92 ซ.ประชาอุทิศ 45 ม.1 ถ.ประชาอุทิศ,แขวงบางมด เขตทุ่งครุ,10140,กรุงเทพฯ,Thailand,"0-2427-9047, 427-0885, 872-6495",,0-2872-6496,,อื่น ๆ ,,งานต่อเติมโรงงาน,,- +res_partner_office_138,นัททโชติ,,FALSE,FALSE,TRUE,บริษัท อี.เอ็ม.ทีม จำกัด,res_partner_office_137,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_139,บริษัท พี.พี.เค. อินดัสตรี้ส์ จำกัด,SP07S038,TRUE,FALSE,TRUE,,,Default,FALSE,32 ซอยอมรพันธ์ 4 ถ.วิภาวดีรังสิต,แขวงลาดยาว เขต จตุจักร,10900,กรุงเทพฯ,Thailand,"02-561 1309 ,02-5796026,02-941 2653",,02-941 0239,,อื่น ๆ ,,งานตะแกรงห้องเย็น,30 Days,- +res_partner_office_140,บริษัท เอส พลัส ซิสเทมส์ จำกัด,SP07S039,TRUE,FALSE,TRUE,,,Default,FALSE,4/10 ซ.เทศบาล43 ( เกษม) ถ.สุขุมวิท,ต.ปากน้ำ อ.เมือง,10270,สมุทรปราการ,Thailand," 0-2744 1027 - 8 , 0 - 2744 1681",,0-2744 1680 ,,อื่น ๆ ,,งานพ่นสี,Cash,- +res_partner_office_141,คุณชัชวาลย์,,FALSE,FALSE,TRUE,บริษัท เอส พลัส ซิสเทมส์ จำกัด,res_partner_office_140,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_142,คุณวิรัช,,FALSE,FALSE,TRUE,บริษัท เอส พลัส ซิสเทมส์ จำกัด,res_partner_office_140,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_143,หจก. ปัญชะยา ครีเอชั่น,SP07S040,TRUE,FALSE,TRUE,,,Default,FALSE,72 ซอยลาดปลาเค้า 14,แขวงจรเข้บัว เขตลาดพร้าว,10230,กรุงเทพฯ,Thailand," 02 - 940 3981, 02- 9403813",,"02 - 940 3981, 02- 9403813 # 6",,อื่น ๆ ,,งานพิมพ์,Cash,15 +res_partner_office_144,คุณชญาน์,,FALSE,FALSE,TRUE,หจก. ปัญชะยา ครีเอชั่น,res_partner_office_143,Contact,TRUE,,,,,Thailand,,089 - 846 4486,,,,,,, +res_partner_office_145,บริษัท เน็กซ์สเต็ป วิชั่น จำกัด,SP07S041,TRUE,FALSE,TRUE,,,Default,FALSE,17/93 หมู่ที่ 10 ซอยลาดพร้าว 41 ถนนสุขาภิบาล 1,แขวงลาดพร้าว เขตลาดพร้าว,10230,กรุงเทพฯ,Thailand,"02-5424269, 9328334",,02-9328334,,อื่น ๆ ,,งานพิมพ์,Cash,15 +res_partner_office_146,ฐิติกา,,FALSE,FALSE,TRUE,บริษัท เน็กซ์สเต็ป วิชั่น จำกัด,res_partner_office_145,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_147,"MEGAWEB CO.,LTD.",SP07S042,TRUE,FALSE,TRUE,,,Default,FALSE,748/63 ซ.ริมคลองบางกอกใหญ่ ถ.เพชรเกษม,แขวงวัดท่าพระ เขตบางกอกใหญ่,10600,กรุงเทพฯ,Thailand,0-2891-7400-1 ,, 0-2891-7019,,อื่น ๆ ,,งานระบบ IT ,Cash,15 +res_partner_office_148,คุณประทักษ์,,FALSE,FALSE,TRUE,"MEGAWEB CO.,LTD.",res_partner_office_147,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_149,"Three Mar Co.,Ltd.",SP07S043,TRUE,FALSE,TRUE,,,Default,FALSE,"99/293 Soi Ladprao 41 ,","Chankasem ,Jatujak ,",10900,Bangkok,Thailand,02-939 9664-5 ,,02- 5418296,,อื่น ๆ ,,งานพิมพ์ ,15 Days,15 +res_partner_office_150,สงวนศักดิ์ การพิมพ์,SP07S044,TRUE,FALSE,TRUE,,,Default,FALSE,43/35 ม.11 ซ.อ่อนนุช 66 ถ.สุขุมวิท 77,แขวงประเวศ เขตประเวศ,10250,กรุงเทพฯ,Thailand,"02-7211331, 3229234",,02-7211331,,อื่น ๆ ,,งานพิมพ์ ,30 Days,15 +res_partner_office_151,คุณสงวนศักดิ์,,FALSE,FALSE,TRUE,สงวนศักดิ์ การพิมพ์,res_partner_office_150,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_152,บริษัท เอ โมลด์ ( ประเทศไทย ) จำกัด,SP07S045,TRUE,FALSE,TRUE,,,Default,FALSE,"244/2-3 หมู่ที่ 1 +","ตำบลบางเสาธง อำเภอกิ่งอำเภอบางเสาธง +",,สมุทรปราการ,Thailand,0- 2706 - 2323 ,,0-2313 1340,,อื่น ๆ ,,งานโมลด์ ในโรงงาน ,30 Days,- +res_partner_office_153,คุณไสวิจิตร,,FALSE,FALSE,TRUE,บริษัท เอ โมลด์ ( ประเทศไทย ) จำกัด,res_partner_office_152,Contact,TRUE,,,,,Thailand,,087-9308673,,,,,,, +res_partner_office_154,บริษัท เวอร์ทัส จำกัด,SP07S046,TRUE,FALSE,TRUE,,,Default,FALSE,120 ซอย สมถวิล ตากสิน 44 ถ.ตากสิน,แขวงบุคคโล เขตธนบุรี,10600,กรุงเทพฯ,Thailand,"02- 876 2727 ,02 - 876 2828 ",,0 2 - 476 1711,,อื่น ๆ ,,จัดจำหน่ายประกับเพลาและอุปกรณ์ส่งกำลัง ,30 Days,- +res_partner_office_155,คุณเสริมศักดิ์,,FALSE,FALSE,TRUE,บริษัท เวอร์ทัส จำกัด,res_partner_office_154,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_156,บริษัท เซนเทค สเกล แอนด์ อินสตรูเมนท์ จำกัด,SP07S047,TRUE,FALSE,TRUE,,,Default,FALSE,167/20-2 เทอดไท,"แขวงปากคลองภาษีเจริญ เขตภาษีเจริญ + +",10160,กรุงเทพฯ,Thailand," 0-2457-3693, 0-2457-4526, 0-2457-1521 ",,0-2869-2305,,อื่น ๆ ,,จำหน่ายเครื่องชั่ง และเครื่องวัดทุกประเภท ,30 Days,3 +res_partner_office_157,คุณน้อง,,FALSE,FALSE,TRUE,บริษัท เซนเทค สเกล แอนด์ อินสตรูเมนท์ จำกัด,res_partner_office_156,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_158,ห้างหุ้นส่วนจำกัด ก. เศรษฐกิจ,SP07S048,TRUE,FALSE,TRUE,,,Default,FALSE,"31 จรัญสนิทวงศ์ + +","แขวงบางบำหรุ เขตบางพลัด + +",10700,กรุงเทพฯ,Thailand,"02 - 8818180-2,02 - 4347754",,02 - 8818183,,อื่น ๆ ,,จำหน่ายปั๊มลม เครื่องพ่น ตู้พ่น วัสดุพ่น สี ทราย ,Cash,3 +res_partner_office_159,บริษัท เมโทรซิสเต็มส์คอร์ปอเรชั่น จำกัด (มหาชน),SP07S049,TRUE,FALSE,TRUE,,,Default,FALSE,23/3 ม.9 ถ.สุขุมวิท 103,แขวงหนองบอน เขตประเวศ,10250,กรุงเทพฯ,Thailand,"02-7262555, 2828, 7274000",,"02-7262630-1, 5",,อื่น ๆ ,,จำหน่ายและติดตั้งอุปกรณ์ฮาร์ดแวร์ คอมพิวเตอร์ ,Cash,3 +res_partner_office_160,บริษัท 2 พี. ที. จำกัด,SP07S050,TRUE,FALSE,TRUE,,,Default,FALSE,26/3 ม.12 สุขุมวิท 103,แวงดอกไม้ เขตประเวศ,10260,กรุงเทพฯ,Thailand,02 -726 2675-7 ,,02-726 2674,,อื่น ๆ ,,จำหน่ายส่งเครื่องทำความเย็น,30 Days,3 +res_partner_office_161,"SANGCHAI REFRIGERATION CO.,LTD.",SP07S051,TRUE,FALSE,TRUE,,,Default,FALSE,283 ถนนหลานหลวง,แขวงโสมนัส เขตป้อมปราบ ฯ,10110,กรุงเทพฯ,Thailand,02-628 2600 ม 02- 280 3444 ,,"02-628 0484 - 5 , 02- 2280-0352",,อื่น ๆ ,,จำหน่ายส่งเครื่องทำความเย็น,60 Days,7 +res_partner_office_162,คุณนพดล,,FALSE,FALSE,TRUE,"SANGCHAI REFRIGERATION CO.,LTD.",res_partner_office_161,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_163,คุณศุภชัย,,FALSE,FALSE,TRUE,"SANGCHAI REFRIGERATION CO.,LTD.",res_partner_office_161,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_164,บริษัท ชิลแมทช์ จำกัด,SP07S052,TRUE,FALSE,TRUE,,,Default,FALSE,19/20-22 ซ.ศูนย์วิจัย ถ.พระราม 9,บางกะปิ ห้วยขวาง,10310,กรุงเทพฯ,Thailand,"0-2203-0357 ต่อ 219, 01-6441437",,0-2203-0798,,อื่น ๆ ,,จำหน่ายส่งเครื่องทำความเย็น,Cash,3 +res_partner_office_165,คุณศิริกานต์,,FALSE,FALSE,TRUE,บริษัท ชิลแมทช์ จำกัด,res_partner_office_164,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_166,บริษัท ดีเอชแอล เอ๊กซ์เพรส (ประเทศไทย) จำกัด,SP07S053,TRUE,FALSE,TRUE,,,Default,FALSE,175 อาคารสาธรซิตี้ทาวเวอร์ ชั้น 7/1 และ 8/1 ถ.สาทรใต้,แขวงทุ่งมหาเมฆ เขตสาทร,10120,กรุงเทพฯ,Thailand,02-3455163 / 02-3455111,,"02-2855642, 2855549",,อื่น ๆ ,,ชิปปิ้ง,Cash,3 +res_partner_office_167,ปนิธิ,,FALSE,FALSE,TRUE,บริษัท ดีเอชแอล เอ๊กซ์เพรส (ประเทศไทย) จำกัด,res_partner_office_166,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_168,บริษัท นิมเบิล ชิปปิ้ง เซอร์วิส จำกัด,SP07S054,TRUE,FALSE,TRUE,,,Default,FALSE,79 ซ. เจริญนคร,แขวงบางลำภูล่าง เขตคลองสาน,10600,กรุงเทพฯ,Thailand,"02-8602582, 8601003-4",,02-4396345 : 18,,อื่น ๆ ,,ชิปปิ้ง,30 Days,3 +res_partner_office_169,ทิพย์,,FALSE,FALSE,TRUE,บริษัท นิมเบิล ชิปปิ้ง เซอร์วิส จำกัด,res_partner_office_168,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_170,น้ำ,,FALSE,FALSE,TRUE,บริษัท นิมเบิล ชิปปิ้ง เซอร์วิส จำกัด,res_partner_office_168,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_171,หมวย(บ/ช),,FALSE,FALSE,TRUE,บริษัท นิมเบิล ชิปปิ้ง เซอร์วิส จำกัด,res_partner_office_168,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_172,บริษัท โปรเฟรท อินเตอร์เนชั่นแนล จำกัด,SP07S055,TRUE,FALSE,TRUE,,,Default,FALSE,87/90-91 อาคารโมเดอร์นทาวน์ (เอกมัย 3) ถ.สุขุมวิท 63,แขวงคลองตันเหนือ เขตวัฒนา,10110,กรุงเทพฯ,Thailand,02-7116111,,02-7116112,,อื่น ๆ ,,ชิปปิ้ง,30 Days,3 +res_partner_office_173,บริษัท ไวส์เฟรทเซอร์วิสเซส (ประเทศไทย) จำกัด,SP07S056,TRUE,FALSE,TRUE,,,Default,FALSE,1/66 ซ.บุบผาบุรี ถ.นนทรี,แขวงช่องนนทรี เขตยานนาวา,10120,กรุงเทพฯ,Thailand,0-2681-6181,,0-2681-6173-5,,อื่น ๆ ,,ชิปปิ้ง,60 Days,3 +res_partner_office_174,อ้วน,,FALSE,FALSE,TRUE,บริษัท ไวส์เฟรทเซอร์วิสเซส (ประเทศไทย) จำกัด,res_partner_office_173,Contact,TRUE,,,,,Thailand,,081-4504840,,,,,,, +res_partner_office_175,บริษัท อีสต์เอเชีย ชิปปิ้ง (ประเทศไทย) จำกัด,SP07S057,TRUE,FALSE,TRUE,,,Default,FALSE,109 อาคาร ซี.ซี.ที. ชั้น 10 ถ.สุรวงศ์,แขวงสุริยวงศ์ เขตบางรัก,10500,กรุงเทพฯ,Thailand,"02-2362866,2896,2903,0115,2930",,"02-2380918, 6340373",,อื่น ๆ ,,ชิปปิ้ง,Cash, +res_partner_office_176,ศิริชัย,,FALSE,FALSE,TRUE,บริษัท อีสต์เอเชีย ชิปปิ้ง (ประเทศไทย) จำกัด,res_partner_office_175,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_177,ตุ๊ก,,FALSE,FALSE,TRUE,บริษัท อีสต์เอเชีย ชิปปิ้ง (ประเทศไทย) จำกัด,res_partner_office_175,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_178,บริษัท พีเอ็ม ออโตเมชั่น (ประเทศไทย) จำกัด,SP07S058,TRUE,FALSE,TRUE,,,Default,FALSE,96 ลาดพร้าว 115 ถ.ลาดพร้าว,แขวงคลองจั่น เขตบางกะปิ,10240,กรุงเทพฯ,Thailand,0-704 9104-5,,0-2377 5036,,อื่น ๆ ,,ซ่อมเครื่อง Printer ,60 Days,3 +res_partner_office_179,คุณรุ้งลาวัลย์,,FALSE,FALSE,TRUE,บริษัท พีเอ็ม ออโตเมชั่น (ประเทศไทย) จำกัด,res_partner_office_178,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_180,บริษัท เจ.ซี.เค. สตีล แอนด์ ออโตพาร์ท จำกัด,SP07S059,TRUE,FALSE,TRUE,,,Default,FALSE,306/254-255 ม.11,ต.บางพลีใหญ่ อ.บางพลี,10540,สมุทรปราการ,Thailand,"(01-8591813) 0-2752-0223, 752-0786",,0-2752-0622,,อื่น ๆ ,,"โซ่, สายรัด",,- +res_partner_office_181,จรรยา พันสาย,,FALSE,FALSE,TRUE,บริษัท เจ.ซี.เค. สตีล แอนด์ ออโตพาร์ท จำกัด,res_partner_office_180,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_182,บริษัท สยามอินสเป็คชั่น แอนด์ เอ็นจิเนียริ่ง จำกัด,SP07S060,TRUE,FALSE,TRUE,,,Default,FALSE,201/203 หมู่ 7 บางนา-ตราด กม 24,ตำบลบางเสาธง อำเภอบางเสาธง,10540,สมุทรปราการ,Thailand,"02- 7401726-7,027404661-3",,27401706,,อื่น ๆ ,,ตรวจสอบเครน,30 Days,- +res_partner_office_183,บริษัท เอส. เอ็ม. เซ็นเตอร์ แลบ จำกัด,SP07S061,TRUE,FALSE,TRUE,,,Default,FALSE,251/24 หมู่ 12 ถ. สุขุมวิท,ต. บางพระ อ. ศรีราชา,20110,ชลบุรี,Thailand,"087- 868 3042 ,038-342 024",, 038-342 024 ,,อื่น ๆ ,,ตรวจสุขภาพ ,,- +res_partner_office_184,คุณแหม่ม,,FALSE,FALSE,TRUE,บริษัท เอส. เอ็ม. เซ็นเตอร์ แลบ จำกัด,res_partner_office_183,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_185,คุณจินดา,,FALSE,FALSE,TRUE,บริษัท เอส. เอ็ม. เซ็นเตอร์ แลบ จำกัด,res_partner_office_183,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_186,บริษัท พรชัยทัวร์และการท่องเที่ยว จำกัด,SP07S062,TRUE,FALSE,TRUE,,,Default,FALSE,223/14-15 ม.5 ถ.ศรีนครินทร์,ต.สำโรงเหนือ อ.เมือง,10270,สมุทรปราการ,Thailand,0-2758-6495/385-7328/385-7383,,0-2758-6496,,อื่น ๆ ,,ตั๋วเครื่องบิน,7 Days,3 +res_partner_office_187,คุณปู,,FALSE,FALSE,TRUE,บริษัท พรชัยทัวร์และการท่องเที่ยว จำกัด,res_partner_office_186,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_188,คุณเป็ด,,FALSE,FALSE,TRUE,บริษัท พรชัยทัวร์และการท่องเที่ยว จำกัด,res_partner_office_186,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_189,"AUTOMATION SERVICE CO.,LTD.",SP07S063,TRUE,FALSE,TRUE,,,Default,FALSE,4 ซอยชุ่มชื่น ถนนอโศก-ดินแดง,แขวงดินแดง เขตดินแดง กรุงเทพฯ,,กรุงเทพฯ,Thailand," 0-2246-0330 , 0-2246-0200 ",,"0-2248-4961,0-2246-0235 ",,อื่น ๆ ,,ตัวแทนจำหน่าย ติดตั้ง chino controller recorders ระบบวัด ...,30 Days,- +res_partner_office_190,บริษัท สปริงคูล จำกัด,SP07S064,TRUE,FALSE,TRUE,,,Default,FALSE,265/395 ซอยทวีวัฒนา สาธุประดิษฐ์ 5,แขวงช่องนนทรี เขตยานนาวา,10120,กรุงเทพฯ,Thailand,"022128360-1,026740565-6,026740563-4",,02 - 2127126,,อื่น ๆ ,,ติดตั้งระบบไฟฟ้า ประปา แอร์ ,30 Days,- +res_partner_office_191,บริษัท เค ทู วิน จำกัด,SP07S065,TRUE,FALSE,TRUE,,,Default,FALSE,102/3 หมู่ 3 ถ. ปทุมธานี - สามโคก,อ.สามโคก,12160,ปทุมธานี,Thailand,02- 581 - 7220 -1,,02 - 581 7220 - 1 # 10,,อื่น ๆ ,,ติดตั้งหลังคาดมทัลชีท,30 Days,- +res_partner_office_192,คุณโกญจนาท,,FALSE,FALSE,TRUE,บริษัท เค ทู วิน จำกัด,res_partner_office_191,Contact,TRUE,,,,,Thailand,,081 - 420 7343 ,,,,,,, +res_partner_office_193,บริษัท จีซีเอส กรุ๊ปคอร์ปอเรชั่น จำกัด,SP07S066,TRUE,FALSE,TRUE,,,Default,FALSE,88/8 หมู่ 1,ต.คลองด่าน อ.บางบ่อ,10550,สมุทรปราการ,Thailand,02 - 183-8812 – 5 ,,02 - 183 8817 ,,อื่น ๆ ,,ตู้ USED CONTAINER,Cash,- +res_partner_office_194,คุณสุจิตร,,FALSE,FALSE,TRUE,บริษัท จีซีเอส กรุ๊ปคอร์ปอเรชั่น จำกัด,res_partner_office_193,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_195,คุณอรวรรณ,,FALSE,FALSE,TRUE,บริษัท จีซีเอส กรุ๊ปคอร์ปอเรชั่น จำกัด,res_partner_office_193,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_196,"BANGPLEE CAR HOUSE LITD.,PART",SP07S067,TRUE,FALSE,TRUE,,,Default,FALSE,"79/3 Moo. 3 Theparak Rd.,",Bangpleeyai Bangplee,10540,Samuthprakarn,Thailand,02- 755 3260 - 1 # 23 ,,02-312 3064,,อื่น ๆ ,,ตู้คอนเทนเนอร์ ,Cash,- +res_partner_office_197,คุณโอ๋,,FALSE,FALSE,TRUE,"BANGPLEE CAR HOUSE LITD.,PART",res_partner_office_196,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_198,บริษัท กิตติ คอนเทนเนอร์ จำกัด,SP07S068,TRUE,FALSE,TRUE,,,Default,FALSE,4/6 หมู่ 12,ต.บึงคำพร้อย อ.ลำลูกกา,12150,ปทุมธานี,Thailand,"02-9974600-1, 02-9974844-5 ",,"02-9974899, ",,อื่น ๆ ,,ตู้คอนเทนเนอร์ ,30 Days,- +res_partner_office_199,คุณอุ๊,,FALSE,FALSE,TRUE,บริษัท กิตติ คอนเทนเนอร์ จำกัด,res_partner_office_198,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_200,ห้างหุ้นส่วนจำกัด บางพลีคอนเทนเนอร์,SP07S069,TRUE,FALSE,TRUE,,,Default,FALSE,21/367 หมู่ที่ 18,ต.บางพลีใหญ่ อ.บางพลี,10540,สมุทรปราการ,Thailand, 02-3164881-2 / 081-3510203,,02-752-0438,,อื่น ๆ ,,ตู้คอนเทนเนอร์ ,Cash,- +res_partner_office_201,คุณวาสนา คำสวัสดิ์ (โอ๋),,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด บางพลีคอนเทนเนอร์,res_partner_office_200,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_202,บริษัท สยามคูลเลอร์ อินดัสทรี้ จำกัด / บริษัท สยามคูลเลอร์ มาร์ท จำกัด,SP07S070,TRUE,FALSE,TRUE,,,Default,FALSE,33/1490 หมู่ 10 ซ.โชคชัย 4 แยก 54 ถ.โชคชัย 4,แขวงลาดพร้าว เขตลาดพร้าว,10230,กรุงเทพฯ,Thailand,"0-2539-2630,0-2931-1381 ",,0-2539-2607,,อื่น ๆ ,,ตู้ทำน้ำเย็น,30 Days,3 +res_partner_office_203,คุณวัชรพงศ์,,FALSE,FALSE,TRUE,บริษัท สยามคูลเลอร์ อินดัสทรี้ จำกัด / บริษัท สยามคูลเลอร์ มาร์ท จำกัด,res_partner_office_202,Contact,TRUE,,,,,Thailand,,086 - 311 3572,,,,,,, +res_partner_office_204,คุณมนตรี,,FALSE,FALSE,TRUE,บริษัท สยามคูลเลอร์ อินดัสทรี้ จำกัด / บริษัท สยามคูลเลอร์ มาร์ท จำกัด,res_partner_office_202,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_205,บริษัท มิชชั่น เคมิคอล จำกัด,SP07S071,TRUE,FALSE,TRUE,,,Default,FALSE,93/48 ม.1,แขวงสายไหม เขตสายไหม,10220,กรุงเทพฯ,Thailand,(04-7295733) 0-2994-3256,,0-2994-3256,,อื่น ๆ ,,ถังดับเพลิง,,3 +res_partner_office_206,วรโชติ,,FALSE,FALSE,TRUE,บริษัท มิชชั่น เคมิคอล จำกัด,res_partner_office_205,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_207,ห้างหุ้นส่วนจำกัด ไทยแสงฮวด,SP07S072,TRUE,FALSE,TRUE,,,Default,FALSE,21/207-208 ถ.บางนา-ตราด กม.2,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,"02-3930780-1, 749-1364-6",,02-7491367,,อื่น ๆ ,,"ถังเหล็ก, ถังสแตนเลส",30 Days,3 +res_partner_office_208,คุณลาวัลย์,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ไทยแสงฮวด,res_partner_office_207,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_209,บริษัท สเปซ มีเดีย จำกัด,SP07S073,TRUE,FALSE,TRUE,,,Default,FALSE,48 หมู่ 2 ถนนสุขุมวิท 103,แขวงดอกไม้ เขตประเวศ,10250,กรุงเทพฯ,Thailand, 02-3280888 ,,02-3280324,,อื่น ๆ ,,ทำป้ายโฆษณา,30 Days,3 +res_partner_office_210,คุณชนกชนน์,,FALSE,FALSE,TRUE,บริษัท สเปซ มีเดีย จำกัด,res_partner_office_209,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_211,สยามวิศวกรรมและการพานิช,SP07S074,TRUE,FALSE,TRUE,,,Default,FALSE,10/2 ซ.สุขสวัสดิ์ 70,ต.บางครุ พระประแดง,10130,สมุทรปราการ,Thailand,"02 -4633274, 02-4641439,024637121",,02 -4633274,,อื่น ๆ ,,ทำผ้าใบ,Cash,3 +res_partner_office_212,คุณชาติ,,FALSE,FALSE,TRUE,สยามวิศวกรรมและการพานิช,res_partner_office_211,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_213,คุณสงวน,,FALSE,FALSE,TRUE,สยามวิศวกรรมและการพานิช,res_partner_office_211,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_214,บริษัท วี. พี. ซี. กรุ๊ป จำกัด,SP07S075,TRUE,FALSE,TRUE,,,Default,FALSE,"59 ซอยอ่อนนุช 65 + +","แขวงประเวศ เขตประเวศ + +",10250,กรุงเทพฯ,Thailand,02 - 3220057-9,,"02 - 3220060,02 - 3229191",,อื่น ๆ ,,นั่งร้านเหล็ก,Cash,3 +res_partner_office_215,บริษัท เอสโก้ - ไทย จำกัด,SP07S076,TRUE,FALSE,TRUE,,,Default,FALSE,"1018,1020,1022 ถ.ศรีนครินทร์",แขวงสวนหลวง เขตสวนหลวง,10250,กรุงเทพฯ,Thailand,0-2322 9022-4,,"0-2322 5651 , 02-322 4412",,อื่น ๆ ,,นำเข้าเครื่องฟอกอากาศ เครื่องกำจัดไฟฟ้าสถิตย์ ชุด ,Cash,7 +res_partner_office_216,คุณโสสรส,,FALSE,FALSE,TRUE,บริษัท เอสโก้ - ไทย จำกัด,res_partner_office_215,Contact,TRUE,,,,,Thailand,,081-303 6663, ,,,,,, +res_partner_office_217,บริษัท เร้นท์ (ประเทศไทย ) จำกัด,SP07S077,TRUE,FALSE,TRUE,,,Default,FALSE,700/679 หมู่ 1,ตำบลพานทอง อำเภอพานทอง,20160,ชลบุรี,Thailand,038 - 447391-4,,038 - 447395-6,,อื่น ๆ ,,บริการเช่ารถ ( รถเครน ),30 Days,7 +res_partner_office_218,คุณตรียภรณ์,,FALSE,FALSE,TRUE,บริษัท เร้นท์ (ประเทศไทย ) จำกัด,res_partner_office_217,Contact,TRUE,,,,,Thailand,,087-344 4139,,,,,,, +res_partner_office_219,บริษัท เปี๊ยกเครนกลการ จำกัด,SP07S078,TRUE,FALSE,TRUE,,,Default,FALSE,11/5 หมู่ที่ 18,ตำบลคูคต อำเภอลำลูกกา,,ปทุมธานี,Thailand,02-9958546 ,,"02-9958546 ,",,อื่น ๆ ,,บริการเช่ารถ ( รถเครน ),Cash,7 +res_partner_office_220,คุณเปี๊ยก,,FALSE,FALSE,TRUE,บริษัท เปี๊ยกเครนกลการ จำกัด,res_partner_office_219,Contact,TRUE,,,,,Thailand,,081 - 832 7250,,,,,,, +res_partner_office_221,บริษัท ออล สตาร์ ทรานสปอร์ต จำกัด,SP07S079,TRUE,FALSE,TRUE,,,Default,FALSE,880/2 ถนนหลวงแพ่ง,แขวงทับยาว เขตลาดกระบัง,10520,กรุงเทพฯ,Thailand," 02-715-1800-5 , 084-451-5588 ",, 02-715-1818-9,,อื่น ๆ ,,บริการเช่ารถ ( รถตู้ ),Cash,7 +res_partner_office_222,คุณพัชรี,,FALSE,FALSE,TRUE,บริษัท ออล สตาร์ ทรานสปอร์ต จำกัด,res_partner_office_221,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_223,ห้างหุ้นส่วนจำกัด สมจิตร นิลสุวรรรณ ทรานสปอร์ต,SP07S080,TRUE,FALSE,TRUE,,,Default,FALSE,16 ม.6 ถ.บางนา-ตราด กม.15,ต.บางโฉลง อ.บางพลี,,สมุทรปราการ,Thailand,"0-2312-5124 ,0-2312-5858 , 0-2312-5859 ",,0-2312-5538 ,,อื่น ๆ ,,บริการเช่ารถ ( รถตู้ ) ,Cash,7 +res_partner_office_224,คุณนารีรัตน์,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด สมจิตร นิลสุวรรรณ ทรานสปอร์ต,res_partner_office_223,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_225,คุณสุ,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด สมจิตร นิลสุวรรรณ ทรานสปอร์ต,res_partner_office_223,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_226,บริษัท บางบอนฟอร์คลิฟท์ จำกัด,SP07S081,TRUE,FALSE,TRUE,,,Default,FALSE,เลขที่ 781 ถนนเอกชัย,แขวงบางบอน เขตบางบอน,10150,กรุงเทพฯ,Thailand,"02-894-3322, 02-894-5115",,02-8943746 ,,อื่น ๆ ,,"บริการเช่ารถ , จำหน่าย รถโฟร์คลิฟท์ ",30 Days,7 +res_partner_office_227,บริษัท อิมมอร์เทล จำกัด,SP07S082,TRUE,FALSE,TRUE,,,Default,FALSE,"445/369 หมู่ที่ 4 +","ตำบลแพรกษา อำเภอเมืองสมุทรปราการ +", ,สมุทรปราการ,Thailand,"TEL : 0-2324 3817 , 02 - 324 3833",,0-2324 3818,,อื่น ๆ ,,บริการตรวจสอบเครน,30 Days,- +res_partner_office_228,คุณปพิชญานันท์,,FALSE,FALSE,TRUE,บริษัท อิมมอร์เทล จำกัด,res_partner_office_227,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_229,คณะบุคคล เจ อาร์ เอส,SP07S083,TRUE,FALSE,TRUE,,,Default,FALSE,120/82,แขวงหลักสอง เขตบางแค,10160,กรุงเทพฯ,Thailand,"02 - 802 7887 ,081-710 3733 ",,02-804 9303 ,,อื่น ๆ ,,บริการตรวจสอบเครน ,30 Days,- +res_partner_office_230,คุณจำเริญ,,FALSE,FALSE,TRUE,คณะบุคคล เจ อาร์ เอส,res_partner_office_229,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_231,บริษัท แบงค็อคเอ็กซ์ซิบิชั่นเซอร์วิสเซส จำกัด,SP07S084,TRUE,FALSE,TRUE,,,Default,FALSE,62 ซ.พระราม 6 ซ.30 ถ.พระราม 6,แขวงสามเสนใน เขตพญาไท,10400,กรุงเทพฯ,Thailand,02-6171475-82,,02-6171407,,อื่น ๆ ,,บริการให้เช่าพื้นที่สำหรับจัดนิทรรศการ ,Cash,- +res_partner_office_232,บริษัท สยามทิมเบอร์ แอนด์ แมชชีนเนอร์นร่ จำกัด,SP07S085,TRUE,FALSE,TRUE,,,Default,FALSE,4-6 ถ.บรรทัดทอง,แขวงเพชรบุรี แขตราชเทวี,,กรุงเทพฯ,Thailand,"081-4421786 ,02-2160295-7 ",,"02-2159526,02-2159595",,อื่น ๆ ,,ใบเลื่อยสายพาน,Cash,- +res_partner_office_233,คุณฐิตาพร(บี),,FALSE,FALSE,TRUE,บริษัท สยามทิมเบอร์ แอนด์ แมชชีนเนอร์นร่ จำกัด,res_partner_office_232,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_234,ห้างหุ้นส่วนจำกัด ทวีอนันต์,SP07S086,TRUE,FALSE,TRUE,,,Default,FALSE,27/10 ม.13,แขวงคันนายาว เขตคันนายาว,,กรุงเทพฯ,Thailand,"02-5107857, 01-8015256",,02-5107857,,อื่น ๆ ,,ประกอบกิจการรับเหมาก่อสร้าง,,- +res_partner_office_235,บริษัท วิริยะประกันภัย จำกัด,SP07S087,TRUE,FALSE,TRUE,,,Default,FALSE,1242 ถนนกรุงเกษม,แขวงคลองมหานาค เขตป้อมปราบศัตรูพ่าย,10100,กรุงเทพฯ,Thailand,"02-224 0059, 02-2223 0851",,02 - 7599296,,อื่น ๆ ,,ประกันภัย,30 Days,- +res_partner_office_236,บริษัท กรุงเทพประกันภัย จำกัด (มหาชน),SP07S088,TRUE,FALSE,TRUE,,,Default,FALSE,อาคารกรุงเทพประกันภัย 25,ถนนสาทรใต้,10120,กรุงเทพฯ,Thailand,"02-085 8888 , 02-677 3777",,02-677 3737-8,,อื่น ๆ ,,ประกันภัย ,30 Days,- +res_partner_office_237,คุณวีนา,,FALSE,FALSE,TRUE,บริษัท กรุงเทพประกันภัย จำกัด (มหาชน),res_partner_office_236,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_238,บริษัท ศรีทอง เอ็นจิเนียริ่ง จำกัด,SP07S089,TRUE,FALSE,TRUE,,,Default,FALSE,"483,485,487,489 พระราม 2 + +","แขวงบางมด เขตจอมทอง + +",10150,กรุงเทพฯ,Thailand,02-4284171-8,,02-4284180,,อื่น ๆ ,,"ปลอกยอย, สาย HY, ข้อต่อตรง, ไฮโดรลิก",,- +res_partner_office_239,อภิสิทธิ์ มีอาษา,,FALSE,FALSE,TRUE,บริษัท ศรีทอง เอ็นจิเนียริ่ง จำกัด,res_partner_office_238,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_240,บริษัท ไวทยะโชติ จำกัด,SP07S090,TRUE,FALSE,TRUE,,,Default,FALSE,120 ซอยบางนาตราด 31,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,"02-3987294, 7441307",,02-3994840,,อื่น ๆ ,,"ปั๊มน้ำ ปั๊มลม มอเตอร์ไฟฟ้า +",,- +res_partner_office_241,ร้านปากน้ำผ้าใบ,SP07S091,TRUE,FALSE,TRUE,,,Default,FALSE,"50/34-5 คลองตะเค็ดฝั่งตะวันตก + +","ตำบลปากน้ำ อำเภอเมืองสมุทรปราการ + +",10280,สมุทรปราการ,Thailand,"0-2395-2434, 701-7998",,0-2701-8540,,อื่น ๆ ,,ผ้าใบคลุมรถ,Cash,7 +res_partner_office_242,คุณสิริมา,,FALSE,FALSE,TRUE,ร้านปากน้ำผ้าใบ,res_partner_office_241,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_243,ห้างหุ้นส่วนจำกัด ประกิตผ้าใบ,SP07S092,TRUE,FALSE,TRUE,,,Default,FALSE,"35, 37 ถ.สายลวด",ต.ปากน้ำ อ.เมือง,10280,สมุทรปราการ,Thailand,02-7018820-1,,02-3872473,,อื่น ๆ ,,ผ้าใบคลุมรถ,Cash,7 +res_partner_office_244,หนุ่ม,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ประกิตผ้าใบ,res_partner_office_243,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_245,ห้างหุ้นส่วนจำกัด ยี้ เฮง หลง,SP07S093,TRUE,FALSE,TRUE,,,Default,FALSE,196-8,แขวงจักรวรรดิ์ เขตสัมพันธวงศ์,10100,กรุงเทพฯ,Thailand,"02-2222808, 2114564",,02-2253271,,อื่น ๆ ,,ผ้ายางมะตอย,Cash,7 +res_partner_office_246,แก้ว,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ยี้ เฮง หลง,res_partner_office_245,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_247,บริษัท ไอ เอ๊กซ์ แอล จำกัด,SP07S094,TRUE,FALSE,TRUE,,,Default,FALSE,4 ซอยสุขาภิบาล 2 ซอย 11 แยก 2-3 อ่อนนุช,แขวงประเวศ เขตประเวศ,10250,กรุงเทพฯ,Thailand,02 - 7264574-6,,02 - 7264577,,อื่น ๆ ,,"แผ่นฉนวนกันความร้อน, ",Cash,7 +res_partner_office_248,บริษัท ซานโต ไฟร์ เทรนนิ่ง จำกัด,SP07S095,TRUE,FALSE,TRUE,,,Default,FALSE,6/53-55 ซอยแสงอุทัยทิพย์ ถนนดินแดง,แขวงดินแดง เขตดินแดง,,กรุงเทพฯ,Thailand,02-248-3071 ,,02-246-6859 ,,อื่น ๆ ,,ฝึกอบรมดับเพลิงขั้นต้นและฝึกซ้อมหนีไฟประจำปี ,30 Days,7 +res_partner_office_249,คุณอธิกาญ,,FALSE,FALSE,TRUE,บริษัท ซานโต ไฟร์ เทรนนิ่ง จำกัด,res_partner_office_248,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_250,บริษัท เค.ที แอนด์ แอล เมทัล จำกัด,SP07S096,TRUE,FALSE,TRUE,,,Default,FALSE,227 ม.4 ถ.รัตนโกสินทร์ 200 ปี,ต.บางบ่อ อ.บางบ่อ,10560,สมุทรปราการ,Thailand,02-707 0573-4 / 081- 5837828,,02-7070575,,อื่น ๆ ,,พ่นสีอลูมิเนียม,30 Days,7 +res_partner_office_251,คุณทวีพัฒน์,,FALSE,FALSE,TRUE,บริษัท เค.ที แอนด์ แอล เมทัล จำกัด,res_partner_office_250,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_252,คุณสุรินทร์,,FALSE,FALSE,TRUE,บริษัท เค.ที แอนด์ แอล เมทัล จำกัด,res_partner_office_250,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_253,บริษัท แคปิตอล คาร์เปท จำกัด,SP07S097,TRUE,FALSE,TRUE,,,Default,FALSE,"32 Soi Udomsuk 31, Sukhumvit 103 Rd.,","Bangjak , Prakhanong ,",10260,Bangkok,Thailand,0-2383 - 8850-3,, 0 - 2383 - 8860 ,,อื่น ๆ ,,"พรม , กาวปูพรม",Cash,7 +res_partner_office_254,คุณอุดม,,FALSE,FALSE,TRUE,บริษัท แคปิตอล คาร์เปท จำกัด,res_partner_office_253,Contact,TRUE,,,,,Thailand,,081-565 7059,,,,,,, +res_partner_office_255,ห้างหุ้นส่วนจำกัด มงคลถาวรกิจ,SP07S098,TRUE,FALSE,TRUE,,,Default,FALSE,"2/14-15 หมู่ 10 ซอยเอกชัย 7 ถนนเอกชัย +","แขวงบางขุนเทียน เขตจอมทอง +",10150,กรุงเทพฯ,Thailand,"02 - 415 3138, 2415 2322, 2416 9594 +",,"02 - 893 8563 +",,อื่น ๆ ,,พัดลมอุตสาหกรรม,Cash,7 +res_partner_office_256,"VKS TINT CO.,LTD",SP07S099,TRUE,FALSE,TRUE,,,Default,FALSE,27 ซ.ลาซาล 365,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,02-745-8112-3,,02-478-7643,,อื่น ๆ ,,ฟิล์มกรองแสง,30 Days,7 +res_partner_office_257,คุณวิทยา,,FALSE,FALSE,TRUE,"VKS TINT CO.,LTD",res_partner_office_256,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_258,บริษัท พลวัตร จำกัด,SP07S100,TRUE,FALSE,TRUE,,,Default,FALSE,76 ม.11 ถ.พุทธมณฑลสาย 5,ต.ไร่ขิง อ.สามพราน,73210,นครปฐม,Thailand,0-2811-9022,,0-2811-9519,,อื่น ๆ ,,มอเตอร์เกียร์,Cash,7 +res_partner_office_259,คุณสุรินทร์,,FALSE,FALSE,TRUE,บริษัท พลวัตร จำกัด,res_partner_office_258,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_260,บริษัท ไมโครไฟเบอร์ อุตสาหกรรม จำกัด,SP07S101,TRUE,FALSE,TRUE,,,Default,FALSE,อาคารไทยสมุทร ชั้น 3 175 ถนนสุขุมวิท 21,วัฒนา,10110,กรุงเทพฯ,Thailand,"02-2583774-6, 2593767-9",,02-2583767,,อื่น ๆ ,,ไมโครไฟเบอร์ แบบกันเสียง,Cash,- +res_partner_office_261,เดโช,,FALSE,FALSE,TRUE,บริษัท ไมโครไฟเบอร์ อุตสาหกรรม จำกัด,res_partner_office_260,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_262,บริษัท วี. พี. วู๊ด จำกัด,SP07S102,TRUE,FALSE,TRUE,,,Default,FALSE,"25/5 หมู่ 4 ซ.สุขสวัสดิ์ 66 ถ.สุขสวัสดิ์ + +",แขวงบางมด เขตทุ่งครุ,10140,กรุงเทพฯ,Thailand,"02-463-0335 - 9 , 086-340-8271",,02-463-4477,,อื่น ๆ ,,ไม้แปรรูป / ไม้รูปพรรณ /ไม้อัด,Cash,- +res_partner_office_263,คุณวุฒิ,,FALSE,FALSE,TRUE,บริษัท วี. พี. วู๊ด จำกัด,res_partner_office_262,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_264,บริษัท ธนาดุลค้าไม้ จำกัด,SP07S103,TRUE,FALSE,TRUE,,,Default,FALSE,136/7-9 ซอยไสวสุวรรณ ประชาราษฎร์สาย 1,แขวงบางซื่อ เขตบางซื่อ,10800,กรุงเทพฯ,Thailand,02-912 7937-9,,02- 912 7936 ,,อื่น ๆ ,,ไม้แปรรูป / ไม้รูปพรรณ /ไม้อัด,Cash,- +res_partner_office_265,คุณเต๋า,,FALSE,FALSE,TRUE,บริษัท ธนาดุลค้าไม้ จำกัด,res_partner_office_264,Contact,TRUE,,,,,Thailand,,081-514 3352,,,,,,, +res_partner_office_266,บริษัท เอกวิวัฒน์ไม้อัด จำกัด,SP07S104,TRUE,FALSE,TRUE,,,Default,FALSE,"29/41 หมู่ 6 ซอยจิตภักดี สุขาภิบาล 1 + +",แขวงคลองกุ่ม เขตบึงกุ่ม,10240,กรุงเทพฯ,Thailand,"02-3792845, 3792956",,"02-3792845, 3792956",,อื่น ๆ ,,ไม้แปรรูป / ไม้รูปพรรณ /ไม้อัด,Cash,- +res_partner_office_267,ทัศนีย์,,FALSE,FALSE,TRUE,บริษัท เอกวิวัฒน์ไม้อัด จำกัด,res_partner_office_266,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_268,บริษัท พีพีพี ทิมเบอร์ส จำกัด,SP07S105,TRUE,FALSE,TRUE,,,Default,FALSE,797 ถ.ศรีนครินทร์,แขวงสวนหลวง เขตสวนหลวง,,กรุงเทพฯ,Thailand,"081 - 886 - 5288 , 02 - 320 -1915 ",,02 - 320 - 1916,,อื่น ๆ ,,ไม้แปรรูป / ไม้รูปพรรณ /ไม้อัด,15 Days,- +res_partner_office_269,คุณเล็ก,,FALSE,FALSE,TRUE,บริษัท พีพีพี ทิมเบอร์ส จำกัด,res_partner_office_268,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_270,ศรีนครินทร์ปาเก้,SP07S106,TRUE,FALSE,TRUE,,,Default,FALSE,"407/8-9 หมู่ 5 ถ.ศรีนครินทร์ + +","ต.สำโรงเหนือ อ.เมืองสมุทรปราการ + +",,สมุทรปราการ,Thailand,"02-3857731, 3857785",,02-3867223,,อื่น ๆ ,,ไม้แปรรูป / ไม้รูปพรรณ /ไม้อัด,30 Days,- +res_partner_office_271,เก๋,,FALSE,FALSE,TRUE,ศรีนครินทร์ปาเก้,res_partner_office_270,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_272,จ.รวมยาง,SP07S107,TRUE,FALSE,TRUE,,,Default,FALSE,735/9,ต. พนมสารคาม อ.พนมสารคาม,,ฉะเชิงเทรา,Thailand,"038- 551 230 ,038 - 837 311",,"038- 551 230 ,038 - 837 311",,อื่น ๆ ,,ยางรถยนต์ ,Cash,- +res_partner_office_273,คุณสมบูรณ์,,FALSE,FALSE,TRUE,จ.รวมยาง,res_partner_office_272,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_274,บริษัท สต๊อป - เบิร์ด โปรเฟสชั่นแนล จำกัด,SP07S108,TRUE,FALSE,TRUE,,,Default,FALSE,87/291 ถ.กาญจนาภิเษก,แขวงบางบอน เขตบางบอน,10150,กรุงเทพฯ,Thailand,02 - 899 9928 ,,"02 - 899 9939, 49, 59",,อื่น ๆ ,,ยาดักจับนก,Cash,- +res_partner_office_275,คุณวัชรินทร์,,FALSE,FALSE,TRUE,บริษัท สต๊อป - เบิร์ด โปรเฟสชั่นแนล จำกัด,res_partner_office_274,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_276,บริษัท ฮ.เจริญทรัพย์กลการ จำกัด,SP07S109,TRUE,FALSE,TRUE,,,Default,FALSE,"109/438-41 บางนา-ตราด + +","ตำบลบางพลีใหญ่ อำเภอบางพลี + +",10540,สมุทรปราการ,Thailand,0-2749 2162-3,,0-2749 2169,,อื่น ๆ ,,ร้านซ่อมรถ,30 Days,- +res_partner_office_277,คุณประนอม,,FALSE,FALSE,TRUE,บริษัท ฮ.เจริญทรัพย์กลการ จำกัด,res_partner_office_276,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_278,ร้านสมานมิตร,SP07S110,TRUE,FALSE,TRUE,,,Default,FALSE,802 หมู่ 1,ต.พนมสารคาม อ.พนมสารคาม,24120,ฉะเชิงเทรา,Thailand,(038)883 9191,, (038) 839 292,,อื่น ๆ ,,ร้านอุปกรณ์ก่อสร้าง ,Cash,- +res_partner_office_279,คุณไพรวัลย์,,FALSE,FALSE,TRUE,ร้านสมานมิตร,res_partner_office_278,Contact,TRUE,,,,,Thailand,,089-964 0222,,,,,,, +res_partner_office_280,บริษัท ภูวดลไพศาล เอ็นจิเนียริ่ง จำกัด,SP07S111,TRUE,FALSE,TRUE,,,Default,FALSE,8 ม.5,ต.บางพูน อ.เมือง,12000,ปทุมธานี,Thailand,0-2567-3651-2,,0-2567-3185,,อื่น ๆ ,,รีโมท,Cash,- +res_partner_office_281,ประดิษฐ์,,FALSE,FALSE,TRUE,บริษัท ภูวดลไพศาล เอ็นจิเนียริ่ง จำกัด,res_partner_office_280,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_282,บริษัท อาร์. เจ. โค้ทติ้ง จำกัด,SP07S112,TRUE,FALSE,TRUE,,,Default,FALSE,38/1 ม.6 ต.เกาะขนุน,อ.พนมสารคาม,24120,ฉะเชิงเทรา,Thailand, 038-59-7738-9 ,, 0-3859-7025,,อื่น ๆ ,,โรงพ่นสี ,Cash,- +res_partner_office_283,คุณจินตนา,,FALSE,FALSE,TRUE,บริษัท อาร์. เจ. โค้ทติ้ง จำกัด,res_partner_office_282,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_284,จรัสบริการ ( ลับคมใบมีด ),SP07S113,TRUE,FALSE,TRUE,,,Default,FALSE,1568 หมู่ที่ 6 ถ.สุขุมวิท,ต. สำโรงเหนือ อ.เมือง,10270,สมุทรปราการ,Thailand,02- 749 3472-3 ,,02 -393 9754,,อื่น ๆ ,,ลับคมใบมีด,Cash,- +res_partner_office_285,คุณเมย์,,FALSE,FALSE,TRUE,จรัสบริการ ( ลับคมใบมีด ),res_partner_office_284,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_286,บริษัท ศรีบุญชัย ( สุขุมวิท105) จำกัด,SP07S114,TRUE,FALSE,TRUE,,,Default,FALSE,756 ซ. สุขุมวิท 105 ถ.ลาซาล,แขวงบางนา เขตบางนนา,10260,กรุงเทพฯ,Thailand,02 748 6089 - 90 ,,02 - 398 4953-4,,อื่น ๆ ,,วัสดุก่อสร้าง,30 Days,7 +res_partner_office_287,คุณประภา (นก),,FALSE,FALSE,TRUE,บริษัท ศรีบุญชัย ( สุขุมวิท105) จำกัด,res_partner_office_286,Contact,TRUE,,,,,Thailand,,086-3741581,,,,,,, +res_partner_office_288,บริษัท ฮาร์ดแวร์ เซ็นเตอร์ จำกัด,SP07S115,TRUE,FALSE,TRUE,,,Default,FALSE,766 ซอยสุขุมวิท 105ถนนลาซาล,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand, 02 - 748 6089-90,,02 - 748 6090 ,,อื่น ๆ ,,วัสดุก่อสร้าง,Cash,7 +res_partner_office_289,คุณขวัญ,,FALSE,FALSE,TRUE,บริษัท ฮาร์ดแวร์ เซ็นเตอร์ จำกัด,res_partner_office_288,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_290,บริษัท บี วาย พี เทรดดิ้ง จำกัด,SP07S116,TRUE,FALSE,TRUE,,,Default,FALSE,23/25 อาคารอี โครงการรอยัลซิตี้อเวนิว ซอยศูนย์วิจัย ถนนพระราม 9,แขวงบางกะปิ เขตห้วยขวาง,,กรุงเทพฯ,Thailand,-,,-,,อื่น ๆ ,,เสื้อโปโล,Cash,30 +res_partner_office_291,คุณอราม,,FALSE,FALSE,TRUE,บริษัท บี วาย พี เทรดดิ้ง จำกัด,res_partner_office_290,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_292,บริษัท แอมเชอร์ พลัส จรูญรัศมี จำกัด,SP07S117,TRUE,FALSE,TRUE,,,Default,FALSE,1015 หมู่ที่ 3 ซอยรามคำแหง 164 รามคำแหง,คลองสองต้นนุ่น ลาดกระบัง,,กรุงเทพฯ,Thailand, 02 - 372 9586 ,,02 - 372 7116,,อื่น ๆ ,,เสื้อโปโล,Cash,30 +res_partner_office_293,คณะบุคคล โฟร์ เฟรน ซอร์สซิ่ง,SP07S118,TRUE,FALSE,TRUE,,,Default,FALSE,56/81 ม.7 ถ.บางกรวย-ไทรน้อย,ต.บางกรวย อ.บางกรวย,11130,นนทบุรี,Thailand,05-1124291/0-2673-1593/01-4383750/06-9890006,,0-2673-1593,,อื่น ๆ ,,เสื้อโปโล,Cash,30 +res_partner_office_294,คุณธงชัย,,FALSE,FALSE,TRUE,คณะบุคคล โฟร์ เฟรน ซอร์สซิ่ง,res_partner_office_293,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_295,พุทธชาด,,FALSE,FALSE,TRUE,คณะบุคคล โฟร์ เฟรน ซอร์สซิ่ง,res_partner_office_293,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_296,นิวแสงทองแฟ็คทอรี่,SP07S119,TRUE,FALSE,TRUE,,,Default,FALSE,24/630 ถ.สุขุมวิท 105 ซ.ลาซาล 75,แขวงบางนา เขตบางนนา,10260,กรุงเทพฯ,Thailand,02-7487774-8,,02-7487770,,อื่น ๆ ,,เสื้อโปโล,Cash,30 +res_partner_office_297,คุณวรวุฒิ,,FALSE,FALSE,TRUE,นิวแสงทองแฟ็คทอรี่,res_partner_office_296,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_298,ห้างหุ้นส่วนจำกัด อาจิวการไฟฟ้า,SP07S120,TRUE,FALSE,TRUE,,,Default,FALSE,66 ซ.บุรีรมย์ ถนนเจริญกรุง,แขวงบ้านบาตร์ เขตป้อมปรบศัตรูพ่าย,10100,กรุงเทพฯ,Thailand,"02-222 6421, 02-222 6427 ",,02-621 0008-9,,อื่น ๆ ,,หม้อแปลงเครื่องอาร์กสปอร์ตเวลติ้,Cash,7 +res_partner_office_299,คุณนิรุฒ,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด อาจิวการไฟฟ้า,res_partner_office_298,Contact,TRUE,,,,,Thailand,,089-131 0681,,,,,,, +res_partner_office_300,บริษัท แลมป์ตัน ไลท์ติ้ง(2001 ) จำกัด,SP07S121,TRUE,FALSE,TRUE,,,Default,FALSE,3 ซอยเทียนทะเล 19 ถ.บางขุนเทียน -ชายทะเล,แขวงท่าด่า แขตบางขุนเทียน,10150,กรุงเทพฯ,Thailand,02 - 451 2968-9,,02-8972938 ,,อื่น ๆ ,,หลอดไฟ ,Cash,15 +res_partner_office_301,คุณหญิง,,FALSE,FALSE,TRUE,บริษัท แลมป์ตัน ไลท์ติ้ง(2001 ) จำกัด,res_partner_office_300,Contact,TRUE,,,,,Thailand,,"085-770-7077 , 080 -729 9904",,,,,,, +res_partner_office_302,"THAI SYNCON & SUPPLIES CO.,LTD.",SP07S122,TRUE,FALSE,TRUE,,,Default,FALSE,889 อาคารไทย ซีซี ทาวเวอร์ ชั้นที่ 22 ห้อง 224 ถ.สาทรใต้แขวงยายนาวา,เขตสาทร,10120,กรุงเทพฯ,Thailand,"02-675 6260-2 ,038-570572",,"02-675 6259,",,อื่น ๆ ,,"หลังคา , งานเมทัลชีท",Cash,15 +res_partner_office_303,K. ชนากานต์,,FALSE,FALSE,TRUE,"THAI SYNCON & SUPPLIES CO.,LTD.",res_partner_office_302,Contact,TRUE,,,,,Thailand,,08-1357 1389,,,,,,, +res_partner_office_304,บริษัท ซี.เอส.ซี. อินเตอร์เนชั่นแนล จำกัด,SP07S123,TRUE,FALSE,TRUE,,,Default,FALSE,"10/22 หมู่ 8 ถนนพุทธรักษา +","ตำบลท้ายบ้านใหม่ อำเภอเมือง +",,สมุทรปราการ,Thailand,02-388-1081-2,,02-388-1080,,อื่น ๆ ,,"หลังคา , งานเมทัลชีท",Cash,15 +res_partner_office_305,บริษัท ไทย อาจีย่า จำกัด,SP07S124,TRUE,FALSE,TRUE,,,Default,FALSE,"19/40 หมู่ 10 พหลโยธิน + +","ตำบลคลองหนึ่ง อำเภอคลองหลวง + +",12122,ปทุมธานี,Thailand,02 - 5204047-8,,02 - 5204050,,อื่น ๆ ,,"หลังคา , งานเมทัลชีท",30 Days,15 +res_partner_office_306,คุณอมรเทพ,,FALSE,FALSE,TRUE,บริษัท ไทย อาจีย่า จำกัด,res_partner_office_305,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_307,ห้างหุ้นส่วนจำกัด ลี - เมดิค,SP07S125,TRUE,FALSE,TRUE,,,Default,FALSE,"90/68 หมู่ 8 ซอย 26 สุขสวัสดิ์ + +","แขวงบางปะกอก เขตราษฎร์บูรณะ + +",10140,กรุงเทพฯ,Thailand,02 - 8744801-2,,02 - 8744801-2,,อื่น ๆ ,,อุปกรณ์การแพทย์,Cash,15 +res_partner_office_308,บริษัท ฟอร์ท แทร็คกิ้ง ซีสเต็ม จำกัด,SP07S126,TRUE,FALSE,TRUE,,,Default,FALSE,"226/3,4,5 ถนนพหลโยธิน +",แขวงสามเสนใน เขตพญาไท,10400,กรุงเทพฯ,Thailand,02 - 615-0808,,02 - 615-0809,,อื่น ๆ ,,อุปกรณ์ติดตามรถ,30 Days,7 +res_partner_office_309,คุณไกรกฤษ์ ทิมอ่อน,,FALSE,FALSE,TRUE,บริษัท ฟอร์ท แทร็คกิ้ง ซีสเต็ม จำกัด,res_partner_office_308,Contact,TRUE,,,,,Thailand,,084-1067 825,,,,,,, +res_partner_office_310,บริษัท รีฟริโก อีควิปเม้นท์ จำกัด,SP07S127,TRUE,FALSE,TRUE,,,Default,FALSE,99/24-27 ม.9 ถ.ลาดพร้าว,แขวงลาดพร้าว เขตลาดพร้าว,10230,กรุงเทพฯ,Thailand,02-7627910-20,,0-2931-7280,,อื่น ๆ ,,อุปกรณ์ทองแดง,30 Days,7 +res_partner_office_311,คุณไชย,,FALSE,FALSE,TRUE,บริษัท รีฟริโก อีควิปเม้นท์ จำกัด,res_partner_office_310,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_312,บริษัท แสงชัยรีฟริเจอเรชั่น จำกัด,SP07S128,TRUE,FALSE,TRUE,,,Default,FALSE,283 ถ.หลานหลวง,แขวงวัดโสมนัส เขตป้อมปราบฯ,10100,กรุงเทพฯ,Thailand,"05-1239166, 02-6282600, 2803444",,02-6280484-5,,อื่น ๆ ,,อุปกรณ์ทองแดง,60 Days,7 +res_partner_office_313,คุณนราวุธ,,FALSE,FALSE,TRUE,บริษัท แสงชัยรีฟริเจอเรชั่น จำกัด,res_partner_office_312,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_314,บริษัท เซนิท ซิสเท็ม จำกัด,SP07S129,TRUE,FALSE,TRUE,,,Default,FALSE,32/9 ซอยเจริญรัก 18 ถนนเจริญรัก,แขวงคลองต้นไทร เขตคลองสาน,10600,กรุงเทพฯ,Thailand,"0-2862 0906 , 02 -439 4723 ",,02- 437 8921,,อื่น ๆ ,,อุปกรณ์ลำเรียง,30 Days,7 +res_partner_office_315,คุณดลพร,,FALSE,FALSE,TRUE,บริษัท เซนิท ซิสเท็ม จำกัด,res_partner_office_314,Contact,TRUE,,,,,Thailand,,081-5183374,,,,,,, +res_partner_office_316,บริษัท ยู.บี.จี.(2008) จำกัด,SP07S130,TRUE,FALSE,TRUE,,,Default,FALSE,"155, ซอยเอกชัย 110, ถนนเอกชัย","แขวงบางบอน, เขตบางบอน,",10150,กรุงเทพฯ,Thailand,02 - 895 0751-4,, 02 -895 0755 ,,อื่น ๆ ,,อุปกรณ์ลำเรียง,Cash,7 +res_partner_office_317,คุณทวี,,FALSE,FALSE,TRUE,บริษัท ยู.บี.จี.(2008) จำกัด,res_partner_office_316,Contact,TRUE,,,,,Thailand,,081-6123951,,,,,,, +res_partner_office_318,"บริษัท ลาฟแลนด์ 2535 ซัพพลาย จำกัด ( ล้อยูริเทน, PVC SH4, แผ่นซุปเปอร์เลน )",SP07S131,TRUE,FALSE,TRUE,,,Default,FALSE,1999/8-9 หมู่ที่ 4 ถนนสุขุมวิท,ตำบลเทพารักษ์ อำเภอเมืองสมุทรปราการ,,สมุทรปราการ,Thailand,"02-3847890, 7577039",,02-7577045,,อื่น ๆ ,,อุปกรณ์ลำเรียง,Cash,3 +res_partner_office_319,นงนุช,,FALSE,FALSE,TRUE,"บริษัท ลาฟแลนด์ 2535 ซัพพลาย จำกัด ( ล้อยูริเทน, PVC SH4, แผ่นซุปเปอร์เลน )",res_partner_office_318,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_320,บริษัท สปีดเวย์ โรลเลอร์แอนด์คอนเวเยอร์ จำกัด,SP07S132,TRUE,FALSE,TRUE,,,Default,FALSE,"26/203 หมู่ 1 ซอยจุลพงษ์ บางขุนเทียน-ชายทะเล + +",แขวงแสมดำ เขตบางขุนเทียน,10150,กรุงเทพฯ,Thailand,02 - 8921846-50,,"02 - 4156327,028921233",,อื่น ๆ ,,อุปกรณ์ลำเรียง,30 Days,3 +res_partner_office_321,บริษัท ไมครอนคลีน จำกัด,SP07S133,TRUE,FALSE,TRUE,,,Default,FALSE,1246 ม.13 ถ.พหลโยธิน,ต.คลองหนึ่ง อ.คลองหลวง,12120,ปทุมธานี,Thailand,"01-3430443, 02-9088200",,02-9088211,,อื่น ๆ ,,อุปกรณ์และวัสดุที่ใช้ในห้องสะอาด,30 Days,3 +res_partner_office_322,วีระชัย,,FALSE,FALSE,TRUE,บริษัท ไมครอนคลีน จำกัด,res_partner_office_321,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_323,ร้าน เอส เค แอร์ แอนด์ เซอร์วิส,SP07S134,TRUE,FALSE,TRUE,,,Default,FALSE,8/5 หมู่ 12 พระประแดง,ต.บางกอบัว อ.พระประแดง,10130,สมุทรปราการ,Thailand,02-816-5711,,02-816-5711,,อื่น ๆ ,,แอร์ บ้าน,30 Days,3 +res_partner_office_324,คุณอุมา,,FALSE,FALSE,TRUE,ร้าน เอส เค แอร์ แอนด์ เซอร์วิส,res_partner_office_323,Contact,TRUE,,,,,Thailand,,086-906-9134,,,,,,, +res_partner_office_325,คุณฑาณุมาศ,,FALSE,FALSE,TRUE,ร้าน เอส เค แอร์ แอนด์ เซอร์วิส,res_partner_office_323,Contact,TRUE,,,,,Thailand,,089-674-7606,,,,,,, +res_partner_office_326,ห้างหุ้นส่วนจำกัด ซี.ที.พี.แอร์ เซอร์วิส,SP07S135,TRUE,FALSE,TRUE,,,Default,FALSE,94/29 หมู่ที่ 4 ถ.สุขุมวิท 105,แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,"0-2 393 7143, 02-393 7153",,0-2749 7357,,อื่น ๆ ,,แอร์ บ้าน,30 Days,- +res_partner_office_327,คุณศิริศักดิ์,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ซี.ที.พี.แอร์ เซอร์วิส,res_partner_office_326,Contact,TRUE,,,,,Thailand,,081 - 812 9951,,,,,,, +res_partner_office_328,คุณนี,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ซี.ที.พี.แอร์ เซอร์วิส,res_partner_office_326,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_329,บริษัท แคนนอน ฟาร์อีสต์ (ไทยแลนด์) จำกัด,SP07S136,TRUE,FALSE,TRUE,,,Default,FALSE,48 ซ.รามคำแหง 14,แขวงหัวหมาก แขตบางกะปิ,10240,กรุงเทพฯ,Thailand,02-3192595-7,,02-3192598,,อื่น ๆ ,,Machinne / เครื่องฉีดโฟม / SPARE PART ,30 Days,ตามตกลง +res_partner_office_330,ทัศนีย์,,FALSE,FALSE,TRUE,บริษัท แคนนอน ฟาร์อีสต์ (ไทยแลนด์) จำกัด,res_partner_office_329,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_331,Hennecke GmbH,SP07S137,TRUE,FALSE,TRUE,,,Default,FALSE,Polyurethane Technology Birlinghovener,StraBe 30 D-53757 Sankt Augustin,,,Thailand,(+49) 22 41/3 39-0,, (+49) 22 41/3 39-20 4,,อื่น ๆ ,,Machinne / เครื่องฉีดโฟม / SPARE PART ,,ตามตกลง +res_partner_office_332,"ALL ARM CO.,LTD.",SP07S138,TRUE,FALSE,TRUE,,,Default,FALSE,93 ซอยเสนานิคม1(พหลโยธิน32) ถ.พหลโยธิน,แขวงเสนานิคม เขตจตุจักร,10900,กรุงเทพฯ,Thailand,"02 - 9415657, 9415577 ",,941 8707 ,,อื่น ๆ ,,Machinne / เครื่องฉีดโฟม / SPARE PART ,30 Days,ตามตกลง +res_partner_office_333,คุรแซม / คุรฉฮฯ,,FALSE,FALSE,TRUE,"ALL ARM CO.,LTD.",res_partner_office_332,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_334,CBM MACHINE (NZ) LIMITED,SP07S139,TRUE,FALSE,TRUE,,,Default,FALSE,"NO. 1825, HUALONG ROAD, JIAHENG TOWER A 2201,","Jinan - 250100, Shandong, China",,,Thailand,86-531-88020036,,86-531-88020455,,อื่น ๆ ,,Machinne / เครื่องฉีดโฟม / SPARE PART ,30 Days,ตามตกลง +res_partner_office_335,Mr. Farley Feng (Sales Manager),,FALSE,FALSE,TRUE,CBM MACHINE (NZ) LIMITED,res_partner_office_334,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_336,"7408 ENGINEERING CO.,LTD.",SP07S140,TRUE,FALSE,TRUE,,,Default,FALSE,244/3 Moo 1 Thepharak,Tumbol Bang Sao Thong Amphoe Bang Sao Thong,10540,Samut Prakan,Thailand,23131340,,23131340,,อื่น ๆ ,,Machinne / SPARE PART ,30 Days,ตามตกลง +res_partner_office_337,บริษัท ไทย เมทัล ชีท โปรดัก จำกัด,SP07S141,TRUE,FALSE,TRUE,,,Default,FALSE,25/257 หมู่ที่ 6,ตำบลบางตลาด อำเภอปากเกร็ด,11120,นนทบุรี,Thailand,"02 -582 0588-90 , 081- 823 5182 ",,"02-582 0591, 02-962 1486",,อื่น ๆ ,,Machinne / SPARE PART ,30 Days,ตามตกลง +res_partner_office_338,ศุภกร,,FALSE,FALSE,TRUE,บริษัท ไทย เมทัล ชีท โปรดัก จำกัด,res_partner_office_337,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_339,ทัศนีย์,,FALSE,FALSE,TRUE,บริษัท ไทย เมทัล ชีท โปรดัก จำกัด,res_partner_office_337,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_340,คุณปู,,FALSE,FALSE,TRUE,บริษัท ไทย เมทัล ชีท โปรดัก จำกัด,res_partner_office_337,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_341,บริษัท สยามโปรเทค ซัพพลาย จำกัด,SP07S142,TRUE,FALSE,TRUE,,,Default,FALSE,81/51ม.9 ถนนฉลองกรุง,แขวงลำผักชี เขตหนองจอก,10530,กรุงเทพฯ,Thailand, 0-2908-3596-9,, 0-2908-3595,,อื่น ๆ ,,Machinne / SPARE PART ,30 Days,ตามตกลง +res_partner_office_342,คุณประภัสสร,,FALSE,FALSE,TRUE,บริษัท สยามโปรเทค ซัพพลาย จำกัด,res_partner_office_341,Contact,TRUE,,,,,Thailand,,089 - 797 6629,,,,,,, +res_partner_office_343,บริษัท เอส วาย เทค คอปอร์เรชั่น จำกัด,SP07S143,TRUE,FALSE,TRUE,,,Default,FALSE,"HEAD OFFICE 335/21 Srinakarin Road,","Nongbon, Pravet,",10250,Bangkok,Thailand,"02-366-0395-7 , 02-366-0731 ",, 02-366-0394-5,,อื่น ๆ ,,Machinne / SPARE PART ,30 Days,ตามตกลง +res_partner_office_344,คุณสำเร็จ,,FALSE,FALSE,TRUE,บริษัท เอส วาย เทค คอปอร์เรชั่น จำกัด,res_partner_office_343,Contact,TRUE,,,,,Thailand,,081-341 1267,,,,,,, +res_partner_office_345,บริษัท วีเอ็น - เทค ออโตเมชั่น จำกัด,SP07S144,TRUE,FALSE,TRUE,,,Default,FALSE,89/183 หมู่ที่ 5 ถนนเทพารักษ์,ต. บางพลีใหญ่ อ. บางพลี,10540,สมุทรปราการ,Thailand,"02 - 186 8290 , 089 - 7610330 ,086-3205257 ",,02 - 186 8291 ,,อื่น ๆ ,,Machinne / SPARE PART ,30 Days,ตามตกลง +res_partner_office_346,คุณชาญยุทธ,,FALSE,FALSE,TRUE,บริษัท วีเอ็น - เทค ออโตเมชั่น จำกัด,res_partner_office_345,Contact,TRUE,,,,,Thailand,,089 - 7610330,,,,,,, +res_partner_office_347,คุณจุไรพร,,FALSE,FALSE,TRUE,บริษัท วีเอ็น - เทค ออโตเมชั่น จำกัด,res_partner_office_345,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_348,บริษัท ยู.บี.จี.(2008) จำกัด,SP07S145,TRUE,FALSE,TRUE,,,Default,FALSE,"155, ซอยเอกชัย 110, ถนนเอกชัย,","แขวงบางบอน, เขตบางบอน,",10150,กรุงเทพฯ,Thailand,02-895 0751-4 ,,02-8950755,,อื่น ๆ ,,Machinne / SPARE PART ,30 Days,ตามตกลง +res_partner_office_349,คุณทวี,,FALSE,FALSE,TRUE,บริษัท ยู.บี.จี.(2008) จำกัด,res_partner_office_348,Contact,TRUE,,,,,Thailand,,081-6123951 ,,,,,,, +res_partner_office_350,บริษัท 3114 เอ็นจิเนียริ่ง จำกัด,SP07S146,TRUE,FALSE,TRUE,,,Default,FALSE,87 ซอยบางนา - ตราด 21,บางนา บางนา,10260,กรุงเทพฯ,Thailand,02 - 748 8455-8 ,,"02 - 399 2815,393 6680 ",,อื่น ๆ ,,Machinne / SPARE PART ,30 Days,ตามตกลง +res_partner_office_351,คุณทิพวรรณ,,FALSE,FALSE,TRUE,บริษัท 3114 เอ็นจิเนียริ่ง จำกัด,res_partner_office_350,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_352,ห้างหุ้นส่วนจำกัด ศิริวัฒน์ แมชชินเนอรี่,SP07S147,TRUE,FALSE,TRUE,,,Default,FALSE,23-27 และ 282-284 ในเวิ้งนครเกษม ถนนเจริญกรุง,แขวงสัมพันธวงศ์ เขตสัมพันธวงศ์,10100,กรุงเทพฯ,Thailand,"0-2222-9880, 222-2284",,0-2225-3724,,อื่น ๆ ,,Machinne ( จำหน่ายเครื่องปั๊มลม FUSHENG),Cash,ตามตกลง +res_partner_office_353,คุณสุทธิชัย,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ศิริวัฒน์ แมชชินเนอรี่,res_partner_office_352,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_354,คุณสุชาติ,,FALSE,FALSE,TRUE,ห้างหุ้นส่วนจำกัด ศิริวัฒน์ แมชชินเนอรี่,res_partner_office_352,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_355,บริษัท ที.ที.แอล. เอ็นจิเนียริ่ง ซีสเต็มส์ จำกัด,SP07S148,TRUE,FALSE,TRUE,,,Default,FALSE,"70 นิมิตรใหม่ + +","ตำบลลำลูกกา อำเภอลำลูกกา + +",12150,ปทุมธานี,Thailand,"0-2993-4937-8, 0-2597-9082-5",,0-2993-4939,,อื่น ๆ ,,Machinne /Spare Part ,60 Days, +res_partner_office_356,คุณเลอชาย แสงงาม,,FALSE,FALSE,TRUE,บริษัท ที.ที.แอล. เอ็นจิเนียริ่ง ซีสเต็มส์ จำกัด,res_partner_office_355,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_357,S. M. C. ( THAILAND ) LTD.,SP07S149,TRUE,FALSE,TRUE,,,Default,FALSE,1340/16 ถนนสุรนารายณ์,ตำบลในเมือง อำเภอเมืองนครราชสีมา,30000,นครราชสีมา,Thailand,0-4434-1775-6,,0-4434-1774,,อื่น ๆ ,,Machinne /Spare Part ,30 Days,10 +res_partner_office_358,K. Angkrit,,FALSE,FALSE,TRUE,S. M. C. ( THAILAND ) LTD.,res_partner_office_357,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_359,บริษัท พีเอ็น.แทรค เอ็นจิเนียริ่ง แอนด์ พาร์ท จำกัด,SP07S150,TRUE,FALSE,TRUE,,,Default,FALSE,154/64-66 หมู่ที่ 4,ต.เมืองเก่า อ.พนมสารคาม,24100,ฉะเชิงเทรา,Thailand,03-883-148-9,,03-880-7088,,อื่น ๆ ,,Machinne /Spare Part ,30 Days,10 +res_partner_office_360,บริษัท คราสส์เทค จำกัด,SP07S151,TRUE,FALSE,TRUE,,,Default,FALSE,1205 ซ.พระรามเก้า 55 ถ. พระราม 9,แขวงสวนหลวง เขตสวนหลวง,10250,กรุงเทพฯ,Thailand,02 - 732 1144 ( AUTO),, 02 - 732 2350 ,,อื่น ๆ ,,Machinne /Spare Part ,30 Days,10 +res_partner_office_361,คุณณัฐวุฒิ เจริญเสถียร,,FALSE,FALSE,TRUE,บริษัท คราสส์เทค จำกัด,res_partner_office_360,Contact,TRUE,,,,,Thailand,,086-377 0425,,,,,,, +res_partner_office_362,คุณธนาวุฒิ,,FALSE,FALSE,TRUE,บริษัท คราสส์เทค จำกัด,res_partner_office_360,Contact,TRUE,,,,,Thailand,,089-3157657,,,,,,, +res_partner_office_363,"CECO INDUSTRIAL GAS CO.,LTD.",SP07S152,TRUE,FALSE,TRUE,,,Default,FALSE,"698 Srinakarin Road,","Suanluang, Suanluang,",10250,Bangkok,Thailand,66) 2722 7928-32 ,, (66) 2321-9333 ,,อื่น ๆ ,,Machinne /Spare Part ,Cash,30 +res_partner_office_364,บริษัท เค. เอ็ม. ดี เซอร์วิส จำกัด,SP07S153,TRUE,FALSE,TRUE,,,Default,FALSE,254/62 หมู่5,ต. บึง อ.ศรีราชา,20230,ชลบุรี,Thailand, 038 - 481085 ,, 038-481086,,อื่น ๆ ,,Machinne /Spare Part ,Cash,ตามตกลง +res_partner_office_365,คุณชาญยุทธ,,FALSE,FALSE,TRUE,บริษัท เค. เอ็ม. ดี เซอร์วิส จำกัด,res_partner_office_364,Contact,TRUE,,,,,Thailand,,089-761 0330,,,,,,, +res_partner_office_366,บริษัท เอ็น.เอ็ม.เอ็ม.แมชชีน พาร์ท จำกัด,SP07S154,TRUE,FALSE,TRUE,,,Default,FALSE,66/3 ม.12 ถ.ธนสิทธิ์,ต.บางปลา อ.บางพลี,10540,สมุทรปราการ,Thailand,02 - 182 - 1245 - 6 ,,02 - 182 1247,,อื่น ๆ ,,Machinne /Spare Part ,30 Days,ตามตกลง +res_partner_office_367,คุณนิมิตร,,FALSE,FALSE,TRUE,บริษัท เอ็น.เอ็ม.เอ็ม.แมชชีน พาร์ท จำกัด,res_partner_office_366,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_368,บริษัท วายเอสที ออโตเมชั่น จำกัด,SP07S155,TRUE,FALSE,TRUE,,,Default,FALSE,298 หมู่ 3 ซอยเทวา 1 เทพารักษ์,ตำบลเทพารักษ์ อำเภอเมืองสมุทรปราการ,10270,สมุทรปราการ,Thailand,02 - 753 0899 ,, 02-753 0890 ,,อื่น ๆ ,,Machinne /Spare Part ,30 Days,ตามตกลง +res_partner_office_369,คุณรัณเดช,,FALSE,FALSE,TRUE,บริษัท วายเอสที ออโตเมชั่น จำกัด,res_partner_office_368,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_370,"EBM-PAPST (THAILAND) CO., LTD ( อะไหล่เครื่องจักร )",SP07S156,TRUE,FALSE,TRUE,,,Default,FALSE,"99/349 Na-Nakorn Bldg., 4th FloorChaeng Wattana Road,","Thungsonghong, Laksi,",10210,Bangkok,Thailand,+66 2 57615-24,,66 2 57615-42,,อื่น ๆ ,,Machinne /Spare Part ,7 Days,ตามตกลง +res_partner_office_371,บริษัท อัพ โซ แอร์ จำกัด ( อุปกรณ์เครื่องจักร ),SP07S157,TRUE,FALSE,TRUE,,,Default,FALSE,3413 ถนนพระราม 9,สวนหลวง,10250,กรุงเทพฯ,Thailand,,,,,อื่น ๆ ,,Machinne /Spare Part ,PDC. 30 Days,ตามตกลง +res_partner_office_372,"JINAN DELTA CNC MACHINERY CO.,LTD.",SP07S158,TRUE,FALSE,TRUE,,,Default,FALSE,"TIANCHEN INDUSTRIAL PARK, TIANCHEN ROAD HI-TECH ZONE ,","JINAN , SHANDONG PROVINCE , P.R. CHINA.", ,,Thailand, (0086 531 ) 8887-7039 ,,(0086 531 ) 8887-7041,,อื่น ๆ ,,Machinne /Spare Part ,,45 +res_partner_office_373,บริษัท อะมะดะ (ประเทศไทย) จำกัด ( อะไล่เครื่องจักรมือสอง ),SP07S159,TRUE,FALSE,TRUE,,,Default,FALSE,"อาคารทศพลแลนด์ 3 ชั้น 6, 947 ม.12 ถ.บางนาตราด กม.3",แขวงบางนา เขตบางนา,10260,กรุงเทพฯ,Thailand,0-2361-9152-60,,0-2361-9165-6,,อื่น ๆ ,,Machinne /Spare Part ,30 Days,- +res_partner_office_374,Pongsak,,FALSE,FALSE,TRUE,บริษัท อะมะดะ (ประเทศไทย) จำกัด ( อะไล่เครื่องจักรมือสอง ),res_partner_office_373,Contact,TRUE,,,,,Thailand,,,,,,,,, +res_partner_office_375,บริษัท เอส วาย เทค คอปอร์เรชั่น จำกัด,SP07S160,TRUE,FALSE,TRUE,,,Default,FALSE,"335/21 Srinakarin Road,","Nongbon, Pravet,",10250,Bangkok,Thailand,"02-366-0395-7 , 02-366-0731 ",, 02-366-0394-5,,อื่น ๆ ,,SPARE PART เครื่องจักร,, +res_partner_office_376,คุณสำเร็จ,,FALSE,FALSE,TRUE,บริษัท เอส วาย เทค คอปอร์เรชั่น จำกัด,res_partner_office_375,Contact,TRUE,,,,,,,081-341 1267,,,,,,, diff --git a/masterdata/rev4_final/50.product.tag.csv.move_to_sqp_config b/masterdata/rev4_final/50.product.tag.csv.move_to_sqp_config new file mode 100755 index 0000000..cabd110 --- /dev/null +++ b/masterdata/rev4_final/50.product.tag.csv.move_to_sqp_config @@ -0,0 +1,5 @@ +id,name +product_tag_std_ahu,Standard AHU +product_tag_ahu,AHU +product_tag_cold,Cold Room +product_tag_clean,Clean Room diff --git a/masterdata/rev4_final/52.product.uom.categ.csv b/masterdata/rev4_final/52.product.uom.categ.csv new file mode 100755 index 0000000..41104bf --- /dev/null +++ b/masterdata/rev4_final/52.product.uom.categ.csv @@ -0,0 +1,7 @@ +id,name,active +product.product_uom_categ_area,Area,TRUE +product.product_uom_categ_unit,Unit,TRUE +product.product_uom_categ_kgm,Weight,TRUE +product.uom_categ_wtime,Working Time (NOT USED),FALSE +product.uom_categ_length,Length / Distance (NOT USED),FALSE +product.product_uom_categ_vol,Volume (NOT USED),FALSE diff --git a/masterdata/rev4_final/53.product.category.csv.move_to_sqp_config b/masterdata/rev4_final/53.product.category.csv.move_to_sqp_config new file mode 100755 index 0000000..778f6cb --- /dev/null +++ b/masterdata/rev4_final/53.product.category.csv.move_to_sqp_config @@ -0,0 +1,4 @@ +id,name,type,parent_id +product_cat_rawmat,Raw Material,Normal, +product_cat_saleinfo,Sale Info,Normal, +product_cat_finishgoods,Finished Goods,Normal, diff --git a/masterdata/rev4_final/54.product.uom.csv b/masterdata/rev4_final/54.product.uom.csv new file mode 100755 index 0000000..a189b16 --- /dev/null +++ b/masterdata/rev4_final/54.product.uom.csv @@ -0,0 +1,25 @@ +id,name,category_id,uom_type,rounding,factor_inv,factor +product.product_uom_kgm,kg,Weight,Reference Unit of Measure for this category,0.01,1,1 +product.uom_sqm,sqm,Area,Reference Unit of Measure for this category,0.01,1,1 +product.uom_ea,EA,Unit,Reference Unit of Measure for this category,0.01,1,1 +product.uom_set,set,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.uom_lot,lot,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.product_uom_meter,m,Length / Distance,Reference Unit of Measure for this category,0.01,1,1 +product.uom_pcs,pcs,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.uom_nos,nos,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.uom_rolls,roll,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.uom_tube,tube,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +product.uom_hole,hole,Unit,Smaller than the reference Unit of Measure,0.01,1,1 +,,,,,, +,,,,,, +product.product_uom_cm,cm,,,,, +product.product_uom_day,Day(s),,,,, +product.product_uom_dozen,Dozen(s),,,,, +product.product_uom_gram,g,,,,, +product.product_uom_hour,Hour(s),,,,, +product.product_uom_kgm,kg,,,,, +product.product_uom_km,km,,,,, +product.product_uom_litre,Liter(s),,,,, +product.product_uom_meter,m,,,,, +product.product_uom_ton,t,,,,, +product.product_uom_unit,Unit(s),,,,, diff --git a/masterdata/rev4_final/55.product.product.ahu.csv b/masterdata/rev4_final/55.product.product.ahu.csv new file mode 100755 index 0000000..08cb034 --- /dev/null +++ b/masterdata/rev4_final/55.product.product.ahu.csv @@ -0,0 +1,36 @@ +id,name,default_code,partner_id,tag_ids,sale_ok,purchase_ok,type,procure_method,supply_method,cost_method,categ_id,uom_id,uom_po_id,valuation,standard_price,list_price +product_ahu_1,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) None PVC. Frame,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_2,PU Panel (T) 25 mm. (Off White/Off White steel sheet) None PVC. Frame,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_3,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) None PVC. Frame,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_4,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) None PVC. Frame,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_5,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) PVC. Frame,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_6,PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_7,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_8,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_9,"PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_10,"PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_11,"PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame. , Steel Flat-Bar",,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_12,PU Panel (T) 42 mm. (Galvanized/Off White steel sheet) Slip joint with PVC. Frame,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_13,PU Panel (T) 42 mm. (Off White/Off White steel sheet) Slip joint with PVC. Frame,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_14,PU Panel (T) 42 mm. (Stainless/Off White steel sheet) Slip joint with PVC. Frame,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_15,PU Panel (T) 42 mm. (Stainless/Stainless steel sheet) Slip joint with PVC. Frame,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_16,PU Panel (T) 50 mm. (Galvanized/Off White steel sheet) Slip joint with Camlock,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_17,PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint with Camlock,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_18,PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint with Camlock,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_19,PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint with Camlock,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_20,"TGH : PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_21,"TGH : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_22,"TGH : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_23,"CJ : PU Panel (T) 50 mm. (Off White/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_24,"CJ : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_25,"CJ : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_26,Rockwool Panel (T) 50 mm. ( Off White / Off White steel sheet),,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_27,Rockwool Panel (T) 50 mm. ( Styainless / Off White steel sheet),,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_28,Rockwool Panel (T) 50 mm. ( Stainlesse / Stainless steel sheet),,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_29,Single swing door 4 frame.(Color/Color steel sheet) (W) 500 x (H) 700 x (T) 50 mm.(Standard size),,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,set,set,Real Time (automated),1,1 +product_ahu_30,CJ : Single swing door 4 frame.(Color/Color steel sheet),,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,set,set,Real Time (automated),1,1 +product_ahu_31,TGH : Single swing door 4 frame.(Color / Color steel sheet),,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,set,set,Real Time (automated),1,1 +product_ahu_32,Stainless steel sheet (T) 0.5 mm. (Add 1 side panel),,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_33,Aluminium Angle 40x40 (Off white color) (L) 6 m.,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,pcs.,pcs.,Real Time (automated),1,1 +product_ahu_34,Off white color steel sheet (T) 0.5 mm. ,,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,sqm.,sqm.,Real Time (automated),1,1 +product_ahu_35,Color Off White Spray (MT158),,,AHU,TRUE,FALSE,Consumable,Make to Order,Manufacture,Standard Price,All products,nos.,nos.,Real Time (automated),1,1 diff --git a/masterdata/rev4_final/56.product.product.coldroom.csv b/masterdata/rev4_final/56.product.product.coldroom.csv new file mode 100755 index 0000000..6cf718f --- /dev/null +++ b/masterdata/rev4_final/56.product.product.coldroom.csv @@ -0,0 +1,137 @@ +id,name,default_code,partner_id,tag_ids,sale_ok,purchase_ok,type,procure_method,supply_method,cost_method,categ_id,uom_id,uom_po_id,valuation,standard_price,list_price +product_coldroom_1,Wall panel (T) 50 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1540 +product_coldroom_2,Ceiling panel (T) 50 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1600 +product_coldroom_3,Floor panel (T) 50 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,5700 +product_coldroom_4,Floor insulation (T) 50 mm.,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,900 +product_coldroom_5,Room lamp (Water proof type),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,10000 +product_coldroom_6,"Single swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 50 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,35000 +product_coldroom_7,"Single swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 50 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,40000 +product_coldroom_8,"Single swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 50 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,38000 +product_coldroom_9,"Single swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 50 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,43000 +product_coldroom_10,"Double swing door (3 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 50 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,86000 +product_coldroom_11,"Double swing door (3 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 50 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,96000 +product_coldroom_12,"Double swing door (4 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 50 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,96000 +product_coldroom_13,"Double swing door (4 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 50 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,106000 +product_coldroom_14,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 75 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,56000 +product_coldroom_15,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 75 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,60000 +product_coldroom_16,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 75 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,75000 +product_coldroom_17,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 75 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,62000 +product_coldroom_18,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 75 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,66000 +product_coldroom_19,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 75 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,80000 +product_coldroom_20,PVC Strip curtain,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,3500 +product_coldroom_21,Pressure relief port,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,5000 +product_coldroom_22,Steel base for Cold Room,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,6000 +product_coldroom_23,"Other fitting parts (Silicone, bolt, nut, washer, rivet & etc.)",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,400 +product_coldroom_24,Floor heater with Thermostat,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,40000 +product_coldroom_25,Wall panel (T) 75 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1900 +product_coldroom_26,Ceiling panel (T) 75 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1900 +product_coldroom_27,Floor panel (T) 75 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,5800 +product_coldroom_28,Floor insulation (T) 75 mm.,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1150 +product_coldroom_29,"Single swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,48000 +product_coldroom_30,"Single swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,64000 +product_coldroom_31,"Single swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,51000 +product_coldroom_32,"Single swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,67000 +product_coldroom_33,"Double swing door (3 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,96000 +product_coldroom_34,"Double swing door (3 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,120000 +product_coldroom_35,"Double swing door (4 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,102000 +product_coldroom_36,"Double swing door (4 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,128000 +product_coldroom_37,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,65000 +product_coldroom_38,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,70000 +product_coldroom_39,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,85000 +product_coldroom_40,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,60000 +product_coldroom_41,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,68000 +product_coldroom_42,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,90000 +product_coldroom_43,Wall panel (T) 100 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,2200 +product_coldroom_44,Ceiling panel (T) 100 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,2200 +product_coldroom_45,Floor panel (T) 100 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,6000 +product_coldroom_46,Floor insulation (T) 100 mm.,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1500 +product_coldroom_47,"Single swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,48000 +product_coldroom_48,"Single swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,64000 +product_coldroom_49,"Single swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,51000 +product_coldroom_50,"Single swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,67000 +product_coldroom_51,"Double swing door (3 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,96000 +product_coldroom_52,"Double swing door (3 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,120000 +product_coldroom_53,"Double swing door (4 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,102000 +product_coldroom_54,"Double swing door (4 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,128000 +product_coldroom_55,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,65000 +product_coldroom_56,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,70000 +product_coldroom_57,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,85000 +product_coldroom_58,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,68000 +product_coldroom_59,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,75000 +product_coldroom_60,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,90000 +product_coldroom_61,Wall panel (T) 125 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,2600 +product_coldroom_62,Ceiling panel (T) 125 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,2600 +product_coldroom_63,Floor panel (T) 125 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,6300 +product_coldroom_64,Floor Insulation (T) 125 mm.,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1700 +product_coldroom_65,"Single swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,53000 +product_coldroom_66,"Single swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,68000 +product_coldroom_67,"Single swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,56000 +product_coldroom_68,"Single swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,70000 +product_coldroom_69,"Double swing door (3 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,100000 +product_coldroom_70,"Double swing door (3 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,130000 +product_coldroom_71,"Double swing door (4 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,108000 +product_coldroom_72,"Double swing door (4 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,134400 +product_coldroom_73,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,70000 +product_coldroom_74,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,85000 +product_coldroom_75,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,100000 +product_coldroom_76,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,75000 +product_coldroom_77,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,90000 +product_coldroom_78,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,120000 +product_coldroom_79,Wall panel (T) 150 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,2900 +product_coldroom_80,Ceiling panel (T) 150 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,2900 +product_coldroom_81,Floor panel (T) 150 mm. (Color steel sheet/Color steel sheet),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,7000 +product_coldroom_82,Floor Insulation (T) 150 mm.,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,2100 +product_coldroom_83,"Swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 150 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,55000 +product_coldroom_84,"Swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 150 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,77760 +product_coldroom_85,"Swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 150 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,59000 +product_coldroom_86,"Swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 150 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,81000 +product_coldroom_87,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,70000 +product_coldroom_88,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,85000 +product_coldroom_89,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,100000 +product_coldroom_90,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,75000 +product_coldroom_91,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,90000 +product_coldroom_92,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 125 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,120000 +product_coldroom_93,Heater for door ,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,m.,m.,Periodical (manual),0,130 +product_coldroom_94,Door hinge for Swing door (Kason) (Double) ,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,9750 +product_coldroom_95,Door Latch for Swing door (Kason) ,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,7800 +product_coldroom_96,Door Closer for Swing door ,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,3640 +product_coldroom_97,Door packing rubber (E : Shape) ,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,m.,m.,Periodical (manual),0,650 +product_coldroom_98,Door packing rubber for Sliding door ,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,m.,m.,Periodical (manual),0,780 +product_coldroom_99,"Entrance door for Swing door Size : (W) 800 x (H) 1,800 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,26000 +product_coldroom_100,"Entrance door for Swing door Size : (W) 1,200 x (H) 2,000 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,28600 +product_coldroom_101,"Panel for door Size : (W) 800 x (H) 1,800 x (T) 50 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,21060 +product_coldroom_102,"Panel for door Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,26000 +product_coldroom_103,"Panel for door Size : (W) 1,200 x (H) 2,000 x (T) 50 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,24700 +product_coldroom_104,"Panel for door Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,32500 +product_coldroom_105,Aluminium cap for Heater,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,m.,m.,Periodical (manual),0,390 +product_coldroom_106,Insulation bolt (n : ½) L = 110,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,104 +product_coldroom_107,Insulation bolt (n : ½) L = 170,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,156 +product_coldroom_108,Hanging plate with roller,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,3900 +product_coldroom_109,Handle for sliding door (Out side),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,9100 +product_coldroom_110,Handle for sliding door (Inside),,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,7800 +product_coldroom_111,Hinge for key,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,2600 +product_coldroom_112,"Entrance for Sliding door Size : (W) 800 x (H) 1,800 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,26000 +product_coldroom_113,"Entrance for Sliding door Size : (W) 1,200 x (H) 2,000 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,28600 +product_coldroom_114,"Panel for Sliding door Size : (W) 800 x (H) 1,800 x (T) 75 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,28600 +product_coldroom_115,"Panel for Sliding door Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,31200 +product_coldroom_116,"Panel for Sliding door Size : (W) 1,200 x (H) 2,000 x (T) 75 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,31200 +product_coldroom_117,"Panel for Sliding door Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,40300 +product_coldroom_118,"Aluminium Rail for door Size : (W) 800 x (H) 1,800 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,7150 +product_coldroom_119,"Aluminium Rail for door Size : (W) 1,200 x (H) 2,000 mm.",,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,8450 +product_coldroom_120,Steel cover for door,,,Cold Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,m.,m.,Periodical (manual),0,1040 +product_coldroom_121,Insulation Panel for Door SUS304 / SUS304 (T) 75 mm.,,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,7800 +product_coldroom_122,Insulation Panel for Door Color / Color (T) 75 mm.,,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,5200 +product_coldroom_123,Insulation Panel for Door SUS304 / SUS304 (T) 100 mm.,,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,8450 +product_coldroom_124,Insulation Panel for Door Color / Color (T) 100 mm.,,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,5850 +product_coldroom_125,Insulation Panel for Door SUS304 / SUS304 (T) 125 mm.,,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,9100 +product_coldroom_126,Insulation Panel for Door Color / Color (T) 125 mm.,,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,6500 +product_coldroom_127,Insulation Panel for Door SUS304 / SUS304 (T) 150 mm.,,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,9750 +product_coldroom_128,Insulation Panel for Door Color / Color (T) 150 mm.,,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,7150 +product_coldroom_129,Installation Cold Room Bangkok and Surroundings 0 ~ 500 m2,,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,400 +product_coldroom_130,"Installation Cold Room Bangkok and Surroundings 501~1,000 m2",,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,350 +product_coldroom_131,"Installation Cold Room Bangkok and Surroundings 1,001 m2 Up",,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,300 +product_coldroom_132,Installation Cold Room Upcountry 0 ~ 500 m2,,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,450 +product_coldroom_133,"Installation Cold Room Upcountry 501~1,000 m2",,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,400 +product_coldroom_134,"Installation Cold Room Upcountry 1,001 m2 Up",,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,300 +product_coldroom_135,Transportation Cold Room Bangkok and Surroundings,,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,lot,lot,Periodical (manual),0,6500 +product_coldroom_136,Transportation Cold Room Upcountry,,,Cold Room,TRUE,FALSE,Service,Make to Order,Buy,Standard Price,Sale Info,lot,lot,Periodical (manual),0,0 diff --git a/masterdata/rev4_final/57.product.product.cleanroom.csv b/masterdata/rev4_final/57.product.product.cleanroom.csv new file mode 100755 index 0000000..d74cddf --- /dev/null +++ b/masterdata/rev4_final/57.product.product.cleanroom.csv @@ -0,0 +1,81 @@ +id,name,default_code,partner_id,tag_ids,sale_ok,purchase_ok,type,procure_method,supply_method,cost_method,categ_id,uom_id,uom_po_id,valuation,standard_price,list_price +product_cleanroom_1,"Double sliding door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Stainless)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,60000 +product_cleanroom_2,"Emergency Double swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,55000 +product_cleanroom_3,"Double sliding door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,54000 +product_cleanroom_4,"Double swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (SS/SS)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,40000 +product_cleanroom_5,"Double swing door 4 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (SS/SS)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,40000 +product_cleanroom_6,"Combination swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (SS/SS)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,40000 +product_cleanroom_7,"Single sliding door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Stainless)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,40000 +product_cleanroom_8,"Emergency Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,40000 +product_cleanroom_9,Inter Lock 2 CH,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,40000 +product_cleanroom_10,"Double swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,35000 +product_cleanroom_11,"Double swing door 4 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,35000 +product_cleanroom_12,"Combination swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,35000 +product_cleanroom_13,"Single sliding door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,35000 +product_cleanroom_14,"Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 50 mm. (SS/SS)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,34000 +product_cleanroom_15,"Single swing door 4 Frame (W) 900 x (H) 2,100 x (T) 50 mm. (SS/SS)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,34000 +product_cleanroom_16,"Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (SS/SS)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,30000 +product_cleanroom_17,"Single swing door 4 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (SS/SS)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,30000 +product_cleanroom_18,"Sliding window (Glass) (W) 900 x (H) 2,000 (T) 6 mm.",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,30000 +product_cleanroom_19,"Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 50 mm. (Color steel sheet)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,27000 +product_cleanroom_20,"Single swing door 4 Frame (W) 900 x (H) 2,100 x (T) 50 mm. (Color steel sheet)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,27000 +product_cleanroom_21,"Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,25000 +product_cleanroom_22,"Single swing door 4 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,25000 +product_cleanroom_23,Panel (T) 200 mm. Wall return for Hepa (Stainless /Stainless) ไม่รวม Hepa,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,20000 +product_cleanroom_24,"Emergency Service door (Single swing) 4 Frame (W) 600 x (H) 1,000 x (T) 42 mm. (Color steel sheet)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,20000 +product_cleanroom_25,"Sliding window (Glass) (W) 900 x (H) 1,800 (T) 6 mm.",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,20000 +product_cleanroom_26,Panel (T) 200 mm. Wall return air (Stainless /Stainless),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,16000 +product_cleanroom_27,Panel (T) 100 mm. Wall return air (Stainless /Stainless),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,12000 +product_cleanroom_28,Panel (T) 200 mm. Wall return for Hepa (Color/Color) ไม่รวม Hepa,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,12000 +product_cleanroom_29,"Double fixed window (Temper glass) (W) 1,160 x (H) 900 (T) 6 mm.",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,12000 +product_cleanroom_30,Panel (T) 200 mm. Wall return air (Color / Color),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,8000 +product_cleanroom_31,Double fixed window (Temper glass) (W) 865 x (H) 865 (T) 6 mm.,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,8000 +product_cleanroom_32,"หุ้มเสามาตรฐาน ผนังอย่างเดียว (400 x 400 mm. , 4 ด้าน)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,8000 +product_cleanroom_33,"Single fixed window (Temper glass) (W) 1,160 x (H) 900 (T) 6 mm.",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,7500 +product_cleanroom_34,Transportation Clean RoomBangkok and Surroudings,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,lot,lot,Periodical (manual),0,7000 +product_cleanroom_35,Panel (T) 100 mm. Wall return air (Color / Color),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,6000 +product_cleanroom_36,Single fixed window (Temper glass) (W) 865 x (H) 865 (T) 6 mm.,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,5500 +product_cleanroom_37,Panel (T) 125 mm. Rock Wool (Color / Color),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,4500 +product_cleanroom_38,Panel (T) 100 mm. Rock Wool (Color / Color),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,4000 +product_cleanroom_39,Temporary wall,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,4000 +product_cleanroom_40,Panel (T) 75 mm. Rock Wool (Color / Color),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,3500 +product_cleanroom_41,Panel (T) 50 mm. Rock Wool (Color / Color),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,3000 +product_cleanroom_42,Panel (T) 42 mm. Rock Wool (Color / Color),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,2840 +product_cleanroom_43,Panel (T) 100 mm. Polyurethane Foam (Color / Color),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,2000 +product_cleanroom_44,Panel (T) 75 mm. Polyurethane Foam (Color / Color),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1900 +product_cleanroom_45,Panel (T) 100 mm. Polyurethane Foam (Color / Galvanized),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1900 +product_cleanroom_46,Panel (T) 75 mm. Polyurethane Foam (Color / Galvanized),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1850 +product_cleanroom_47,Panel (T) 100 mm. Polyurethane Foam (Galvanized / Galvanized),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1850 +product_cleanroom_48,Panel (T) 75 mm. Polyurethane Foam (Galvanized / Galvanized),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1800 +product_cleanroom_49,Panel (T) 50 mm. Polyurethane Foam (Color / Color),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1540 +product_cleanroom_50,Panel (T) 50 mm. Polyurethane Foam (Color / Galvanized),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1500 +product_cleanroom_51,"Hanging system (Ceiling beam, bracket, T-Bar)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,m.,m.,Periodical (manual),0,1500 +product_cleanroom_52,"Opening panel with aluminium frame for Hepa, Lighting",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,1500 +product_cleanroom_53,Demolish Single swing / sliding door,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,1500 +product_cleanroom_54,Demolish Double swing / sliding door,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,1500 +product_cleanroom_55,Panel (T) 50 mm. Polyurethane Foam (Galvanized / Galvanized),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1450 +product_cleanroom_56,Panel (T) 42 mm. Polyurethane Foam (Color / Color),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1350 +product_cleanroom_57,Panel (T) 42 mm. Polyurethane Foam (Color / Galvanized),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1300 +product_cleanroom_58,Panel (T) 42 mm. Polyurethane Foam (Galvanized / Galvanized),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1250 +product_cleanroom_59,Panel (T) 25 mm. Polyurethane Foam (Color / Color),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1200 +product_cleanroom_60,Aluminium beam support,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,m.,m.,Periodical (manual),0,1200 +product_cleanroom_61,Aluminium Curve,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,m.,m.,Periodical (manual),0,1200 +product_cleanroom_62,Opening cutting Lighting,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,1200 +product_cleanroom_63,Panel (T) 25 mm. Polyurethane Foam (Color / Galvanized),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1150 +product_cleanroom_64,Panel (T) 25 mm. Polyurethane Foam (Galvanized / Galvanized),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,1100 +product_cleanroom_65,Aluminium angle + PVC Curve (30 x 30),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,m.,m.,Periodical (manual),0,800 +product_cleanroom_66,Aluminium floor base,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,m.,m.,Periodical (manual),0,700 +product_cleanroom_67,Aluminium Angle 40 x 40,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,m.,m.,Periodical (manual),0,500 +product_cleanroom_68,Spray paint,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,tube,tube,Periodical (manual),0,500 +product_cleanroom_69,Installation Clean Room with Supervisor (Upcountry),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,450 +product_cleanroom_70,Installation Clean Room with Supervisor (Bangkok and Surroudings area),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,400 +product_cleanroom_71,"Other fitting parts (Silicone, bolt, nut & washer)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,300 +product_cleanroom_72,"Silicone ""Sika"" (0.4 Tube/m2)",,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,tube,tube,Periodical (manual),0,200 +product_cleanroom_73,ฝังท่อ BOX - SWITCH,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,200 +product_cleanroom_74,Demolish C/R Panel with fitting parts,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,150 +product_cleanroom_75,Demolish window glass,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,150 +product_cleanroom_76,Hole for Sprinkle Head,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,hole,hole,Periodical (manual),0,80 +product_cleanroom_77,Lighting,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,set,set,Periodical (manual),0,0 +product_cleanroom_78,Installation Clean Room with Supervisor (Oversea),,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,sqm.,sqm.,Periodical (manual),0,0 +product_cleanroom_79,Transportation Clean Room Upcountry,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,lot,lot,Periodical (manual),0,0 +product_cleanroom_80,Transportation Clean Room Oversea,,,Clean Room,TRUE,FALSE,Consumable,Make to Order,Buy,Standard Price,Sale Info,lot,lot,Periodical (manual),0,0 diff --git a/masterdata/rev4_final/60.product.pricelist.ahu.csv b/masterdata/rev4_final/60.product.pricelist.ahu.csv new file mode 100755 index 0000000..359fc01 --- /dev/null +++ b/masterdata/rev4_final/60.product.pricelist.ahu.csv @@ -0,0 +1,4 @@ +id,currency_id/id,name,type +pricelist_ahu_1,base.THB,AHU Price List #1,sale +pricelist_ahu_2,base.THB,AHU Price List #2,sale +pricelist_ahu_3,base.THB,AHU Price List #3,sale diff --git a/masterdata/rev4_final/65.product.pricelist.version.ahu.csv b/masterdata/rev4_final/65.product.pricelist.version.ahu.csv new file mode 100755 index 0000000..b1b1877 --- /dev/null +++ b/masterdata/rev4_final/65.product.pricelist.version.ahu.csv @@ -0,0 +1,4 @@ +id,name,pricelist_id/id +pricelist_ahu_v1,Default AHU Pricelist #1 Version,pricelist_ahu_1 +pricelist_ahu_v2,Default AHU Pricelist #2 Version,pricelist_ahu_2 +pricelist_ahu_v3,Default AHU Pricelist #3 Version,pricelist_ahu_3 diff --git a/masterdata/rev4_final/SQL b/masterdata/rev4_final/SQL new file mode 100755 index 0000000..d9037bc --- /dev/null +++ b/masterdata/rev4_final/SQL @@ -0,0 +1,2 @@ +-- We need this because, somehow, we can't set Product_ID in product.pricelist.item.csv +update product_pricelist_item set product_id = product_tmpl_id where price_discount = -1; \ No newline at end of file diff --git a/masterdata/rev4_final/product.pricelist.item.csv b/masterdata/rev4_final/product.pricelist.item.csv new file mode 100755 index 0000000..151d3e1 --- /dev/null +++ b/masterdata/rev4_final/product.pricelist.item.csv @@ -0,0 +1,106 @@ +id,price_version_id,name,product_tmpl_id,base,price_discount,price_surcharge +pricelist_ahu_v1_prod_1,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_1,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) None PVC. Frame,1,-1,826.88 +pricelist_ahu_v1_prod_2,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_2,PU Panel (T) 25 mm. (Off White/Off White steel sheet) None PVC. Frame,1,-1,882 +pricelist_ahu_v1_prod_3,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_3,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) None PVC. Frame,1,-1,1982 +pricelist_ahu_v1_prod_4,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_4,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) None PVC. Frame,1,-1,3082 +pricelist_ahu_v1_prod_5,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_5,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) PVC. Frame,1,-1,1405.3 +pricelist_ahu_v1_prod_6,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_6,PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame,1,-1,1455.3 +pricelist_ahu_v1_prod_7,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_7,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame,1,-1,2555.3 +pricelist_ahu_v1_prod_8,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_8,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame,1,-1,3655.3 +pricelist_ahu_v1_prod_9,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_9,"PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v1_prod_10,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_10,"PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v1_prod_11,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_11,"PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame. , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v1_prod_12,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_12,PU Panel (T) 42 mm. (Galvanized/Off White steel sheet) Slip joint with PVC. Frame,1,-1,1598.24 +pricelist_ahu_v1_prod_13,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_13,PU Panel (T) 42 mm. (Off White/Off White steel sheet) Slip joint with PVC. Frame,1,-1,1648.24 +pricelist_ahu_v1_prod_14,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_14,PU Panel (T) 42 mm. (Stainless/Off White steel sheet) Slip joint with PVC. Frame,1,-1,2748.24 +pricelist_ahu_v1_prod_15,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_15,PU Panel (T) 42 mm. (Stainless/Stainless steel sheet) Slip joint with PVC. Frame,1,-1,3848.24 +pricelist_ahu_v1_prod_16,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_16,PU Panel (T) 50 mm. (Galvanized/Off White steel sheet) Slip joint with Camlock,1,-1,1162.75 +pricelist_ahu_v1_prod_17,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_17,PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint with Camlock,1,-1,1212.75 +pricelist_ahu_v1_prod_18,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_18,PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint with Camlock,1,-1,2312.75 +pricelist_ahu_v1_prod_19,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_19,PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint with Camlock,1,-1,3412.75 +pricelist_ahu_v1_prod_20,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_20,"TGH : PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v1_prod_21,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_21,"TGH : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v1_prod_22,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_22,"TGH : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v1_prod_23,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_23,"CJ : PU Panel (T) 50 mm. (Off White/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v1_prod_24,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_24,"CJ : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v1_prod_25,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_25,"CJ : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v1_prod_26,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_26,Rockwool Panel (T) 50 mm. ( Off White / Off White steel sheet),1,-1,1 +pricelist_ahu_v1_prod_27,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_27,Rockwool Panel (T) 50 mm. ( Styainless / Off White steel sheet),1,-1,1 +pricelist_ahu_v1_prod_28,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_28,Rockwool Panel (T) 50 mm. ( Stainlesse / Stainless steel sheet),1,-1,1 +pricelist_ahu_v1_prod_29,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_29,Single swing door 4 frame.(Color/Color steel sheet) (W) 500 x (H) 700 x (T) 50 mm.(Standard size),1,-1,4410 +pricelist_ahu_v1_prod_30,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_30,CJ : Single swing door 4 frame.(Color/Color steel sheet),1,-1,1 +pricelist_ahu_v1_prod_31,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_31,TGH : Single swing door 4 frame.(Color / Color steel sheet),1,-1,1 +pricelist_ahu_v1_prod_32,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_32,Stainless steel sheet (T) 0.5 mm. (Add 1 side panel),1,-1,1100 +pricelist_ahu_v1_prod_33,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_33,Aluminium Angle 40x40 (Off white color) (L) 6 m.,1,-1,937.13 +pricelist_ahu_v1_prod_34,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_34,Off white color steel sheet (T) 0.5 mm. ,1,-1,367.5 +pricelist_ahu_v1_prod_35,Default AHU Pricelist #1 Version,pricelist_ahu_v1_prod_35,Color Off White Spray (MT158),1,-1,367.5 +pricelist_ahu_v2_prod_1,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_1,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) None PVC. Frame,1,-1,1 +pricelist_ahu_v2_prod_2,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_2,PU Panel (T) 25 mm. (Off White/Off White steel sheet) None PVC. Frame,1,-1,880 +pricelist_ahu_v2_prod_3,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_3,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) None PVC. Frame,1,-1,1980 +pricelist_ahu_v2_prod_4,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_4,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) None PVC. Frame,1,-1,3080 +pricelist_ahu_v2_prod_5,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_5,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) PVC. Frame,1,-1,1 +pricelist_ahu_v2_prod_6,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_6,PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame,1,-1,935 +pricelist_ahu_v2_prod_7,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_7,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame,1,-1,2035 +pricelist_ahu_v2_prod_8,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_8,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame,1,-1,3135 +pricelist_ahu_v2_prod_9,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_9,"PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",1,-1,995 +pricelist_ahu_v2_prod_10,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_10,"PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",1,-1,2095 +pricelist_ahu_v2_prod_11,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_11,"PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame. , Steel Flat-Bar",1,-1,3195 +pricelist_ahu_v2_prod_12,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_12,PU Panel (T) 42 mm. (Galvanized/Off White steel sheet) Slip joint with PVC. Frame,1,-1,1 +pricelist_ahu_v2_prod_13,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_13,PU Panel (T) 42 mm. (Off White/Off White steel sheet) Slip joint with PVC. Frame,1,-1,1 +pricelist_ahu_v2_prod_14,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_14,PU Panel (T) 42 mm. (Stainless/Off White steel sheet) Slip joint with PVC. Frame,1,-1,1 +pricelist_ahu_v2_prod_15,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_15,PU Panel (T) 42 mm. (Stainless/Stainless steel sheet) Slip joint with PVC. Frame,1,-1,1 +pricelist_ahu_v2_prod_16,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_16,PU Panel (T) 50 mm. (Galvanized/Off White steel sheet) Slip joint with Camlock,1,-1,1 +pricelist_ahu_v2_prod_17,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_17,PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint with Camlock,1,-1,1 +pricelist_ahu_v2_prod_18,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_18,PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint with Camlock,1,-1,1 +pricelist_ahu_v2_prod_19,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_19,PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint with Camlock,1,-1,1 +pricelist_ahu_v2_prod_20,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_20,"TGH : PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",1,-1,1210 +pricelist_ahu_v2_prod_21,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_21,"TGH : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",1,-1,2310 +pricelist_ahu_v2_prod_22,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_22,"TGH : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",1,-1,3410 +pricelist_ahu_v2_prod_23,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_23,"CJ : PU Panel (T) 50 mm. (Off White/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",1,-1,1210 +pricelist_ahu_v2_prod_24,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_24,"CJ : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",1,-1,2310 +pricelist_ahu_v2_prod_25,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_25,"CJ : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",1,-1,3410 +pricelist_ahu_v2_prod_26,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_26,Rockwool Panel (T) 50 mm. ( Off White / Off White steel sheet),1,-1,2755 +pricelist_ahu_v2_prod_27,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_27,Rockwool Panel (T) 50 mm. ( Styainless / Off White steel sheet),1,-1,3855 +pricelist_ahu_v2_prod_28,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_28,Rockwool Panel (T) 50 mm. ( Stainlesse / Stainless steel sheet),1,-1,4955 +pricelist_ahu_v2_prod_29,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_29,Single swing door 4 frame.(Color/Color steel sheet) (W) 500 x (H) 700 x (T) 50 mm.(Standard size),1,-1,1 +pricelist_ahu_v2_prod_30,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_30,CJ : Single swing door 4 frame.(Color/Color steel sheet),1,-1,2450 +pricelist_ahu_v2_prod_31,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_31,TGH : Single swing door 4 frame.(Color / Color steel sheet),1,-1,3300 +pricelist_ahu_v2_prod_32,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_32,Stainless steel sheet (T) 0.5 mm. (Add 1 side panel),1,-1,1100 +pricelist_ahu_v2_prod_33,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_33,Aluminium Angle 40x40 (Off white color) (L) 6 m.,1,-1,1 +pricelist_ahu_v2_prod_34,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_34,Off white color steel sheet (T) 0.5 mm. ,1,-1,345 +pricelist_ahu_v2_prod_35,Default AHU Pricelist #2 Version,pricelist_ahu_v2_prod_35,Color Off White Spray (MT158),1,-1,370 +pricelist_ahu_v3_prod_1,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_1,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) None PVC. Frame,1,-1,830 +pricelist_ahu_v3_prod_2,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_2,PU Panel (T) 25 mm. (Off White/Off White steel sheet) None PVC. Frame,1,-1,850 +pricelist_ahu_v3_prod_3,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_3,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) None PVC. Frame,1,-1,1900 +pricelist_ahu_v3_prod_4,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_4,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) None PVC. Frame,1,-1,2900 +pricelist_ahu_v3_prod_5,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_5,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) PVC. Frame,1,-1,900 +pricelist_ahu_v3_prod_6,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_6,PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame,1,-1,950 +pricelist_ahu_v3_prod_7,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_7,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame,1,-1,2000 +pricelist_ahu_v3_prod_8,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_8,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame,1,-1,3000 +pricelist_ahu_v3_prod_9,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_9,"PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v3_prod_10,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_10,"PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v3_prod_11,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_11,"PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame. , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v3_prod_12,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_12,PU Panel (T) 42 mm. (Galvanized/Off White steel sheet) Slip joint with PVC. Frame,1,-1,1 +pricelist_ahu_v3_prod_13,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_13,PU Panel (T) 42 mm. (Off White/Off White steel sheet) Slip joint with PVC. Frame,1,-1,1 +pricelist_ahu_v3_prod_14,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_14,PU Panel (T) 42 mm. (Stainless/Off White steel sheet) Slip joint with PVC. Frame,1,-1,1 +pricelist_ahu_v3_prod_15,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_15,PU Panel (T) 42 mm. (Stainless/Stainless steel sheet) Slip joint with PVC. Frame,1,-1,1 +pricelist_ahu_v3_prod_16,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_16,PU Panel (T) 50 mm. (Galvanized/Off White steel sheet) Slip joint with Camlock,1,-1,1080 +pricelist_ahu_v3_prod_17,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_17,PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint with Camlock,1,-1,1100 +pricelist_ahu_v3_prod_18,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_18,PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint with Camlock,1,-1,2100 +pricelist_ahu_v3_prod_19,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_19,PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint with Camlock,1,-1,3100 +pricelist_ahu_v3_prod_20,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_20,"TGH : PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v3_prod_21,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_21,"TGH : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v3_prod_22,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_22,"TGH : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v3_prod_23,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_23,"CJ : PU Panel (T) 50 mm. (Off White/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v3_prod_24,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_24,"CJ : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v3_prod_25,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_25,"CJ : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",1,-1,1 +pricelist_ahu_v3_prod_26,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_26,Rockwool Panel (T) 50 mm. ( Off White / Off White steel sheet),1,-1,1 +pricelist_ahu_v3_prod_27,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_27,Rockwool Panel (T) 50 mm. ( Styainless / Off White steel sheet),1,-1,1 +pricelist_ahu_v3_prod_28,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_28,Rockwool Panel (T) 50 mm. ( Stainlesse / Stainless steel sheet),1,-1,1 +pricelist_ahu_v3_prod_29,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_29,Single swing door 4 frame.(Color/Color steel sheet) (W) 500 x (H) 700 x (T) 50 mm.(Standard size),1,-1,3500 +pricelist_ahu_v3_prod_30,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_30,CJ : Single swing door 4 frame.(Color/Color steel sheet),1,-1,1 +pricelist_ahu_v3_prod_31,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_31,TGH : Single swing door 4 frame.(Color / Color steel sheet),1,-1,1 +pricelist_ahu_v3_prod_32,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_32,Stainless steel sheet (T) 0.5 mm. (Add 1 side panel),1,-1,1000 +pricelist_ahu_v3_prod_33,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_33,Aluminium Angle 40x40 (Off white color) (L) 6 m.,1,-1,1 +pricelist_ahu_v3_prod_34,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_34,Off white color steel sheet (T) 0.5 mm. ,1,-1,350 +pricelist_ahu_v3_prod_35,Default AHU Pricelist #3 Version,pricelist_ahu_v3_prod_35,Color Off White Spray (MT158),1,-1,1 diff --git a/masterdata/rev5/.~lock.MC_2014-Price-list-for_ERP.xlsx# b/masterdata/rev5/.~lock.MC_2014-Price-list-for_ERP.xlsx# new file mode 100755 index 0000000..1fe9262 --- /dev/null +++ b/masterdata/rev5/.~lock.MC_2014-Price-list-for_ERP.xlsx# @@ -0,0 +1 @@ +,kittiu,kittiu,12.05.2014 12:57,file:///home/kittiu/.config/libreoffice/4; \ No newline at end of file diff --git a/masterdata/rev5/MC_2014-Price-list-for_ERP.xlsx b/masterdata/rev5/MC_2014-Price-list-for_ERP.xlsx new file mode 100755 index 0000000..1704976 Binary files /dev/null and b/masterdata/rev5/MC_2014-Price-list-for_ERP.xlsx differ diff --git a/masterdata/rev5/product.product.csv b/masterdata/rev5/product.product.csv new file mode 100755 index 0000000..a8a6b25 --- /dev/null +++ b/masterdata/rev5/product.product.csv @@ -0,0 +1,3 @@ +"id","name" +"Product_00235","Portable oxygen analyser" +"Product_00236","Portable oxygen analyser" diff --git a/mrp_product_location/__init__.py b/mrp_product_location/__init__.py new file mode 100755 index 0000000..2361477 --- /dev/null +++ b/mrp_product_location/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 Ecosoft Co., Ltd. (http://ecosoft.co.th). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import mrp_product_location + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/mrp_product_location/__openerp__.py b/mrp_product_location/__openerp__.py new file mode 100755 index 0000000..75cda8a --- /dev/null +++ b/mrp_product_location/__openerp__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 Ecosoft Co., Ltd. (http://ecosoft.co.th). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'MRP Product Location', + 'version': '1.0', + 'category': 'Manufacturing', + 'description': """ + +Providing visibility of raw material stock card of an Manufacturing Order (parent only). + + """, + 'author': 'Ecosoft', + 'website': 'http://www.ecosoft.co.th', + 'depends': ['mrp'], + 'data': [ + 'security/ir.model.access.csv', + 'mrp_view.xml', + ], + 'active': False, + 'installable': True +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/mrp_product_location/mrp_product_location.py b/mrp_product_location/mrp_product_location.py new file mode 100755 index 0000000..26b3e14 --- /dev/null +++ b/mrp_product_location/mrp_product_location.py @@ -0,0 +1,138 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +############################################## +# +# ChriCar Beteiligungs- und Beratungs- GmbH +# Copyright (C) ChriCar Beteiligungs- und Beratungs- GmbH +# all rights reserved +# created 2009-09-19 23:51:03+02 +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs. +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company. +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU Affero General Public License +# as published by the Free Software Foundation; either version 3 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program; if not, see or +# write to the Free Software Foundation, Inc., +# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +############################################### +from openerp.osv import fields, osv +from openerp.tools.sql import drop_view_if_exists +import openerp.addons.decimal_precision as dp + + +class mrp_production(osv.osv): + + _inherit = "mrp.production" + + def _total_qty_returned(self, cursor, user, ids, name, arg, context=None): + res = dict.fromkeys(ids, False) + tot = 0.0 + for production in self.browse(cursor, user, ids, context=context): + for line in production.mrp_product_location_ids: + tot += line.qty_available + res[production.id] = tot + return res + + _columns = { + 'mrp_product_location_ids': fields.one2many('mrp.product.location', 'production_id', 'Product by Stock'), + 'total_qty_returned': fields.function(_total_qty_returned, string='Quantity FG (returned)', type='float') + } + +mrp_production() + +class mrp_product_location(osv.osv): + _name = "mrp.product.location" + _description = "Available Stock By Location" + _auto = False + _table = "mrp_product_location" + + def _product_available(self, cr, uid, ids, field_names=None, arg=False, context=None): + """ Finds the incoming and outgoing quantity of product. + @return: Dictionary of values + """ + if not field_names: + field_names = [] + if context is None: + context = {} + res = {} + + for product_loc in self.browse(cr, uid, ids): + c = context.copy() + c.update({ 'states': ('done',), 'what': ('in', 'out'), 'location': product_loc.location_id.id}) + stock = self.pool.get('product.product').get_product_available(cr, uid, [product_loc.product_id.id], context=c) + res[product_loc.id] = stock.get(product_loc.product_id.id, 0.0) + return res + + _columns = { + 'location_id': fields.many2one('stock.location', 'Location', select=True, required=True, readonly=True), + 'production_id': fields.many2one('mrp.production', 'MO', select=True, required=True, readonly=True), + 'product_id': fields.many2one('product.product', 'Product', select=True, required=True, readonly=True), + 'company_id': fields.many2one('res.company', 'Company', readonly=True), + 'qty_available': fields.function(_product_available, string='Available Qty', + type='float', digits_compute=dp.get_precision('Product Unit of Measure')), + } + + def init(self, cr): + drop_view_if_exists(cr, 'mrp_product_location') + location_id = self.pool.get('ir.model.data').get_object_reference(cr, None, 'stock', 'stock_location_locations_virtual')[1] + cr.execute("""create or replace view mrp_product_location + as + SELECT ROW_NUMBER() OVER (ORDER BY location_id, production_id, product_id DESC) AS id, * + FROM ( + SELECT location_id, b.production_id, a.product_id, a.company_id FROM + (SELECT + l.id AS location_id,product_id, + l.company_id + FROM stock_location l, + stock_move i + WHERE l.usage='internal' + AND i.location_dest_id = l.id + AND state != 'cancel' + AND i.company_id = l.company_id + AND l.active = True + AND l.location_id <> %s + AND l.chained_location_type = 'none' + and l.posx = -1 + UNION + SELECT + l.id AS location_id ,product_id, + l.company_id + FROM stock_location l, + stock_move o + WHERE l.usage='internal' + AND o.location_id = l.id + AND state != 'cancel' + AND o.company_id = l.company_id + AND l.active = True + AND l.location_id <> %s + AND l.chained_location_type = 'none' + and l.posx = -1 + ) a + JOIN + (select mrp.id production_id, bom.product_id + from mrp_production mrp + join mrp_bom bom + on mrp.bom_id is not null and mrp.parent_id is null + and bom.bom_id = mrp.bom_id + and mrp.state in ('draft') + order by mrp.id, bom.product_id) b + ON a.product_id = b.product_id) AS mrp_product_location + ORDER BY location_id, production_id, product_id DESC + ;""" % (str(location_id), str(location_id))) + +mrp_product_location() diff --git a/mrp_product_location/mrp_view.xml b/mrp_product_location/mrp_view.xml new file mode 100755 index 0000000..bcb97d6 --- /dev/null +++ b/mrp_product_location/mrp_view.xml @@ -0,0 +1,31 @@ + + + + + mrp.production.form.view.ext + mrp.production + + + + + + + + + + + + + + + +
+

+

+
+
+
+
+
+
diff --git a/mrp_product_location/security/ir.model.access.csv b/mrp_product_location/security/ir.model.access.csv new file mode 100755 index 0000000..1df1ff3 --- /dev/null +++ b/mrp_product_location/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink +access_mrp_product_location,access_mrp_product_location,model_mrp_product_location,base.group_user,1,1,1,1 diff --git a/mrp_production_status/__init__.py b/mrp_production_status/__init__.py new file mode 100755 index 0000000..0eabbc8 --- /dev/null +++ b/mrp_production_status/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import mrp + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/mrp_production_status/__openerp__.py b/mrp_production_status/__openerp__.py new file mode 100755 index 0000000..eb4a6aa --- /dev/null +++ b/mrp_production_status/__openerp__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 Ecosoft Co., Ltd. (http://ecosoft.co.th). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : 'Production Status Tracking', + 'version' : '1.0', + 'author' : 'Ecosoft', + 'summary': 'Production Status Tracking for SQP', + 'description': """ + + """, + 'category': 'Production Status', + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['mrp','product_bom_template'], + 'demo' : [], + 'data' : [ + 'security/mrp_security.xml', + 'security/ir.model.access.csv', + 'mrp_view.xml', + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/mrp_production_status/mrp.py b/mrp_production_status/mrp.py new file mode 100755 index 0000000..8bca0ab --- /dev/null +++ b/mrp_production_status/mrp.py @@ -0,0 +1,273 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +UID_ROOT = 1 +import netsvc +from osv import osv, fields +from tools.translate import _ + +class mrp_production(osv.osv): + + _inherit = 'mrp.production' + + def _progress_rate(self, cr, uid, ids, names, arg, context=None): + production_status_obj = self.pool.get('mrp.production.status') + res = dict([(id, {'progress_rate':0.0}) for id in ids]) + stages = ['s1','s2','s3','s4','s5'] + + # compute progress rates + for id in ids: + line_ids = production_status_obj.search(cr, uid, [('production_id','=',id)]) + results = production_status_obj.read(cr, uid, line_ids, ['product_qty'] + stages + ['num_stations']) + num_products = len(results) # I.e., 5 product lines + actual_total = 0.0 + for result in results: + actual_line_total = 0.0 + planned_line = result['product_qty'] * result['num_stations'] + if planned_line: + for stage in stages: + actual_line = result[stage] + actual_line_total += actual_line + + ratio_completion = (actual_line_total/planned_line) + actual_total += ratio_completion > 1 and 1 or ratio_completion + res[id]['progress_rate'] = 100 * (actual_total/num_products) + else: + res[id]['progress_rate'] = 0.0 + return res + + def _get_mrp_proudction(self, cr, uid, ids, context=None): + result = {} + for line in self.pool.get('mrp.production.status').browse(cr, uid, ids, context=context): + result[line.production_id.id] = True + return result.keys() + + _columns = { + 'status_lines': fields.one2many('mrp.production.status', 'production_id', 'Status Tracking', + readonly=False, states={'done':[('readonly',True)]}), + 'progress_rate': fields.function(_progress_rate, multi="progress", string='Progress', type='float', group_operator="avg", help="Percent of tasks closed according to the total of tasks todo.", + store = { + 'mrp.production': (lambda self, cr, uid, ids, c={}: ids, ['status_lines','num_stations'], 10), + 'mrp.production.status': (_get_mrp_proudction, ['s1', 's2', 's3', 's4', 's5', 'num_stations'], 10), + }), + 'num_stations': fields.selection([(1,'1'), (2,'2'), (3,'3'), (4,'4'), (5,'5')], '# Stations', required=True, readonly=False, states={'done':[('readonly',True)]}), + 'line_number_s1': fields.selection([('L1','Line 1'), + ('L2','Line 2'), + ('L3','Line 3'), + ('L4','Line 4'), + ('L5','Line 5') + ], 'Line # s1'), + 'line_number_s2': fields.selection([('L1','Line 1'), + ('L2','Line 2'), + ('L3','Line 3'), + ('L4','Line 4'), + ('L5','Line 5') + ], 'Line # s2'), + 'line_number_s3': fields.selection([('L1','Line 1'), + ('L2','Line 2'), + ('L3','Line 3'), + ('L4','Line 4'), + ('L5','Line 5') + ], 'Line # s3'), + 'line_number_s4': fields.selection([('L1','Line 1'), + ('L2','Line 2'), + ('L3','Line 3'), + ('L4','Line 4'), + ('L5','Line 5') + ], 'Line # s4'), + 'line_number_s5': fields.selection([('L1','Line 1'), + ('L2','Line 2'), + ('L3','Line 3'), + ('L4','Line 4'), + ('L5','Line 5') + ], 'Line # s5') + } + _defaults = { + 'num_stations': 5, + } + + # When create stock.move, also create for status tracking tab + def _make_production_consume_line(self, cr, uid, production_line, parent_move_id, source_location_id=False, context=None): + move_id = super(mrp_production, self)._make_production_consume_line(cr, uid, production_line, parent_move_id, source_location_id=source_location_id, context=context) + move = self.pool.get('stock.move').browse(cr, uid, move_id) + self.pool.get('mrp.production.status').create(cr, uid, { + 'production_id': production_line.production_id.id, + 'product_id': move.product_id.id, + 'product_qty': production_line.product_qty, + 'product_uom': production_line.product_uom.id, + }) + return move_id + + def reset_stations(self, cr, uid, ids, context=None): + if context is None: + context = {} + + status_line_obj = self.pool.get('mrp.production.status') + num_stations = context.get('num_stations', False) + + if not num_stations: + return False + + line_ids = status_line_obj.search(cr, uid, [('production_id', 'in', ids)], context=context) + status_line_obj.write(cr, uid, line_ids, {'num_stations': num_stations}, context=context) + + return { + 'type': 'ir.actions.client', + 'tag': 'reload' + } + + # If select line, cascade to all childs + def write(self, cr, uid, ids, vals, context=None): + res = super(mrp_production, self).write(cr, uid, ids, vals, context=context) + if vals.get('line_number_s1', False) or \ + vals.get('line_number_s2', False) or \ + vals.get('line_number_s3', False) or \ + vals.get('line_number_s4', False) or \ + vals.get('line_number_s5', False): + mo = self.browse(cr, uid, ids[0]) + if not mo.parent_id and mo.child_ids: # For a parent, + # update statue tracking line + status_line_ids = [x.id for x in mo.status_lines] + if vals.get('line_number_s1'): + self.pool.get('mrp.production.status').write(cr, uid, status_line_ids, + {'s1_line': vals.get('line_number_s1'),}, + context=context) + if vals.get('line_number_s2'): + self.pool.get('mrp.production.status').write(cr, uid, status_line_ids, + {'s2_line': vals.get('line_number_s2')}, + context=context) + if vals.get('line_number_s3'): + self.pool.get('mrp.production.status').write(cr, uid, status_line_ids, + {'s3_line': vals.get('line_number_s3')}, + context=context) + if vals.get('line_number_s4'): + self.pool.get('mrp.production.status').write(cr, uid, status_line_ids, + {'s4_line': vals.get('line_number_s4')}, + context=context) + if vals.get('line_number_s5'): + self.pool.get('mrp.production.status').write(cr, uid, status_line_ids, + {'s5_line': vals.get('line_number_s5')}, + context=context) + return res + +mrp_production() + +class mrp_production_status(osv.osv): + + _name = 'mrp.production.status' + _description = 'Production Status Tracking' + _order = 'sequence, id' + + def _get_product_sequence(self, cr, uid, ids, name, arg, context=None): + res = {} + product_obj = self.pool.get('product.product') + for product_line in self.browse(cr, uid, ids, context=context): + result = product_obj.read(cr, uid, [product_line.product_id.id], ['sequence']) + if result[0]['sequence']: + res[product_line.id] = result[0]['sequence'] or 10000 + return res + + _columns = { + 'sequence': fields.function(_get_product_sequence, string='Sequence', type='integer', store=True), + 'production_id': fields.many2one('mrp.production', 'Manufacturing Order', required=True, ondelete='cascade', select=True), + 'product_id': fields.many2one('product.product', 'Product', readonly=True), + 'product_qty': fields.float('Quantity', readonly=True), + 'product_uom': fields.many2one('product.uom', 'Unit of Measure ', readonly=True), + 's1': fields.float('S1'), + 's1_line': fields.selection([('L1','L1'), + ('L2','L2'), + ('L3','L3'), + ('L4','L4'), + ('L5','L5') + ], 'S1L#'), + 's2': fields.float('S2'), + 's2_line': fields.selection([('L1','L1'), + ('L2','L2'), + ('L3','L3'), + ('L4','L4'), + ('L5','L5') + ], 'S1L#'), + 's3': fields.float('S3'), + 's3_line': fields.selection([('L1','L1'), + ('L2','L2'), + ('L3','L3'), + ('L4','L4'), + ('L5','L5') + ], 'S1L#'), + 's4': fields.float('S4'), + 's4_line': fields.selection([('L1','L1'), + ('L2','L2'), + ('L3','L3'), + ('L4','L4'), + ('L5','L5') + ], 'S1L#'), + 's5': fields.float('S5'), + 's5_line': fields.selection([('L1','L1'), + ('L2','L2'), + ('L3','L3'), + ('L4','L4'), + ('L5','L5') + ], 'S1L#'), + 'num_stations': fields.selection([(1,'1'), (2,'2'), (3,'3'), (4,'4'), (5,'5')], '# Stations', required=True), + } + _defaults = { + 'num_stations': 5, + } + + def fields_get(self, cr, uid, fields=None, context=None): + res = super(mrp_production_status, self).fields_get(cr, uid, fields, context) + user_groups = set(self.pool.get('res.users').read(cr, UID_ROOT, uid, ['groups_id'])['groups_id']) + mod_obj = self.pool.get('ir.model.data') + chk_groups = ['s1', 's2', 's3', 's4', 's5'] + for chk_group in chk_groups: + gid = mod_obj.get_object_reference(cr, uid, 'mrp_production_status', 'group_%s' % (chk_group,)) + if user_groups.issuperset(set([gid[1]])): + res[chk_group].update({'readonly': False}) + else: + res[chk_group].update({'readonly': True}) + return res + + def onchange_ss(self, cr, uid, ids, product_qty, prev, this, context=None): + if context is None: + context = {} + if prev != 0 and this > prev: + raise osv.except_osv(_('Warning!'), + _('Value entered (%s) must be less or equal to previous stage (%s)') % (this, prev)) + if this > product_qty: + raise osv.except_osv(_('Warning!'), + _('Value entered (%s) must be less or equal product quantity (%s)') % (this, product_qty)) + return True + + def write(self, cr, uid, ids, vals, context=None): + res = super(mrp_production_status, self).write(cr, uid, ids, vals, context=context) + if not isinstance(ids, list): + ids = [ids] + for mp_status in self.pool.get('mrp.production.status').browse(cr, uid, ids): + if mp_status.s1 > mp_status.product_qty or \ + mp_status.s2 > mp_status.product_qty or \ + mp_status.s3 > mp_status.product_qty or \ + mp_status.s4 > mp_status.product_qty or \ + mp_status.s5 > mp_status.product_qty: + raise osv.except_osv(_('Can not save change!'), + _('Some subsequence value in Status Tracking still greater than product quantity')) + return res + +mrp_production_status() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/mrp_production_status/mrp_view.xml b/mrp_production_status/mrp_view.xml new file mode 100755 index 0000000..47ea669 --- /dev/null +++ b/mrp_production_status/mrp_view.xml @@ -0,0 +1,71 @@ + + + + + mrp.production.form.view.ext + mrp.production + + + +
+

+

+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+
+
+ + + mrp.production.tree.view.ext + mrp.production + + + + + + + + + + + + + + + +
+
\ No newline at end of file diff --git a/mrp_production_status/security/ir.model.access.csv b/mrp_production_status/security/ir.model.access.csv new file mode 100755 index 0000000..1924606 --- /dev/null +++ b/mrp_production_status/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_mrp_production_status,mrp.production.status,model_mrp_production_status,mrp.group_mrp_user,1,1,1,0 +access_mrp_production_status_user,mrp.production.status_user,model_mrp_production_status,base.group_user,1,1,1,0 diff --git a/mrp_production_status/security/mrp_security.xml b/mrp_production_status/security/mrp_security.xml new file mode 100755 index 0000000..cf26c84 --- /dev/null +++ b/mrp_production_status/security/mrp_security.xml @@ -0,0 +1,27 @@ + + + + + + SF-Sheet Forming (s1) + + + + AS-Assembly (s2) + + + + IJ-Injection (s3) + + + + DO-Door Finishing (s4) + + + + FN-Finishing (s5) + + + + + diff --git a/product_bom_template/__init__.py b/product_bom_template/__init__.py new file mode 100755 index 0000000..0753962 --- /dev/null +++ b/product_bom_template/__init__.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +#import product_rapid_create +import wizard +import mrp +import product + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_bom_template/__openerp__.py b/product_bom_template/__openerp__.py new file mode 100755 index 0000000..a368c20 --- /dev/null +++ b/product_bom_template/__openerp__.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : 'BOM Template', + 'version' : '1.0', + 'author' : 'Kitti U.', + 'summary': 'Create part based on BOM Template', + 'description': """ + +1) Create Product & BOM from BOM Template with Formula + +* BOM to be able to use as BOM Template with flexible formula +* Create One-Time Product window for Panel/Door/Window, with Size and Choices as parameters +* Ability to create new Product & BOM from the above. + +2) Calculate machine setup parameters for product created by Create One-Time Product window. + +* Machine Setup Formula window +* For products created from One-Time Product window, also pass W/T/L parameters +* When Product is Created, calculate machine setup parameters for each product + + """, + 'category': 'Warehouse', + 'sequence': 4, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['web_m2o_enhanced','product','mrp','mrp_quick_bom','mrp_sale_rel'], + 'demo' : [], + 'data' : [ + 'wizard/product_rapid_create_view.xml', + 'wizard/product_make_bom_view.xml', + 'product_view.xml', + 'mrp_view.xml', + 'sale_view.xml', + 'data/bom.choice.thick.csv', + 'data/bom.choice.model.csv', + 'data/bom.choice.joint.csv', + 'data/bom.choice.skin.csv', + 'data/bom.choice.insulation.csv', + 'data/bom.choice.camlock.csv', + 'data/bom.choice.window.csv', + 'security/ir.model.access.csv', + 'data/default_data.xml', + #'bom_data/mrp.bom.csv', + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_bom_template/data/.~lock._bom_choices.ods# b/product_bom_template/data/.~lock._bom_choices.ods# new file mode 100755 index 0000000..dab0282 --- /dev/null +++ b/product_bom_template/data/.~lock._bom_choices.ods# @@ -0,0 +1 @@ +kittiu ,kittiu,kittiu-pc,13.05.2013 20:27,file:///home/kittiu/.config/libreoffice/3; \ No newline at end of file diff --git a/product_bom_template/data/.~lock.product.product.csv# b/product_bom_template/data/.~lock.product.product.csv# new file mode 100755 index 0000000..a20d44a --- /dev/null +++ b/product_bom_template/data/.~lock.product.product.csv# @@ -0,0 +1 @@ +kittiu ,kittiu,kittiu-pc,13.05.2013 12:03,file:///home/kittiu/.config/libreoffice/3; \ No newline at end of file diff --git a/product_bom_template/data/_bom_choices.ods b/product_bom_template/data/_bom_choices.ods new file mode 100755 index 0000000..066321d Binary files /dev/null and b/product_bom_template/data/_bom_choices.ods differ diff --git a/product_bom_template/data/bom.choice.camlock.csv b/product_bom_template/data/bom.choice.camlock.csv new file mode 100755 index 0000000..d7b53f4 --- /dev/null +++ b/product_bom_template/data/bom.choice.camlock.csv @@ -0,0 +1,4 @@ +id,code,name +camlock_choice_AHU,AHU,AHU 500mm +camlock_choice_CR,CR,Cold Room 1000mm +camlock_choice_None,None,None diff --git a/product_bom_template/data/bom.choice.insulation.csv b/product_bom_template/data/bom.choice.insulation.csv new file mode 100755 index 0000000..fd8cbb8 --- /dev/null +++ b/product_bom_template/data/bom.choice.insulation.csv @@ -0,0 +1,4 @@ +id,code,name +insulation_choice_PU,PU,PU +insulation_choice_PIR,PIR,PIR +insulation_choice_Rockwool,Rockwool,Rockwool diff --git a/product_bom_template/data/bom.choice.joint.csv b/product_bom_template/data/bom.choice.joint.csv new file mode 100755 index 0000000..ac42449 --- /dev/null +++ b/product_bom_template/data/bom.choice.joint.csv @@ -0,0 +1,10 @@ +id,code,name +joint_choice_MF,MF,MF (Male-Female) +joint_choice_MM,MM,MM (Male-Male) +joint_choice_FF,FF,FF (Female-Female) +joint_choice_MN,MN,MN (Male-None) +joint_choice_FN,FN,FN (Female-None) +joint_choice_NN,NN,NN (None-None) +joint_choice_FJ,FJ,Fire Joint +joint_choice_NJ,NJ,Normal Slip Joint +joint_choice_NP,NP,Non Progressive diff --git a/product_bom_template/data/bom.choice.model.csv b/product_bom_template/data/bom.choice.model.csv new file mode 100755 index 0000000..f40e7ad --- /dev/null +++ b/product_bom_template/data/bom.choice.model.csv @@ -0,0 +1,11 @@ +id,code,name +model_choice_AD,AD,Amair AD +model_choice_AF,AF,Amair AF +model_choice_AG,AG,Amair AG +model_choice_AH,AH,Amair AH +model_choice_AI,AI,Amair AI +model_choice_AJ,AJ,Amair AJ +model_choice_AL,AL,Amair AL +model_choice_AS,AS,Amair AS +model_choice_Access,Access,B.Grimm Access +model_choice_Panel,Panel,B.Grimm Panel diff --git a/product_bom_template/data/bom.choice.skin.csv b/product_bom_template/data/bom.choice.skin.csv new file mode 100755 index 0000000..321734b --- /dev/null +++ b/product_bom_template/data/bom.choice.skin.csv @@ -0,0 +1,6 @@ +"id","code","name" +"joint_choice_int_OW","OW","0.5 mm PP (OW)" +"joint_choice_int_AW","AW","0.45 mm PP (AW)" +"joint_choice_int_GI","GI","0.4 mm GI" +"joint_choice_int_SS","SS","0.5 mm SS" +"joint_choice_int_OW8","GI8","0.8 mm GI" diff --git a/product_bom_template/data/bom.choice.thick.csv b/product_bom_template/data/bom.choice.thick.csv new file mode 100755 index 0000000..17ed4f3 --- /dev/null +++ b/product_bom_template/data/bom.choice.thick.csv @@ -0,0 +1,12 @@ +"id","name","value" +"thick_choice_25",25,25 +"thick_choice_42",42,42 +"thick_choice_50",50,50 +"thick_choice_75",75,75 +"thick_choice_100",100,100 +"thick_choice_125",125,125 +"thick_choice_150",150,150 +"thick_choice_F42_D42","F42+D42",42 +"thick_choice_F50_D50","F50+D50",50 +"thick_choice_F100_D42","F100+D42",42 +"thick_choice_F100_D50","F100+D50",50 diff --git a/product_bom_template/data/bom.choice.window.csv b/product_bom_template/data/bom.choice.window.csv new file mode 100755 index 0000000..6903873 --- /dev/null +++ b/product_bom_template/data/bom.choice.window.csv @@ -0,0 +1,4 @@ +id,code,name +window_choice_int_None,None,None +window_choice_int_Single,Single,Single Glass +window_choice_int_Double,Double,Double Glass diff --git a/product_bom_template/data/default_data.xml b/product_bom_template/data/default_data.xml new file mode 100755 index 0000000..10ffc03 --- /dev/null +++ b/product_bom_template/data/default_data.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/product_bom_template/data_rawmat_temp/.~lock.10,product.product.csv# b/product_bom_template/data_rawmat_temp/.~lock.10,product.product.csv# new file mode 100755 index 0000000..89d4ab7 --- /dev/null +++ b/product_bom_template/data_rawmat_temp/.~lock.10,product.product.csv# @@ -0,0 +1 @@ +kittiu ,kittiu,kittiu-pc,13.05.2013 19:43,file:///home/kittiu/.config/libreoffice/3; \ No newline at end of file diff --git a/product_bom_template/data_rawmat_temp/10,product.product.csv b/product_bom_template/data_rawmat_temp/10,product.product.csv new file mode 100755 index 0000000..753af73 --- /dev/null +++ b/product_bom_template/data_rawmat_temp/10,product.product.csv @@ -0,0 +1,21 @@ +id,name,categ_id,sale_ok,purchase_ok,is_one_time_use +temp_rawmat_1,เหล็ก_0.5_mm_PP_(OW)_3_ฟุต,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_2,เหล็ก_0.5_mm_PP_(OW)_4_ฟุต,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_3,เหล็ก_0.45_mm_PP_(AW)_3_ฟุต,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_4,เหล็ก_0.45_mm_PP_(AW)_4_ฟุต,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_5,เหล็ก_0.4_mm_GI_3_ฟุต,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_6,เหล็ก_0.4_mm_GI_4_ฟุต,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_7,Isocyanate,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_8,เหล็ก_0.5_mm_SS_4_ฟุต,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_9,Polyol,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_10,Isocyanate_,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_11,ฝาฉีดโฟม_ตัวผู้,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_12,ฝาฉีดโฟม_ตัวเมีย,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_13,ขาตั้ง_PVC_ในแผ่น,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_14,Camlock,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_15,Protection_Film_70_micron,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_16,เหล็ก_0.8_mm_PP_(OW)_3_ฟุต,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_17,Rockwool,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_18,กาว,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_19,al.Frame,Raw Material,FALSE,TRUE,FALSE +temp_rawmat_20,Craft_(Brown)_Paper,Raw Material,FALSE,TRUE,FALSE diff --git a/product_bom_template/machine_setup_master/mrp.machine.setup.master.csv b/product_bom_template/machine_setup_master/mrp.machine.setup.master.csv new file mode 100755 index 0000000..5b2e2b5 --- /dev/null +++ b/product_bom_template/machine_setup_master/mrp.machine.setup.master.csv @@ -0,0 +1,56 @@ +"id","name","description","line_ids/thickness","line_ids/flowrate","line_ids/density","line_ids/correction_factor","line_ids/overpack_1","line_ids/overpack_2","line_ids/settime" +"master_line1","line1","PU (density 40)",25,1.12,45,0,13,11,30 +,,,42,1.12,40,0,13,11,35 +,,,50,1.12,40,0,13,11,40 +,,,75,1.12,40,0,13,11,45 +,,,100,1.12,40,0,13,11,50 +,,,125,1.12,40,0,13,11,60 +,,,150,1.12,40,0,13,11,110 +,,,"F42+D42",1.12,40,0,13,11,35 +,,,"F50+D50",1.12,40,0,13,11,40 +,,,"F100+D42",1.12,40,0,13,11,35 +,,,"F100+D50",1.12,40,0,13,11,40 +"master_line2","line2","PU (density 40)",25,0.594,45,0,16,11,30 +,,,42,0.594,40,0,16,11,35 +,,,50,0.594,40,0,16,11,40 +,,,75,0.594,40,0,16,11,45 +,,,100,0.594,40,0,16,11,50 +,,,125,0.594,40,0,16,11,60 +,,,150,0.594,40,0,16,11,110 +,,,"F42+D42",0.594,40,0,16,11,35 +,,,"F50+D50",0.594,40,0,16,11,40 +,,,"F100+D42",0.594,40,0,16,11,35 +,,,"F100+D50",0.594,40,0,16,11,40 +"master_line3","line3","PU (density 40)",25,1.12,45,0,13,11,30 +,,,42,1.12,40,0,13,11,35 +,,,50,1.12,40,0,13,11,40 +,,,75,1.12,40,0,13,11,45 +,,,100,1.12,40,0,13,11,50 +,,,125,1.12,40,0,13,11,60 +,,,150,1.12,40,0,13,11,110 +,,,"F42+D42",1.12,40,0,13,11,35 +,,,"F50+D50",1.12,40,0,13,11,40 +,,,"F100+D42",1.12,40,0,13,11,35 +,,,"F100+D50",1.12,40,0,13,11,40 +"master_line4","line4","Door PU (density 80)",25,0.594,68,0,30,30,50 +,,,42,0.594,68,0,30,30,50 +,,,50,0.594,67,0,30,30,50 +,,,75,0.594,67,0,30,30,50 +,,,100,0.594,67,0,30,30,50 +,,,125,0.594,67,0,30,30,50 +,,,150,0.594,67,0,30,30,50 +,,,"F42+D42",0.594,68,0,30,30,50 +,,,"F50+D50",0.594,68,0,30,30,50 +,,,"F100+D42",0.594,67,0,30,30,50 +,,,"F100+D50",0.594,67,0,30,30,50 +"master_line5","line5","PIR",25,0,35.38,1.05,20,20,30 +,,,42,0,34.52,1.05,20,20,35 +,,,50,0,34.52,1.05,20,20,35 +,,,75,0,32.67,1.05,20,20,40 +,,,100,0,32.67,1.05,20,20,40 +,,,125,0,32.67,1.05,20,20,45 +,,,150,0,32.67,1.05,20,20,45 +,,,"F42+D42",0,34.52,1.05,20,20,35 +,,,"F50+D50",0,34.52,1.05,20,20,35 +,,,"F100+D42",0,34.52,1.05,20,20,35 +,,,"F100+D50",0,34.52,1.05,20,20,35 diff --git a/product_bom_template/mrp.py b/product_bom_template/mrp.py new file mode 100755 index 0000000..57c6bb2 --- /dev/null +++ b/product_bom_template/mrp.py @@ -0,0 +1,448 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import netsvc +from osv import osv, fields +import decimal_precision as dp +from tools.translate import _ + +class mrp_bom(osv.osv): + + _inherit = "mrp.bom" + _order = 'sequence, id' + + def _get_product_sequence(self, cr, uid, ids, name, arg, context=None): + res = {} + product_obj = self.pool.get('product.product') + for product_line in self.browse(cr, uid, ids, context=context): + result = product_obj.read(cr, uid, [product_line.product_id.id], ['sequence']) + if result[0]['sequence']: + res[product_line.id] = result[0]['sequence'] or 10000 + return res + _columns = { + 'sequence': fields.function(_get_product_sequence, string='Sequence', type='integer', store=True), + 'is_bom_template':fields.boolean('BOM Template'), + 'bom_template_type':fields.selection([ + # Not in this round ('standard','Standard'), + ('formula','Formula')],'BOM Template Type'), + 'product_qty_formula': fields.char('Product Qty-Formula', size=512, required=False, help='Valid formula to calculate quantity, i.e., W*L*T'), + 'bom_lines_formula': fields.one2many('mrp.bom', 'bom_id', 'BoM Lines Formula'), + # Naming Convention + 'new_name_format': fields.char('New Product Naming Format', size=256, help='Valid for to create new name for product created from this template'), + # Required Parameters + 'bom_template_id':fields.boolean('BOM Template'), + 'bom_product_type':fields.selection([('panel','Panel'), + ('door','Door'), + ('window','Window'),],'BOM Product Type'), + 'W':fields.boolean('Width (W)'), + 'L':fields.boolean('length (L)'), + # Options + 'T': fields.many2many('bom.choice.thick', string='Thick (T) Choices'), + 'mat_model_choices': fields.many2many('bom.choice.model', string='Model Choices'), + 'mat_joint_choices': fields.many2many('bom.choice.joint', string='Joint Choices'), + 'mat_inside_skin_choices': fields.many2many('bom.choice.skin', string='Inside Skin Choices'), + 'mat_outside_skin_choices': fields.many2many('bom.choice.skin', string='Outside Skin Choices'), + 'mat_insulation_choices': fields.many2many('bom.choice.insulation', string='Insulation Choices'), + 'mat_camlock_choices': fields.many2many('bom.choice.camlock', string='Camlock Choices'), + 'mat_window_choices': fields.many2many('bom.choice.window', string='Window Choices'), + } + + _defaults = { + 'bom_template_id': True, + 'W': True, + 'L': True, + } + + # A complete overwrite method?? + # Only for normal non Bom Template that this constraint should apply + def _check_product(self, cr, uid, ids, context=None): + all_prod = [] + boms = self.browse(cr, uid, ids, context=context) + # kittiu + parent_bom = boms[0] + is_one_time_use = parent_bom.product_id.is_one_time_use + # -- kittiu + def check_bom(boms): + res = True + for bom in boms: + # kittiu + #if bom.product_id.id in all_prod: + if ((bom.bom_id and not bom.bom_id.is_bom_template and not is_one_time_use) or not bom.bom_id) and bom.product_id.id in all_prod: + res = res and False + #-- kittiu + all_prod.append(bom.product_id.id) + lines = bom.bom_lines + if lines: + res = res and check_bom([bom_id for bom_id in lines if bom_id not in boms]) + return res + return check_bom(boms) + + _constraints = [ + (_check_product, 'BoM line product should not be same as BoM product.', ['product_id']), + ] + + def update_quantity_by_formula(self, cr, uid, object, line, bom, context=None): + if context is None: + context = {} + for bom_line in bom['bom_lines_formula']: + try: + calc_qty = eval(bom_line[2]['product_qty_formula'], {'object': object, 'line': line}) + except Exception, e: + raise osv.except_osv(_('BOM Formula Error!'), bom_line[2]['product_qty_formula'] + '\n\n' + str(e)) + bom_line[2]['name'] = bom_line[2]['name'].replace(' (copy)','') + calc_qty = eval(bom_line[2]['product_qty_formula'], {'object': object, 'line': line}) + bom_line[2]['product_qty'] = calc_qty + self.update_quantity_by_formula(cr, uid, object, line, bom_line[2], context=context) + return True + + # Copy method that use specifically for BOM Formula + def copy_bom_formula(self, cr, uid, id, object, line, default=None, context=None): + + if context is None: + context = {} + context = context.copy() + context['bom_formula'] = True + data = False + if context.get('bom_data', False): + data = context.get('bom_data', False) + else: + data = self.copy_data(cr, uid, id, default, context) + bom_data = data.copy() + self.update_quantity_by_formula(cr, uid, object, line, data) + new_id = self.create(cr, uid, data, context) + self.copy_translations(cr, uid, id, new_id, context) + return new_id, bom_data + + # Only create record if qty > 0 and of type bom_formula + def create(self, cr, uid, vals, context=None): + if context == None: + context = {} + if context.get('bom_formula', False): + prec = self.pool.get('decimal.precision').precision_get(cr, uid, 'Product Unit of Measure') + if round(vals.get('product_qty'), prec) > 0: + return super(mrp_bom, self).create(cr, uid, vals, context=context) + else: + return False + else: + return super(mrp_bom, self).create(cr, uid, vals, context=context) + + def action_product_bom_create(self, cr, uid, ids, data, context=None): + product_id, bom_id = super(mrp_bom, self).action_product_bom_create(cr, uid, ids, data, context=context) + res = { + 'is_one_time_use': data['is_one_time_use'], + 'ref_order_id': data['ref_order_id'] and data['ref_order_id'][0] or False, + } + self.pool.get('product.product').write(cr, uid, product_id, res) + return product_id, bom_id + +mrp_bom() + +class mrp_production_product_line(osv.osv): + + _inherit = 'mrp.production.product.line' + + def _get_machine_setup_params(self, cr, uid, ids, field_name, arg, context=None): + setup_detail_obj = self.pool.get('mrp.machine.setup.master.line') + res = {} + for product_line in self.browse(cr, uid, ids, context=context): + res[product_line.id] = { + 'W': False, 'L': False, 'T': False, + 'line1_inject1': False, 'line1_inject2': False, 'line2_inject1': False, 'line2_inject2': False, + 'line3_inject1': False, 'line3_inject2': False, 'line4_inject1': False, 'line4_inject2': False, + 'line5_inject1': False, 'line5_inject2': False, + 'line1_settime': False, 'line2_settime': False, 'line3_settime': False, + 'line4_settime': False, 'line5_settime': False, + 'cut_area': False, 'remark': False, + } + product = product_line.product_id + # For all Machine Lines, these values are common. + res[product_line.id] = { + 'W': product.W, + 'L': product.L, + 'T': product.T.value, + 'cut_area': product.cut_area, + 'remark': product.remark, + } + # Loop through each machine (1-5) to calculate injection and set time. + master_ids = setup_detail_obj.search(cr, uid, [('thickness','=', product.T.id)]) + if master_ids: + W = product.W or 0.0 + L = product.L or 0.0 + T = product.T.value or 0.0 + sets = setup_detail_obj.browse(cr, uid, master_ids) + # For each machine (line1, line2, ..., line5), calculate values + for set in sets: + factor = set.flowrate or (set.correction_factor and 1/set.correction_factor) or 0.0 + res[product_line.id].update({ + set.machine_id.name + '_inject1': factor and (W*L*T/1000000000-(product.cut_area*T/1000))*set.density*((set.overpack_1/100)+1)/factor or 0.0, + set.machine_id.name + '_inject2': factor and (W*L*T/1000000000-(product.cut_area*T/1000))*set.density*((set.overpack_2/100)+1)/factor or 0.0, + set.machine_id.name + '_settime': set.settime, + }) + + return res + + def _get_product_line(self, cr, uid, ids, context=None): + """ return all product_line for the same updated product """ + product_line_ids = [] + for product in self.browse(cr, uid, ids, context=context): + product_line_ids += self.pool.get('mrp.production.product.line').search(cr, uid, [('product_id','=',product.id)], context=context) + return product_line_ids + + _columns = { + 'W':fields.function(_get_machine_setup_params, string="Width (W)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'L':fields.function(_get_machine_setup_params, string="Length (L)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'T':fields.function(_get_machine_setup_params, string="Thick (T)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line1_inject1':fields.function(_get_machine_setup_params, string="L1 (am)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line1_inject2':fields.function(_get_machine_setup_params, string="L1 (pm)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line2_inject1':fields.function(_get_machine_setup_params, string="L2 (am)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line2_inject2':fields.function(_get_machine_setup_params, string="L2 (pm)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line3_inject1':fields.function(_get_machine_setup_params, string="L3 (am)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line3_inject2':fields.function(_get_machine_setup_params, string="L3 (pm)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line4_inject1':fields.function(_get_machine_setup_params, string="L4 (am)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line4_inject2':fields.function(_get_machine_setup_params, string="L4 (pm)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line5_inject1':fields.function(_get_machine_setup_params, string="L5 (kg) (am)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line5_inject2':fields.function(_get_machine_setup_params, string="L5 (kg) (pm)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line1_settime':fields.function(_get_machine_setup_params, string="Set Time (L1)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line2_settime':fields.function(_get_machine_setup_params, string="Set Time (L2)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line3_settime':fields.function(_get_machine_setup_params, string="Set Time (L3)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line4_settime':fields.function(_get_machine_setup_params, string="Set Time (L4)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line5_settime':fields.function(_get_machine_setup_params, string="Set Time (L5)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'cut_area':fields.function(_get_machine_setup_params, string="Cut Area (sqm)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'remark':fields.function(_get_machine_setup_params, string="Remark", type="char", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + } + +class bom_choice_thick(osv.osv): + _name = 'bom.choice.thick' + _description = 'Thickness Choice when create BOM' + _columns = { + 'name': fields.char('Name', size=10, required=True), + 'value': fields.float('Value', required=True), + 'bom_ids': fields.many2many('mrp.bom', string='BOMs'), + } + +bom_choice_thick() + +class bom_choice_model(osv.osv): + _name = 'bom.choice.model' + _description = 'Model Choice when create BOM' + _columns = { + 'name': fields.char('Name', size=64, required=True), + 'code': fields.char('Code', size=10, required=True), + 'bom_ids': fields.many2many('mrp.bom', string='BOMs'), + } + +bom_choice_model() + +class bom_choice_joint(osv.osv): + _name = 'bom.choice.joint' + _description = 'Joint Choice when create BOM' + _columns = { + 'name': fields.char('Name', size=64, required=True), + 'code': fields.char('Code', size=10, required=True), + 'bom_ids': fields.many2many('mrp.bom', string='BOMs'), + } + +bom_choice_joint() + +class bom_choice_skin(osv.osv): + _name = 'bom.choice.skin' + _description = 'Skin Choice when create BOM' + _columns = { + 'name': fields.char('Name', size=64, required=True), + 'code': fields.char('Code', size=10, required=True), + 'bom_ids': fields.many2many('mrp.bom', string='BOMs'), + } + +bom_choice_skin() + +class bom_choice_insulation(osv.osv): + _name = 'bom.choice.insulation' + _description = 'Skin Choice when create BOM' + _columns = { + 'name': fields.char('Name', size=64, required=True), + 'code': fields.char('Code', size=10, required=True), + 'bom_ids': fields.many2many('mrp.bom', string='BOMs'), + } + +bom_choice_skin() + +class bom_choice_camlock(osv.osv): + _name = 'bom.choice.camlock' + _description = 'Camlock Choice when create BOM' + _columns = { + 'name': fields.char('Name', size=64, required=True), + 'code': fields.char('Code', size=10, required=True), + 'bom_ids': fields.many2many('mrp.bom', string='BOMs'), + } + +bom_choice_camlock() + + +class bom_choice_window(osv.osv): + _name = 'bom.choice.window' + _description = 'Window Choice when create BOM' + _columns = { + 'name': fields.char('Name', size=64, required=True), + 'code': fields.char('Code', size=10, required=True), + 'bom_ids': fields.many2many('mrp.bom', string='BOMs'), + } + +bom_choice_camlock() + +class mrp_machine_setup_master(osv.osv): + _name = 'mrp.machine.setup.master' + _description = 'Master Data for Machine Setup' + _columns = { + 'name': fields.selection([('line1','Line 1'), + ('line2','Line 2'), + ('line3','Line 3'), + ('line4','Line 4'), + ('line5','Line 5'),],'Machine'), + 'description': fields.text('Description') , + 'line_ids': fields.one2many('mrp.machine.setup.master.line', 'machine_id', 'Machine Setup Detail') + } + + _sql_constraints = [ + ('name_unique', 'unique(name)', 'No duplication of machine allowed!'), + ] + +mrp_machine_setup_master() + + +class mrp_machine_setup_master_line(osv.osv): + _name = 'mrp.machine.setup.master.line' + _description = 'Machine Setup Detail' + _columns = { + 'machine_id': fields.many2one('mrp.machine.setup.master', 'Machine', ondelete='cascade'), + 'thickness': fields.many2one('bom.choice.thick', string='Thickness (mm)'), + 'flowrate': fields.float('Flowrate (kg/sec)', digits=(16,3)), + 'density': fields.float('Density (kg/m3)'), + 'correction_factor': fields.float('Correction Factor'), + 'overpack_1': fields.float('% Overpack (morning)'), + 'overpack_2': fields.float('% Overpack (afternoon)'), + 'settime': fields.float('Set Time'), + } + _sql_constraints = [ + ('value_unique', 'unique(machine_id, thickness)', 'No duplication of thickness allowed!'), + ] + +mrp_machine_setup_master_line() + +class mrp_production(osv.osv): + + _inherit = "mrp.production" + + def _get_ref_order_id(self, cr, uid, context=None): + if context == None: + context = {} + product_id = context.get('active_id', False) + if product_id: + product = self.pool.get('product.product').browse(cr, uid, product_id) + return product.ref_order_id and product.ref_order_id.id or False + return False + + _defaults = { + 'order_id': _get_ref_order_id, + } + +mrp_production() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_bom_template/mrp_view.xml b/product_bom_template/mrp_view.xml new file mode 100755 index 0000000..c5f95fd --- /dev/null +++ b/product_bom_template/mrp_view.xml @@ -0,0 +1,505 @@ + + + + + mrp.bom.form.view.ext + mrp.bom + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + {'invisible': [('is_bom_template','=',True),('bom_template_type','=','formula')]} + + + + + + + + + + + +
+
+ + + mrp.bom.tree.view.ext + mrp.bom + + + + + + + + + + + + + + + bom.choice.thick.tree.view + bom.choice.thick + + + + + + + + + bom.choice.thick.form.view + bom.choice.thick + +
+ + + + +
+
+
+ + Thickness Choice + ir.actions.act_window + bom.choice.thick + form + tree,form + +

+ Click to add a new Thickness Choice. +

+
+
+ + + + + + + bom.choice.model.tree.view + bom.choice.model + + + + + + + + + bom.choice.model.form.view + bom.choice.model + +
+ + + + +
+
+
+ + Model Choice + ir.actions.act_window + bom.choice.model + form + tree,form + +

+ Click to add a new Model Choice. +

+
+
+ + + + + + + bom.choice.joint.tree.view + bom.choice.joint + + + + + + + + + bom.choice.joint.form.view + bom.choice.joint + +
+ + + + +
+
+
+ + Joint Choice + ir.actions.act_window + bom.choice.joint + form + tree,form + +

+ Click to add a new Joint Choice. +

+
+
+ + + + + + bom.choice.skin.tree.view + bom.choice.skin + + + + + + + + + bom.choice.skin.form.view + bom.choice.skin + +
+ + + + +
+
+
+ + Skin Choice + ir.actions.act_window + bom.choice.skin + form + tree,form + +

+ Click to add a new Skin Choice. +

+
+
+ + + + + + bom.choice.insulation.tree.view + bom.choice.insulation + + + + + + + + + bom.choice.insulation.form.view + bom.choice.insulation + +
+ + + + +
+
+
+ + Insulation Choice + ir.actions.act_window + bom.choice.insulation + form + tree,form + +

+ Click to add a new Insulation Choice. +

+
+
+ + + + + + bom.choice.camlock.tree.view + bom.choice.camlock + + + + + + + + + bom.choice.camlock.form.view + bom.choice.camlock + +
+ + + + +
+
+
+ + Camlock Choice + ir.actions.act_window + bom.choice.camlock + form + tree,form + +

+ Click to add a new Camlock Choice. +

+
+
+ + + + + + bom.choice.window.tree.view + bom.choice.window + + + + + + + + + bom.choice.window.form.view + bom.choice.window + +
+ + + + +
+
+
+ + Window Choice + ir.actions.act_window + bom.choice.window + form + tree,form + +

+ Click to add a new Window Choice. +

+
+
+ + + + + + + view.machine.setup.master.search + mrp.machine.setup.master + + + + + + + + + machine.setup.master.form + mrp.machine.setup.master + +
+ + + + + + + + + + + + + + + + + +
+
+
+ + + Machine Setup Master + mrp.machine.setup.master + form + tree,form + + + +

+ Machine Setup Master Data +

+
+
+ + + view.machine.setup.master.tree + mrp.machine.setup.master + + + + + + + + + + + + + + mrp.production.form.view.ext + mrp.production + + + + + + + + + + + mrp.production.product.form.view + mrp.production.product.line + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mrp.production.product.tree.view.ext + mrp.production.product.line + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
\ No newline at end of file diff --git a/product_bom_template/product.py b/product_bom_template/product.py new file mode 100755 index 0000000..67a699b --- /dev/null +++ b/product_bom_template/product.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import netsvc +from osv import osv, fields +import decimal_precision as dp +from tools.translate import _ + +class product_product(osv.osv): + + _inherit = "product.product" + + def _check_product_name(self, cr, uid, ids, context=None): + product_obj = self.pool.get('product.product') + for record in self.browse(cr, uid, ids, context=context): + if record.ref_order_id: # Only for ref_order case. + ids = product_obj.search(cr, uid, [('name','=',record.name),('ref_order_id','=',record.ref_order_id.id)]) + if len(ids) > 1: + raise osv.except_osv(_('Error'), _('You cannot create product with name %s')% (record.name,)) + return True + + _columns = { + 'sequence': fields.integer('Sequence'), + 'is_one_time_use': fields.boolean('One-Time Use', required=False, help="One time used product are those product created from Rapid Product Creation wizard as they are linked to specific SO"), + 'ref_order_id':fields.many2one('sale.order','Ref Sales Order', readonly=False, domain="[('state','not in',('draft','sent','cancel'))]", help='This product is created from this Sales Order'), + 'W':fields.float('Width (W)', readonly=False), + 'L':fields.float('Length (L)', readonly=False), + 'T':fields.many2one('bom.choice.thick', 'Thick (T)', readonly=False), + 'mat_inside_skin_choices':fields.many2one('bom.choice.skin', 'Inside Skin', readonly=False), + 'mat_outside_skin_choices':fields.many2one('bom.choice.skin', 'Outside Skin', readonly=False), + 'mat_insulation_choices':fields.many2one('bom.choice.insulation', 'Insulation', readonly=False), + 'cut_area':fields.float('Cut Area (sqm)'), + 'bom_product_type':fields.selection([('panel','Panel'), + ('door','Door'), + ('window','Window'),],'BOM Product Type', readonly=False), + 'remark':fields.char('Remarks', size=128), + } + _defaults = { + 'is_one_time_use' : False, + } + _constraints = [ + (_check_product_name, 'Name must be unique for the same Sales Order', + ['name','ref_order_id'])] + + def unlink(self, cr, uid, ids, context=None): + # Delete BOM before delete product + bom_obj = self.pool.get('mrp.bom') + bom_ids = bom_obj.search(cr, uid, [('product_id', 'in', ids)], context=context) + bom_obj.unlink(cr, uid, bom_ids, context=context) + return super(product_product, self).unlink(cr, uid, ids, context=context) + +product_product() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_bom_template/product_view.xml b/product_bom_template/product_view.xml new file mode 100755 index 0000000..86cbd38 --- /dev/null +++ b/product_bom_template/product_view.xml @@ -0,0 +1,95 @@ + + + + + + product.kanban.view.ext + + product.product + + + +
  • One-Time
  • +
    +
    +
    +
    + + + product.search.form.view.ext + + product.product + + + + + + + + + + + + + + + + + + + product.normal.form.view.ext + + product.product + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + product.product.tree.view.ext + + product.product + + + + + + + + + +
    +
    diff --git a/product_bom_template/sale_view.xml b/product_bom_template/sale_view.xml new file mode 100755 index 0000000..ca35730 --- /dev/null +++ b/product_bom_template/sale_view.xml @@ -0,0 +1,17 @@ + + + + + view.order.form.ext + sale.order + + + + + + + + + \ No newline at end of file diff --git a/product_bom_template/security/ir.model.access.csv b/product_bom_template/security/ir.model.access.csv new file mode 100755 index 0000000..6f50800 --- /dev/null +++ b/product_bom_template/security/ir.model.access.csv @@ -0,0 +1,16 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_product_rapid_create_mrp_user,product.rapid.create mrp_user,model_product_rapid_create,mrp.group_mrp_user,1,1,1,1 +access_product_rapid_create_line_mrp_user,product.rapid.create.line mrp_user,model_product_rapid_create_line,mrp.group_mrp_user,1,1,1,1 +access_bom_choice_camlock mrp_user,bom.choice.camlock mrp_user,model_bom_choice_camlock,mrp.group_mrp_user,1,0,0,0 +access_bom_choice_insulation mrp_user,bom.choice.insulation mrp_user,model_bom_choice_insulation,mrp.group_mrp_user,1,0,0,0 +access_bom_choice_joint mrp_user,bom.choice.joint mrp_user,model_bom_choice_joint,mrp.group_mrp_user,1,0,0,0 +access_bom_choice_skin mrp_user,bom.choice.skin mrp_user,model_bom_choice_skin,mrp.group_mrp_user,1,0,0,0 +access_bom_choice_window_mrp_user,bom.choice.window mrp_user,model_bom_choice_window,mrp.group_mrp_user,1,0,0,0 +access_bom_choice_model_mrp_user,bom.choice.model mrp_user,model_bom_choice_model,mrp.group_mrp_user,1,0,0,0 +access_product_rapid_create_mrp_manager,product.rapid.create mrp_manager,model_product_rapid_create,mrp.group_mrp_manager,1,1,1,1 +access_product_rapid_create_line_mrp_manager,product.rapid.create.line mrp_manager,model_product_rapid_create_line,mrp.group_mrp_manager,1,1,1,1 +access_bom_choice_camlock mrp_manager,bom.choice.camlock mrp_manager,model_bom_choice_camlock,mrp.group_mrp_manager,1,1,1,1 +access_bom_choice_insulation mrp_manager,bom.choice.insulation mrp_manager,model_bom_choice_insulation,mrp.group_mrp_manager,1,1,1,1 +access_bom_choice_joint mrp_manager,bom.choice.joint mrp_manager,model_bom_choice_joint,mrp.group_mrp_manager,1,1,1,1 +access_bom_choice_skin mrp_manager,bom.choice.skin mrp_manager,model_bom_choice_skin,mrp.group_mrp_manager,1,1,1,1 +access_bom_choice_window mrp_manager,bom.choice.window mrp_manager,model_bom_choice_window,mrp.group_mrp_manager,1,1,1,1 diff --git a/product_bom_template/static/src/img/icon.png b/product_bom_template/static/src/img/icon.png new file mode 100755 index 0000000..b580d3b Binary files /dev/null and b/product_bom_template/static/src/img/icon.png differ diff --git a/product_bom_template/wizard/__init__.py b/product_bom_template/wizard/__init__.py new file mode 100755 index 0000000..49d711e --- /dev/null +++ b/product_bom_template/wizard/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import product_rapid_create +import product_make_bom + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_bom_template/wizard/product_make_bom.py b/product_bom_template/wizard/product_make_bom.py new file mode 100755 index 0000000..8990c89 --- /dev/null +++ b/product_bom_template/wizard/product_make_bom.py @@ -0,0 +1,67 @@ +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import fields, osv +from openerp.tools.translate import _ + +class product_make_bom(osv.osv_memory): + _inherit = "product.make.bom" + + def _get_ref_order_id(self, cr, uid, context=None): + if context == None: + context = {} + # If ref_order_id is in context, simply use it. + if context.get('ref_order_id', False): + return context.get('ref_order_id') + + ids = context.get('active_ids', [0]) + cr.execute('select ref_order_id, count from \ + (select ref_order_id, count(*) as count \ + from product_product where ref_order_id > 0 \ + and id in %s \ + group by ref_order_id) a order by count desc',(tuple(ids),)) + res = cr.fetchall() + if len(res): + if len(res) == 1: + return res[0][0] + else: + raise osv.except_osv(_('Warning!'), _('You cannot create BOM from products of different "Ref Sales Order"')) + else: + return False + + _columns = { + 'is_one_time_use': fields.boolean('One-Time'), + 'ref_order_id': fields.many2one('sale.order','Ref Sales Order', domain="[('state','not in',('draft','sent','cancel'))]", readonly=False, help='This product is created for this Sales Order'), + } + _defaults = { + 'is_one_time_use': True, + 'ref_order_id': _get_ref_order_id, + } + + def onchange_ref_order_id(self, cr, uid, ids, ref_order_id, context=None): + v = {} + if ref_order_id: + order = self.pool.get('sale.order').browse(cr, uid, ref_order_id, context=context) + if order.ref_project_name: + v['product_name'] = order.ref_project_name + return {'value': v} + +product_make_bom() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_bom_template/wizard/product_make_bom_view.xml b/product_bom_template/wizard/product_make_bom_view.xml new file mode 100755 index 0000000..d9182aa --- /dev/null +++ b/product_bom_template/wizard/product_make_bom_view.xml @@ -0,0 +1,19 @@ + + + + + view.product.make.bom.ext + product.make.bom + + + + + + + + + + + + + diff --git a/product_bom_template/wizard/product_rapid_create.py b/product_bom_template/wizard/product_rapid_create.py new file mode 100755 index 0000000..7089ee7 --- /dev/null +++ b/product_bom_template/wizard/product_rapid_create.py @@ -0,0 +1,290 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from osv import fields, osv +from tools.translate import _ + +class product_rapid_create_line(osv.osv): + + def onchange_bom_template_id(self, cr, uid, ids, bom_template_id, context=None): + + if bom_template_id: + bom = self.pool.get('mrp.bom').browse(cr, uid, bom_template_id, context=context) + return {'value': {'is_W_required': bom.W, + 'is_L_required': bom.L, + 'is_T_required': len(bom.T) > 0, + # Choices + 'is_mat_model_choices_required': len(bom.mat_model_choices) > 0, + 'is_mat_joint_choices_required': len(bom.mat_joint_choices) > 0, + 'is_mat_inside_skin_choices_required': len(bom.mat_inside_skin_choices) > 0, + 'is_mat_outside_skin_choices_required': len(bom.mat_outside_skin_choices) > 0, + 'is_mat_insulation_choices_required': len(bom.mat_insulation_choices) > 0, + 'is_mat_camlock_choices_required': len(bom.mat_camlock_choices) > 0, + 'is_mat_window_choices_required': len(bom.mat_camlock_choices) > 0}, + } + + return {} + + def _get_bom_product_type(self, cr, uid, context=None): + if context is None: + context = {} + return context.get('bom_product_type', False) + + _name = 'product.rapid.create.line' + _rec_name = 'part_name' + _order = 'id desc' + _columns = { + 'wizard_id':fields.many2one('product.rapid.create', 'Wizard Ref', required=True, ondelete='CASCADE', select=True), + 'sequence': fields.integer('Seq.', help="Gives the sequence order, this will be used when create Manufacturing Order"), + 'part_name':fields.char('Part Name', size=128, required=True, help='Naming with format, _, ie.., Z1_W1', select=True), + 'part_code':fields.char('Part Code', size=64, required=False), + 'bom_product_type':fields.selection([('panel','Panel'), + ('door','Door'), + ('window','Window'),],'BOM Product Type', required=True), + 'bom_template_id':fields.many2one('mrp.bom', 'BOM Template', required=True, ondelete='CASCADE', select=True), + 'W':fields.float('Width (W)', ondelete='CASCADE', select=True), + 'L':fields.float('Length (L)', ondelete='CASCADE', select=True), + 'T':fields.many2one('bom.choice.thick', 'Thick (T)', domain="[('bom_ids','in',[bom_template_id or 0])]", required=False, ondelete='CASCADE', select=True), + 'mat_model_choices':fields.many2one('bom.choice.model', 'Model', domain="[('bom_ids','in',[bom_template_id or 0])]", required=False, ondelete='CASCADE', select=True), + 'mat_joint_choices':fields.many2one('bom.choice.joint', 'Joint', domain="[('bom_ids','in',[bom_template_id or 0])]", required=False, ondelete='CASCADE', select=True), + 'mat_inside_skin_choices':fields.many2one('bom.choice.skin', 'Inside Skin', domain="[('bom_ids','in',[bom_template_id or 0])]", required=False, ondelete='CASCADE', select=True), + 'mat_outside_skin_choices':fields.many2one('bom.choice.skin', 'Outside Skin', domain="[('bom_ids','in',[bom_template_id or 0])]", required=False, ondelete='CASCADE', select=True), + 'mat_insulation_choices':fields.many2one('bom.choice.insulation', 'Insulation', domain="[('bom_ids','in',[bom_template_id or 0])]", required=False, ondelete='CASCADE', select=True), + 'mat_camlock_choices':fields.many2one('bom.choice.camlock', 'Camlock', domain="[('bom_ids','in',[bom_template_id or 0])]", required=False, ondelete='CASCADE', select=True), + 'mat_window_choices':fields.many2one('bom.choice.window', 'Window', domain="[('bom_ids','in',[bom_template_id or 0])]", required=False, ondelete='CASCADE', select=True), + # Required Flag + 'is_W_required':fields.boolean('Width Required', ondelete='CASCADE', select=True), + 'is_L_required':fields.boolean('Length Required', ondelete='CASCADE', select=True), + 'is_T_required':fields.boolean('Thick Required', ondelete='CASCADE', select=True), + 'is_mat_model_choices_required':fields.boolean('Model Required', ondelete='CASCADE', select=True), + 'is_mat_joint_choices_required':fields.boolean('Joint Required', ondelete='CASCADE', select=True), + 'is_mat_inside_skin_choices_required':fields.boolean('Inside Skin Required', ondelete='CASCADE', select=True), + 'is_mat_outside_skin_choices_required':fields.boolean('Outside Skin Required', ondelete='CASCADE', select=True), + 'is_mat_insulation_choices_required':fields.boolean('Insulation Required', ondelete='CASCADE', select=True), + 'is_mat_camlock_choices_required':fields.boolean('Camlock Required', ondelete='CASCADE', select=True), + 'is_mat_window_choices_required':fields.boolean('Window Required', ondelete='CASCADE', select=True), + 'cut_area':fields.float('Cut Area (sqm)'), + 'remark':fields.char('Remarks', size=128), + 'partner_id': fields.many2one('res.partner', 'Product Customer'), + 'list_price': fields.float('List Price'), + } + _defaults = { + 'bom_product_type': _get_bom_product_type, + } + + + +product_rapid_create_line() + +class product_rapid_create(osv.osv): + """ + Rapid Create Part + """ + _name = 'product.rapid.create' + _rec_name = 'order_id' + + def _get_type(self, cr, uid, context=None): + if context is None: + context = {} + return context.get('type', False) + + _columns = { + 'state': fields.selection([ + ('draft', 'Draft'), + ('done', 'Done'), + ], 'Status', readonly=True, track_visibility='onchange', select=True), + 'order_id':fields.many2one('sale.order', 'Sales Order Ref', domain="[('state','not in',('draft','sent','cancel'))]", readonly=True, states={'draft': [('readonly', False)]}), + 'description': fields.text('Description'), + 'user_id':fields.many2one('res.users', 'User', readonly=True), + 'is_one_time_use': fields.boolean('One-Time Use', required=False, help="One time used product are those product created from Rapid Product Creation wizard as they are linked to specific SO"), + 'sale_ok': fields.boolean('Can be Sold'), + 'tag_ids': fields.many2many('product.tag', string='Tags', help="Tagged products are products to be shown in Sales Order."), + 'product_categ_id': fields.many2one('product.category', 'Category', required=True, readonly=False), + 'type': fields.selection([('product','Stockable Product'),('consu', 'Consumable'),('service','Service')], 'Product Type', required=True, help="Consumable: Will not imply stock management for this product. \nStockable product: Will imply stock management for this product."), + 'procure_method': fields.selection([('make_to_stock','Make to Stock'),('make_to_order','Make to Order')], 'Procurement Method', required=True, help="Make to Stock: When needed, the product is taken from the stock or we wait for replenishment. \nMake to Order: When needed, the product is purchased or produced."), + 'cost_method': fields.selection([('standard','Standard Price'), ('average','Average Price')], 'Costing Method', required=True, + help="Standard Price: The cost price is manually updated at the end of a specific period (usually every year). \nAverage Price: The cost price is recomputed at each incoming shipment."), + 'supply_method': fields.selection([('produce','Manufacture'),('buy','Buy')], 'Supply Method', required=True, help="Manufacture: When procuring the product, a manufacturing order or a task will be generated, depending on the product type. \nBuy: When procuring the product, a purchase order will be generated."), + 'valuation':fields.selection([('manual_periodic', 'Periodical (manual)'), + ('real_time','Real Time (automated)'),], 'Inventory Valuation', + help="If real-time valuation is enabled for a product, the system will automatically write journal entries corresponding to stock moves." \ + "The inventory variation account set on the product category will represent the current inventory value, and the stock input and stock output account will hold the counterpart moves for incoming and outgoing products." + , required=True), + 'panel_lines': fields.one2many('product.rapid.create.line', 'wizard_id', 'Panel Lines', domain=[('bom_product_type','=','panel')], readonly=True, states={'draft': [('readonly', False)]},), + 'door_lines': fields.one2many('product.rapid.create.line', 'wizard_id', 'Door Lines', domain=[('bom_product_type','=','door')], readonly=True, states={'draft': [('readonly', False)]},), + 'window_lines': fields.one2many('product.rapid.create.line', 'wizard_id', 'Window Lines', domain=[('bom_product_type','=','window')], readonly=True, states={'draft': [('readonly', False)]},), + 'num_panel_lines':fields.integer('Copy Panel Lines', required=False, readonly=True, states={'draft': [('readonly', False)]}), + 'num_door_lines':fields.integer('Copy Door Lines', required=False, readonly=True, states={'draft': [('readonly', False)]}), + 'num_window_lines':fields.integer('Copy Window Lines', required=False, readonly=True, states={'draft': [('readonly', False)]}), + } + _defaults = { + 'state': 'draft', + 'user_id': lambda self, cr, uid, c: uid, + 'num_panel_lines': 1, + 'num_door_lines': 1, + 'num_window_lines': 1, + 'is_one_time_use' : True, + 'type': 'product', + 'procure_method': 'make_to_order', + 'cost_method': 'average', + 'supply_method': 'produce', + 'valuation': 'manual_periodic', + } + + def copy_lines(self, cr, uid, ids, context=None): + if context is None: + context = {} + + num_lines = context.get('num_lines', False) + if not num_lines: + return False + + rapid_create = self.browse(cr, uid, ids[0]) + line_obj = self.pool.get('product.rapid.create.line') + cr.execute("select max(id) as id \ + from product_rapid_create_line \ + where wizard_id = %s \ + and bom_product_type = %s", + (ids[0], context.get('bom_product_type', False))) + line_id = cr.fetchone()[0] or False + + if line_id: + default = {} + rs = line_obj.copy_data(cr, uid, line_id, default, context=context) + i = 0 + while i < num_lines: + line_obj.create(cr, uid, rs, context=context) + i += 1 + else: + return False + + return { + 'type': 'ir.actions.client', + 'tag': 'reload' + } + + def create_product(self, cr, uid, ids, context=None): + if context is None: + context = {} + + # Get the selected BOM Template + object = self.browse(cr, uid, ids[0], context=context) + lines = object.panel_lines + object.door_lines + object.window_lines + + result = [] + + if not len(lines): + return False + + new_id, old_id = 0, 0 + + for line in lines: + bom_template = line.bom_template_id + # If template, then continue, else, stop + if bom_template.is_bom_template: + product_obj = self.pool.get('product.product') + bom_obj = self.pool.get('mrp.bom') + # Create new object by copy the existing one, then change name using predefined format + product_template = product_obj.browse(cr, uid, bom_template.product_id.id) + new_product_name = eval(bom_template.new_name_format, {'object':object, 'line':line}) + res = { + 'name': new_product_name, + 'sequence': line.sequence, + 'default_code': line.part_code, + 'sale_ok': object.sale_ok, + 'purchase_ok': False, + 'ref_order_id': object.order_id.id, + 'tag_ids': [(6, 0, [x.id for x in object.tag_ids])], + 'is_one_time_use': object.is_one_time_use, + 'categ_id': object.product_categ_id.id, + 'type': object.type, + 'procure_method': object.procure_method, + 'cost_method': object.cost_method, + 'supply_method': object.supply_method, + 'valuation': object.valuation, + 'bom_product_type': line.bom_template_id.bom_product_type, + 'W': line.W, + 'L': line.L, + 'T': line.T.id, + 'mat_inside_skin_choices': line.mat_inside_skin_choices.id, + 'mat_outside_skin_choices': line.mat_outside_skin_choices.id, + 'mat_insulation_choices': line.mat_insulation_choices.id, + 'cut_area': line.cut_area, + 'remark': line.remark, + 'partner_id': line.partner_id and line.partner_id.id, + 'list_price': line.list_price + } + new_product_id = product_obj.copy(cr, uid, product_template.id, default = {}, context=context) + result.append(new_product_id) + product_obj.write(cr, uid, new_product_id, res) + + # Copy Bill of Material + res = { + 'name': new_product_name, + 'product_id':new_product_id, + 'is_bom_template': False, + 'bom_template_type': None + } + + # Performance Tuning + new_id = bom_template.id + if new_id != old_id: + context.update({'bom_data': False}) + new_bom_id, bom_data = bom_obj.copy_bom_formula(cr, uid, bom_template.id, + object, line, + default = {}, + context=context) + old_id = bom_template.id + context.update({'bom_data': bom_data}) + # -- + bom_obj.write(cr, uid, new_bom_id, res) + + # Return + data_obj = self.pool.get('ir.model.data') + if result and len(result): + + self.write(cr, uid, ids[0], {'state': 'done'}) + + #res_id = result[0] + form_view_id = data_obj._get_id(cr, uid, 'product', 'product_normal_form_view') + form_view = data_obj.read(cr, uid, form_view_id, ['res_id']) + tree_view_id = data_obj._get_id(cr, uid, 'product', 'product_product_tree_view') + tree_view = data_obj.read(cr, uid, tree_view_id, ['res_id']) + search_view_id = data_obj._get_id(cr, uid, 'product', 'product_search_form_view') + search_view = data_obj.read(cr, uid, search_view_id, ['res_id']) + return { + 'name': _('Product'), + 'view_type': 'form', + 'view_mode': 'tree,form', + 'res_model': 'product.product', + 'view_id': False, + 'domain':[('id','in',result)], + #'res_id': res_id, + 'views': [(tree_view['res_id'],'tree'),(form_view['res_id'],'form')], + 'type': 'ir.actions.act_window', + 'search_view_id': search_view['res_id'], + 'nodestroy': True + } + return False + +product_rapid_create() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_bom_template/wizard/product_rapid_create_view.xml b/product_bom_template/wizard/product_rapid_create_view.xml new file mode 100755 index 0000000..2c427fa --- /dev/null +++ b/product_bom_template/wizard/product_rapid_create_view.xml @@ -0,0 +1,163 @@ + + + + + view.product.rapid.create.form + product.rapid.create + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +
    + + + view.product.rapid.create.tree + product.rapid.create + + + + + + + + + + + + Create One-Time Product + product.rapid.create + form + tree,form + +

    + Click to start a new Create One-Time Product Wizard. +

    +
    +
    + + + + +
    +
    diff --git a/product_tag/__init__.py b/product_tag/__init__.py new file mode 100755 index 0000000..4733bea --- /dev/null +++ b/product_tag/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import product +import sale + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_tag/__openerp__.py b/product_tag/__openerp__.py new file mode 100755 index 0000000..142c62b --- /dev/null +++ b/product_tag/__openerp__.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : "Product Tags", + 'author' : 'Kitti U.', + 'summary': '', + 'description': """ + +New Product Tags as many2many relationship with Product. +* Product Tag on Sales Order page, ensure that product listed by selected tag. +* Customer Product on Product, if specified, this product listed for only this customer. +* One-Time Use checkbox on Product. Product created from BOM Template will be marked as One-Time Use. + +""", + 'category': 'Sales', + 'sequence': 8, + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['base','product','sale','sale_stock','web_m2o_enhanced'], + 'demo' : [], + 'data' : [ + 'sale_view.xml', + 'product_view.xml', + 'security/ir.model.access.csv' + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_tag/product.py b/product_tag/product.py new file mode 100755 index 0000000..79717ee --- /dev/null +++ b/product_tag/product.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import netsvc +from osv import osv, fields + +class product_product(osv.osv): + + _inherit = "product.product" + _columns = { + 'tag_ids': fields.many2many('product.tag', string='Tags', help="Tagged products are products to be shown in Sales Order."), + 'partner_id': fields.many2one('res.partner', 'Product Customer', help="Specify customer that this product belongs to (not share with others)"), + } +product_product() + + +class product_tag(osv.osv): + _description = 'Product Tags' + _name = 'product.tag' + _order = 'name' + _columns = { + 'name': fields.char('Product Tag Name', size=128, required=True), + 'note': fields.text('Notes'), + 'product_ids': fields.many2many('product.product', string='Products'), + 'active': fields.boolean('Active') + } + +product_tag() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_tag/product_view.xml b/product_tag/product_view.xml new file mode 100755 index 0000000..fabb5de --- /dev/null +++ b/product_tag/product_view.xml @@ -0,0 +1,75 @@ + + + + + + product.tag.form.view + product.tag + +
    + + + + + + + + + + + + + +
    +
    +
    + + Product Tags + ir.actions.act_window + product.tag + form + tree,form + +

    + Click to add a new Product Tag. +

    +
    +
    + + product.tag.tree.view + product.tag + + + + + + + + + + product.normal.form.view.ext + + product.product + + +
    +
    +
    +
    + + + + + + + + + +
    +
    +
    + +
    +
    \ No newline at end of file diff --git a/product_tag/sale.py b/product_tag/sale.py new file mode 100755 index 0000000..fdce4c3 --- /dev/null +++ b/product_tag/sale.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import netsvc +from osv import osv, fields + +class sale_order(osv.osv): + + _inherit = "sale.order" + _columns = { + 'product_tag_id': fields.many2one('product.tag', 'Product Tag', change_default=True, readonly=True, required=True, states={'draft': [('readonly', False)]}), + } + +sale_order() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_tag/sale_view.xml b/product_tag/sale_view.xml new file mode 100755 index 0000000..caefbef --- /dev/null +++ b/product_tag/sale_view.xml @@ -0,0 +1,28 @@ + + + + + view.order.form.ext + sale.order + + + + + + + + True + [('tag_ids', 'in', parent.product_tag_id),'|',('partner_id', '=', False),('partner_id', '=', parent.partner_id)] + {'limit': 10, 'create': false, 'create_edit': false} + + + True + [('tag_ids', 'in', parent.product_tag_id),'|',('partner_id', '=', False),('partner_id', '=', parent.partner_id)] + {'limit': 10, 'create': false, 'create_edit': false} + + + + + + \ No newline at end of file diff --git a/product_tag/security/ir.model.access.csv b/product_tag/security/ir.model.access.csv new file mode 100755 index 0000000..ab9a6f0 --- /dev/null +++ b/product_tag/security/ir.model.access.csv @@ -0,0 +1,4 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_product_tag_sale_own_lead,product.tag sales see own lead,model_product_tag,base.group_sale_salesman,1,1,1,1 +access_product_tag_sale_manager,product.tag sales manager,model_product_tag,base.group_sale_manager,1,1,1,1 +access_product_tag_sale_all_lead,product.tag sales see all lead,model_product_tag,base.group_sale_salesman_all_leads,1,1,1,1 diff --git a/product_uom_bycategory_pr/__init__.py b/product_uom_bycategory_pr/__init__.py new file mode 100755 index 0000000..888dabb --- /dev/null +++ b/product_uom_bycategory_pr/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import purchase_requisition + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_uom_bycategory_pr/__openerp__.py b/product_uom_bycategory_pr/__openerp__.py new file mode 100755 index 0000000..927d659 --- /dev/null +++ b/product_uom_bycategory_pr/__openerp__.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 Ecosoft Co., Ltd. (http://ecosoft.co.th). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'Product UOM by Category for PR', + 'version': '1.0.1', + 'author': 'Ecosoft', + 'summary': "In PR Document's Line, display UOM in the same category of product.", + 'description': """ + """, + 'category': 'Purchase', + 'website': 'http://www.ecosoft.co.th', + 'images': [], + 'depends': ['purchase_requisition'], + 'demo': [], + 'data': ['purchase_requisition_view.xml'], + 'test': [], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_uom_bycategory_pr/purchase_requisition.py b/product_uom_bycategory_pr/purchase_requisition.py new file mode 100755 index 0000000..3113a2f --- /dev/null +++ b/product_uom_bycategory_pr/purchase_requisition.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import time +from lxml import etree + +import netsvc +from osv import osv, fields +from tools.translate import _ + + +class purchase_requisition_line(osv.osv): + + _inherit = "purchase.requisition.line" + _columns = { + 'product_uom_category_id': fields.integer("Product UOM Category ID"), + } + + def onchange_product_id(self, cr, uid, ids, product_id, product_uom_id, context=None): + res = super(purchase_requisition_line, self).onchange_product_id(cr, uid, ids, product_id, product_uom_id, context=context) + product_obj = self.pool.get('product.product').browse(cr, uid, product_id, context=context) + if product_obj.id: + res['value'].update({'product_uom_category_id': product_obj.uom_id.category_id.id}) + return res + +purchase_requisition_line() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/product_uom_bycategory_pr/purchase_requisition_view.xml b/product_uom_bycategory_pr/purchase_requisition_view.xml new file mode 100755 index 0000000..61e9f78 --- /dev/null +++ b/product_uom_bycategory_pr/purchase_requisition_view.xml @@ -0,0 +1,22 @@ + + + + + + view.purchase.requisition.form.ext + + purchase.requisition + + + + + + + [('category_id', '=', product_uom_category_id)] + + + + + + + \ No newline at end of file diff --git a/purchase_subcontract/__init__.py b/purchase_subcontract/__init__.py new file mode 100755 index 0000000..732cda4 --- /dev/null +++ b/purchase_subcontract/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import purchase + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/purchase_subcontract/__openerp__.py b/purchase_subcontract/__openerp__.py new file mode 100755 index 0000000..385091a --- /dev/null +++ b/purchase_subcontract/__openerp__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 Ecosoft Co., Ltd. (http://ecosoft.co.th). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : 'PO Sub Contractor (SQP)', + 'version' : '1.0', + 'author' : 'Ecosoft', + 'summary': 'PO Sub Contractor (SQP)', + 'description': """ +This module reuse Purchase Order for PO Sub Contractor. Internally it is PO, marked as "Sub Contractor". +* There will be new menu "PO Sub Contractor" just to separate these PO from normal PO. +* New field "Copy SO Lines", which copy lines. +* A new Document Sequence will be applied. + """, + 'category': 'Purchase Management', + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['purchase'], + 'demo' : [], + 'data' : ['purchase_subcon_sequence.xml', + 'purchase_view.xml' + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/purchase_subcontract/purchase.py b/purchase_subcontract/purchase.py new file mode 100755 index 0000000..f2e1012 --- /dev/null +++ b/purchase_subcontract/purchase.py @@ -0,0 +1,95 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +import time +import netsvc +from osv import osv, fields +import openerp.addons.decimal_precision as dp +from tools.translate import _ + + +class purchase_order(osv.osv): + + _inherit = 'purchase.order' + + _columns = { + 'is_subcontract': fields.boolean('Subcontract', readonly=False, change_default=True), + 'sale_order_id': fields.many2one('sale.order', 'Copy SO Lines', required=False, domain=[('state', '<>', 'draft')], readonly=True, states={'draft': [('readonly', False)]}), + 'ref_attention_2_id': fields.many2one('res.partner', 'Attention 2', readonly=False), + } + + _defaults = { + 'is_subcontract': lambda s, cr, uid, c: c.get('is_subcontract', False), + } + + def create(self, cr, uid, vals, context=None): + if vals.get('is_subcontract', False): + if vals.get('name', '/') == '/' or context.get('force_new_no', False): + vals['name'] = self.pool.get('ir.sequence').get(cr, uid, 'purchase.order.subcontract') or '/' + order = super(purchase_order, self).create(cr, uid, vals, context=context) + return order + + def copy(self, cr, uid, id, default=None, context=None): + ctx = context.copy() + if context.get('is_subcontract', False): + ctx.update({'force_new_no': True}) + default.update({'name': '/'}) + return super(purchase_order, self).copy(cr, uid, id, default, context=ctx) + + def onchange_sale_order_id(self, cr, uid, ids, sale_order_id): + res = {'value': {'ref_order_id': False, 'order_line': []}} + order_lines = [] + if sale_order_id: + sale_order = self.pool.get('sale.order').browse(cr, uid, sale_order_id) + for line in sale_order.order_line: + rs = { + 'state': 'draft', + 'invoiced': False, + 'product_id': line.product_id.id, + 'name': line.name, + 'date_planned': time.strftime('%Y-%m-%d'), + 'product_so_qty': line.product_uom_qty, + 'product_qty': 0.0, + 'product_uom': line.product_uom.id, + 'taxes_id': line.product_id.supplier_taxes_id and [(6, 0, map(lambda x: x.id, line.product_id.supplier_taxes_id))] or False + } + order_lines.append(rs) + res['value']['order_line'] = order_lines + res['value']['ref_order_id'] = sale_order_id + return res + +purchase_order() + + +class purchase_order_line(osv.osv): + + _inherit = 'purchase.order.line' + _columns = { + 'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of purchase order lines."), + 'product_so_qty': fields.float('SO Quantity', digits_compute=dp.get_precision('Product Unit of Measure'), readonly=True), + } + _defaults = { + 'sequence': 10, + } + _order = 'order_id desc, sequence, id' + +purchase_order_line() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/purchase_subcontract/purchase_subcon_sequence.xml b/purchase_subcontract/purchase_subcon_sequence.xml new file mode 100755 index 0000000..883883d --- /dev/null +++ b/purchase_subcontract/purchase_subcon_sequence.xml @@ -0,0 +1,17 @@ + + + + + + PO Subcontract + purchase.order.subcontract + + + PO Subcontract + purchase.order.subcontract + PS%(year)s/ + 4 + + + + \ No newline at end of file diff --git a/purchase_subcontract/purchase_view.xml b/purchase_subcontract/purchase_view.xml new file mode 100755 index 0000000..4adec49 --- /dev/null +++ b/purchase_subcontract/purchase_view.xml @@ -0,0 +1,58 @@ + + + + + + [('state','in',('draft','sent','confirmed')),('is_subcontract','=',False)] + + + + [('state','not in',('draft','sent','confirmed')),('is_subcontract','=',False)] + + + + + PO Subcontract + ir.actions.act_window + purchase.order + tree,form,graph,calendar + {'is_subcontract': True} + [('is_subcontract','=',True)] + + +

    + Click to create a quotation that will be converted into a purchase order for subcontract. +

    + Use this menu to search within your purchase orders by + references, supplier, products, etc. For each purchase order, + you can track the related discussion with the supplier, control + the products received and control the supplier invoices. +

    +
    +
    + + + + + purchase.order.form.ext + + purchase.order + + + + + + + + + + + + + + + + + +
    +
    \ No newline at end of file diff --git a/rml_reports/__init__.py b/rml_reports/__init__.py new file mode 100755 index 0000000..383559e --- /dev/null +++ b/rml_reports/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import account + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/rml_reports/__openerp__.py b/rml_reports/__openerp__.py new file mode 100755 index 0000000..108e2a9 --- /dev/null +++ b/rml_reports/__openerp__.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'Customized RML Reports for SQP', + 'version': '1.0', + 'category': 'Reports', + 'summary': '', + 'description': '', + 'author': 'ECOSOFT', + 'website': 'http://www.ecosoft.co.th', + 'images': [], + 'depends': ['account','ext_purchase'], + 'data': [ + 'account_report.xml', + 'purchase_report.xml' + ], + 'demo': [], + 'test': [], + 'installable': True, + 'active': True, +} +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/rml_reports/account/__init__.py b/rml_reports/account/__init__.py new file mode 100755 index 0000000..fb5429c --- /dev/null +++ b/rml_reports/account/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import account_print_invoice + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/rml_reports/account/account_print_invoice.py b/rml_reports/account/account_print_invoice.py new file mode 100755 index 0000000..5d6f8e1 --- /dev/null +++ b/rml_reports/account/account_print_invoice.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import time +from openerp.report import report_sxw + +class sqp_account_invoice(report_sxw.rml_parse): + def __init__(self, cr, uid, name, context): + super(sqp_account_invoice, self).__init__(cr, uid, name, context=context) + self.localcontext.update({ + 'time': time, + }) +report_sxw.report_sxw( + 'report.sqp.account.invoice', + 'account.invoice', + 'sqp-addons/rml_reports/account/account_print_invoice.rml', + parser=sqp_account_invoice +) +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/rml_reports/account/account_print_invoice.rml b/rml_reports/account/account_print_invoice.rml new file mode 100755 index 0000000..5bed6c4 --- /dev/null +++ b/rml_reports/account/account_print_invoice.rml @@ -0,0 +1,373 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [[ repeatIn(objects,'o') ]] + [[ setLang(o.partner_id.lang) ]] + + + + Description + Taxes + Quantity + Unit Price + Disc.(%) + Price + + + + + + + + + + + + [[ (o.partner_id and o.partner_id.title and o.partner_id.title.name) or '' ]] [[ (o.partner_id and o.partner_id.name) or '' ]] + [[ display_address(o.partner_id) ]] + + + + Tel. : [[ (o.partner_id.phone) or removeParentNode('para') ]] + Fax : [[ (o.partner_id.fax) or removeParentNode('para') ]] + TIN : [[ (o.partner_id.vat) or removeParentNode('para') ]] + + + + Invoice [[ ((o.type == 'out_invoice' and (o.state == 'open' or o.state == 'paid')) or removeParentNode('para')) and '' ]] [[ o.number ]] + PRO-FORMA [[ ((o.type == 'out_invoice' and o.state == 'proforma2') or removeParentNode('para')) and '' ]] + Draft Invoice [[ ((o.type == 'out_invoice' and o.state == 'draft') or removeParentNode('para')) and '' ]] + Cancelled Invoice [[ ((o.type == 'out_invoice' and o.state == 'cancel') or removeParentNode('para')) and '' ]] [[ o.number ]] + Refund [[ (o.type=='out_refund' or removeParentNode('para')) and '' ]] [[ o.number ]] + Supplier Refund [[ (o.type=='in_refund' or removeParentNode('para')) and '' ]] [[ o.number ]] + Supplier Invoice [[ (o.type=='in_invoice' or removeParentNode('para')) and '' ]] [[ o.number ]] + + + + + + + Description + + + Invoice Date + + + Source + + + Customer Code + + + + + + + [[ o.name or ' ' ]] + + + [[ formatLang(o.date_invoice,date=True) ]] + + + [[ o.ref_purchase_id and o.ref_purchase_id.name or o.origin or '' ]] + + + [[ (o.partner_id.ref) or ' ' ]] + + + + + + + + + + Description + + + Taxes + + + Quantity + + + Unit Price + + + Disc.(%) + + + Price + + + +
    + [[ repeatIn(o.invoice_line,'l') ]] + + + + [[ format(l.name) ]] + + + [[ ', '.join([ lt.name or '' for lt in l.invoice_line_tax_id ]) ]] + + + [[ formatLang(l.quantity)]] [[ (l.uos_id and l.uos_id.name) or '' ]] + + + [[ formatLang(l.price_unit) ]] + + + [[ formatLang(l.discount, dp='Account') ]] + + + [[ formatLang(l.price_subtotal, dp='Account', currency_obj=o.currency_id) ]] + + + +
    + + + + + + + + + Net Total: + + + [[ formatLang(o.amount_untaxed, digits=get_digits(dp='Account'), currency_obj=o.currency_id) ]] + + + + + + + + + + Taxes: + + + [[ formatLang(o.amount_tax, dp='Account', currency_obj=o.currency_id) ]] + + + + + + + + + + Total: + + + [[ formatLang(o.amount_total, digits=get_digits(dp='Account'), currency_obj=o.currency_id) ]] + + + + + + + + + + Tax [[ o.tax_line==[] and removeParentNode('blockTable') ]] + + + Base + + + Amount + + + + + + + + +
    + [[ repeatIn(o.tax_line,'t') ]] + + + + [[ t.name ]] + + + [[ formatLang(t.base, dp='Account', currency_obj=o.currency_id) ]] + + + [[ (t.tax_code_id and t.tax_code_id.notprintable) and removeParentNode('blockTable') or '' ]] [[ formatLang(t.amount, digits=get_digits(dp='Account'), currency_obj=o.currency_id) ]] + + + + + + + + +
    + + + + [[ (o.comment and format(o.comment )) or removeParentNode('para') ]] + + + + [[ (o.payment_term and o.payment_term.note and format(o.payment_term and o.payment_term.note)) or removeParentNode('para') ]] + + + + + + + Fiscal Position Remark : + + + [[ (o.fiscal_position and o.fiscal_position.note and format(o.fiscal_position.note)) or removeParentNode('blockTable') ]] + + + + + + +
    +
    +
    diff --git a/rml_reports/account_report.xml b/rml_reports/account_report.xml new file mode 100755 index 0000000..62809a3 --- /dev/null +++ b/rml_reports/account_report.xml @@ -0,0 +1,16 @@ + + + + + + diff --git a/rml_reports/purchase/request_quotation.rml b/rml_reports/purchase/request_quotation.rml new file mode 100755 index 0000000..f7cfe2c --- /dev/null +++ b/rml_reports/purchase/request_quotation.rml @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [[repeatIn(objects,'order')]] + [[ setLang(order.partner_id.lang) ]] + + + + + + + + + + + + + + + + + + + + + + NAME : + + + + [[ (order .partner_id and order.partner_id.title and order.partner_id.title.name) or '' ]] [[ (order .partner_id and order.partner_id.name) or '' ]] + [[ order.partner_id and display_address(order .partner_id) ]] + + + + Tel.: [[ (order.partner_id and order.partner_id.phone) or removeParentNode('para') ]] + Fax: [[ (order.partner_id and order.partner_id.fax) or removeParentNode('para') ]] + TVA: [[ (order.partner_id and order.partner_id.vat) or removeParentNode('para') ]] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ATTN : + + + + + ______________________________________ + + + + + + + + Request for Quotation : [[order.name]] + + + + + + + Description + + + Qty + + + +
    + [[ repeatIn(order.order_line,'order_line') ]] + + + + [[ order_line.name ]] + + + + [[ formatLang(order_line.product_qty )]] [[ (order_line.product_uom and order_line.product_uom.name) or '' ]] + + + + +
    + + + + [[ format(order.notes or '') ]] + + + + Regards, + + + + + + + [[ user.signature or '' ]] +
    +
    diff --git a/rml_reports/purchase_report.xml b/rml_reports/purchase_report.xml new file mode 100755 index 0000000..7b6bc96 --- /dev/null +++ b/rml_reports/purchase_report.xml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/so_inv_pay_analysis/__init__.py b/so_inv_pay_analysis/__init__.py new file mode 100755 index 0000000..d3d5556 --- /dev/null +++ b/so_inv_pay_analysis/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import report + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/so_inv_pay_analysis/__openerp__.py b/so_inv_pay_analysis/__openerp__.py new file mode 100755 index 0000000..f9465ee --- /dev/null +++ b/so_inv_pay_analysis/__openerp__.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 Ecosoft Co., Ltd. (http://ecosoft.co.th). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +{ + 'name': 'Sales-Invoice-Payment Analysis', + 'version': '1.0', + 'author': 'Ecosoft', + 'summary': '', + 'description': """ + + """, + 'category': 'Accounting', + 'website': 'http://www.ecosoft.co.th', + 'images': [], + 'depends': ['account'], + 'demo': [], + 'data': ['report/so_inv_pay_analysis_view.xml' + ], + 'test': [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/so_inv_pay_analysis/report/__init__.py b/so_inv_pay_analysis/report/__init__.py new file mode 100755 index 0000000..8dd4fe7 --- /dev/null +++ b/so_inv_pay_analysis/report/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import so_inv_pay_analysis + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/so_inv_pay_analysis/report/so_inv_pay_analysis.py b/so_inv_pay_analysis/report/so_inv_pay_analysis.py new file mode 100755 index 0000000..bab8c74 --- /dev/null +++ b/so_inv_pay_analysis/report/so_inv_pay_analysis.py @@ -0,0 +1,86 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp import tools +from openerp.osv import fields,osv + + +class so_inv_pay_report(osv.osv): + + _name = "so.inv.pay.report" + _description = "Sales-Invoice-Payment Analysis" + _auto = False + _rec_name = 'date' + + _columns = { + 'user_id': fields.many2one('res.users', 'Salesperson', readonly=True), + 'partner_id': fields.many2one('res.partner', 'Customer', readonly=True), + 'order_id': fields.many2one('sale.order', 'Sales Order', readonly=True), + 'date': fields.date('Date', readonly=True), + 'year': fields.char('Year', size=4, readonly=True), + 'day': fields.char('Day', size=128, readonly=True), + 'month': fields.selection([('01', 'January'), ('02', 'February'), ('03', 'March'), ('04', 'April'), + ('05', 'May'), ('06', 'June'), ('07', 'July'), ('08', 'August'), ('09', 'September'), + ('10', 'October'), ('11', 'November'), ('12', 'December')], 'Month', readonly=True), + 'is_international': fields.boolean('International', readonly=True), + 'order_amount': fields.float('Amount', readonly=True), + 'invoice_id': fields.many2one('account.invoice', 'Invoice', readonly=True), + 'invoiced_amount': fields.float('Invoiced', readonly=True), + 'unpaid_amount': fields.float('Unpaid', readonly=True), + 'paid_amount': fields.float('Paid', readonly=True), + 'percent_paid': fields.float('% Paid by Sales Order', readonly=True, group_operator="sum"), + } + _order = 'date desc' + + def init(self, cr): + # self._table = so_inv_pay_report + tools.drop_view_if_exists(cr, self._table) + cr.execute("""CREATE or REPLACE VIEW so_inv_pay_report as ( + select *, ((case when coalesce(order_amount, 0) = 0 then 1 when paid_amount > order_amount then 1 else paid_amount / order_amount end) * 100)::decimal(16,2) as percent_paid + from ( + select *, (case when coalesce(amount_total, 0) = 0 then 0 else ((invoiced_amount / amount_total) * residual) end)::decimal(16,2) as unpaid_amount, + (case when coalesce(amount_total, 0) = 0 then 0 else invoiced_amount - ((invoiced_amount / amount_total) * residual) end)::decimal(16,2) as paid_amount + from ( + select ai.id as id, + so.user_id, + so.partner_id, + so.id as order_id, + so.date_order as date, + to_char(so.date_order::timestamp with time zone, 'YYYY'::text) AS year, + to_char(so.date_order::timestamp with time zone, 'MM'::text) AS month, + to_char(so.date_order::timestamp with time zone, 'YYYY-MM-DD'::text) AS day, + so.is_international, + (case when coalesce(so.amount_final, 0) = 0 then so.amount_untaxed else so.amount_final end) as order_amount, + ai.id as invoice_id, + ai.amount_beforetax as invoiced_amount, + -- to be calculated + ai.amount_total, + ai.residual + from sale_order so + join sale_order_invoice_rel sir on so.id = sir.order_id + join account_invoice ai on ai.id = sir.invoice_id and ai.state not in ('draft','cancel') + ) a + ) b + )""") + +so_inv_pay_report() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/so_inv_pay_analysis/report/so_inv_pay_analysis_view.xml b/so_inv_pay_analysis/report/so_inv_pay_analysis_view.xml new file mode 100755 index 0000000..4529431 --- /dev/null +++ b/so_inv_pay_analysis/report/so_inv_pay_analysis_view.xml @@ -0,0 +1,78 @@ + + + + + so.inv.pay.report.tree + so.inv.pay.report + + + + + + + + + + + + + + + + + + + + + + so.inv.pay.report.graph + so.inv.pay.report + + + + + + + + + + so.inv.pay.report.search + so.inv.pay.report + + + + + + + + + + + + + + + + + + + + + + + + + + Sales-Invoice-Payment + so.inv.pay.report + form + tree,graph + {'search_default_local': 1, 'search_default_user': 1, 'group_by':[], 'group_by_no_leaf':1,} + + From this report, you can have an overview of the amount invoiced versus amount unpaid for each sales order + + + + + + diff --git a/sqp_config/__init__.py b/sqp_config/__init__.py new file mode 100755 index 0000000..a4a5d90 --- /dev/null +++ b/sqp_config/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_config/__openerp__.py b/sqp_config/__openerp__.py new file mode 100755 index 0000000..0c5d38a --- /dev/null +++ b/sqp_config/__openerp__.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'Configuration for SQP', + 'version': '1.0', + 'category': 'Hidden', + 'description': '', + 'author': 'Ecosoft', + 'website': 'http://www.ecosoft.co.th/', + 'depends': [#'account','product_tag' + ], + 'data': [ +# # Configuration, i.e., users, companies, etc. +# 'data/res.company.csv', # Company Info +# 'data/res.lang.csv', # Language Info +# 'data/account_data.xml', # Payment Term +# 'data/product_data.xml', # Product Category, Product Tags +# 'data/product.uom.csv', # UOMs +# 'data/ir.values.csv', # Default Values in SO form. +# 'data/mrp_data.xml', # Machine Setup Config +# 'data/res.partner.category.csv', # Machine Setup Config +# #'master/sales_person_user_data.xml', +# 'data/ir_sequence.xml', +# # AHU Price List +# 'master/product/ahu_with_3pricelist/product.pricelist.csv', # Price list version +# 'master/product/ahu_with_3pricelist/product.pricelist.version.csv', # Price list version +# 'master/product/ahu_with_3pricelist/product.product.csv', +# 'master/product/ahu_with_3pricelist/product.pricelist.item.csv', + ], + 'auto_install': False, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_config/coa/account.account.template.csv b/sqp_config/coa/account.account.template.csv new file mode 100755 index 0000000..d017c61 --- /dev/null +++ b/sqp_config/coa/account.account.template.csv @@ -0,0 +1,288 @@ +id,name,code,parent_id/id,type,user_type/id,reconcile +coa_sqp_0,บริษัท สแควร์ พาแนล ซิสเต็ม จำกัด,0,,View,account.data_account_type_view,FALSE +coa_sqp_1,งบแสดงฐานะการเงิน,1,coa_sqp_0,View,account.data_account_type_view,FALSE +coa_sqp_10,สินทรัพย์,10,coa_sqp_1,View,account.data_account_type_view,FALSE +coa_sqp_101,สินทรัพย์หมุนเวียน,101,coa_sqp_10,View,account.data_account_type_view,FALSE +coa_sqp_1001,เงินสดและเงินฝากธนาคาร,1001,coa_sqp_101,View,account.data_account_type_view,FALSE +coa_sqp_100110,เงินสด,100110,coa_sqp_1001,Liquidity,account.data_account_type_cash,FALSE +coa_sqp_100120,เงินสดย่อย,100120,coa_sqp_1001,Liquidity,account.data_account_type_cash,FALSE +coa_sqp_100130,เงินฝากธนาคาร-กระแสรายวัน,100130,coa_sqp_1001,Liquidity,account.data_account_type_bank,FALSE +coa_sqp_100131,เงินฝากธนาคาร-กระแสรายวัน-ยูโอบี,100131,coa_sqp_1001,Liquidity,account.data_account_type_bank,FALSE +coa_sqp_100132,เงินฝากธนาคาร-กระแสรายวัน-กสิกรไทย,100132,coa_sqp_1001,Liquidity,account.data_account_type_bank,FALSE +coa_sqp_100133,เงินฝากธนาคาร-กระแสรายวัน-กรุงเทพ,100133,coa_sqp_1001,Liquidity,account.data_account_type_bank,FALSE +coa_sqp_100140,เงินฝากธนาคาร-ประจำ,100140,coa_sqp_1001,Liquidity,account.data_account_type_bank,FALSE +coa_sqp_100143,เงินฝากประจำ - ธนาคารกรุงเทพ,100143,coa_sqp_1001,Liquidity,account.data_account_type_bank,FALSE +coa_sqp_100150,เงินฝากธนาคาร-ออมทรัพย์,100150,coa_sqp_1001,Liquidity,account.data_account_type_bank,FALSE +coa_sqp_100153,เงินฝากธนาคาร-ออมทรัพย์-กรุงเทพ,100153,coa_sqp_1001,Liquidity,account.data_account_type_bank,FALSE +coa_sqp_100155,เงินฝากออมทรัพย์เงินต่างประเทศ-ธนาคารกรุงเทพ,100155,coa_sqp_1001,Liquidity,account.data_account_type_bank,FALSE +coa_sqp_100160,เช็ครับล่วงหน้า,100160,coa_sqp_1001,Regular,account.data_account_type_asset,FALSE +coa_sqp_100170,เช็ครับคืน,100170,coa_sqp_1001,Regular,account.data_account_type_asset,FALSE +coa_sqp_100180,บัตรภาษีอากรจากการส่งออก ,100180,coa_sqp_1001,Regular,account.data_account_type_asset,FALSE +coa_sqp_1002,ลูกหนี้การค้าและตั๋วเงินรับ,1002,coa_sqp_101,View,account.data_account_type_view,FALSE +coa_sqp_100210,ลูกหนี้การค้า-ในประเทศ,100210,coa_sqp_1002,Receivable,account.data_account_type_receivable,TRUE +coa_sqp_100220,ลูกหนี้การค้า-ต่างประเทศ,100220,coa_sqp_1002,Receivable,account.data_account_type_receivable,TRUE +coa_sqp_1003,ลูกหนี้อื่นๆ,1003,coa_sqp_101,View,account.data_account_type_view,FALSE +coa_sqp_100310,ลูกหนี้อื่นๆ,100310,coa_sqp_1003,Regular,account.data_account_type_asset,FALSE +coa_sqp_100320,ลูกหนี้บริษัทในเครือ,100320,coa_sqp_1003,Regular,account.data_account_type_asset,FALSE +coa_sqp_1004,สำรองหนี้สูญ,1004,coa_sqp_101,View,account.data_account_type_view,FALSE +coa_sqp_100410,ค่าเผื่อหนี้สงสัยจะสูญ,100410,coa_sqp_1004,Regular,account.data_account_type_asset,FALSE +coa_sqp_1005,สินค้าคงเหลือ,1005,coa_sqp_101,View,account.data_account_type_view,FALSE +coa_sqp_100510,สินค้าคงเหลือ-วัตถุดิบ,100510,coa_sqp_1005,Regular,account.data_account_type_asset,FALSE +coa_sqp_100520,สินค้าคงเหลือ-สินค้าสำเร็จรูป,100520,coa_sqp_1005,Regular,account.data_account_type_asset,FALSE +coa_sqp_100530,งานระหว่างทำคงเหลือ,100530,coa_sqp_1005,Regular,account.data_account_type_asset,FALSE +coa_sqp_1006,สินทรัพย์หมุนเวียนอื่น ๆ,1006,coa_sqp_101,View,account.data_account_type_view,FALSE +coa_sqp_100610,เงินมัดจำจ่ายล่วงหน้า,100610,coa_sqp_1006,Regular,account.data_account_type_asset,FALSE +coa_sqp_100620,ค่าใช้จ่ายจ่ายล่วงหน้า,100620,coa_sqp_1006,Regular,account.data_account_type_asset,FALSE +coa_sqp_100621,ค่าเบี้ยประกันภัยจ่ายล่วงหน้า,100621,coa_sqp_1006,Regular,account.data_account_type_asset,FALSE +coa_sqp_100622,ค่าธรรมเนียมค้ำประกันจ่ายล่วงหน้า,100622,coa_sqp_1006,Regular,account.data_account_type_asset,FALSE +coa_sqp_100630,เงินจ่ายล่วงหน้าแก่กรรมการและพนักงาน,100630,coa_sqp_1006,Regular,account.data_account_type_asset,FALSE +coa_sqp_100640,ภาษีซื้อ,100640,coa_sqp_1006,Regular,account.data_account_type_asset,FALSE +coa_sqp_100650,ภาษีซื้อยังไม่ถึงกำหนด,100650,coa_sqp_1006,Regular,account.data_account_type_asset,FALSE +coa_sqp_100660,ลูกหนี้-กรมสรรพากร,100660,coa_sqp_1006,Regular,account.data_account_type_asset,FALSE +coa_sqp_100670,ภาษีถูกหัก ณ ที่จ่าย,100670,coa_sqp_1006,Regular,account.data_account_type_asset,FALSE +coa_sqp_100680,สินทรัพย์อื่น ๆ,100680,coa_sqp_1006,Regular,account.data_account_type_asset,FALSE +coa_sqp_100681,ดอกเบี้ยเช่าซื้อ-ส่วนที่ถึงกำหนดชำระใน 1 ปี,100681,coa_sqp_1006,Regular,account.data_account_type_asset,FALSE +coa_sqp_100690,ค่าเช่าค้างรับ,100690,coa_sqp_1006,Regular,account.data_account_type_asset,FALSE +coa_sqp_102,สินทรัพย์ไม่หมุนเวียน,102,coa_sqp_10,View,account.data_account_type_view,FALSE +coa_sqp_103,ที่ดิน อาคาร และ อุปกรณ์(สุทธิ),103,coa_sqp_102,View,account.data_account_type_view,FALSE +coa_sqp_101110,ที่ดิน,101110,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101111,ส่วนปรับปรุงที่ดิน,101111,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101120,อาคารและสิ่งปลูกสร้าง,101120,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101130,เครื่องใช้สำนักงาน,101130,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101131,เครื่องใช้สำนักงานโรงงาน,101131,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101132,โปรแกรมคอมพิวเตอร์,101132,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101133,อุปกรณ์สำนักงาน,101133,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101140,เครื่องตกแต่งสำนักงาน,101140,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101150,เครื่องมือเครื่องใช้,101150,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101151,อุปกรณ์ในโรงงาน,101151,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101152,อุปกรณ์เครื่องจักร,101152,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101160,อุปกรณ์สำนักงาน,101160,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101170,ยานพาหนะ,101170,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101180,เครื่องจักร,101180,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101181,อุปกรณ์เครื่องจักร,101181,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_101190,งานระหว่างก่อสร้าง,101190,coa_sqp_103,Regular,account.data_account_type_asset,FALSE +coa_sqp_1019,ค่าเสื่อมราคาสะสม,1019,coa_sqp_103,View,account.data_account_type_view,FALSE +coa_sqp_101911,ค่าเสื่อมราคาสะสม-ส่วนปรับปรุงที่ดิน,101911,coa_sqp_1019,Regular,account.data_account_type_asset,FALSE +coa_sqp_101920,ค่าเสื่อมราคาสะสม-อาคารและสิ่งปลูกสร้าง,101920,coa_sqp_1019,Regular,account.data_account_type_asset,FALSE +coa_sqp_101921,ค่าเสื่อมราคาสะสม-อาคารและสิ่งปลูกสร้างโรงงาน,101921,coa_sqp_1019,Regular,account.data_account_type_asset,FALSE +coa_sqp_101930,ค่าเสื่อมราคาสะสม-เครื่องใช้สำนักงาน,101930,coa_sqp_1019,Regular,account.data_account_type_asset,FALSE +coa_sqp_101931,ค่าเสื่อมราคาสะสม-อุปกรณ์สำนักงาน,101931,coa_sqp_1019,Regular,account.data_account_type_asset,FALSE +coa_sqp_101932,ค่าเสื่อมราคาสะสม-โปรแกรม,101932,coa_sqp_1019,Regular,account.data_account_type_asset,FALSE +coa_sqp_101940,ค่าเสื่อมราคาสะสม-เครื่องตกแต่งและติดตั้ง,101940,coa_sqp_1019,Regular,account.data_account_type_asset,FALSE +coa_sqp_101950,ค่าเสื่อมราคาสะสม-เครื่องมือเครื่องใช้,101950,coa_sqp_1019,Regular,account.data_account_type_asset,FALSE +coa_sqp_101951,ค่าเสื่อมราคาสะสม-อุปกรณ์โรงงาน,101951,coa_sqp_1019,Regular,account.data_account_type_asset,FALSE +coa_sqp_101970,ค่าเสื่อมราคาสะสม-ยานพาหนะ,101970,coa_sqp_1019,Regular,account.data_account_type_asset,FALSE +coa_sqp_101980,ค่าเสื่อมราคาสะสม-เครื่องจักร,101980,coa_sqp_1019,Regular,account.data_account_type_asset,FALSE +coa_sqp_101981,ค่าเสื่อมราคาสะสม-อุปกรณ์เครื่องจักร,101981,coa_sqp_1019,Regular,account.data_account_type_asset,FALSE +coa_sqp_104,สินทรัพย์อื่น ๆ,104,coa_sqp_102,View,account.data_account_type_view,FALSE +coa_sqp_102110,บัญชีเงินมัดจำที่เรียกคืนได้,102110,coa_sqp_104,Regular,account.data_account_type_asset,FALSE +coa_sqp_102114,เงินประกันเครื่องจักร,102114,coa_sqp_104,Regular,account.data_account_type_asset,FALSE +coa_sqp_102120,สินทรัพย์อื่น ๆ,102120,coa_sqp_104,Regular,account.data_account_type_asset,FALSE +coa_sqp_102130,ดอกเบี้ยรอตัดจ่าย-ส่วนที่ยังไม่ถึงกำหนดชำระ,102130,coa_sqp_104,Regular,account.data_account_type_asset,FALSE +coa_sqp_20,หนี้สินและส่วนของผู้ถือหุ้น,20,coa_sqp_1,View,account.data_account_type_view,FALSE +coa_sqp_200,หนี้สิน,200,coa_sqp_20,View,account.data_account_type_view,FALSE +coa_sqp_205,หนี้สินหมุนเวียน,205,coa_sqp_200,View,account.data_account_type_view,FALSE +coa_sqp_2011,เงินกู้ยืมระยะสั้น,2011,coa_sqp_205,View,account.data_account_type_view,FALSE +coa_sqp_201120,เงินกู้ยืมธนาคารระยะสั้น,201120,coa_sqp_2011,Regular,account.data_account_type_liability,FALSE +coa_sqp_201121,เงินกู้ยืมระยะสั้น-UOB,201121,coa_sqp_2011,Regular,account.data_account_type_liability,FALSE +coa_sqp_201122,เงินกู้ยืมระยะสั้น-KBANK,201122,coa_sqp_2011,Regular,account.data_account_type_liability,FALSE +coa_sqp_2012,เจ้าหนี้การค้าและตั๋วเงินจ่าย,2012,coa_sqp_205,View,account.data_account_type_view,FALSE +coa_sqp_201210,เจ้าหนี้การค้า-ในประเทศ,201210,coa_sqp_2012,Payable,account.data_account_type_payable,TRUE +coa_sqp_201220,เจ้าหนี้การค้า-ต่างประเทศ,201220,coa_sqp_2012,Payable,account.data_account_type_payable,TRUE +coa_sqp_201230,เช็คจ่ายล่วงหน้า,201230,coa_sqp_2012,Regular,account.data_account_type_liability,FALSE +coa_sqp_2013,เจ้าหนี้อื่น ๆ,2013,coa_sqp_205,View,account.data_account_type_view,FALSE +coa_sqp_201310,เจ้าหนี้อื่น ๆ,201310,coa_sqp_2013,Regular,account.data_account_type_liability,FALSE +coa_sqp_201320,เจ้าหนี้-บริษัทในเครือ,201320,coa_sqp_2013,Regular,account.data_account_type_liability,FALSE +coa_sqp_201330,เจ้าหนี้ยานพาหนะ,201330,coa_sqp_2013,Regular,account.data_account_type_liability,FALSE +coa_sqp_2014,หนี้สินหมุนเวียนอื่น ๆ,2014,coa_sqp_205,View,account.data_account_type_view,FALSE +coa_sqp_201410,เงินมัดจำจากลูกค้า,201410,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201420,เงินประกันสังคมค้างจ่าย,201420,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201430,ค่าใช้จ่ายค้างจ่าย,201430,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201431,ค่าเช่าค้างจ่าย,201431,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201432,ค่าจ้างเหมาค้างจ่าย,201432,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201433,ค่าทำบัญชีค้างจ่าย,201433,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201434,ค่าที่ปรึกษาค้างจ่าย,201434,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201435,ค่าใช้จ่ายค้างจ่ายอื่น,201435,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201436,ค่าสอบบัญชีค้างจ่าย,201436,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201438,ค่าใช้จ่ายยานพาหนะค้างจ่าย,201438,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201439,ค่าอบรมสัมมนาค้างจ่าย,201439,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201440,เงินเดือนค้างจ่าย,201440,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201450,ภาษีขาย,201450,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201460,ภาษีขายยังไม่ถึงกำหนด,201460,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201470,ภาษีหัก ณ ที่จ่ายค้างจ่าย,201470,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201480,ภาษีเงินได้นิติบุคคลค้างจ่าย,201480,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201490,หนี้สินหมุนเวียนอื่น ๆ,201490,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201491,เงินมัดจำที่เรียกคืนได้,201491,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_201492,เจ้าหนี้กรมสรรพากร,201492,coa_sqp_2014,Regular,account.data_account_type_liability,FALSE +coa_sqp_206,หนี้สินไม่หมุนเวียน,206,coa_sqp_200,View,account.data_account_type_view,FALSE +coa_sqp_2021,เงินกู้ยืมระยะยาว,2021,coa_sqp_206,View,account.data_account_type_view,FALSE +coa_sqp_202110,เงินกู้ยืมจากรรมการ,202110,coa_sqp_2021,Regular,account.data_account_type_liability,FALSE +coa_sqp_202112,เงินกู้ยืมระยะยาวอื่น ๆ,202112,coa_sqp_2021,Regular,account.data_account_type_liability,FALSE +coa_sqp_202114,เจ้าหนี้ยานพาหนะ-ส่วนที่ยังไม่ถึงกำหนดชำระ,202114,coa_sqp_2021,Regular,account.data_account_type_liability,FALSE +coa_sqp_208,ส่วนของผู้ถือหุ้น,208,coa_sqp_20,View,account.data_account_type_view,FALSE +coa_sqp_301110,ทุน-หุ้นสามัญ,301110,coa_sqp_208,Regular,account.conf_account_type_equity,FALSE +coa_sqp_3012,กำไร(ขาดทุน)สะสม,3012,coa_sqp_208,View,account.data_account_type_view,FALSE +coa_sqp_301210,กำไร(ขาดทุน)สะสม,301210,coa_sqp_3012,Regular,account.conf_account_type_equity,FALSE +coa_sqp_301220,กำไร(ขาดทุน)สุทธิ,301220,coa_sqp_3012,Regular,account.conf_account_type_equity,FALSE +coa_sqp_301230,สำรองตามกฏหมาย,301230,coa_sqp_3012,Regular,account.conf_account_type_equity,FALSE +coa_sqp_301240,กำไรสะสมที่ยังไม่ได้จัดสรร,301240,coa_sqp_3012,Regular,account.conf_account_type_equity,FALSE +coa_sqp_301250,เงินปันผล,301250,coa_sqp_3012,Regular,account.conf_account_type_equity,FALSE +coa_sqp_2,งบกำไรขาดทุน,2,coa_sqp_0,View,account.data_account_type_view,FALSE +coa_sqp_40,รายได้,40,coa_sqp_2,View,account.data_account_type_view,FALSE +coa_sqp_4011,รายได้จากการขายสินค้า,4011,coa_sqp_40,View,account.data_account_type_view,FALSE +coa_sqp_401110,รายได้จากการขายสินค้า-ในประเทศ,401110,coa_sqp_4011,Regular,account.data_account_type_income,FALSE +coa_sqp_401120,รายได้จากการขายสินค้า-ต่างประเทศ,401120,coa_sqp_4011,Regular,account.data_account_type_income,FALSE +coa_sqp_401130,รับคืนสินค้า,401130,coa_sqp_4011,Regular,account.data_account_type_income,FALSE +coa_sqp_401140,ส่วนลดจ่าย,401140,coa_sqp_4011,Regular,account.data_account_type_income,FALSE +coa_sqp_4012,รายได้อื่น ๆ,4012,coa_sqp_40,View,account.data_account_type_view,FALSE +coa_sqp_401210,ดอกเบี้ยรับ,401210,coa_sqp_4012,Regular,account.data_account_type_income,FALSE +coa_sqp_401220,รายได้อื่น ๆ,401220,coa_sqp_4012,Regular,account.data_account_type_income,FALSE +coa_sqp_401221,รับคืนภาษีอากรจากการส่งออก,401221,coa_sqp_4012,Regular,account.data_account_type_income,FALSE +coa_sqp_401222,รายได้ค่าเช่า,401222,coa_sqp_4012,Regular,account.data_account_type_income,FALSE +coa_sqp_401230,กำไร(ขาดทุน)จากอัตราแลกเปลี่ยน,401230,coa_sqp_4012,Regular,account.data_account_type_income,FALSE +coa_sqp_401240,กำไร(ขาดทุน)จากการจำหน่ายทรัพย์สิน,401240,coa_sqp_4012,Regular,account.data_account_type_income,FALSE +coa_sqp_50,ค่าใช้จ่าย,50,coa_sqp_2,View,account.data_account_type_view,FALSE +coa_sqp_500,ต้นทุน,500,coa_sqp_50,View,account.data_account_type_view,FALSE +coa_sqp_5001,ต้นทุนขาย,5001,coa_sqp_500,View,account.data_account_type_view,FALSE +coa_sqp_500110,สินค้าสำเร็จรูปต้นงวด,500110,coa_sqp_5001,Regular,account.data_account_type_expense,FALSE +coa_sqp_500120,ซื้อสินค้า,500120,coa_sqp_5001,Regular,account.data_account_type_expense,FALSE +coa_sqp_500121,ค่าขนส่ง,500121,coa_sqp_5001,Regular,account.data_account_type_expense,FALSE +coa_sqp_500122,ส่วนลดรับ,500122,coa_sqp_5001,Regular,account.data_account_type_expense,FALSE +coa_sqp_500123,ส่งคืนสินค้า,500123,coa_sqp_5001,Regular,account.data_account_type_expense,FALSE +coa_sqp_500130,สินค้าสำเร็จรูปปลายงวด,500130,coa_sqp_5001,Regular,account.data_account_type_expense,FALSE +coa_sqp_5002,ต้นทุนวัตถุดิบ,5002,coa_sqp_500,View,account.data_account_type_view,FALSE +coa_sqp_500210,วัตถุดิบ-ต้นงวด,500210,coa_sqp_5002,Regular,account.data_account_type_expense,FALSE +coa_sqp_500220,ซื้อวัตถุดิบ,500220,coa_sqp_5002,Regular,account.data_account_type_expense,FALSE +coa_sqp_500221,ค่าขนส่ง,500221,coa_sqp_5002,Regular,account.data_account_type_expense,FALSE +coa_sqp_500222,ส่วนลดรับ,500222,coa_sqp_5002,Regular,account.data_account_type_expense,FALSE +coa_sqp_500223,ส่งคืนสินค้า,500223,coa_sqp_5002,Regular,account.data_account_type_expense,FALSE +coa_sqp_500224,ค่าใช้จ่ายในการนำเข้า,500224,coa_sqp_5002,Regular,account.data_account_type_expense,FALSE +coa_sqp_500225,ค่าอากรขาเข้า,500225,coa_sqp_5002,Regular,account.data_account_type_expense,FALSE +coa_sqp_500230,วัตถุดิบ-ปลายงวด,500230,coa_sqp_5002,Regular,account.data_account_type_expense,FALSE +coa_sqp_5004,ต้นทุนค่าแรง,5004,coa_sqp_500,View,account.data_account_type_view,FALSE +coa_sqp_500410,ค่าแรง,500410,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500411,ค่าแรงพนักงานประจำ,500411,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500412,ค่าแรงพนักงานรายวัน,500412,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500413,ค่าแรงฝึกงาน,500413,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500414,ค่าจ้างเหมา-ค่าแรงติดตั้ง,500414,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500415,ค่าจ้างทำของ,500415,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500420,ค่าล่วงเวลา - ค่าเบี้ยขยัน,500420,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500421,ค่าล่วงเวลา-พนักงานประจำ,500421,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500422,ค่าล่วงเวลา-พนักงานรายวัน,500422,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500430,เงินเดือน,500430,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500431,เงินเดือนโรงงาน,500431,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500432,ค่าล่วงเวลา-พนักงานประจำ,500432,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500440,โบนัสโรงงาน,500440,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500441,โบนัส-ค่าแรง,500441,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500442,โบนัส-เงินเดือน,500442,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500450,เบี้ยเลี้ยงพนักงาน,500450,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500451,เบี้ยเลี้ยงพนักงานขนส่ง,500451,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500452,ค่าใช้จ่ายสำหรับพนักงานอื่นๆ,500452,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500453,ค่ารักษาพยาบาลสำหรับพนักงาน (รง.),500453,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500454,ค่าชดเชยและสวัสดิการพนักงาน,500454,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_500460,เงินประกันสังคมส่วนของนายจ้าง,500460,coa_sqp_5004,Regular,account.data_account_type_expense,FALSE +coa_sqp_5005,ค่าใช้จ่ายทางการผลิต,5005,coa_sqp_500,View,account.data_account_type_view,FALSE +coa_sqp_500510,ค่าแก็ส,500510,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500520,ค่าสาธารณูปโภค-ต้นทุนทางการผลิต,500520,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500521,ค่าไฟฟ้าโรงงาน,500521,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500522,ค่าน้ำโรงงาน,500522,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500523,ค่าโทรศัพท์โรงงาน,500523,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500524,ค่าเช่าโรงงาน,500524,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500525,ค่าใช้จ่ายเดินทาง,500525,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500526,ค่าใช้จ่ายเกี่ยวกับยานพาหนะ(รง.),500526,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500527,ค่าประกันภัยรถยนต์+พ.ร.บ (รง.),500527,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500528,ค่าต่อทะเบียน (รง.),500528,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500530,ค่าซ่อมแซมและบำรุงรักษา-เครื่องจักร,500530,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500540,ค่าซ่อมแซมและบำรุงรักษา-เครื่องมือเครื่องใช้,500540,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500560,ค่าเสื่อมราคา-เครื่องมือเครื่องใช้,500560,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500561,ค่าเสื่อมราคา-เครื่องจักร,500561,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500562,ค่าเสื่อมราคา-เครื่องใช้สำนักงานโรงาน,500562,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500570,ค่าเสื่อมราคา-โรงงาน,500570,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500580,เงินประกันเครื่องจักร / ลิสซิ่ง,500580,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500590,วัสดุโรงงาน,500590,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500591,ค่าขนส่ง,500591,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500592,ค่าภาษีโรงเรือน-ที่ดินและป้าย,500592,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500593,ค่าธรรมเนียมใบอนุญาต,500593,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500594,ค่าวิจัยและพัฒนา,500594,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500595,ค่ารักษาความปลอดภัยโรงงาน,500595,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500596,ค่าเครื่องเขียนแบบพิมพ์โรงงาน,500596,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500599,ค่าใช้จ่ายทางการผลิต-อื่นๆ,500599,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500698,งานระหว่างทำ-ต้นงวด,500698,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_500699,งานระหว่างทำ-ปลายงวด,500699,coa_sqp_5005,Regular,account.data_account_type_expense,FALSE +coa_sqp_503,ค่าใช้จ่ายในการขายและบริหาร,503,coa_sqp_50,View,account.data_account_type_view,FALSE +coa_sqp_5011,เงินเดือนและสวัสดิการพนักงาน,5011,coa_sqp_503,View,account.data_account_type_view,FALSE +coa_sqp_501110,เงินเดือน,501110,coa_sqp_5011,Regular,account.data_account_type_expense,FALSE +coa_sqp_501120,ค่าจ้างพนักงานชั่วคราว,501120,coa_sqp_5011,Regular,account.data_account_type_expense,FALSE +coa_sqp_501130,ค่าล่วงเวลา,501130,coa_sqp_5011,Regular,account.data_account_type_expense,FALSE +coa_sqp_501131,โบนัสจ่าย,501131,coa_sqp_5011,Regular,account.data_account_type_expense,FALSE +coa_sqp_501132,ค่าชดเชยและสวัสดิการพนักงาน,501132,coa_sqp_5011,Regular,account.data_account_type_expense,FALSE +coa_sqp_501133,ค่ารักษาพยาบาลพนักงาน,501133,coa_sqp_5011,Regular,account.data_account_type_expense,FALSE +coa_sqp_501150,ค่าประกันภัยพนักงาน,501150,coa_sqp_5011,Regular,account.data_account_type_expense,FALSE +coa_sqp_501160,ค่าใช้จ่ายสำหรับพนักงานอื่นๆ,501160,coa_sqp_5011,Regular,account.data_account_type_expense,FALSE +coa_sqp_501170,เงินประกันสังคม,501170,coa_sqp_5011,Regular,account.data_account_type_expense,FALSE +coa_sqp_501171,เงินสมทบกองทุนทดแทน,501171,coa_sqp_5011,Regular,account.data_account_type_expense,FALSE +coa_sqp_5012,ค่าสาธารณูปโภค-สำนักงาน,5012,coa_sqp_503,View,account.data_account_type_view,FALSE +coa_sqp_501210,ค่าโทรศัพท์,501210,coa_sqp_5012,Regular,account.data_account_type_expense,FALSE +coa_sqp_501220,ค่าโทรสาร,501220,coa_sqp_5012,Regular,account.data_account_type_expense,FALSE +coa_sqp_501230,ค่าไฟฟ้า,501230,coa_sqp_5012,Regular,account.data_account_type_expense,FALSE +coa_sqp_501240,ค่าน้ำประปา,501240,coa_sqp_5012,Regular,account.data_account_type_expense,FALSE +coa_sqp_501250,ค่าเช่า,501250,coa_sqp_5012,Regular,account.data_account_type_expense,FALSE +coa_sqp_501260,ค่าไปรษณีย์และอากร,501260,coa_sqp_5012,Regular,account.data_account_type_expense,FALSE +coa_sqp_501270,ค่าเครื่องเขียนและแบบพิมพ,501270,coa_sqp_5012,Regular,account.data_account_type_expense,FALSE +coa_sqp_501280,ค่าวัสดุสิ้นเปลืองสำนักงาน,501280,coa_sqp_5012,Regular,account.data_account_type_expense,FALSE +coa_sqp_501290,ค่าอบรมและจัดหาบุคคลากร,501290,coa_sqp_5012,Regular,account.data_account_type_expense,FALSE +coa_sqp_501291,ค่ารักษาความปลอดภัย,501291,coa_sqp_5012,Regular,account.data_account_type_expense,FALSE +coa_sqp_501292,ค่าประกันอัคคีภัย,501292,coa_sqp_5012,Regular,account.data_account_type_expense,FALSE +coa_sqp_5013,ค่าใช้จ่ายในการขายและโฆษาณา,5013,coa_sqp_503,View,account.data_account_type_view,FALSE +coa_sqp_501310,ค่านายหน้าในการขาย,501310,coa_sqp_5013,Regular,account.data_account_type_expense,FALSE +coa_sqp_501320,ค่าโฆษณาและส่งเสริมการขาย,501320,coa_sqp_5013,Regular,account.data_account_type_expense,FALSE +coa_sqp_501330,ค่ารับรอง,501330,coa_sqp_5013,Regular,account.data_account_type_expense,FALSE +coa_sqp_501340,ค่าใช้จ่ายในการส่งออก,501340,coa_sqp_5013,Regular,account.data_account_type_expense,FALSE +coa_sqp_501342,ค่าFreight charge,501342,coa_sqp_5013,Regular,account.data_account_type_expense,FALSE +coa_sqp_501343,ค่าใช้จ่ายพิธีการส่งออก,501343,coa_sqp_5013,Regular,account.data_account_type_expense,FALSE +coa_sqp_501344,ค่าประกันภัยสินค้าส่งออก,501344,coa_sqp_5013,Regular,account.data_account_type_expense,FALSE +coa_sqp_501350,ค่าขนส่งในประเทศ,501350,coa_sqp_5013,Regular,account.data_account_type_expense,FALSE +coa_sqp_5014,ค่าเดินทาง,5014,coa_sqp_503,View,account.data_account_type_view,FALSE +coa_sqp_501410,ค่าน้ำมัน,501410,coa_sqp_5014,Regular,account.data_account_type_expense,FALSE +coa_sqp_501420,ค่าเดินทาง-ค่ารถ,501420,coa_sqp_5014,Regular,account.data_account_type_expense,FALSE +coa_sqp_501430,ค่าเดินทาง-ค่าทางด่วน,501430,coa_sqp_5014,Regular,account.data_account_type_expense,FALSE +coa_sqp_501440,ค่าเดินทาง-อื่นๆ,501440,coa_sqp_5014,Regular,account.data_account_type_expense,FALSE +coa_sqp_501450,ค่าประกันภัย &พ.ร.บ. ยานพาหนะ,501450,coa_sqp_5014,Regular,account.data_account_type_expense,FALSE +coa_sqp_501460,ค่าต่อทะเบียนรถยนต์ ,501460,coa_sqp_5014,Regular,account.data_account_type_expense,FALSE +coa_sqp_5015,ค่าธรรมเนียมวิชาชีพ,5015,coa_sqp_503,View,account.data_account_type_view,FALSE +coa_sqp_501510,ค่าธรรมเนียมวิชาชีพ,501510,coa_sqp_5015,Regular,account.data_account_type_expense,FALSE +coa_sqp_501511,ค่าที่ปรึกษา,501511,coa_sqp_5015,Regular,account.data_account_type_expense,FALSE +coa_sqp_501512,ค่าทนายความ,501512,coa_sqp_5015,Regular,account.data_account_type_expense,FALSE +coa_sqp_5016,ค่าซ่อมแซมและบำรุงรักษา,5016,coa_sqp_503,View,account.data_account_type_view,FALSE +coa_sqp_501620,ค่าซ่อมแซมและบำรุงรักษา-อาคาร,501620,coa_sqp_5016,Regular,account.data_account_type_expense,FALSE +coa_sqp_501630,ค่าซ่อมแซมและบำรุงรักษา-เครื่องใช้สำนักงาน,501630,coa_sqp_5016,Regular,account.data_account_type_expense,FALSE +coa_sqp_501640,ค่าซ่อมแซมและบำรุงรักษา-เครื่องตกแต่งและติดตั้ง,501640,coa_sqp_5016,Regular,account.data_account_type_expense,FALSE +coa_sqp_501670,ค่าซ่อมแซมและบำรุงรักษา-ยานพาหนะ,501670,coa_sqp_5016,Regular,account.data_account_type_expense,FALSE +coa_sqp_5017,ค่าเสื่อมราคา,5017,coa_sqp_503,View,account.data_account_type_view,FALSE +coa_sqp_501720,ค่าเสื่อมราคา-อาคาร,501720,coa_sqp_5017,Regular,account.data_account_type_expense,FALSE +coa_sqp_501730,ค่าเสื่อมราคา-เครื่องใช้สำนักงาน,501730,coa_sqp_5017,Regular,account.data_account_type_expense,FALSE +coa_sqp_501731,ค่าเสื่อมราคา-โปรแกรมคอมพิวเตอร์,501731,coa_sqp_5017,Regular,account.data_account_type_expense,FALSE +coa_sqp_501740,ค่าเสื่อมราคา-เครื่องตกแต่งและติดตั้ง,501740,coa_sqp_5017,Regular,account.data_account_type_expense,FALSE +coa_sqp_501770,ค่าเสื่อมราคา-ยานพาหนะ,501770,coa_sqp_5017,Regular,account.data_account_type_expense,FALSE +coa_sqp_501780,ค่าลิสซิ่ง/ค่าเช่า,501780,coa_sqp_5017,Regular,account.data_account_type_expense,FALSE +coa_sqp_5018,ค่าใช้จ่ายเบ็ดเตล็ด-สำนักงาน,5018,coa_sqp_503,View,account.data_account_type_view,FALSE +coa_sqp_501810,หนี้สูญ,501810,coa_sqp_5018,Regular,account.data_account_type_expense,FALSE +coa_sqp_501820,หนี้สงสัยจะสูญ,501820,coa_sqp_5018,Regular,account.data_account_type_expense,FALSE +coa_sqp_501840,ค่าเงินบริจาค,501840,coa_sqp_5018,Regular,account.data_account_type_expense,FALSE +coa_sqp_5021,ค่าใช้จ่ายอื่น ๆ,5021,coa_sqp_503,View,account.data_account_type_view,FALSE +coa_sqp_502110,ค่าสอบบัญชี,502110,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_502111,ค่าทำบัญชี,502111,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_502120,ค่าธรรมเนียมธนาคาร,502120,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_502130,ค่าธรรมเนียมอื่น,502130,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_502140,ค่าบริการ,502140,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_502150,ค่าเบี้ยปรับเงินเพิ่ม,502150,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_502160,ค่าภาษีซื้อขอคืนไม่ได้,502160,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_502161,ภาษีซื้อที่เป็นค่าใช้จ่าย,502161,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_502170,ค่าใช้จ่ายต้องห้ามตามประมวลฯ,502170,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_502190,ค่าใช้จ่ายเบ็ดเตล็ด,502190,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_502191,ส่วนขาด(ส่วนเกิน)จากเศษสตางค์,502191,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_503110,ดอกเบี้ยจ่าย,503110,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_503111,ดอกเบี้ยเบิกเกินบัญชีธนาคาร,503111,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_503112,ดอกเบี้ยเงินกู้ธนาคาร,503112,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_504110,ภาษีเงินได้นิติบุคคลจ่าย,504110,coa_sqp_5021,Regular,account.data_account_type_expense,FALSE +coa_sqp_9000,ต้นทุนการผลิต,9000,coa_sqp_5001,View,account.data_account_type_view,FALSE diff --git a/sqp_config/data/account_data.xml b/sqp_config/data/account_data.xml new file mode 100755 index 0000000..05e9d0c --- /dev/null +++ b/sqp_config/data/account_data.xml @@ -0,0 +1,106 @@ + + + + + + Cash + Immediate Payment + + + + 7 Days + 7 Days + + + + balance + + + + + + + 15 Days + 15 Days + + + + 30 Days + 30 Days + + + + 45 Days + 45 Days + + + + balance + + + + + + + 60 Days + 60 Days + + + + balance + + + + + + + 90 Days + 90 Days + + + + balance + + + + + + + PDC. 15 Days + PDC. 15 Days + + + + balance + + + + + + + PDC. 30 Days + PDC. 30 Days + + + + balance + + + + + + + PDC. 60 Days + PDC. 60 Days + + + + balance + + + + + + diff --git a/sqp_config/data/ir.values.csv b/sqp_config/data/ir.values.csv new file mode 100755 index 0000000..4e358d7 --- /dev/null +++ b/sqp_config/data/ir.values.csv @@ -0,0 +1,5 @@ +id,action_id/id,company_id/id,value_unpickle,model_id/id,model,name,key2,res_id,key,user_id/id,value +ir_values_standard_ahu,,base.main_company,picking,,sale.order,order_policy,product_tag_id=1,,Default,,S'picking' p0 . +ir_values_ahu,,base.main_company,manual,,sale.order,order_policy,product_tag_id=3,,Default,,S'manual' p0 . +ir_values_cleanroom,,base.main_company,manual,,sale.order,order_policy,product_tag_id=4,,Default,,S'manual' p0 . +ir_values_coldroom,,base.main_company,manual,,sale.order,order_policy,product_tag_id=2,,Default,,S'manual' p0 . diff --git a/sqp_config/data/ir_sequence.xml b/sqp_config/data/ir_sequence.xml new file mode 100755 index 0000000..f1a9512 --- /dev/null +++ b/sqp_config/data/ir_sequence.xml @@ -0,0 +1,119 @@ + + + + + + + + Quotation + sale.order + + + + Quotation SQP + sale.order + QD%(y)s/ + 4 + + no_gap + + + + + Quotation (International) + sale.order.inter + + + + Quotation SQP (International) + sale.order.inter + QI%(y)s/ + 4 + + no_gap + + + + + Sales Order + confirmed.sale.order + + + + Sales Order SQP + confirmed.sale.order + SD%(y)s/ + 4 + + no_gap + + + + + Sales Order (International) + confirmed.sale.order.inter + + + + Sales Order SQP (International) + confirmed.sale.order.inter + SI%(y)s/ + 4 + + no_gap + + + + + Purchase Order + purchase.order + SP%(year)s/ + 4 + + no_gap + + + + + Purchase Requisition Order + purchase.order.requisition + PR%(y)s/ + 4 + no_gap + + + + + Account Default Sales Journal + CI%(y)s/ + 4 + no_gap + + + Account Default Sales Credit Note Journal + CN%(y)s/ + 4 + no_gap + + + + + Billing + account.billing + BI%(y)s/ + 4 + no_gap + + + + diff --git a/sqp_config/data/mrp_data.xml b/sqp_config/data/mrp_data.xml new file mode 100755 index 0000000..7f01676 --- /dev/null +++ b/sqp_config/data/mrp_data.xml @@ -0,0 +1,71 @@ + + + + + + 25 + 1.12 + 0.594 + 40 + 13 + 11 + 30 + + + 42 + 1.12 + 0.594 + 40 + 13 + 11 + 35 + + + 50 + 1.12 + 0.594 + 40 + 13 + 11 + 40 + + + 75 + 1.12 + 0.594 + 40 + 13 + 11 + 45 + + + 100 + 1.12 + 0.594 + 40 + 13 + 11 + 50 + + + 125 + 1.12 + 0.594 + 40 + 13 + 11 + 60 + + + 150 + 1.12 + 0.594 + 40 + 13 + 11 + 110 + + + diff --git a/sqp_config/data/product.uom.csv b/sqp_config/data/product.uom.csv new file mode 100755 index 0000000..dea7019 --- /dev/null +++ b/sqp_config/data/product.uom.csv @@ -0,0 +1,14 @@ +id,name,category_id/id,uom_type,rounding,factor_inv,factor +product.product_uom_kgm,kg,product.product_uom_categ_kgm,reference,0.01,1,1 +product.product_uom_sqm,sqm,product.product_uom_categ_area,reference,0.01,1,1 +product.product_uom_ea,EA,product.product_uom_categ_unit,reference,0.01,1,1 +product.product_uom_set,set,product.product_uom_categ_unit,smaller,0.01,1,1 +product.product_uom_lot,lot,product.product_uom_categ_unit,smaller,0.01,1,1 +product.product_uom_meter,m,product.uom_categ_length,reference,0.01,1,1 +product.product_uom_pcs,pcs,product.product_uom_categ_unit,smaller,0.01,1,1 +product.product_uom_nos,nos,product.product_uom_categ_unit,smaller,0.01,1,1 +product.product_uom_rolls,roll,product.product_uom_categ_unit,smaller,0.01,1,1 +product.product_uom_tube,tube,product.product_uom_categ_unit,smaller,0.01,1,1 +product.product_uom_hole,hole,product.product_uom_categ_unit,smaller,0.01,1,1 +product.product_uom_gal,gal,product.product_uom_categ_vol,bigger,0.01,3.7854125343,0.264172 +product.product_uom_tank,tank,product.product_uom_categ_unit,smaller,0.01,1,1 diff --git a/sqp_config/data/product_data.xml b/sqp_config/data/product_data.xml new file mode 100755 index 0000000..7810d39 --- /dev/null +++ b/sqp_config/data/product_data.xml @@ -0,0 +1,93 @@ + + + + + + Product Price + 6 + + + + + Finished Goods + + + + For Sales + + + + Standard AHU + + + + Non-Standard + + + + Part + + + + Aluminium + + + + Installation + + + + Supplies + + + + PVC + + + + Materials + + + + Standard AHU + + + AHU + + + Cold Room + + + Clean Room + + + + + + Area + + + Unit + + + Weight + + + Working Time + + + Length / Distance + + + Volume + + + diff --git a/sqp_config/data/res.company.csv b/sqp_config/data/res.company.csv new file mode 100755 index 0000000..7b9a463 --- /dev/null +++ b/sqp_config/data/res.company.csv @@ -0,0 +1,2 @@ +id,user_ids/id,city,name,company_registry,rml_header1,country_id/id,currency_id/id,custom_footer,email,expects_chart_of_accounts,fax,paper_format,partner_id/id,paypal_account,phone,rml_footer,street,street2,tax_calculation_rounding_method,vat,website,zip +base.main_company,base.user_root,Bangkok,"Square Panel System Co., Ltd.",,,base.th,base.THB,False,sale@squarepanel.com,True,(662) 744-6303,A4,base.main_partner,,(662) 744-6300 ext 2,Phone: (662) 744-6300 ext 2 | Fax: (662) 744-6303 | Email: sale@squarepanel.com | Website: www.squarepanel.com,"21/485 Moo 12, Bangna-Trad Road",Bangna,Round per Line,,www.squarepanel.com,10260 diff --git a/sqp_config/data/res.lang.csv b/sqp_config/data/res.lang.csv new file mode 100755 index 0000000..1853362 --- /dev/null +++ b/sqp_config/data/res.lang.csv @@ -0,0 +1,2 @@ +id,name,code,iso_code,grouping,thousands_sep,decimal_point,time_format,date_format,direction,translatable +base.lang_en,English,en_US,,"[3,3,3,3,3,3,3]",",",".",%H:%M:%S,%d/%m/%Y,Left-to-Right,True diff --git a/sqp_config/data/res.partner.category.csv b/sqp_config/data/res.partner.category.csv new file mode 100755 index 0000000..3fd0ee0 --- /dev/null +++ b/sqp_config/data/res.partner.category.csv @@ -0,0 +1,8 @@ +id,name,parent_id/id +res_partner_category_aluminium,ALUMINIUM, +res_partner_category_installation,INSTALLATION , +res_partner_category_expendables,วัสดุสิ้นเปลือง , +res_partner_category_pvc,PVC , +res_partner_category_rawmat,วัตถุดิบ, +res_partner_category_office,อุปกรณ์/เครื่องใช้สำนักงาน, +res_partner_category_others,อื่น ๆ , diff --git a/sqp_config/logo.png b/sqp_config/logo.png new file mode 100755 index 0000000..a6dbd67 Binary files /dev/null and b/sqp_config/logo.png differ diff --git a/sqp_config/logo_test.png b/sqp_config/logo_test.png new file mode 100755 index 0000000..7ec791b Binary files /dev/null and b/sqp_config/logo_test.png differ diff --git a/sqp_config/master/customer/res.partner.csv b/sqp_config/master/customer/res.partner.csv new file mode 100755 index 0000000..3793b83 --- /dev/null +++ b/sqp_config/master/customer/res.partner.csv @@ -0,0 +1,317 @@ +id,name_notused,name,ref,property_payment_term,credit_limit,is_company,customer,supplier,parent_id,type,use_parent_address,street,street2,zip,city,country_id,phone,mobile,fax,email,category_id/id,website,comment,user_id +res_partner_cust_1,ห้างหุ้นส่วนจำกัด สามที เซ็นเตอร์เซอร์วิส,3T Centerservice Limited Part,,30 Days,100000,TRUE,TRUE,FALSE,,Default,FALSE,61/70 หมู่ 6,แขวง ลำลูกกา เขต ลำลูกกา,12150,ปทุมธานี,Thailand,0-2987-1753,,0-2987-1164,,,,,Chatchai T. +res_partner_cust_2,บริษัท แอดวานซ์ ซีวิล กรุ๊ป จำกัด,"Advance Civil Group Co.,Ltd.",,30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,295 ถ.สามเสน,แขวง วัดสามพระยา เขต พระนคร,10200,กรุงเทพมหานคร,Thailand,"0-2280-5274, 0-2280-2164",,0-2628-5568,,,,,Chatchai T. +res_partner_cust_3,บริษัท แอดวานซ์ ซีวิล กรุ๊ป จำกัด (โรงงาน),"Advance Civil Group Co.,Ltd. (Factory)",,,,FALSE,TRUE,FALSE,บริษัท แอดวานซ์ ซีวิล กรุ๊ป จำกัด,Shipping,FALSE,35/172 หมู่ 1,แขวง ตลาดขวัญ เขต เมือง,11000,นนทบุรี,Thailand,"0-2282-4280, 0-2282-6789",,,,,,,Chatchai T. +res_partner_cust_4,บริษัท แอร์โค จำกัด,"Airco Co.,Ltd.",,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,1126/2 อาคาร วานิช 2 ชั้น 30-31 ถ.เพชรบุรีตัดใหม่,แขวง มักกะสัน เขต ราชเทวี,10400,กรุงเทพมหานคร,Thailand,0-2704-9999,,0-2704-9631,,,,,Chairat S. +res_partner_cust_5,บริษัท แอดวานซ์ ฟาร์มาซูติคอล แมนูแฟคเจอริ่ง จำกัด,"Advance Pharma Ceutical manufacturing Co.,Ltd.",,30 Days,20000000,TRUE,TRUE,FALSE,,Default,FALSE,601/5-8 ซอย สุทธิพร ถ.ประชาสงเคราะห์,แขวง ดินแดง เขต ดินแดง,10400,กรุงเทพมหานคร,Thailand,0-2663-2323,,0-2248-5370,,,,,Chairat S. +res_partner_cust_6,บริษัท เอ - โอเค จำกัด,"A - OK Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,19/72 หมู่ 1 หมู่บ้านรอยัลนครินทร์วิลล่า ถ.ศรีนครินทร์,แขวง หนองบอน เขต ประเวศ,10250,กรุงเทพมหานคร,Thailand,0-2743-3744-5,,0-2743-3746,,,,,Weeranuwat S. +res_partner_cust_7,บริษัท เอ.ดี.ดี เอ็นจิเนียริ่ง จำกัด,"A.D.D Engineering Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,205 ซอย สมเด็จพระเจ้าตากสิน 18,แขวง บุคคโล เขต ธนบุรี,10600,กรุงเทพมหานคร,Thailand,0-2890-4600,,0-2890-4600,,,,,Chairat S. +res_partner_cust_8,บริษัท อารีย์ เอ็นจิเนียร์ ซัพพลายส์ จำกัด,"Aree Engineer Supplise Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,22/323 หมู่ 10 อาคาร เอเวอร์กรีน ทาวเวอร์ ชั้น 1 ซอย บางนา 56 ถ.บางนา-ตราด,แขวง บางนา เขต บางนา,10260,กรุงเทพมหานคร,Thailand,0-2751-5125,,0-2751-5124,,,,,Chatchai T. +res_partner_cust_9,ห้างหุ้นส่วนจำกัด เอ.อาร์.แอล.เอ็นจิเนียริ่ง,ARL Engineering,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,2535-2536 หมู่ 2,แขวง คลองจิก เขต บางปะอิน,13160,พระนครศรีอยุธยา,Thailand,0-3522-0766,,0-3522-0748,,,,, +res_partner_cust_10,บริษัท แอม.เจ คอนสตรัคชั่น แอนด์ แมนเนจเม้นท์ จำกัด,"AMJ Construction & Management Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,52/478 หมู่ 7 ซอย เอกทักษิณ ถ.พหลโยธิน,แขวง หลักหก เขต เมือง,12000,ปทุมธานี,Thailand,0-2533-9977,,0-2997-7364,,,,,Dusit T. +res_partner_cust_11,บริษัท ออริก้า เอ็นจิเนียริ่ง จำกัด,"Auriga Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,4/31 หมู่ 1 ถ.พระราม 2 ซอย 18,แขวง บางมด เขต จอมทอง,10150,กรุงเทพมหานคร,Thailand,0-2877-1193-4,,0-2877-1140,,,,,Dusit T. +res_partner_cust_12,บริษัท แอร์บอร์น เอ็นจิเนียริ่ง จำกัด,"Airbron Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,51/14 ซอย ศิริถาวร ถ.พระราม 9,แขวง สวนหลวง เขต สวนหลวง,10250,กรุงเทพมหานคร,Thailand,0-2719-1114,,0-2719-1114,,,,,Chatchai T. +res_partner_cust_13,บริษัท เอ อี เอส วิศวกรรม จำกัด,"AES Engineering Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1451 ซอย ลาดพร้าว 94 ถ.ลาดพร้าว,แขวง วังทองหลาง เขต วังทองหลาง,10310,กรุงเทพมหานคร,Thailand,0-2530-3974-8,,0-2530-3976,,,,,Chatchai T. +res_partner_cust_14,บริษัท แอกเซส อินดัสเตรียล เทคโนโลยี จำกัด,"Access Industrial Technology Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,274 อาคาร เอ2 ชั้น 1 ซอย ศูนย์วิจัย 4 (โรงเรียนญี่ปุ่น) ถ.พระราม 9,แขวง บางกะปิ เขต ห้วยขวาง,10320,กรุงเทพมหานคร,Thailand,"0-2319-9961-4, 0-2319-9372-3",,0-2319-9960,,,,,Surasak S. +res_partner_cust_15,บริษัท เอ แอล เค เอ็นจิเนียริ่ง จำกัด,"ALK Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,39 หมู่ 12,แขวง ทรายมูล เขต สันกำแพง,50130,เชียงใหม่,Thailand,0-5330-8362,,0-5330-8319,,,,,Surasak S. +res_partner_cust_16,บริษัท ออลเทอร์ แอร์คอนดิชั่นนิ่ง จำกัด,"Alter Airconditioning Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,410 ซอย พระยาสุเรนทร์ 30 ถ.รามอินทรา 109,แขวง บางชัน เขต คลองสามวา,10510,กรุงเทพมหานคร,Thailand,0-2540-6871,,0-2918-6954,,,,,Dusit T. +res_partner_cust_17,บริษัท เอเชีย วี.เอส.ซี. คอร์ปอเรชั่น จำกัด,"Asia V.S.C. Corporation Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,8/2 ซอย สามแยกบายพาส ถ.สุขุมวิท,แขวง เนินพระ เขต เมือง,21150,ระยอง,Thailand,0-3868-8589-92,,0-3868-8591,,,,, +res_partner_cust_18,บริษัท ออโตเมชั่นเซอร์วิส จำกัด,"Automation Service Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,4 ถ.อโศก-ดินแดง,แขวง ดินแดง เขต ดินแดง,10400,กรุงเทพมหานคร,Thailand,"0-2246-0330, 0-2246-0324",,0-3862-4663,,,,,Visak T. +res_partner_cust_19,บริษัท เอ.แอล.ที. อินเตอร์ คอร์ปอเรชั่น จำกัด,"A.L.T. Inter Corporation Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,51 หมู่ 5 ถ.บางกรวย-ไทรน้อย,แขวง บางสีทอง เขต บางกรวย,11130,นนทบุรี,Thailand,0-2886-3356,,0-2886-3084,,,,, +res_partner_cust_20,บริษัท แอมแอร์ จำกัด,"Amair Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,999/1 หมู่ 9 ถ.บางนา-ตราด กม.19,แขวง บางโฉลง เขต บางพลี,10540,สมุทรปราการ,Thailand,0-2769-2222,,0-2769-2254,,,,,Visak T. +res_partner_cust_21,ห้างหุ้นส่วนจำกัด เอซีซีโอ กรุ๊ป,"Acco Group Ltd., Part.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,7/984 หมู่ 6,แขวง สามวาตะวันตก เขต คลองสามวา,10510,กรุงเทพมหานคร,Thailand,0-2914-1358-9,,0-2914-4899,,,,, +res_partner_cust_22,บริษัท อนุสรณ์มหาชัยห้องเย็น จำกัด,"Anusorn Mahachai Coldstorage Co.,Ltd. (AMC) ",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,59/6 หมู่ 8,แขวง ท่าทราย เขต เมือง,74000,สมุทรสาคร,Thailand,0-3442-9005-10,,0-3442-9009-10,,,,,Somboon T. +res_partner_cust_23,บริษัท แอ๊พพลายคูล เซอร์วิส จำกัด,"Apply Cool Service Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,4 ซอย ชุ่มชื่น ถ.อโศก-ดินแดง,แขวง ดินแดง เขต ดินแดง,10400,กรุงเทพมหานคร,Thailand,0-2246-0218,,0-2246-0330,,,,, +res_partner_cust_24,บริษัท แอร์พลัส แอ๊พพลาย จำกัด,"Airplus Apply Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,48/259 หมู่ 1 ถ.รามคำแหง,แขวง สะพานสูง เขต สะพานสูง,10240,กรุงเทพมหานคร,Thailand,"0-2729-6796-9, 0-2729-4523",,0-2729-4532,,,,,Chatchai T. +res_partner_cust_25,บริษัท เอ.อาร์.ซี เอ็นจิเนียริ่ง จำกัด,"ARC Engineering Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,389/114 หมู่ 6 ถ.สุขุมวิท,แขวง นาเกลือ เขต บางละมุง,20150,ชลบุรี,Thailand,0-3871-6867-8,,0-3871-6896,,,,,Chairat S. +res_partner_cust_26,บริษัท ไบเออร์ไทย จำกัด,"Bayer Thai Co.,Ltd.",,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,130/1 ถ.สาทรเหนือ,แขวง สีลม เขต บางรัก,10500,กรุงเทพมหานคร,Thailand,0-2324-620,,0-2709-4325,,,,,Surasak S. +res_partner_cust_27,ห้างหุ้นส่วนจำกัด บีบีเอส บ่อวิน เอ็นจิเนียริ่ง,ห้างหุ้นส่วนจำกัด บีบีเอส บ่อวิน เอ็นจิเนียริ่ง,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,75/37 หมู่ 7,แขวง บ่อวิน เขต ศรีราชา,20230,ชลบุรี,Thailand,0-3805-7726,,0-3805-7727,,,,,Weeranuwat S. +res_partner_cust_28,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด,"B.Grimm Airconditioning Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,54 หมู่ 14 ถ.สุวินทวงศ์,แขวง กระทุ่มราย เขต หนองจอก,10530,กรุงเทพมหานคร,Thailand,0-2988-2391-7,,0-2988-2144,,,,,Visak T. +res_partner_cust_29,บริษัท เบลล์เลอร์ จำกัด,"Beller Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,105/105 หมู่ 10 หมู่บ้านพฤกษาทาวน์ 1 (ราชพฤกษ์) ถ.,แขวง บางกร่าง เขต เมือง,11000,นนทบุรี,Thailand,0-2444-5076,,0-2444-5079,,,,,Weeranuwat S. +res_partner_cust_30,บริษัท บางกอกอินเตอร์คอน จำกัด,"Bangkok Intercon Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,35/14 หมู่ 6 ถ.สุขุมวิท 77,แขวง ประเวศ เขต ประเวศ,10250,กรุงเทพมหานคร,Thailand,"0-2321-2602, 0-2321-9049",,0-2721-2791,,,,, +res_partner_cust_31,บริษัท บิลเดอร์ มาสเตอร์ จำกัด,"Builder Master Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,99/79 หมู่ ถ.พุทธมณฑลสาย 5,แขวง บางกระทึก เขต สามพราน,13210,นครปฐม,Thailand,0-2482-1491-2,,0-2800-1634,,,,,Surasak S. +res_partner_cust_32,บริษัท ไบโอมูฟ จำกัด,"BIOMOVE Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,222/24 หมู่ 12 ซอย มัยลาภ ถ.รามอินทรา 14,แขวง ลาดพร้าว เขต ลาดพร้าว,10230,กรุงเทพมหานคร,Thailand,0-2274-8614,,0-2274-8615,,,,,Weeranuwat S. +res_partner_cust_33,บริษัท บี ไอ เอส เอส จำกัด,"BISS Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,4/250 ซอย หมู่บ้านมิตรภาพ ถ.ศรีนครินทร์,แขวง หนองบอน เขต ประเวศ,10250,กรุงเทพมหานคร,Thailand,0-2322-4833,,0-2322-4833,,,,,Weeranuwat S. +res_partner_cust_34,บริษัท บี.กริม เฮ็ลธ แคร์ จำกัด,"B.Grimm Healthcare Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,88 ถ.กรุงเทพกรีฑา,แขวง หัวหมาก เขต บางกะปิ,10240,กรุงเทพมหานคร,Thailand,0-2710-3000,,"0-2379-4252, 0-2374-4469",,,,,Surasak S. +res_partner_cust_35,ร้านบุญญลิต,ร้านบุญญลิต,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,1806-07 หมู่ 4 ถ.สุขุมวิท,แขวง เทพารักษ์ เขต เมือง,10270,สมุทรปราการ,Thailand,0-2384-1574,,0-2757-7387,,,,,Chairat S. +res_partner_cust_36,บริษัท เบสเทรด พรีซิชั่น จำกัด,"Bestrade Precision Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,701/20 ซอย วัดจันทร์ใน,แขวง บางโคล่ เขต บางคอแหลม,10120,กรุงเทพมหานคร,Thailand,0-2264-1600,,0-2284-1591-2,,,,,Dusit T. +res_partner_cust_37,ห้างหุ้นส่วนจำกัด บางพลี แฟคตอรี่ คอนซัลท์,ห้างหุ้นส่วนจำกัด บางพลี แฟคตอรี่ คอนซัลท์,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,300/27 หมู่ 11,แขวง บางพลีใหญ่ เขต บางพลี,10540,สมุทรปราการ,Thailand,0-2337-3614,,0-2752-1184,,,,, +res_partner_cust_38,บริษัท บัลมอรัล จำกัด,"Balmoral Co., Ltd",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,177/25 หมู่ 8 ซอย ชนบท ถ.รามคำแหง,แขวง มีนบุรี เขต มีนบุรี,10510,กรุงเทพมหานคร,Thailand,0-2919-4077,,,,,,,Chatchai T. +res_partner_cust_39,บริษัท บ้านสีเขียว จำกัด,"Ban See Keaw Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,494 หมู่ 6,แขวง พนานิคม เขต กิ่งอำเภอนิคม,21180,ระยอง,Thailand,0-3889-7434-5,,0-3889-7435,,,,,Visak T. +res_partner_cust_40,ห้างหุ้นส่วนจำกัด บูญรวม เอ็นจิเนียริ่ง,"Boonruam Engineering Ltd.,Part.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,88/1034 หมู่ 6 ถ.พระราม 2,แขวง แสมดำ เขต บางขุนเทียน,10150,กรุงเทพมหานคร,Thailand,0-2416-6534,,0-2416-6550,,,,,Visak T. +res_partner_cust_41,บริษัท บีที ฮีท-ชีล โซลูชั่น (ประเทศไทย) จำกัด,"BT Heat-Chill Solution (Thailand) Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,531/64 ซอย ศูนย์วิจัย 4 ถ.พระราม 9,แขวง บางกะปิ เขต ห้วยขวาง,10310,กรุงเทพมหานคร,Thailand,0-2719-7396,,0-2719-7397,,,,,Chatchai T. +res_partner_cust_42,บริษัท บิทไว้ส์ (ประเทศไทย) จำกัด,"Bitwise (Thailand) Co.,Ltd.",,30 Days,200000,TRUE,TRUE,FALSE,,Default,FALSE,25/12 หมู่ 20 ซอย ศรีทองสุข 2 ถ.เทพารักษ์ กม. 12,แขวง บางพลีใหญ่ เขต บางพลี,10540,สมุทรปราการ,Thailand,0-2312-3995-8,,0-2312-3104,,,,,Dusit T. +res_partner_cust_43,บริษัท เบิร์ค ก่อสร้าง จำกัด,"Burke Construction Co.,Ltd.",,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,19/12 อาคาร เคพีเอ็นทาวเวอร์ ชั้น 11 โซน D1 ถ.พระราม 9,แขวง บางกะปิ เขต ห้วยขวาง,10320,กรุงเทพมหานคร,Thailand,0-2717-1300,,0-2717-1310,,,,,Chatchai T. +res_partner_cust_44,บริษัท เบอร์ลี่ยุคเกอร์ จำกัด (มหาชน),"Berli Jucker Public Co.,Ltd.",,Cash,1000000,TRUE,TRUE,FALSE,,Default,FALSE,99 ซอย รูเบีย ถ.สุขุมวิท 42,แขวง พระโขนง เขต คลองเตย,10110,กรุงเทพมหานคร,Thailand,"0-2367-1199, 0-2367-1177",,0-2381-4541,,,,,Weeranuwat S. +res_partner_cust_45,บริษัท ไบโอเนท-เอเชีย จำกัด,"BioNet-Asia Co.,Ltd.",,Cash,10000000,TRUE,TRUE,FALSE,,Default,FALSE,19/1 ซอย อุดมสุข 37 ถ.สุขุมวิท 103,แขวง บางจาก เขต พระโขนง,10260,กรุงเทพมหานคร,Thailand,0-2361-8110,,0-2361-8105,,,,,Visak T. +res_partner_cust_46,บริษัท บิ๊ค เคมิคอล จำกัด,"BIC Chemical Co.,Ltd.",,30 Days,10000000,TRUE,TRUE,FALSE,,Default,FALSE,333/12-13 หมู่ 9 ถ.บางบัวทอง-สุพรรณบุรี,แขวง ละหาร เขต บางบัวทอง,11110,นนทบุรี,Thailand,"0-2964-4912-4, 0-2964-4973-6",,0-2964-4915,,,,,Chatchai T. +res_partner_cust_47,บริษัท บิวเดอสมาร์ท จำกัด (มหาชน),"Builder Smart Public Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,905/7 ซอย พระราม 3 ที่ 51 ถ.พระราม 3,แขวง บางโพงพาง เขต ยานนาวา,10120,กรุงเทพมหานคร,Thailand,0-2683-4900,,0-2683-4949,,,,,Weeranuwat S. +res_partner_cust_48,บริษัท เบตเตอร์ เบสท์ อิมเมจ จำกัด,"Better Best Image Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,452 ซอย 28 ถ.รัชดาภิเษก,แขวง สามเสนนอก เขต ห้วยขวาง,10320,กรุงเทพมหานคร,Thailand,0-2938-2568-9,,0-2938-1405,,,,, +res_partner_cust_49,บริษัท เบตเตอร์ เบสท์ อิมเมจ จำกัด (Shipping),"Better Best Image Co.,Ltd.",,,,FALSE,TRUE,FALSE,บริษัท เบตเตอร์ เบสท์ อิมเมจ จำกัด,Shipping,FALSE,253 หมู่ 2,แขวง ขามทะเลสอ เขต ขามทะเลสอ,30280,นครราชสีมา,Thailand,0-4433-3001-4,,0-4433-3338,,,,, +res_partner_cust_50,บริษัท เบสท์ไดเรคชั่น ซิสเต็ม จำกัด,"Best Direction System Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,52/1 หมู่ 13,แขวง สะพานสูง เขต สะพานสูง,10250,กรุงเทพมหานคร,Thailand,"0-2736-1700-3, 0-2736-1705-8",,"0-2736-1704, 0-2736-1709",,,,,Chatchai T. +res_partner_cust_51,บริษัท บางกอกมีท โปรเซสซิ่ง จำกัด,"Bangkok Meat Processing Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,3/2 ซอย สุขุมวิท 27 ถ.สุขุมวิท,แขวง คลองเตยเหนือ เขต วัฒนา,10110,กรุงเทพมหานคร,Thailand,0-2661-7560-9,,0-2261-0888-9,,,,, +res_partner_cust_52,บริษัท บางกอก เดค-คอน จำกัด,"Bangkok Dec-Con Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,52/3 หมู่ 8 ถ.บางบัวทอง-สุพรรณบุรี,แขวง ละหาร เขต บางบัวทอง,11110,นนทบุรี,Thailand,0-2925-5777,,0-2925-5778,,,,, +res_partner_cust_53,บริษัท เบลตัน อินดัสเตรียล (ประเทศไทย) จำกัด,"Belton Industrial (Thailand) Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,101/110 หมู่ 20 ถ.พหลโยธิน,แขวง คลองหนึ่ง เขต คลองหลวง,12120,ปทุมธานี,Thailand,0-2529-7400,,0-2529-5076,,,,,Chairat S. +res_partner_cust_54,บริษัท บี.พี.เอส. รีฟริกเจอเรชั่น จำกัด,"B.P.S. Refrigeration Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,161/173 หมู่ 9 หมู่บ้านเก้าแสน ถ.เทพารักษ์,แขวง บางปลา เขต บางพลี,10540,สมุทรปราการ,Thailand,0-2706-6484,,0-2706-4673,,,,, +res_partner_cust_55,บริษัท ซี อี แอนด์ ที อินเตอร์เนชั่นแนล จำกัด,"CE & T International Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,209/1 ถ.พระราม 3,แขวง บางคอแหลม เขต บางคอแหลม,10120,กรุงเทพมหานคร,Thailand,0-2289-4029-30,,0-2289-3979,,,,,Chatchai T. +res_partner_cust_56,บริษัท คลีนแอร์ เทคโนโลยี จำกัด,"Clean Air Technology Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,68/127 หมู่ 7 ถ.รามคำแหง,แขวง มีนบุรี เขต มีนบุรี,10510,กรุงเทพมหานคร,Thailand,0-2722-7307-8,,0-2722-9068,,,,,Chatchai T. +res_partner_cust_57,บริษัท คอนเวอร์แซนต์ เทคโนโลยี จำกัด,"Convernant Technology Co.,Ltd.",,30 Days,200000,TRUE,TRUE,FALSE,,Default,FALSE,9/10 ซอย อ่อนนุช 27 ถ.,แขวง สวนหลวง เขต สวนหลวง,10250,กรุงเทพมหานคร,Thailand,0-2742-2872-3,,0-2742-2677,,,,,Weeranuwat S. +res_partner_cust_58,บริษัท ซายน์เทค จำกัด,"Science Tech Co.,Ltd.",,PDC. 15 Days,,TRUE,TRUE,FALSE,,Default,FALSE,321/43 ถ.นางลิ้นจี่,แขวง ช่องนนทรี เขต ยานนาวา,10120,กรุงเทพมหานคร,Thailand,0-2285-4101,,0-2854-4178,,,,,Dusit T. +res_partner_cust_59,ห้างหุ้นส่วนจำกัด เชียงใหม่วีระวิศวการ,ห้างหุ้นส่วนจำกัด เชียงใหม่วีระวิศวการ,,PDC. 30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,44-44/1-2 หมู่ 5,แขวง ฟ้าฮ่าม เขต เมือง,50000,เชียงใหม่,Thailand,0-5385-3100,,0-5385-2344,,,,,Chatchai T. +res_partner_cust_60,บริษัท ซีที โฟลว์ จำกัด,"C.T. Flow Co.,Ltd.",,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,801/212 หมู่ 8,แขวง คูคต เขต ลำลูกกา,12130,ปทุมธานี,Thailand,0-2531-6801-2,,0-2351-7951,,,,,Chatchai T. +res_partner_cust_61,บริษัท ซีพีเอฟ ผลิตภัณฑ์อาหาร จำกัด,บริษัท ซีพีเอฟ ผลิตภัณฑ์อาหาร จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,111 ซอย บางนา-ตราด 20 ถ.,แขวง บางนา เขต บางนา,10260,กรุงเทพมหานคร,Thailand,0-2746-9731-8,,0-2746-9708,,,,,Weeranuwat S. +res_partner_cust_62,บริษัท คลีนสแตท (ประเทศไทย) จำกัด,"Cleanstat (Thailand) Co.,Ltd.",,30 Days,200000,TRUE,TRUE,FALSE,,Default,FALSE,207 หมู่ 1,แขวง บ้านเลน เขต บางปะอิน,13160,พระนครศรีอยุธยา,Thailand,0-3595-0511,,0-3595-0509,,,,,Weeranuwat S. +res_partner_cust_63,บริษัท คลีนแอร์อินโนเวชั่น จำกัด,"Clean Airinnovation Co.,Ltd.",,30 Days,5000000,TRUE,TRUE,FALSE,,Default,FALSE,551/80 ซอย สรรค์สุข ถ.สาธุประดิษฐ์,แขวง ช่องนนทรี เขต ยานนาวา,10120,กรุงเทพมหานคร,Thailand,0-2682-0438,,0-2294-6068,,,,,Chairat S. +res_partner_cust_64,บริษัท แคนนอน ฟาร์อีสต์ (ไทยแลนด์) จำกัด,"Cannon Far East Thailand Co.,Ltd.",,Cash,50000,TRUE,TRUE,FALSE,,Default,FALSE,48 ซอย รามคำแหง 14 ถ.รามคำแหง,แขวง หัวหมาก เขต บางกะปิ,10240,กรุงเทพมหานคร,Thailand,0-2319-2591-7,,0-2319-2598,,,,,Visak T. +res_partner_cust_65,บริษัท จิรสิน แมชชีนเนอรี่ เซอร์วิส จำกัด,"Chirasin Machinery Service Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,3/253-255 หมู่ 9 ถ.สุวินทวงศ์,แขวง ลำผักชี เขต หนองจอก,10530,กรุงเทพมหานคร,Thailand,0-2543-5151,,0-2543-5663,,,,,Weeranuwat S. +res_partner_cust_66,บริษัท คลีน แอร์ โปรดักท์ จำกัด,"Clean Air Product Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,14/2 ซอย รามคำแหง 21 ถ.รามคำแหง,แขวง วังทองหลาง เขต วังทองหลาง,10310,กรุงเทพมหานคร,Thailand,"0-2319-7035-6, 0-2319-3780, 0-2718-6140, 0-2718-6421",,0-2718-5859,,,,,Chatchai T. +res_partner_cust_67,ห้างหุ้นส่วนจำกัด เชียงใหม่กฤษฎาการช่าง,ห้างหุ้นส่วนจำกัด เชียงใหม่กฤษฎาการช่าง,,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,22 หมู่ 10,แขวง ป่าไผ่ เขต สันทราย,50210,เชียงใหม่,Thailand,0-5349-8896,,0-5349-8896,,,,,Chairat S. +res_partner_cust_68,บริษัท คลูเทค เอ็นจิเนียริ่ง จำกัด,"Cool Tech Engineering Co.,Ltd.",,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,108/26 หมู่ 4 ถ.พุทธมณฑลสาย 2,แขวง บางแคเหนือ เขต บางแค,10160,กรุงเทพมหานคร,Thailand,0-2805-4008-9,,0-2805-4008,,,,,Dusit T. +res_partner_cust_69,บริษัท ซีทีแลบอราตอรี่ จำกัด,"CT Laboraory Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,99/99 ซอย ติวานนท์ 38 ถ.ติวานนท์,แขวง ท่าทราย เขต เมือง,11000,นนทบุรี,Thailand,0-2950-7738-42,,0-2589-4098,,,,,Weeranuwat S. +res_partner_cust_70,ห้างหุ้นส่วนจำกัด ซี.เค.เอส. เทคโนโลยี,"C.K.S. Technology Ltd.,Part.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,525/58 หมู่ 2,แขวง ประชาธิปัตย์ เขต ธัญบุรี,,ปทุมธานี,Thailand,0-2979-0739,,0-2979-0739,,,,, +res_partner_cust_71,บริษัท เชียร์ ซิสเต็ม อินเตอร์เนชั่นแนล (ไทยแลนด์) จำกัด,"Cheer System International (Thailand) Co.,Ltd.",,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,103/1-2 หมู่ 12,แขวง บางปลา เขต บางพลี,10540,สมุทรปราการ,Thailand,0-2174-6182-6,,0-2174-6187,,,,,Chatchai T. +res_partner_cust_72,บริษัท ชัยภัฎ เทรดดิ้ง แอนด์ คอนสตรัคชั่น จำกัด,"Chaiphat Trading And Construction Co.,Ltd.",,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,69/114 ถ.จรัญสนิทวงศ์,แขวง บางขุนศรี เขต บางกอกน้อย,10700,กรุงเทพมหานคร,Thailand,0-2865-8736-7,,0-2865-8738,,,,,Chatchai T. +res_partner_cust_73,บริษัท เจริญไชย โฮม ซิสเต็ม จำกัด,"Charoenchai Home System Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,84/9 หมู่ 3 ถ.ติวานนท์,แขวง บางพูด เขต ปากเกร็ด,11120,นนทบุรี,Thailand,0-2582-2679,,0-2582-2680,,,,,Dusit T. +res_partner_cust_74,บริษัท คอนเนลส์ เอ็นจิเนียริ่ง (ประเทศไทย) จำกัด,"Connols Engineering (Thailand) Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,48/53 หมู่ 7 ถ.บุญคุ้ม,แขวง คูคต เขต ลำลูกกา,12130,ปทุมธานี,Thailand,0-2900-6900-4,,0-2900-6905,,,,,Chairat S. +res_partner_cust_75,บริษัท แคเรียร์ ริฟริจเจอเรชั่น (ประเทศไทย) จำกัด,"Carrier Refrigeration (Thailand) Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,46/63-74 ชั้น 14 อาคาร เนชั่นทาวเวอร์ ถ.บางนา-ตราด กม.4.5,แขวง บางนา เขต บางนา,10260,กรุงเทพมหานคร,Thailand,0-2751-4777,,"0-2751-4778, 0-2751-4780",,,,,Chatchai T. +res_partner_cust_76,บริษัท ซีอาร์ที ดิสเพลย์ เทคโนโลยี จำกัด,"CRT Display Technology Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1 อาคาร เนชั่นทาวเวอร์ ถ.ปูนซิเมนต์ไทย,แขวง บางซื่อ เขต บางซื่อ,10800,กรุงเทพมหานคร,Thailand,0-2586-5581,,0-2587-2135,,,,, +res_partner_cust_77,บริษัท ซีอาร์ที ดิสเพลย์ เทคโนโลยี จำกัด (โรงงาน),"CRT Display Technology Co.,Ltd. (Factory)",,,,FALSE,TRUE,FALSE,บริษัท ซีอาร์ที ดิสเพลย์ เทคโนโลยี จำกัด,Shipping,FALSE,133 หมู่ 3,แขวง หนองละลอก เขต บ้านค่าย,21120,ระยอง,Thailand,0-3889-2245-7,,"0-3889-2244, 0-3889-2366",,,,, +res_partner_cust_78,บริษัท คลูแมน คอร์ปอเรชั่น จำกัด,"Coolman Corporation Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,99 หมู่ 3 ซอย โรงหมี่ ถ.บางบัวทองไทรน้อย,แขวง บางบัวทอง เขต บางบัวทอง,,นนทบุรี,Thailand,0-2922-6250,,0-2922-6240,,,,, +res_partner_cust_79,บริษัท ซี.เอ็น.คูลส์ แอนด์ คอนโทรลเลอร์ จำกัด,"CN Cool & Controller Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,112/1503 หมู่ 11 ถ.บางนา-ตราด,แขวง บางนา เขต บางนา,10260,กรุงเทพมหานคร,Thailand,0-2746-8822,,0-2393-5399,,,,,Chatchai T. +res_partner_cust_80,บริษัท โชคประพันธ์ก่อสร้าง จำกัด,"Choke Pra Phan Construetion Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,47/2 ถ.วิภาวดีรังสิต,แขวง ลาดยาว เขต จตุจักร,10900,กรุงเทพมหานคร,Thailand,0-2941-0970-3,,0-2941-3134,,,,, +res_partner_cust_81,ห้างหุ้นส่วนจำกัด ชลบุรีเฮงกลการ,ห้างหุ้นส่วนจำกัด ชลบุรีเฮงกลการ,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,18/24 หมู่ 6 ซอย พงษ์ทิพย์ ถ.เศรษกิจ,แขวง บ้านสวน เขต เมือง,20000,ชลบุรี,Thailand,"0-3879-9887, 0-3879-8171",,0-3879-8171,,,,, +res_partner_cust_82,บริษัท ไซเบอร์ แม็คคานิค จำกัด,"Cyber Mechanic Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,32/185 หมู่ 8 ซอย นวลจันทร์ 12 ถ.นวลจันทร์,แขวง คลองกุ่ม เขต บึงกุ่ม,10230,กรุงเทพมหานคร,Thailand,"0-2946-0323-4, 0-2946-0350",,0-2946-0606,,,,, +res_partner_cust_83,บริษัท ซี.พี.กรุ๊ป (1994) จำกัด,"CP Group (1994) Co.,Ltd.",,PDC. 60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,5 หมู่ 10,แขวง บางปลา เขต บางพลี,10540,สมุทรปราการ,Thailand,0-2750-7187-89,,0-2750-7190,,,,,Visak T. +res_partner_cust_84,บริษัท คอมพลีท ไลน์ จำกัด,"Complete Line Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,220 ซอย อ่อนนุช 35 ถ.สุขุมวิท 77,แขวง สวนหลวง เขต สวนหลวง,10250,กรุงเทพมหานคร,Thailand,0-2320-1427-8,,0-2721-5290,,,,,Surasak S. +res_partner_cust_85,บริษัท โคลด์ ไบรท์ จำกัด,"Cold Bright Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,47 ถ.หลานหลวง,แขวง วัดโสมนัส เขต ป้อมปราบศรัตรูพ่าย,10100,กรุงเทพมหานคร,Thailand,0-2628-0901,,0-2628-1568,,,,, +res_partner_cust_86,บริษัท คูลเทค จำกัด,"Cooltech Co.,Ltd.",,PDC. 30 Days,100000,TRUE,TRUE,FALSE,,Default,FALSE,38/34 หมู่ 4,แขวง ลำลูกกา เขต ลำลูกกา,12150,ปทุมธานี,Thailand,"0-2569-1849, 0-2987-0103",,0-2987-0075,,,,,Weeranuwat S. +res_partner_cust_87,บริษัท ซี.ไอ. กรุ๊ป จำกัด (มหาชน),"C.I. Group Public Co.,Ltd.",,60 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,1/1 หมู่ 7 ถ.บางคูวัด,แขวง บางคูวัด เขต เมือง,12000,ปทุมธานี,Thailand,"0-2976-5290-9, 0-2598-2331-2",,0-2976-5023,,,,,Dusit T. +res_partner_cust_88,บริษัท ซีเอ็มวีซี เอ็นจิเนียริ่ง จำกัด,"CMVC Engineering Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1/369 หมู่ 11 ซอย หมู่บ้านเพชรมณฑลกรีน ถ.บางบอน 5,แขวง หนองแขม เขต หนองแขม,10160,กรุงเทพมหานคร,Thailand,0-2811-3931,,0-2814-9616,,,,,Chatchai T. +res_partner_cust_89,บริษัท แคพซูลเจล (ประเทศไทย) จำกัด,"Capsugel (Thailand) Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1/82 หมู่ 5 ซอย สวนอุตสาหกรรมโรจนะ ถ.โรจนะ,แขวง คานหาม เขต อุทัย,13210,พระนครศรีอยุธยา,Thailand,0-3533-4000,,0-3533-4072,,,,,Chairat S. +res_partner_cust_90,บริษัท ครีเอทีฟเวย์ เอ็นจิเนียริ่ง จำกัด,"Creative Way Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,129/48 หมู่ 2,แขวง สุรศักดิ์ เขต ศรีราชา,20110,ชลบุรี,Thailand,0-3810-4064,,0-3810-4065,,,,,Chairat S. +res_partner_cust_91,บริษัท ชัยรัตน์ อลูมิเนียม จำกัด,"Chairat Aluminium Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,130/1 ถ.สุขุมวิท,แขวง ศรีราชา เขต ศรีราชา,20110,ชลบุรี,Thailand,0-3831-3231,08-1340-2462,0-3831-3231,,,,,Chairat S. +res_partner_cust_92,บริษัท แคร์เรียร์ ลินเด้ รีฟริเจอเรชั่น (ประเทศไทย) จำกัด,"Carrier Linde Refrigeration (Thailand) Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,72 ถ.รามอินทรา,แขวง มีนบุรี เขต มีนบุรี,10510,กรุงเทพมหานคร,Thailand,"0-2517-2000, 0-2517-2021, 0-217-2404, 0-2517-2407",,"0-2517-2625, 0-2517-2652",,,,,Chatchai T. +res_partner_cust_93,บริษัท ดีไซน์ ออลเทอร์เนทีฟ จำกัด,"Design Alternative Co.,Ltd.",,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,480 หมู่ 3 ซอย ประชาอุทิศ 90 ถ.ประชาอุทิศ,แขวง บ้านคลองสวน เขต พระสมุทรเจดีย์,10290,สมุทรปราการ,Thailand,0-2848-4889,,0-2848-4881-2,,,,,Dusit T. +res_partner_cust_94,บริษัท ไดนามิกส์ ซิสเต็ม แอนด์ โซลูชั่น (เอเชีย) จำกัด,"Dynamics System and Solution (Asia) Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,53/8 หมู่ 12 ถ.รามอินทรา,แขวง คลองกุ่ม เขต บึงกุ่ม,10230,กรุงเทพมหานคร,Thailand,0-2187-1184,,0-2187-1185,,,,,Weeranuwat S. +res_partner_cust_95,บริษัท ดีเน็ต โซลูชั่น จำกัด,"D-Net Solution Co.,Ltd.",,7 Days,300000,TRUE,TRUE,FALSE,,Default,FALSE,177/1 อาคาร บางกอกสหประกันภัย ชั้น 14 ยูนิต 4 ถ.สุรวงศ์,แขวง สุริยวงศ์ เขต บางรัก,10500,กรุงเทพมหานคร,Thailand,0-2634-7667-8,,0-2634-7669,,,,,Weeranuwat S. +res_partner_cust_96,บริษัท ดีแซด การ์ด (ไทยแลนด์) จำกัด,"DZ Card (Thailand) Co.,Ltd.",,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,139 หมู่ 17 นิคมอุตสาหกรรมบางพลี ถ.บางนา-ตราด,แขวง บางเสาธง เขต บางเสาธง,10540,สมุทรปราการ,Thailand,0-2705-1939,,0-2705-1938,,,,,Weeranuwat S. +res_partner_cust_97,บริษัท ดีคูล (ประเทศไทย) จำกัด,บริษัท ดีคูล (ประเทศไทย) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,168/8 หมู่ 1 ถ.ประชาอุทิศ,แขวง ทุ่งครุ เขต ทุ่งครุ,10140,กรุงเทพมหานคร,Thailand,0-2873-1585,,0-2427-6047,,,,,Weeranuwat S. +res_partner_cust_98,บริษัท ไดกิ้นแอร์คอนดิชั่นนิ่ง (ประเทศไทย) จำกัด,"Daikin Airconditioning (Thailand) Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,700/444 หมู่ 7 ถ.บางนา-ตราด กม. 57,แขวง ดอนหัวฬ่อ เขต เมือง,20000,ชลบุรี,Thailand,0-3871-7066-70,,0-3845-4184,,,,,Surasak S. +res_partner_cust_99,บริษัท ดี เอ ดี ซัพพลาย จำกัด,"D A D Supply Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,410 ซอย พระยาสุเรนทร์ 30 ถ.รามอินทรา 109,แขวง บางชัน เขต คลองสามวา,10510,กรุงเทพมหานคร,Thailand,0-2540-6871,,0-2918-6954,,,,,Dusit T. +res_partner_cust_100,บริษัท ผักด๊อกเตอร์ จำกัด,"Doctor Vegatables Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,3 หมู่ 6,แขวง บึงกาสาม เขต หนองเสือ,12170,ปทุมธานี,Thailand,0-2150-6098,,0-2150-6099,,,,,Surasak S. +res_partner_cust_101,บริษัท ดี-คุลเลอร์ (ประเทศไทย) จำกัด,"D-Kuhle (Thailand) Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,69/73 หมู่ 8 ซอย รามอินทรา 30 ถ.รามอินทรา,แขวง ท่าแร้ง เขต บางเขน,10290,กรุงเทพมหานคร,Thailand,0-2509-3449-50,,0-2509-3396,,,,,Dusit T. +res_partner_cust_102,บริษัท เอกธนัช จำกัด,"Eakthanat Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,42/51 ซอย นิมิตรใหม่ 6/1,แขวง มีนบุรี เขต มีนบุรี,10510,กรุงเทพมหานคร,Thailand,0-2942-1697,,0-2942-1697,,,,,Chairat S. +res_partner_cust_103,บริษัท อี๋เผิง จำกัด,"IE Perng Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,369/11 หมู่ 3 ถ.สุขุมวิท,แขวง บางปูใหม่ เขต เมือง,10280,สมุทรปราการ,Thailand,0-2709-7130-2,,0-2709-7133,,,,, +res_partner_cust_104,บริษัท เอ็นจ์อีคอน จำกัด,"Engecon Co.,Ltd.",,45 Days,,TRUE,TRUE,FALSE,,Default,FALSE,125/7 หมู่ 5 ถ.แจ้งวัฒนะ,แขวง ปากเก็ด เขต ปากเกร็ด,11120,นนทบุรี,Thailand,"0-2962-1174, 0-2962-2581-4",,0-2962-1175,,,,,Weeranuwat S. +res_partner_cust_105,บริษัท อี เอส ดี เทคโนโลยี จำกัด,"ESD Technology Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,30/146 หมู่ 17 ถ.บางนา-ตราด,แขวง บางพลีใหญ่ เขต บางพลี,10540,สมุทรปราการ,Thailand,"0-2750-000, 0-2316-3417",,0-2316-3417,,,,, +res_partner_cust_106,บริษัท เอ็นโปร โปรดักส์ (ไทยแลนด์) จำกัด,"Enpro Product (Thailand) Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,101/47/18 หมู่ 20 นิคมอุตสาหกรรมนวนคร ถ.พหลโยธิน กม. 46,แขวง คลองหนึ่ง เขต คลองหลวง,12120,ปทุมธานี,Thailand,"0-2529-1069-71, 0-2529-1380-82",,"0-2529-1067, 0-2529-2177",,,,,Surasak S. +res_partner_cust_107,บริษัท เอ็นโค่ เอ็ม แอนด์ อี จำกัด,"Enco M & E Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,28/3 หมู่ 5,แขวง ลำลูกกา เขต ลำลูกกา,12150,ปทุมธานี,Thailand,0-2720-4360,,0-2720-4360,,,,,Chairat S. +res_partner_cust_108,บริษัท อีโค่ ลิฟวิ่ง จำกัด,"ECO Living Co.,Ltd.",,60 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,26 หมู่บ้านรุ่งกิจวิลล่า 4 ซอย ร่มเกล้า 54,แขวง คลองสามประเวศ เขต ลาดกระบัง,10520,กรุงเทพมหานคร,Thailand,0-2737-5525,,0-2737-5526,,,,,Visak T. +res_partner_cust_109,บริษัท เอลีท เทคโนโลยี จำกัด,"Elite Technology Co.,Ltd.",,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,945/54 หมู่ 12 ซอย อุดมสุข 27 ถ.สุขุมวิท 103,แขวง บางนา เขต บางนา,10260,กรุงเทพมหานคร,Thailand,0-2743-2334-8,,0-2399-3223,,,,, +res_partner_cust_110,บริษัท เอ็นจิเน็ท จำกัด,บริษัท เอ็นจิเน็ท จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,10/773 หมู่ 6 ถ.นวมินทร์,แขวง คลองกุ่ม เขต บึงกุ่ม,10240,กรุงเทพมหานคร,Thailand,,,,,,,, +res_partner_cust_111,บริษัท ฟลูโทรล (ประเทศไทย) จำกัด,"FLUTROL (Thailand) Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,49/44/45 หมู่ 5 ถ.กาญจนาภิเษก,แขวง บางแค เขต บางแค,10160,กรุงเทพมหานคร,Thailand,0-2454-3553,,"0-2801-1680, 0-2801-2621-2",,,,, +res_partner_cust_112,บริษัท เฟรชมีท ฟู้ด โปรดักส์ จำกัด,"Freshmeat Food Product Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,12/2 หมู่ 2,แขวง ขุนแก้ว เขต นครชัยศรี,73120,นครปฐม,Thailand,0-3423-2462-4,,0-3423-4457,,,,,Surasak S. +res_partner_cust_113,ห้างหุ้นส่วนจำกัด แฟค 99 เอ็นจิเนียริ่ง,"FAC 99 Engineering Ltd.,Part.",,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,101/16 หมู่ 15,แขวง คลองหนึ่ง เขต คลองหลวง,12120,ปทุมธานี,Thailand,0-2908-010,,0-2908-0728,,,,,Chatchai T. +res_partner_cust_114,บริษัท ฟูจิกซ์ (ไทยแลนด์) จำกัด,"Fujix (Thailand) Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,296/2 หมู่ 1,แขวง บางบ่อ เขต บางบ่อ,10560,สมุทรปราการ,Thailand,"0-2708-1812-3, 0-2708-3484",,0-2708-5290,,,,,Chairat S. +res_partner_cust_115,บริษัท เฟิร์มกรุ๊ป จำกัด,"Firm Group Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,"213, 215 หมู่ 9 ถ.หลวงแพ่ง",แขวง ทับยาว เขต ลาดกระบัง,10520,กรุงเทพมหานคร,Thailand,"0-2360-7601-4, 0-2738-1530-7",,0-2360-7612,,,,, +res_partner_cust_116,บริษัท แกรนด์ครอส เซอร์วิส แอนด์ ซัพพลาย จำกัด,"Grand Cross Service and Supply Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,148 หมู่ 9 ถ.พุทธมณฑลสาย 4,แขวง กระทุ่มล้ม เขต สามพราน,73220,นครปฐม,Thailand,0-2889-9192,,0-2889-9940,,,,, +res_partner_cust_117,บริษัท เกรท อะโกร จำกัด,"Great Agro Co.,Ltd.",,15 Days,,TRUE,TRUE,FALSE,,Default,FALSE,98/17 ซอย แฟคตอรี่แลนด์ 2 ถ.พุทธมณฑลสาย 5,แขวง ไร่ขิง เขต สามพราน,73210,นครปฐม,Thailand,0-2811-8051-4,,0-2811-9847,,,,, +res_partner_cust_118,บริษัท จี.อี. เอ็นจิเนียริ่ง จำกัด,"G.E. Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,5 หมู่ 8 ซอย บางคูลัด ถ.ตลิ่งชัน-สุพรรณบุรี,แขวง บางม่วง เขต บางใหญ่,11140,นนทบุรี,Thailand,0-2921-4390-3,,0-2921-4394,,,,, +res_partner_cust_119,บริษัท เยเนอรัล ฮอสปิตัล โปรดัคส์ จำกัด (มหาชน),"Gerneral Hospital Products Public Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,8 อาคาร โกลด์มาร์เก็ต ชั้น 5 ถ.เทศบาลสงเคราะห์,แขวง ลาดยาว เขต จตุจักร,10900,กรุงเทพมหานคร,Thailand,0-2158-0100,,0-2158-0110-1,,,,,Chatchai T. +res_partner_cust_120,บริษัท เยเนอรัล ฮอสปิตัล โปรดัคส์ จำกัด (มหาชน) (โรงงาน),"Gerneral Hospital Products Public Co.,Ltd. (Factory)",,,,FALSE,TRUE,FALSE,บริษัท เยเนอรัล ฮอสปิตัล โปรดัคส์ จำกัด (มหาชน),Shipping,FALSE,101/99 ซอย นวนครโครงการ 1 ซ. 7,แขวง คลองหนึ่ง เขต คลองหลวง,12120,ปทุมธานี,Thailand,0-2529-2560-5,,0-2529-2566,,,,,Chatchai T. +res_partner_cust_121,ห้างหุ้นส่วนจำกัด จี.บี.พี. คูลลิ่ง แอนด์ เซอร์วิส 2005,ห้างหุ้นส่วนจำกัด จี.บี.พี. คูลลิ่ง แอนด์ เซอร์วิส 2005,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,419/405 หมู่ 10,แขวง ในคลองบางปลากด เขต พระสมุทรเจดีย์,10290,สมุทรปราการ,Thailand,0-2817-8735,,0-2464-1630,,,,,Chairat S. +res_partner_cust_122,บริษัท จีซีเอส กรุ๊ป คอร์ปอเรชั่น จำกัด,"GCS Group Corporation Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,88/8 หมู่ 1,แขวง คลองด่าน เขต บางบ่อ,10550,สมุทรปราการ,Thailand,"0-2317-9134-5, 0-2317-9208",,0-2317-9209,,,,,Chatchai T. +res_partner_cust_123,บริษัท จีอี เฮลธแคร์ ไบโอไซส์ (ประเทศไทย) จำกัด,"GE Healthcare Biosciences (Thailand) Co.,ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1550 อาคาร ธนภูมิ ชั้น 12 ห้อง จี ถ.เพชรบุรีตัดใหม่,แขวง มักกะสัน เขต ราชเทวี,10400,กรุงเทพมหานคร,Thailand,0-2624-8484,,0-2624-8490,,,,,Dusit T. +res_partner_cust_124,บริษัท โกลบอลเทค จำกัด,"Global Tech Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,35/51 ซอย ลาดพร้าว 124 ถ.ลาดพร้าว,แขวง วังทองหลาง เขต วังทองหลาง,10310,กรุงเทพมหานคร,Thailand,"0-2934-0433-5, 0-2538-6217, 0-2539-7018",,0-2539-0695,,,,,Chairat S. +res_partner_cust_125,บริษัท กรีนส์ดี จำกัด,"Greendii Co.,Ltd.",,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,55/157 หมู่บ้านพฤกษาวิลเลจ คลอง 7 ถ.รังสิต-นครนายก,แขวง ลำผักกูด เขต ธัญบุรี,12110,ปทุมธานี,Thailand,0-2577-0907,,0-2577-3015,,,,,Weeranuwat S. +res_partner_cust_126,บริษัท องค์การเภสัชกรรม-เมอร์ริเออร์ชีววัตถุ จำกัด,"GOVERNMENT PHARMACEUTICAL ORGANIZATION-MERIEUX BIOLOGICAL PRODUCTS CO.,LTD.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,241 หมู่ 7,แขวง หัวสำโรง เขต แปลงยาว,24190,ฉะเชิงเทรา,Thailand,0-3857-9200,,0-3857-5428,,,,,Weeranuwat S. +res_partner_cust_127,บริษัท เกรท คูล เอ็นจิเนียริ่ง จำกัด,"Great Cool Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,41/13 หมู่ 10 ถ.,แขวง บางด้วน เขต ภาษีเจริญ,10160,กรุงเทพมหานคร,Thailand,0-2454-1708,,0-2454-1708,,,,,Dusit T. +res_partner_cust_128,บริษัท โกลด์แมน เทรด จำกัด,"Goldman Trade Co., Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,22 ถ.จรัญสนิทวงศ์,แขวง อรุณอมรินทร์ เขต บางกอกน้อย,10700,กรุงเทพมหานคร,Thailand,,,,,,,,Chairat S. +res_partner_cust_129,บริษัท โกลด์แมน เทรด จำกัด (Invoice),"Goldman Trade Co., Ltd.",,,,FALSE,TRUE,FALSE,บริษัท โกลด์แมน เทรด จำกัด,Invoice,FALSE,689/26 ถ.จรัญสนิทวงศ์,แขวง อรุณอมรินทร์ เขต บางกอกน้อย,10700,กรุงเทพมหานคร,Thailand,0-2882-4063,,,,,,,Chairat S. +res_partner_cust_130,บริษัท ไฮคีย์ แอร์คอนด์ เทคโนโลยี จำกัด,"Hikey Aircond Technology Co.,Ltd.",,30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,39/66 หมู่ 1,แขวง รังสิต เขต ธัญบุรี,12110,ปทุมธานี,Thailand,0-2577-5642,08-7682-3500,0-2577-5642,,,,,Chatchai T. +res_partner_cust_131,บริษัท ฮิตาชิ จำกัด,"Hitachi Co.,Ltd.",,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,952 อาคาร รามาแลนด์ ชั้น 19 ถ.พระราม 4,แขวง สุริยวงศ์ เขต บางรัก,10500,กรุงเทพมหานคร,Thailand,0-2879-5770,,0-2879-5771,,,,,Surasak S. +res_partner_cust_132,บริษัท แฮส 155 จำกัด,"Hass 155 Co.,Ltd.",,30 Days,10000000,TRUE,TRUE,FALSE,,Default,FALSE,99/134 ถ.ปทุมสามโคก,แขวง บางปรอก เขต เมือง,12000,ปทุมธานี,Thailand,0-2581-7099,,0-2581-1134,,,,,Chairat S. +res_partner_cust_133,บริษัท เฮลท์แคร์เทคโนโลยี จำกัด,"Health Care Tecnology Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,13 ซอย 13 เสรี 4 ถ.ราม 9 ตัดใหม่,แขวง สวนหลวง เขต สวนหลวง,10250,กรุงเทพมหานคร,Thailand,0-2261-6539,,0-2258-3862,,,,,Weeranuwat S. +res_partner_cust_134,บริษัท ห้องเย็นท่าข้าม จำกัด,บริษัท ห้องเย็นท่าข้าม จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,100/3 หมู่ 7 ถ.พระราม 2,แขวง แสมดำ เขต บางขุนเทียน,10150,กรุงเทพมหานคร,Thailand,0-2908-8200,,0-2908-1832,,,,,Dusit T. +res_partner_cust_135,บริษัท อินไซท์ เอ็นจิเนียริ่ง จำกัด,บริษัท อินไซท์ เอ็นจิเนียริ่ง จำกัด,,45 Days,,TRUE,TRUE,FALSE,,Default,FALSE,77/16 หมู่ 10,แขวง บางม่วง เขต บางใหญ่,11140,นนทบุรี,Thailand,"0-2443-6667-9, 0-2921-4137-9",,0-2921-4145,,,,,Chairat S. +res_partner_cust_136,บริษัท ไอเอคิวเอ็นจิเนียริ่ง จำกัด,"IAQ Engineering Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,700/63 อาคาร รีเจ้นท์ศรีนครินทร์ ทาวเวอร์ ถ.ศรีนครินทร์,แขวง สวนหลวง เขต สวนหลวง,10250,กรุงเทพมหานคร,Thailand,0-2722-7307,,0-2722-9068,,,,,Chatchai T. +res_partner_cust_137,บริษัท อินเตอร์ เอเชีย ซิสเต็มส์ เอ็นจิเนียริ่ง จำกัด,"Inter Asia Systems Engineering Co.,Ltd.",,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,19/146 หมู่ 7 ถ.บางนา-ตราด กม. 17.5,แขวง บางโฉลง เขต บางพลี,10540,สมุทรปราการ,Thailand,0-2312-7836-7,,0-2312-7929,,,,,Chatchai T. +res_partner_cust_138,บริษัท ไอโซ พาแนล จำกัด,"ISO Panel Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,82 หมู่ 6 ถ.เศรษกิจ 1,แขวง นาดี เขต เมือง,74000,สมุทรสาคร,Thailand,0-3446-8542-3,,0-3446-8541,,,,,Chairat S. +res_partner_cust_139,บริษัท ไอ คอน ดักส์ จำกัด,"Iconduct Co.,Ltd.",,30 Days,200000,TRUE,TRUE,FALSE,,Default,FALSE,23/28 หมู่ 7,แขวง ลาดสวาย เขต ลำลูกกา,12150,ปทุมธานี,Thailand,0-2994-4809,,0-2994-4809,,,,,Chatchai T. +res_partner_cust_140,บริษัท ไอซีเอ็มเอส เอเชีย (ประเทศไทย) จำกัด,"ICMS Asia (Thailand) Co.,Ltd.",,30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,39/13-16 ชั้น 4 ห้อง 4 เอ-ซี ซอย สวนพลู ถ.สาทร,แขวง ทุ่งมหาเมฆ เขต สาทร,10120,กรุงเทพมหานคร,Thailand,0-2675-4101,,0-2675-4108,,,,,Dusit T. +res_partner_cust_141,บริษัท อิตาเลี่ยนไทย เซรามิค เอ็นจิเนียริ่ง จำกัด,"Italian-Thai Ceramic Engineering Co.,Ltd ",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,17/12 หมู่ 1 ถ.เสรีไทย,แขวง คลองกุ่ม เขต บึงกุ่ม,10240,กรุงเทพมหานคร,Thailand,0-2138-0437,,0-2138-0435,,,,,Weeranuwat S. +res_partner_cust_142,บริษัท อินโนเวท คูล จำกัด,"Innovate Cool Co.,Ltd.",,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,204 ซอ่ย หมู่บ้านเลคการ์เด้น ซอย 2 ถ.ขุมทอง-ลำต้อยติ่ง,แขวง ขุมทอง เขต ลาดกระบัง,10520,กรุงเทพมหานคร,Thailand,0-2704-1218,,0-2704-1218,,,,,Chairat S. +res_partner_cust_143,บริษัท อินวินซิเบิ้ล จำกัด,"Invincible Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,347/10 หมู่ 6 ถ.พหลโยธิน,แขวง สายไหม เขต สายไหม,10220,กรุงเทพมหานคร,Thailand,0-2533-8501-3,,0-2531-9855,,,,,Chairat S. +res_partner_cust_144,บริษัท อินเพ็ท จำกัด,"Inpet Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,700/635 หมู่ 3,แขวง บ้านเก่า เขต พานทอง,20160,ชลบุรี,Thailand,0-3844-7006-8,,0-3844-7009,,,,,Chatchai T. +res_partner_cust_145,บริษัท อินซูล คูลลิ่ง เซ็นเตอร์ จำกัด,"Insul Cooling Center Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,130/6 หมู่ 3,แขวง รังสิต เขต ธัญบุรี,12150,ปทุมธานี,Thailand,0-2904-4395-6,"08-1701-2110, 08-9815-9494, 08-1859-5840",0-2904-4397,,,,,Chatchai T. +res_partner_cust_146,บริษัท เจ.อี.พี. เอ็นเตอร์ไพรส์ จำกัด,"J.E.P. Enterprise Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,235/8 ซอย สุขุมวิท 21 (อโศก) ถ.สุขุมวิท,แขวง คลองเตยเหนือ เขต วัฒนา,10110,กรุงเทพมหานคร,Thailand,"0-2580-4479, 0-2261-6531",,"0-2258-3862, 0-2261-6530",,,,,Weeranuwat S. +res_partner_cust_147,บริษัท เจดับบิว พาร์ท แอนด์ อีควิปเม้นท์ จำกัด,"JW Parts and Equipment Co.,Ltd.",,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,733/405 หมู่ 8,แขวง คูคต เขต ลำลูกกา,12130,ปทุมธานี,Thailand,0-2998-9389,,0-2998-9388,,,,,Weeranuwat S. +res_partner_cust_148,ห้างหุ้นส่วนจำกัด ห้างขายยา กรุงเทพฯ ฟามาซี,"Krungdheb Pharmacy Ltd., Part.",,Cash,1000000,TRUE,TRUE,FALSE,,Default,FALSE,783 ถ.เจริญนคร,แขวง บางปะกอก เขต ราษฎ์บูรณะ,10140,กรุงเทพมหานคร,Thailand,"0-2468-1412, 0-2468-1194",,0-2476-1366,,,,,Visak T. +res_partner_cust_149,บริษัท เค.ท็อท (1993) จำกัด,บริษัท เค.ท็อท (1993) จำกัด,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,458/2 หมู่ 2,แขวง ช้างเผือก เขต เมือง,50300,เชียงใหม่,Thailand,0-5321-3925,,0-5321-3925,,,,, +res_partner_cust_150,บริษัท คิง เพาเวอร์ สุวรรณภูมิ จำกัด,"King Power Suvarnabhumi Airport Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,999 หมู่ 1 สนามบินสุวรรณภูมิ อาคารคอนคอร์ส เอ ชั้น 2,แขวง หนองปรือ เขต บางพลี,10540,สมุทรปราการ,Thailand,,,,,,,,Chairat S. +res_partner_cust_151,บริษัท คีพ คูล พาแนล จำกัด,"Keep Cool Panel Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,72 ซอย ลาดพร้าว 126 ถ.ลาดพร้าว,แขวง ลาดพร้าว เขต วังทองหลาง,10310,กรุงเทพมหานคร,Thailand,0-2934-1188,,0-2934-1188,,,,,Surasak S. +res_partner_cust_152,บริษัท เคทูวิน จำกัด,"K2Win Co.,Ltd.",,30 Days,100000,TRUE,TRUE,FALSE,,Default,FALSE,102/3 หมู่ 3 ถ.ปทุมธานี-สามโคก,แขวง กระแชง เขต สามโคก,12160,ปทุมธานี,Thailand,0-2581-7220-1,,0-2581-7221,,,,,Surasak S. +res_partner_cust_153,บริษัท คันเนจึ (ประเทศไทย) จำกัด,"Kannetsu (Thailand) Co.,Ltd.",,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,84/5 หมู่ 9 ถ.บางนา-ตราด กม.39,แขวง บางวัว เขต บางปะกง,24180,ฉะเชิงเทรา,Thailand,0-3898-9155-159,,0-3898-9160,,,,,Chairat S. +res_partner_cust_154,ห้างหุ้นส่วนจำกัด เค.ดับบลิว.เทรดดิ้ง แอนด์ ซัพพลาย,ห้างหุ้นส่วนจำกัด เค.ดับบลิว.เทรดดิ้ง แอนด์ ซัพพลาย,,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,27 ซอย บุญวงศ์,แขวง หาดใหญ่ เขต หาดใหญ่,90110,สงขลา,Thailand,0-7425-3653,,0-7425-2325,,,,,Chatchai T. +res_partner_cust_155,ห้างหุ้นส่วนจำกัด เค อาร์ อาร์ ดีไซด์ กรุ๊ป,"KRR Design Group Ltd.,Part.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,25/16 หมู่ 8,แขวง บางตลาด เขต ปากเกร็ด,11120,นนทบุรี,Thailand,0-2984-4298-9,,0-2984-4404,,,,,Weeranuwat S. +res_partner_cust_156,บริษัท คัมภีร์วิศวกรรม จำกัด,"Kumpeera Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,96/98 ซอย นพเก้า ถ.ประชาชื่น,แขวง บางซื่อ เขต บางซื่อ,108000,กรุงเทพมหานคร,Thailand,0-2926-5650,,0-2195-2807,,,,,Weeranuwat S. +res_partner_cust_157,บริษัท กาญจน์ญาณ์ จำกัด,บริษัท กาญจน์ญาณ์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,77/38 หมู่ 6,แขวง บึงคำพร้อย เขต ลำลูกกา,12150,ปทุมธานี,Thailand,,08-7917-5175,0-2532-7386,,,,,Chatchai T. +res_partner_cust_158,บริษัท โกเบ เอ็นจิเนียริ่ง จำกัด,"Kobe Engineering Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,67/9 หมู่ 5,แขวง บางหญ้าแพรก เขต พระประแดง,10130,สมุทรปราการ,Thailand,0-2754-5503,,,,,,,Chatchai T. +res_partner_cust_159,บริษัท คาวาซูมิ ลาบอราทอรี่ (ประเทศไทย) จำกัด,"Kawasumi Laboratories (Thailand) Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,55/26 หมู่ 13 ถ.พหลโยธิน กม. 46,แขวง คลองหนึ่ง เขต คลองหลวง,12120,ปทุมธานี,Thailand,0-2966-0911,,0-2966-0916-7,,,,, +res_partner_cust_160,บริษัท ไลฟบอคซ์ โมดูล่า จำกัด,"Lifes Box Modular Co.,Ltd.",,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,455/64 หมู่ 1 ถ.รัตนราช,แขวง บางบ่อ เขต บางบ่อ,10560,สมุทรปราการ,Thailand,,,,,,,,Visak T. +res_partner_cust_161,ห้างหุ้นส่วนจำกัด ลำพูน เจเนอร์รัล เอ็นจิเนียริ่ง,"Lumphun General Engineering Ltd.,Part.",,30 Days,2000000,TRUE,TRUE,FALSE,,Default,FALSE,192/36 หมู่ 15,แขวง ป่าสัก เขต เมือง,51000,ลำพูน,Thailand,0-5358-4991-2,,"0-5358-4993, 0-5358-4458",,,,,Chatchai T. +res_partner_cust_162,บริษัท แม็คคาตริค จำกัด,"Mechatric Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1564/19 ถ.ประชาราษฎร์ 1,แขวง บางซื่อ เขต บางซื่อ,10800,กรุงเทพมหานคร,Thailand,"0-2913-2237-8, 0-2587-8462-3",,0-2913-2239,,,,,Chairat S. +res_partner_cust_163,บริษัท เอ็ม แอนด์ ดับเบิลยู แซนเดอร์ (ไทย) จำกัด,"M + W Zander (Thai) Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,252/91 อาคาร เมืองไทยภัทร ทาวเวอร์ ชั้น 16 ถ.รัชดาภิเษก,แขวง ห้วยขวาง เขต ห้วยขวาง,10320,กรุงเทพมหานคร,Thailand,0-2693-3222-4,,0-2693-3225,,,,,Chairat S. +res_partner_cust_164,บริษัท เอ็ม.ที. อินโนเวชั่น จำกัด,"M.T. Innovation Co.,Ltd.",,Cash,1000000,TRUE,TRUE,FALSE,,Default,FALSE,293/310 ซอย รามอินทรา 119 ถ.รามอินทรา,แขวง มีนบุรี เขต มีนบุรี,10510,กรุงเทพมหานคร,Thailand,0-2934-4026,,0-2934-4027,,,,,Dusit T. +res_partner_cust_165,บริษัท โมดูลาร์เอ็นจิเนียร์โปรดักส์ซัพพลาย จำกัด,"Modular Engineering Product Supply Co.,Ltd.",,30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,39/13-16 ชั้น 4 ห้อง D ซอย สวนพลู ถ.สาทร,แขวง ทุ่งมหาเมฆ เขต สาทร,10270,กรุงเทพมหานคร,Thailand,0-2755-0779,,0-2755-0780,,,,,Dusit T. +res_partner_cust_166,ห้างหุ้นส่วนจำกัด เอ็ม.เอส.โคลด์รูม แอนด์ คลีนรูม,"M.S.Coldroom & Cleanroom Ltd.,Part.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,530/5 หมู่ 11 ถ.นวมินทร์,แขวง คันนายาว เขต คันนายาว,10230,กรุงเทพมหานคร,Thailand,,08-7612-1751,0-2944-0324,,,,,Chairat S. +res_partner_cust_167,บริษัท พี เอ็ม เอส โปรดักส์ จำกัด,"PMS Product Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,551/32-34 ซอย สรรค์สุข ถ.สาธุประดิษฐ์,แขวง ช่องนนทรี เขต ยานนาวา,10120,กรุงเทพมหานคร,Thailand,0-2284-2159-62,,0-2294-6068,,,,,Chairat S. +res_partner_cust_168,ห้างหุ้นส่วนจำกัด เอ็ม เอ็ม ซี,"MMC Ltd.,Part.",,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,38/18 หมู่ 9 ถ.สุขประยูร,แขวง นาป่า เขต เมือง,20000,ชลบุรี,Thailand,,,,,,,,Chatchai T. +res_partner_cust_169,ห้างหุ้นส่วนจำกัด เอ็ม เอ็ม ซี (Invoice),"MMC Ltd.,Part. (Invoice)",,,,FALSE,TRUE,FALSE,ห้างหุ้นส่วนจำกัด เอ็ม เอ็ม ซี,Invoice,FALSE,25/142 หมู่ 12 ถ.เพชรเกษม,แขวง หนองค้างพลู เขต หนองแขม,,กรุงเทพมหานคร,Thailand,,,,,,,,Chatchai T. +res_partner_cust_170,บริษัท เอ็ม เอ็ม ที เซอร์วิส จำกัด,"MMT Service Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,11/4 หมู่ 4,แขวง โคกช้าง เขต บางไทร,13190,พระนครศรีอยุธยา,Thailand,0-3571-8459,,"0-3571-8433, 0-3571-8459",,,,,Dusit T. +res_partner_cust_171,บริษัท โมดูล่า กรุ๊ป (ไทยแลนด์) จำกัด,"Modular Group (Thailand) Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,455/64 หมู่ 1,แขวง บางบ่อ เขต บางบ่อ,10560,สมุทรปราการ,Thailand,0-2721-3544,,0-2721-3545,,,,,Surasak S. +res_partner_cust_172,บริษัท โมเดอร์นฟอร์ม เฮลท์แอนด์แคร์ จำกัด,"Modernform Health & Care Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,699 อาคาร โมเดอร์นฟอร์มทาวเวอร์ ถ.ศรีนครินทร์,แขวง สวนหลวง เขต สวนหลวง,10250,กรุงเทพมหานคร,Thailand,0-2722-8033-5,,0-2722-8032,,,,,Weeranuwat S. +res_partner_cust_173,บริษัท มหาจักรไกร เอ็นจิเนียริ่ง จำกัด,"Mahajakgai Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,3/47 หมู่ 9,แขวง ลำลูกกา เขต ลำลูกกา,12150,ปทุมธานี,Thailand,0-2905-2030-1,,0-2905-2031,,,,,Weeranuwat S. +res_partner_cust_174,บริษัท เมเจอร์ แอร์คอนดิชั่นนิ่ง จำกัด,"Major Air Conditioning Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,89 หมู่ 11 ถ.เทพารักษ์,แขวง บางปลา เขต บางพลี,10540,สมุทรปราการ,Thailand,0-2185-7254-55,,0-2185-7256,,,,,Surasak S. +res_partner_cust_175,บริษัท มาเยคาว่า (ประเทศไทย) จำกัด,"Mayekawa (Thailand) Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,2/3 หมู่ 14 อาคาร บางนาทาวเวอร์ อาคารเอ ชั้น 9 ถ.บางนา-ตราด,แขวง บางแก้ว เขต บางพลี,10540,สมุทรปราการ,Thailand,0-2751-9610-7,,0-2751-9565-6,,,,,Chatchai T. +res_partner_cust_176,บริษัท แมคโครฟาร์ จำกัด,"Macrophar Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,89 ซอย พัฒนาการ 20 แยก 4 ถ.พัฒนาการ,แขวง สวนหลวง เขต สวนหลวง,10250,กรุงเทพมหานคร,Thailand,0-2314-6671,,0-2318-6091,,,,,Chatchai T. +res_partner_cust_177,บริษัท มีนา แอสโซซิเอทส์ จำกัด,"Mena Associate Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,779 ถ.สุขุมวิท 103,แขวง บางจาก เขต พระโขนง,10250,กรุงเทพมหานคร,Thailand,0-2729-7900-1,,0-2729-7903,,,,,Weeranuwat S. +res_partner_cust_178,ณัฐวุฒิการช่าง,ณัฐวุฒิการช่าง,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,101/86 หมู่ 7,แขวง บางพลีใหญ่ เขต บางพลี,10540,สมุทรปราการ,Thailand,,,,,,,,Chairat S. +res_partner_cust_179,บริษัท นิวเทค ซีสเต็มส์ ดีเวล็อปเมนท์ จำกัด,"Newtech Systems Development Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,1/740 หมู่ 17,แขวง คูคต เขต ลำลูกกา,12130,ปทุมธานี,Thailand,0-2532-4800-2,,0-2533-8488,,,,,Chairat S. +res_partner_cust_180,บริษัท ณัฐธน จำกัด,"Nutthathon Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,43 อาคาร พิทักษ์คอร์ทชั้นล่าง ซอย อรรถการประสิทธิ์ ถ.สาทรใต้,แขวง ทุ่งมหาเมฆ เขต สาทร,10120,กรุงเทพมหานคร,Thailand,0-2411-1693,,0-2411-1693,,,,,Surasak S. +res_partner_cust_181,บริษัท โนวา เมดิซีน จำกัด,NOVA Medicine Company Limited.,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,20/1 หมู่ 3 ถ.เทศบาล 1,แขวง บ้านฉาง เขต เมือง,,ปทุมธานี,Thailand,,,,,,,,Chairat S. +res_partner_cust_182,บริษัท เอ็น.ซี.เอส เอ็นจิเนียริ่ง จำกัด,"N.C.S Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,18/7 ซอย ลาดพร้าว 113 ถ.ลาดพร้าว,แขวง คลองจั่น เขต บางกะปิ,10310,กรุงเทพมหานคร,Thailand,0-2704-7051-2,,0-2704-7053,,,,, +res_partner_cust_183,ห้างหุ้นส่วนจำกัด เอ็น ซี เอช อีควิปเมนท์ แอนด์ เซอร์วิส,"Equipment And Service Ltd.,Part.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,63 ถ.จันทรคามพิทักษ์,แขวง สนามจันทร์ เขต เมือง,73000,นครปฐม,Thailand,0-2976-6385,,0-2976-7011,,,,,Weeranuwat S. +res_partner_cust_184,บริษัท เอ็น.เอส.แอล. คอนสตรัคชั่น จำกัด,"N.S.L. Construction Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1447 ซอย ลาดพร้าว 94 ถ.ลาดพร้าว,แขวง วังทองหลาง เขต วังทองหลาง,10310,กรุงเทพมหานคร,Thailand,"0-2934-7215-6, 0-2559-2680-2",,"0-2934-7215-6, 0-2559-2680-2",,,,,Dusit T. +res_partner_cust_185,บริษัท พี.เอม.ฟูด จำกัด,"P.M.Food Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1 อาคาร พรีเมียร์คอร์ปอเรทปาร์ค ซอย พรีเมียร์ ถ.ศรีนครินทร์,แขวง หนองบอน เขต ประเวศ,10260,กรุงเทพมหานคร,Thailand,0-2301-1794,,0-2748-2080,,,,,Dusit T. +res_partner_cust_186,บริษัท พี.เอส.ฟู้ดโปรดักส์ จำกัด,"P.S.Food Product Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,"949, 941/1999 หมู่ 7 ซอย วิทยุการบิน",แขวง ท้ายบ้านใหม่ เขต เมือง,10280,สมุทรปราการ,Thailand,"0-2709-1063, 0-2709-1959, 0-2323-2055",,"0-2709-1062, 0-2323-3050",,,,, +res_partner_cust_187,บริษัท ปาร์คเกอร์ เอ็นจิเนียริ่ง (ไทยแลนด์) จำกัด,"Parker Engineering (Thailand) Co.,Ltd.",,45 Days,,TRUE,TRUE,FALSE,,Default,FALSE,62 อาคาร ธนิยะ ชั้น 5 ห้อง 501 และ 510 ถ.สีลม,แขวง สุริยวงศ์ เขต บางรัก,10500,กรุงเทพมหานคร,Thailand,"0-2238-4704, 0-2236-0120, 0-2236-7330, 0-2236-3096",,0-2236-0122,,,,,Chairat S. +res_partner_cust_188,บริษัท พี.เอ็น.เอ็นจิเนียริ่ง แอนด์ เทคโนโลยี จำกัด,"P.N. Engineering & Technology Co.,Ltd.",,15 Days,,TRUE,TRUE,FALSE,,Default,FALSE,105/15-16 หมู่ 7,แขวง คลองหนึ่ง เขต คลองหลวง,12120,ปทุมธานี,Thailand,0-2516-5803-5,,0-2902-8902,,,,,Chatchai T. +res_partner_cust_189,บริษัท โปร เทคนิคเชี่ยน แอนด์ เอ็นจิเนียริ่ง จำกัด,"Protechnician & Engineering Co.,Ltd.",,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,10/196-197 หมู่ 3 ซอย 28 ถ.พระราม 2,แขวง บางมด เขต จอมทอง,10150,กรุงเทพมหานคร,Thailand,0-2877-1167-8,,0-2877-1169,,,,,Weeranuwat S. +res_partner_cust_190,ห้างหุ้นส่วนจำกัด ปุญญิศา เทคโนโลยี,ห้างหุ้นส่วนจำกัด ปุญญิศา เทคโนโลยี,,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,145 หมู่ 6,แขวง คลองมะเดื่อ เขต กระทุ่มแบน,74110,สมุทรสาคร,Thailand,"0-2892-2601, 0-3487-4132",,0-2892-2601,,,,,Chatchai T. +res_partner_cust_191,บริษัท พาตาร์แลบ (2517) จำกัด,"Patar Lab (2517) Co.,Ltd.",,Cash,20000000,TRUE,TRUE,FALSE,,Default,FALSE,51 หมู่ 3 ถ.เลียบคลอง 7 (ธัญบุรี-ลำลูกกา),แขวง บึงคำพร้อย เขต ลำลูกกา,,ปทุมธานี,Thailand,0-2391-2045,,0-2391-2044,,,,,Chairat S. +res_partner_cust_192,บริษัท โปรฟู้ด (ไทย) จำกัด,"Profood (Thai) Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,28/88 หมู่ 1,แขวง โคกขาม เขต เมือง,74000,สมุทรสาคร,Thailand,"0-2663-0430, 0-2259-7620-1",,0-2663-0431,,,,,Chairat S. +res_partner_cust_193,บริษัท แพคโคเมติก จำกัด,"Packomatic Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,296/19 หมู่ 9 ซอย ติวานนท์ 28 ถ.ติวานนท์,แขวง บางกระสอ เขต เมือง,11000,นนทบุรี,Thailand,0-2950-7510-3,,0-2580-3687,,,,,Dusit T. +res_partner_cust_194,บริษัท เภสัชกรรมศรีประสิทธิ์ จำกัด,"Sriprasit Pharma Co., Ltd.",,Cash,20000000,TRUE,TRUE,FALSE,,Default,FALSE,619 ถ.เจริญรัถ,แขวง คลองสาน เขต คลองสาน,10600,กรุงเทพมหานคร,Thailand,0-2437-0343-5,,0-2438-8060,,,,,Dusit T. +res_partner_cust_195,บริษัท พรีม่าแฮม (ไทยแลนด์) จำกัด,"Primaham (Thailand) Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,392 หมู่ 7,แขวง ท่าตูม เขต ศรีมหาโพธิ,25140,ปราจีนบุรี,Thailand,0-3748-1041-6,,0-3748-1048-50,,,,,Chatchai T. +res_partner_cust_196,บริษัท ฟาร์ม่า อินโนว่า จำกัด,"Pharma Innova Co.,Ltd.",,30 Days,2000000,TRUE,TRUE,FALSE,,Default,FALSE,26/19 หมู่ 9,แขวง ท่าแร้ง เขต บางเขน,,กรุงเทพมหานคร,Thailand,0-2532-7181,,0-2532-7019,,,,,Chairat S. +res_partner_cust_197,บริษัท ภูมิวิศว์ เอ็นจิเนียริ่ง จำกัด,"Phoomwis Engineering Co.,Ltd.",,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,230/15 หมู่ 6,แขวง ท่าสะอ้าน เขต บางปะกง,24130,ฉะเชิงเทรา,Thailand,"0-3853-2212, 0-3853-0250",,0-3853-0259,,,,,Surasak S. +res_partner_cust_198,บริษัท แปซิฟิค อลูมินั่ม แอนด์ กลาส จำกัด,บริษัท แปซิฟิค อลูมินั่ม แอนด์ กลาส จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,33 ซอย เลียบฯฝั่งใต้ 5/4,แขวง หนองแขม เขต หนองแขม,,กรุงเทพมหานคร,Thailand,0-2811-33359,,0-2811-3359,,,,,Weeranuwat S. +res_partner_cust_199,บริษัท แปดริ้วเครื่องเย็นเชียงใหม่ (1994) จำกัด,บริษัท แปดริ้วเครื่องเย็นเชียงใหม่ (1994) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,223 หมู่ 3,แขวง ท่าศาลา เขต เมือง,50000,เชียงใหม่,Thailand,"0-5385-0932-3, 0-5326-00227",,0-5324-0840,,,,,Weeranuwat S. +res_partner_cust_200,บริษัท โพลีไทพ์ เอเชีย แปซิฟิก จำกัด,"Polytype Asia Pacific Co.,Ltd.",,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,77 หมู่ 9 ซอย นิคมอุตสาหกรรมเวลโกร์ ถ.บางนา-ตราด,แขวง บางวัว เขต บางปะกง,24180,ฉะเชิงเทรา,Thailand,0-3898-9045-053,,0-3898-9054,,,,,Surasak S. +res_partner_cust_201,บริษัท ปราการ บิวดิ้ง (2008) จำกัด,บริษัท ปราการ บิวดิ้ง (2008) จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,921 ซอย วชิรธรรมสาธิต 57 ถ.สุขุมวิท 101/1,แขวง บางจาก เขต พระโขนง,10260,กรุงเทพมหานคร,Thailand,0-2327-0570,08-9216-2386,0-2327-2570,,,,,Weeranuwat S. +res_partner_cust_202,บริษัท เพียวคีน จำกัด,"Purekeen Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,55/523 หมู่ 5 หมู่บ้านพฤกษลดา,แขวง ลาดสวาย เขต ลำลูกกา,12150,ปทุมธานี,Thailand,0-3526-7820,,0-3526-7811,,,,,Weeranuwat S. +res_partner_cust_203,บริษัท ฟาร์มาแฟค แพลน เทคโนโลยี จำกัด,"Pharmafac Plan Technology Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,199/265 หมู่ 1,แขวง บึงยี่โถ เขต ธัญบุรี,12130,ปทุมธานี,Thailand,,08-6337-0080,,,,,,Dusit T. +res_partner_cust_204,บริษัท พี.เอส.พี. มารีน จำกัด,"P.S.P. Marine Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,119/53 หมู่ 1,แขวง ท่าจีน เขต เมือง,74000,สมุทรสาคร,Thailand,0-3482-1046-7,,0-3482-1048,,,,,Dusit T. +res_partner_cust_205,บริษัท พี.พี.เจ. เอ็นจิเนียริ่ง จำกัด,"P.P.J. Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,52/50 หมู่ 4 ถ.สุขาประชาสวรรค์,แขวง บางพูด เขต ปากเกร็ด,11120,นนทบุรี,Thailand,0-2583-0396-99,,0-2583-0416,,,,,Dusit T. +res_partner_cust_206,บริษัท ผู้จัดระบบเครื่องอำนวยประโยชน์ จำกัด,บริษัท ผู้จัดระบบเครื่องอำนวยประโยชน์ จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,437/5 หมู่ 21 ถ.มิตรภาพ,แขวง ศิลา เขต เมือง,40000,ขอนแก่น,Thailand,0-4324-7466-7,,0-4324-7464,,,,,Surasak S. +res_partner_cust_207,บริษัท ผู้จัดระบบเครื่องอำนวยประโยชน์ จำกัด (Shipping),บริษัท ผู้จัดระบบเครื่องอำนวยประโยชน์ จำกัด (Factory),,,,FALSE,TRUE,FALSE,บริษัท ผู้จัดระบบเครื่องอำนวยประโยชน์ จำกัด,Shipping,FALSE,49/554 หมู่ 4 ถ.เสรีไทย,แขวง คลองกุ่ม เขต บึงกุ่ม,,กรุงเทพมหานคร,Thailand,,,,,,,,Surasak S. +res_partner_cust_208,บริษัท คิว.ที.ที. จำกัด,"Q.T.T. Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,801/127-128 หมู่ 8 ซอย หมู่บ้านวังทองเทรดเซ็นเตอร์ ถ.พหลโยธิน,แขวง คูคต เขต ลำลูกกา,12130,ปทุมธานี,Thailand,0-2900-6900-4,,0-2900-6905,,,,,Chairat S. +res_partner_cust_209,บริษัท คิวด็อท ซีสเต็ม เทคโนโลยี จำกัด,"Q-Dot System Technology Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,50/1200-1201 หมู่ 9 หมู่บ้านเมืองทองธานี ซี 12 แยก 1 ถ.บอนด์สตีท,แขวง บางพูด เขต ปากเกร็ด,11120,นนทบุรี,Thailand,0-2960-0133-5,,0-2960-2200,,,,,Dusit T. +res_partner_cust_210,บริษัท คิว.เอ็ม แอร์ เอ็นจิเนียริ่ง เซอร์วิส จำกัด,"Q.M Air Engineering Service Co.,Ltd.",,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,555/21 ซอย อ่อนนุช 65-67 ถ.อ่อนนุช,แขวง ประเวศ เขต ประเวศ,10250,กรุงเทพมหานคร,Thailand,0-2720-0274-8,,0-2720-0103,,,,,Weeranuwat S. +res_partner_cust_211,บริษัท รังสิต โปรเฟสชั่นแนล แอพไพรแอนซ์ เซอร์วิส จำกัด,"Rangsit Professional Appliance Service Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,"53, 55 รังสิต-นครนายก 27 ซอย 1",แขวง ประชาธิปัตย์ เขต ธัญบุรี,12130,ปทุมธานี,Thailand,0-2996-2571-3,,0-2996-2578,,,,,Surasak S. +res_partner_cust_212,บริษัท รีเนาน์ เทคนิคอล จำกัด,"Renown Technical Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,"3811, 3813 ถ.พระราม 4",แขวง พระโขนง เขต คลองเตย,10110,กรุงเทพมหานคร,Thailand,0-2185-4333,,0-2333-1235,,,,,Dusit T. +res_partner_cust_213,บริษัท อาร์เอ็นอาร์ เอ็นจิเนียริ่ง จำกัด,"R.N.R. Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,46/32 หมู่ 7 ถ.ราษฎร์อุทิศ,แขวง แสนแสบ เขต มีนบุรี,10510,กรุงเทพมหานคร,Thailand,0-2989-0982,08-1347-6119,0-2989-1005,,,,,Weeranuwat S. +res_partner_cust_214,บริษัท อาร์เอ็กซ์ แมนูแฟคเจอริ่ง จำกัด,"R.X. Manufacturing Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,76 หมู่ 10,แขวง นราภิรมย์ เขต บางเลน,73130,นครปฐม,Thailand,0-3429-8117-120,,0-3429-8117-120,,,,,Chairat S. +res_partner_cust_215,บริษัท ริว่าโคลด์ (นอร์ธเธิร์น) จำกัด,"Rivacold (Northern) Co.,Ltd.",,30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,332/27 หมู่ 2,แขวง หนองจ๊อม เขต สันทราย,50210,เชียงใหม่,Thailand,0-5326-6240-1,,0-5326-6177,,,,,Weeranuwat S. +res_partner_cust_216,บริษัท รวมนครก่อสร้าง (ประเทศไทย) จำกัด,"R.N.C (Thailand) Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,21/139 ซอย ลาดพร้าว 15,แขวง จอมพล เขต จตุจักร,10900,กรุงเทพมหานคร,Thailand,0-2938-6868,,0-2938-7562,,,,,Chatchai T. +res_partner_cust_217,บริษัท ซาโต้ โคเกียว กรุงเทพ จำกัด,"SATO KOGYO BANGKOK CO.,LTD.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,21/99 ไทยวาทาวเวอร์ 2 ชั้น 14 ถ.สาทรใต้,แขวง ทุ่งมหาเมฆ เขต สาทร,10120,กรุงเทพมหานคร,Thailand,0-2679-1405-10,,0-2679-1411,,,,,Dusit T. +res_partner_cust_218,บริษัท สปริงคูล จำกัด,"Spring Cool Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,265/395 ซอย ทวีวัฒนา ถ.สาธุประดิษฐ์,แขวง ช่องนนทรี เขต ยานนาวา,10120,กรุงเทพมหานคร,Thailand,"0-2212-8360-1, 0-2674-0563-6",,0-2212-7126,,,,,Dusit T. +res_partner_cust_219,บริษัท โซเลยู (ไทยแลนด์) จำกัด,"Soleil (Thailand) Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,6/1 หมู่ 7,แขวง บางพระ เขต ศรีราชา,20210,ชลบุรี,Thailand,0-3829-8362-4,,0-3829-8361,,,,, +res_partner_cust_220,บริษัท เอส เอ็ม ไอ รีฟริกเจอเรชั่น จำกัด,"SMI Refrigeration Co.,Ltd.",,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,20/6 หมู่ 8 ซอย พหลโยธิน 30 ถ.พหลโยธิน,แขวง จันทรเกษม เขต จตุจักร,10900,กรุงเทพมหานคร,Thailand,0-2941-9500-1,,0-2941-5207,,,,,Chatchai T. +res_partner_cust_221,บริษัท สยาม ซันซุย จำกัด,"Siam Sunsui Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,36 หมู่ 4,แขวง บ่อวิน เขต ศรีราชา,20230,ชลบุรี,Thailand,0-2398-8564,,0-2398-8564,,,,,Dusit T. +res_partner_cust_222,บริษัท สองสมาน จำกัด,"Songsaman Co.,Ltd.",,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,2102/46 ถ.รามคำแหง,แขวง หัวหมาก เขต บางกะปิ,,กรุงเทพมหานคร,Thailand,0-2374-9258,,0-2374-9258,,,,,Dusit T. +res_partner_cust_223,บริษัท แสงชัย รีฟริเจอเรชั่น จำกัด,"Sang Chai Refrigeration Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,283 ถ.หลานหลวง,แขวง วัดโสมนัส เขต ป้อมปราบศรัตรูพ่าย,10100,กรุงเทพมหานคร,Thailand,"0-2628-2600, 0-2280-3444",,"0-2628-0484-5, 0-2280-0352",,,,,Visak T. +res_partner_cust_224,บริษัท สยามแพนเทค เอ็นจิเนียริ่ง จำกัด,"Siam Pantech Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,92/3 ซอย อาคารสงเคราะห์,แขวง ทุ่งมหาเมฆ เขต สาทร,10120,กรุงเทพมหานคร,Thailand,0-2676-1490-2,,0-2286-1052,,,,,Somboon T. +res_partner_cust_225,บริษัท ซันโย เอส.เอ็ม.ไอ. (ประเทศไทย) จำกัด,"Sanyo SMI (Thailand) Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,"50, 52 ซอย รามอินทรา 64 ถ.รามอินทรา กม. 10",แขวง คันนายาว เขต คันนายาว,10230,กรุงเทพมหานคร,Thailand,"0-2918-0550, 0-2918-0515",,,,,,,Dusit T. +res_partner_cust_226,บริษัท เอส พลัส ซิสเทมส์ จำกัด,"S Plus System Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,77/6 หมู่ 4,แขวง บางแก้ว เขต บางพลี,10540,สมุทรปราการ,Thailand,0-2753-7563-65,,0-2753-7566,,,,,Visak T. +res_partner_cust_227,บริษัท ซินโกะ แอร์ คอนดิชันนิ่ง (ประเทศไทย) จำกัด,"Sinko Air Conditioning (Thailand) Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,134/1 หมู่ 1 นิคมอุตสาหกรรมไฮเทค,แขวง บ้านโพ เขต บางปะอิน,13160,พระนครศรีอยุธยา,Thailand,0-3531-4009-12,,0-3531-4013,,,,,Surasak S. +res_partner_cust_228,บริษัท เซฟ-ที-เซลล์ แอนด์ เซอร์วิส จำกัด,Safe-T- Sales And Service Co Ltd,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,36/14 ถ.งามวงศ์วาน,แขวง ลาดยาว เขต จตุจักร,10900,กรุงเทพมหานคร,Thailand,"0-2589-1268-9, 0-2589-1320-1",,0-2589-2542,,,,,Dusit T. +res_partner_cust_229,บริษัท ศิวกร ซี แอนด์ อี จำกัด,"Sivakorn C & E Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,54 หมู่ 3 ถ.รังสิต-นครนายก,แขวง บึงยี่โถ เขต ธัญบุรี,12130,ปทุมธานี,Thailand,0-2577-1398,,0-2577-2503,,,,,Surasak S. +res_partner_cust_230,บริษัท ศิวะพรอินเตอร์เทคโนโลยี จำกัด,"Sivaporn Intertechnology Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,102 ซอย รามอินทรา 64,แขวง คันนายาว เขต คันนายาว,10230,กรุงเทพมหานคร,Thailand,0-2918-1971-4,,0-2918-1975,,,,,Dusit T. +res_partner_cust_231,บริษัท สตาร์วอลล์ จำกัด,"Star Wall Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,98/32 หมู่ 6 ซอย เอกชัย 64 ถ.เอกชัย,แขวง บางบอน เขต บางบอน,10150,กรุงเทพมหานคร,Thailand,0-2415-9306,,0-2415-8707,,,,,Weeranuwat S. +res_partner_cust_232,บริษัท สกิล ดิเวลลอปเมนท์ จำกัด,"Skill Development Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,109 หมู่ 7 ถ.กิ่งแก้ว-บางพลี,แขวง บางพลีใหญ่ เขต บางพลี,10540,สมุทรปราการ,Thailand,"0-2751-1256, 0-2751-1257",,0-2751-1258,,,,,Chatchai T. +res_partner_cust_233,บริษัท ชิบุซัน (ไทยแลนด์) จำกัด,"Shibusan (Thailand) Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,108 หมู่ 2,แขวง ท้ายเกาะ เขต สามโคก,10216,ปทุมธานี,Thailand,"0-2978-8708, 0-2978-8503",,0-2978-8505,,,,,Dusit T. +res_partner_cust_234,บริษัท สยามเภสัช จำกัด,"Siam Bheasach Co.,Ltd.",,90 Days,,TRUE,TRUE,FALSE,,Default,FALSE,123 ซอย โชคชัยร่วมมิตร ถ.วิภาวดีรังสิต,แขวง จอมพล เขต จตุจักร,10900,กรุงเทพมหานคร,Thailand,0-2690-0360-8,,"0-2275-2223, 0-2276-2459",,,,,Chairat S. +res_partner_cust_235,บริษัท สยามเอเซีย อลูเทค จำกัด,"Siam Asia Alutech Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,68/9 หมู่ 6 ถ.สุขาภิบาล 5,แขวง ท่าแร้ง เขต บางเขน,10220,กรุงเทพมหานคร,Thailand,0-2948-7624-9,,0-2949-8881-2,,,,,Chatchai T. +res_partner_cust_236,บริษัท สยาม อินคูเบเตอร์ ซีสเต็ม จำกัด,"Siam Incubators System Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,4 ซอย รามคำแหง 164 แยก 4,แขวง มีนบุรี เขต มีนบุรี,10810,กรุงเทพมหานคร,Thailand,0-2917-6057-59,,0-2917-6060,,,,,Chairat S. +res_partner_cust_237,บริษัท เอส.ดี.เอ็นจิเนียริ่ง แอนด์ คอนสตรัคชั่น จำกัด,"S.D.Engineering & Construction Co.,Ltd.",,7 Days,300000,TRUE,TRUE,FALSE,,Default,FALSE,155/1 ซอย ลาดพร้าว 130 ถ.ลาดพร้าว,แขวง คลองจั่น เขต บางกะปิ,10240,กรุงเทพมหานคร,Thailand,0-2731-1713,,0-2731-1395,,,,,Weeranuwat S. +res_partner_cust_238,บริษัท เซนต์โกเบน ซีคิวริท (ประเทศไทย) จำกัด,"Saint-Gobain Sekurit (Thailand) Co.,Ltd.",,30 Days,300000,TRUE,TRUE,FALSE,,Default,FALSE,64/8 หมู่ 4,แขวง ปลวกแดง เขต ปลวกแดง,21140,ระยอง,Thailand,0-3866-7800-7,,0-3866-7865,,,,,Weeranuwat S. +res_partner_cust_239,บริษัท สุพัตร์ เอ็นจิเนียริ่ง จำกัด,"Supat Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,7/2 หมู่ 4 ซอย สำเร็จพัฒนา 8,แขวง ปลายบาง เขต บางกรวย,11130,นนทบุรี,Thailand,0-2903-9399,,0-2903-9035,,,,,Chairat S. +res_partner_cust_240,บริษัท สยามไบโอไซเอนซ์ จำกัด,"SIAMBIOSCIENCE CO.,LTD.",,7 Days,100000000,TRUE,TRUE,FALSE,,Default,FALSE,44 อาคาร ศรีจุลทรัพย์ ชั้น 18 ยูนิต เอ ถ.พระราม 1,แขวง รองเมือง เขต ปทุมวัน,10330,กรุงเทพมหานคร,Thailand,0-2613-9939,,0-2613-9979,,,,,Dusit T. +res_partner_cust_241,บริษัท สยาม อินเตอร์ คูล จำกัด,"Siam Intercool Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,1178/267 ซอย พหลโยธิน 32 ถ.,แขวง จันทรเกษม เขต จตุจักร,10900,กรุงเทพมหานคร,Thailand,0-2941-5735,,0-2941-5736,,,,,Weeranuwat S. +res_partner_cust_242,บริษัท เอส.ดับบลิว.เค.เอ็นจิเนียริ่ง แอนด์ ซัพพลาย จำกัด,"S.W.K. Engineering & Supply Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,69/113 หมู่ 15,แขวง คลองหนึ่ง เขต คลองหลวง,12120,ปทุมธานี,Thailand,0-2908-0501,,0-2908-0779,,,,,Weeranuwat S. +res_partner_cust_243,บริษัท เอสไอซี คูลลิ่ง เซอร์วิส จำกัด,บริษัท เอสไอซี คูลลิ่ง เซอร์วิส จำกัด,,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,80/1671 หมู่ 5 ถ.เทพารักษ์,แขวง บางเมืองใหม่ เขต เมือง,10270,สมุทรปราการ,Thailand,0-2941-5735,,0-2941-5736,,,,,Weeranuwat S. +res_partner_cust_244,บริษัท เซจ ดีซายน์ แอนด์ คอนสตรัคชั่น จำกัด,"Sage Design & Construction Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,12 ถ.อยู่เย็น,แขวง ลาดพร้าว เขต ลาดกระบัง,10230,กรุงเทพมหานคร,Thailand,0-2508-2475-7,,0-2942-9951,,,,,Weeranuwat S. +res_partner_cust_245,บริษัท เอส.อินเตอร์ แอนด์ แอสโซซิเอทส์ จำกัด,"S. Inter & Associates Co.,Ltd.",,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,8 ซอย อ่อนนุช 62 ถ.สุขุมวิท 77,แขวง สวนหลวง เขต สวนหลวง,10250,กรุงเทพมหานคร,Thailand,0-2721-1641-4,,0-2721-1649,,,,,Weeranuwat S. +res_partner_cust_246,บริษัท สมูท อี จำกัด,"Smooth - E Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,15/1-15 หมู่ 9 ถ.บรมราชชนนี,แขวง ตลิ่งชัน เขต ตลิ่งชัน,10170,กรุงเทพมหานคร,Thailand,0-2880-8787,,0-2880-7190,,,,,Surasak S. +res_partner_cust_247,บริษัท เอส.เอ็น.เค. วิศวกรรมไฟฟ้า จำกัด,"S.N.K. Electrical Engineering Co.,Ltd.",,Cash,200000,TRUE,TRUE,FALSE,,Default,FALSE,101/466 หมู่ 4 ถ.ร่มเกล้า,แขวง คลองสองต้นนุ่น เขต ลาดกระบัง,10520,กรุงเทพมหานคร,Thailand,"0-2588-4653, 0-2952-6429",,"0-2588-4694, 0-2952-5488",,,,,Weeranuwat S. +res_partner_cust_248,บริษัท โชเอะ คันเกียว (ประเทศไทย) จำกัด,"Shoei Kankyo (Thailand) Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,200 หมู่ 4 ถ.แจ้งวัฒนะ,แขวง ปากเกร็ด เขต ปากเกร็ด,11120,นนทบุรี,Thailand,0-2962-2114-6,,0-2962-2117,,,,,Dusit T. +res_partner_cust_249,บริษัท เอส.พี.บี.เอ็นจิเนียริ่ง จำกัด,"S.P.B. Engineering Co.,Ltd.",,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,156 หมู่ 4,แขวง พะยอม เขต วังน้อย,13170,พระนครศรีอยุธยา,Thailand,0-3574-4527-30,,0-3574-4526,,,,,Dusit T. +res_partner_cust_250,บริษัท สินธุมาสโสภณ จำกัด,บริษัท สินธุมาสโสภณ จำกัด,,PDC. 30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,479/1 หมู่ 9 ซอย ประชาอุทิศ 12 ถ.ประชาอุทิศ,แขวง ราษฎร์บูรณะ เขต ราษฎ์บูรณะ,10140,กรุงเทพมหานคร,Thailand,0-2874-7537-39,,0-2874-7536,,,,,Chatchai T. +res_partner_cust_251,บริษัท เสาหลักก่อสร้าง จำกัด,"SAO-LAK construction Co.,Ltd.",,15 Days,,TRUE,TRUE,FALSE,,Default,FALSE,99/379 หมู่ 8 ซอย รัตนาธิเบศน์ 17 ถ.รัตนาธิเบศร์,แขวง บางกระสอ เขต เมือง,11000,นนทบุรี,Thailand,0-2965-6400-5,,0-2965-6406,,,,,Chairat S. +res_partner_cust_252,สถาบัน เทคโนโลยีนิวเคลียร์แห่งชาติ (องค์การมหาชน),Thailand Institute of Nuclear Technology (Public Organization),,90 Days,,TRUE,TRUE,FALSE,,Default,FALSE,9/9 หมู่ 7,แขวง ทรายมูล เขต องครักษ์,26120,นครนายก,Thailand,0-3739-2924,,0-3739-2923,,,,,Dusit T. +res_partner_cust_253,บริษัท ทรงชัยเอ็นจิเนียริ่ง แอนด์ คอนสตรัคชั่น จำกัด,"Songchai Engineering And Construction Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,12/6 หมู่ 7 ถ.บางนา-ตราด,แขวง บางโฉลง เขต บางพลี,10540,สมุทรปราการ,Thailand,0-2312-7184-87,,0-2312-7188,,,,,Visak T. +res_partner_cust_254,บริษัท ไทย อินเตอร์ฟิล จำกัด,"Thai Interfil Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,80 ถ.สุทธิสารวินิจฉัย,แขวง สามเสนนอก เขต ห้วยขวาง,10320,กรุงเทพมหานคร,Thailand,0-2693-4302-5,,0-2693-0191,,,,,Surasak S. +res_partner_cust_255,บริษัท ที-เร็กซ์ สตีล จำกัด,"T-Rex Steel Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,55/121 หมู่ 12 หมู่บ้านการเคหะสุวินทวงศ์,แขวง แสนแสบ เขต มีนบุรี,10510,กรุงเทพมหานคร,Thailand,0-2989-4893,,0-2989-4348,,,,,Somboon T. +res_partner_cust_256,บริษัท อุตสาหกรรมแว่นตาไทย จำกัด,"Thai Optical Co.,Ltd.",,30 Days,100000,TRUE,TRUE,FALSE,,Default,FALSE,83 หมู่ 2 ถ.งามวงศ์วาน,แขวง บางเขน เขต เมือง,11000,นนทบุรี,Thailand,"0-2588-4653, 0-2952-6429",,"0-2588-4694, 0-2952-5488",,,,,Weeranuwat S. +res_partner_cust_257,ห้างหุ้นส่วนจำกัด ธรรมเกสรการโยธา,ห้างหุ้นส่วนจำกัด ธรรมเกสรการโยธา,,7 Days,400000,TRUE,TRUE,FALSE,,Default,FALSE,1188 ซอย มิตรภาพ 15,แขวง ในเมือง เขต เมือง,30000,นครราชสีมา,Thailand,0-2585-0605,,0-2587-4533,,,,,Weeranuwat S. +res_partner_cust_258,บริษัท ทรีวอลล์ จำกัด,"THREE WALL Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,166/43 หมู่ 4,แขวง บางเพรียง เขต บางบ่อ,,สมุทรปราการ,Thailand,,08-6322-7839,,,,,,Weeranuwat S. +res_partner_cust_259,บริษัท ที เอส อลูมินั่ม แอนด์ กลาส 2009 จำกัด,"T S Aluminium & Glass 2009 Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,323/15 หมู่ 4 ถ.สายไหม,แขวง สายไหม เขต สายไหม,10220,กรุงเทพมหานคร,Thailand,0-2996-3301,,0-2996-3302,,,,,Weeranuwat S. +res_partner_cust_260,บริษัท เทอร์โมคูล ซัพพลาย แอนด์ เซอร์วิส จำกัด,"Thermo Cool Supply and Service Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,"136, 138 ซอย พระราม 2 ซอย 33",แขวง บางมด เขต จอมทอง,10150,กรุงเทพมหานคร,Thailand,"0-2459-3174, 0-2874-0463-4",,0-2874-0844,,,,,Weeranuwat S. +res_partner_cust_261,บริษัท ธันเดอร์ เทคโนโลยี จำกัด,"Thunder Technology Co.,Ltd.",,60 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,199/1 หมู่ 7 ถ.บางนา-ตราด,แขวง บางโฉลง เขต บางพลี,10540,สมุทรปราการ,Thailand,"0-2750-8725-27, 0-2183-9083",,0-2750-8729,,,,,Dusit T. +res_partner_cust_262,บริษัท ไทยนากาฮารา เอ็นจิเนียริ่ง จำกัด,"Thai Nakahara Engineering Co.,Ltd.",,Cash,500000,TRUE,TRUE,FALSE,,Default,FALSE,498 ซอย รังสิต-นครนายก 52,แขวง ประชาธิปัตย์ เขต ธัญบุรี,12130,ปทุมธานี,Thailand,0-2974-2951,08-1456-4706,0-2974-2938,,,,,Weeranuwat S. +res_partner_cust_263,บริษัท ไทยนิชิมัตสุก่อสร้าง จำกัด,"Thai Nishimatsu Construction Co.,Ltd.",,30 Days,10000000,TRUE,TRUE,FALSE,,Default,FALSE,1 อาคาร ชิโน-ไทย ทาวเวอร์ ชั้น 19 ถ.สุขุมวิท 21,แขวง คลองเตยเหนือ เขต วัฒนา,10110,กรุงเทพมหานคร,Thailand,0-2258-9590-7,,0-2258-9599,,,,,Chatchai T. +res_partner_cust_264,บริษัท ไทยสแตนเลย์การไฟฟ้า จำกัด (มหาชน),"Thai Stanley Electric Public Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,10 หมู่ 1 ถ.บางพูน-รังสิต,แขวง บ้านกลาง เขต เมือง,12000,ปทุมธานี,Thailand,0-2581-5462,,0-2581-5397,,,,,Weeranuwat S. +res_partner_cust_265,บริษัท เดอะ บาร์บีคิว พลาซ่า จำกัด,"The Barbecue Plaza Co.,Ltd.",,30 Days,500000,TRUE,TRUE,FALSE,,Default,FALSE,333 หมู่ 6 ถ.ประชาชื่น,แขวง ทุ่งสองห้อง เขต หลักสี่,10210,กรุงเทพมหานคร,Thailand,0-2954-1333,,0-2954-1911,,,,,Weeranuwat S. +res_partner_cust_266,บริษัท ไทยนครพัฒนา จำกัด,"Thai Nakorn Patana Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,94/7 หมู่ 9 ซอย ยิ้มประกอบ ถ.งามวงศ์วาน,แขวง บางเขน เขต เมือง,11000,นนทบุรี,Thailand,0-2555-9999,,0-2589-2729,,,,,Chairat S. +res_partner_cust_267,บริษัท เท็มโก้ ซีสเต็ม แอนด์ คอนสตรัคชั่น จำกัด,"Temco System And Construction Co.,Ltd.",,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,331 ชั้น 2 อาคารเจริญผลคอนโดมิเนียม ถ.บรรทัดทอง,แขวง เพชรบุรี เขต ราชเทวี,10400,กรุงเทพมหานคร,Thailand,"0-2216-7060, 0-2611-1022-23",,0-2216-6836,,,,,Chatchai T. +res_partner_cust_268,บริษัท เทอร์แมท อินเตอร์เนชั่นแนล จำกัด,"Thermat International Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,335/45 อาคาร ไพร์มสเตท ชั้น 6 ซอย ผูกมิตร ถ.ศรีนครินทร์,แขวง หนองบอน เขต ประเวศ,10250,กรุงเทพมหานคร,Thailand,0-2366-0353,,0-2366-0354,,,,, +res_partner_cust_269,บริษัท ไทย-อเมริกัน พาแนล จำกัด,"Thai-American Panel Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,129/153 หมู่ 11 หมู่บ้านทรัพย์หมื่นแสน ซอย นวลจันทร์ 36 ถ.นวลจันทร์,แขวง คลองกุ่ม เขต บึงกุ่ม,10230,กรุงเทพมหานคร,Thailand,0-2949-5057,,0-2949-5058,,,,,Dusit T. +res_partner_cust_270,บริษัท โตชิบา เซมิคอนดัคเตอร์ (ประเทศไทย) จำกัด,"Toshiba Semiconductor (Thailand) Co.,Ltd.",,45 Days,,TRUE,TRUE,FALSE,,Default,FALSE,135 หมู่ 5 สวนอุตสาหกรรมบางกะดี่ ถ.ติวานนท์,แขวง บางกะดี่ เขต เมือง,12000,ปทุมธานี,Thailand,"0-2501-1030, 0-2501-1621",,"0-2501-1642, 0-2501-1643-44",,,,,Dusit T. +res_partner_cust_271,บริษัท ไทคิชา (ประเทศไทย) จำกัด,"Taikisha (Thailand) Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,62 อาคาร ธนิยะ ชั้น 6 ถ.สีลม,แขวง สุริยวงศ์ เขต บางรัก,10500,กรุงเทพมหานคร,Thailand,0-2236-8055-9,,"0-2236-6189, 0-2236-9505",,,,,Dusit T. +res_partner_cust_272,บริษัท ไทยทาเคนาคา สากลก่อสร้าง จำกัด,"Thai Takenaka International Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,191 อาคาร สีลมคอมเพล็กซ์ ชั้น 26 ถ.สีลม,แขวง สุริยวงศ์ เขต บางรัก,10500,กรุงเทพมหานคร,Thailand,0-2266-2800,,"0-2266-2808, 0-2266-2809",,,,,Surasak S. +res_partner_cust_273,บริษัท ไทย-เลเซอร์ เอ็นจิเนียริ่ง จำกัด,"Thai-Laser Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,5 ซอย ลาดพร้าว 80 แยก 22 ถ.ลาดพร้าว,แขวง วังทองหลาง เขต วังทองหลาง,10310,กรุงเทพมหานคร,Thailand,0-2539-5439,,0-2539-5437,,,,,Weeranuwat S. +res_partner_cust_274,บริษัท ไทยเอ็นวาเทค จำกัด,"Thai Envatech Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,195 หมู่ 4,แขวง พะยอม เขต วังน้อย,13170,พระนครศรีอยุธยา,Thailand,0-3574-4501-3,,0-3574-4505,,,,,Dusit T. +res_partner_cust_275,บริษัท ไทยคอนสตรัคชั่น แอนด์ เอ็นจิเนียริ่งซิสเทม จำกัด,"Thai Construction & Engineering System Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,60/49 หมู่ 5,แขวง ดอนหัวฬ่อ เขต เมือง,20000,ชลบุรี,Thailand,,08-9987-7757,0-3844-0534,,,,,Weeranuwat S. +res_partner_cust_276,บริษัท เดอะ คูล จำกัด,"The Cool Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,193/53 อาคาร เลครัชดา ออฟฟิศ คอมเพล็กซ์ ชั้น 14 ถ.รัชดาภิเษก,แขวง คลองเตย เขต คลองเตย,10110,กรุงเทพมหานคร,Thailand,0-2661-8228,,0-2661-8822,,,,,Weeranuwat S. +res_partner_cust_277,บริษัท เทวยุทธ ก่อสร้าง จำกัด,"TY Construction Co.,Ltd.",,PDC. 30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,24/36 อาคาร เมืองทองธานี อาคาร ที 11 ถ.ปอปปูลาร์,แขวง บ้านใหม่ เขต ปากเกร็ด,11120,นนทบุรี,Thailand,0-3571-1222,,0-3571-1221,,,,,Chatchai T. +res_partner_cust_278,บริษัท ทัสค์ อินทีเรีย จำกัด,"Task Interrior Co.,Ltd.",,Cash,1000000,TRUE,TRUE,FALSE,,Default,FALSE,79/6-9 ซอย รามอินทรา 14 ถ.รามอินทรา,แขวง ท่าแร้ง เขต บางเขน,10230,กรุงเทพมหานคร,Thailand,0-2943-5000,,0-2943-8025-6,,,,,Surasak S. +res_partner_cust_279,บริษัท เทลสตาร์ โซลูชั่น (ประเทศไทย) จำกัด,"Telstar Solution (Thailand) Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,43 ซอย พระรามเก้า 62 ถ.พระราม 9,แขวง สวนหลวง เขต สวนหลวง,10250,กรุงเทพมหานคร,Thailand,0-2300-1735,,0-2300-1735,,,,,Surasak S. +res_partner_cust_280,บริษัท ที-คอน สตรัคชั่น แอนด์ คลีนรูม เอ็นจิเนียริ่ง จำกัด,"T-Con Struction & Clean Room Engineering Co.,Ltd.",,30 Days,2000000,TRUE,TRUE,FALSE,,Default,FALSE,130/30 หมู่ 11 หมู่บ้านสินสุข,แขวง คลองกุ่ม เขต บึงกุ่ม,10230,กรุงเทพมหานคร,Thailand,0-2949-5474-5,,0-2949-5475,,,,,Chatchai T. +res_partner_cust_281,บริษัท ที.โอ.แลบ จำกัด,"T.O.Lab Co.,Ltd.",,7 Days,10000000,TRUE,TRUE,FALSE,,Default,FALSE,2/052 หมู่ 1 ถ.แจ้งวัฒนะ,แขวง ทุ่งสองห้อง เขต หลักสี่,10210,กรุงเทพมหานคร,Thailand,0-2573-2139,,0-2573-2140,,,,,Chairat S. +res_partner_cust_282,บริษัท ที.โอ.เคมีคอลล์ (1979) จำกัด,"T.O. Chemicals (1979) Co.,Ltd.",,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,280 ซอย สบายใจ ถ.สุทธิสารวินิจฉัย,แขวง สามเสนนอก เขต ห้วยขวาง,10320,กรุงเทพมหานคร,Thailand,0-2275-6053-9,,0-2277-7350,,,,,Chairat S. +res_partner_cust_283,บริษัท ทีทีเอ็ม เทคโนโลยี่ จำกัด,"TTM Technology Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,110/27 ซอย รามคำแหง 43/1 ถ.รามคำแหง,แขวง พลับพลา เขต วังทองหลาง,10310,กรุงเทพมหานคร,Thailand,0-2374-3742,,0-2374-3743,,,,,Weeranuwat S. +res_partner_cust_284,บริษัท ที เอ็น ดี ฟู้ดส์ อินดัสตรีย์ จำกัด,"T N D Foods Industry Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,229 หมู่ 3,แขวง ทุ่งสุขลา เขต ศรีราชา,20230,ชลบุรี,Thailand,0-3849-0314-7,,0-3849-0592,,,,,Weeranuwat S. +res_partner_cust_285,บริษัท ที เอ็น เอ็ม อินเตอร์เนชั่นแนล จำกัด,"TNM INTERNATIONAL CO., LTD.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,30/59 หมู่ 5,แขวง คอกกระบือ เขต เมือง,74000,สมุทรสาคร,Thailand,"0-3444-1344, 0-3444-1152",,0-3444-1167,,,,,Weeranuwat S. +res_partner_cust_286,บริษัท ตามรภาค เอนจิเนียริ่ง จำกัด,"Tarmallpark Engineering Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,981/7-8 ถ.พระราม 3,แขวง บางโพงพาง เขต ยานนาวา,10120,กรุงเทพมหานคร,Thailand,0-2284-3994-6,,0-2284-3997,,,,,Weeranuwat S. +res_partner_cust_287,บริษัท ที อาร์ เอส คลูลิ่งซีสเต็ม จำกัด,บริษัท ที อาร์ เอส คลูลิ่งซีสเต็ม จำกัด,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,367/67 หมู่ 7,แขวง ดีลัง เขต พัฒนานิคม,15220,ลพบุรี,Thailand,,"08-1785-5935, 08-0795-9255",0-4547-5029,,,,,Weeranuwat S. +res_partner_cust_288,บริษัท ไทย กรีน เทค จำกัด,"Thai Green Tech Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,"62/277, 279 ซอย เสรีไทย 72 ถ.เสรีไทย",แขวง มีนบุรี เขต มีนบุรี,10510,กรุงเทพมหานคร,Thailand,0-2918-9061-2,,0-2918-9063,,,,,Weeranuwat S. +res_partner_cust_289,บริษัท ไทย ริห์ติง โคทติ้ง เทคโนโลยี จำกัด,"Thai Rihting Coating Technology Co.,Ltd.",,7 Days,,TRUE,TRUE,FALSE,,Default,FALSE,289 หมู่ 6 ถ.เมืองใหม่บางพลี,แขวง บางเพรียง เขต บางบ่อ,10560,สมุทรปราการ,Thailand,0-2705-9604-6,,0-2705-9644,,,,,Weeranuwat S. +res_partner_cust_290,บริษัท เทวกิจ จำกัด,"Thewakit Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,282/23 อาคาร การ์เด้นเพลส 1 ชั้น 5 ซอย รุ่งเรือง ถ.สุทธิสาร,แขวง สามเสนนอก เขต ห้วยขวาง,10310,กรุงเทพมหานคร,Thailand,0-2693-4326-7,,0-2693-4336,,,,, +res_partner_cust_291,บริษัท เทอร์มอลแลนด์ จำกัด,"Thermalland Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,43/5 หมู่ 7,แขวง ท่าจีน เขต เมือง,74000,สมุทรสาคร,Thailand,,,0-3449-7014,,,,,Dusit T. +res_partner_cust_292,บริษัท ยูนีซัน จำกัด,"Unison Co.,Ltd.",,30 Days,20000000,TRUE,TRUE,FALSE,,Default,FALSE,39 หมู่ 4,แขวง คลองอุดมชลจร เขต เมือง,24000,ฉะเชิงเทรา,Thailand,0-2329-1020-5,,0-2329-1279,,,,,Dusit T. +res_partner_cust_293,บริษัท ยูนีซัน จำกัด (Invoice),"Unison Co.,Ltd. (Invoice)",,,,FALSE,TRUE,FALSE,บริษัท ยูนีซัน จำกัด,Invoice,FALSE,736-742 ถ.ประชาอุทิศ,แขวง สามเสนนอก เขต ห้วยขวาง,10320,กรุงเทพมหานคร,Thailand,0-2274-3500-19,,,,,,,Dusit T. +res_partner_cust_294,บริษัท ยูโทเปี้ยน จำกัด,"Utopian Co.,Ltd.",,Cash,5000000,TRUE,TRUE,FALSE,,Default,FALSE,602 หมู่ 3 ซอย ท่านผู้หญิง ถ.เทพารักษ์,แขวง เทพารักษ์ เขต เมือง,10270,สมุทรปราการ,Thailand,"0-2394-1703, 0-2394-6505, 0-2394-6869",,0-2758-4334,,,,,Chairat S. +res_partner_cust_295,บริษัท ยูนิค ผลิตภัณฑ์ อุตสาหกรรม จำกัด,"Unique Industrial Products Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,100/58 หมู่ 4,แขวง โสนลอย เขต บางบัวทอง,11110,นนทบุรี,Thailand,0-2924-9523,,0-2924-9523,,,,,Chatchai T. +res_partner_cust_296,บริษัท ยูไนเต็ดอินสทรูเมนท์ จำกัด,"United Instrument Co.,Ltd.",,PDC. 15 Days,,TRUE,TRUE,FALSE,,Default,FALSE,148/4 ซอย สุขุมวิท 22 ถ.สุขุมวิท,แขวง คลองเตย เขต คลองเตย,10110,กรุงเทพมหานคร,Thailand,0-2259-5785,,0-2259-1321,,,,,Chatchai T. +res_partner_cust_297,บริษัท ยูแมค ไซแอนทิฟิค จำกัด,"U-Mac Sing & Tific Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,40 ถ.ดรุณสำราญ,แขวง ในเมือง เขต เมือง,40000,ขอนแก่น,Thailand,0-4332-2995,08-1592-6865,0-4332-2996,,,,,Weeranuwat S. +res_partner_cust_298,บริษัท ยูไนเต็ด สตีลเวอร์ค จำกัด,"United Steel Work Co.,Ltd.",,30 Days,1000000,TRUE,TRUE,FALSE,,Default,FALSE,266/3 ถ.จรัญสนิทวงศ์,แขวง ศิริราช เขต บางกอกน้อย,10700,กรุงเทพมหานคร,Thailand,0-2435-0051-4,,0-2435-1141,,,,,Chatchai T. +res_partner_cust_299,บริษัท ยูไนเต็ด สตีลเวอร์ค จำกัด (Invoice),"United Steel Work Co.,Ltd. (Invoice)",,,,FALSE,TRUE,FALSE,บริษัท ยูไนเต็ด สตีลเวอร์ค จำกัด,Invoice,FALSE,340 หมู่ 4 ซอย สวนหลวง 1 ถ.เศรษกิจ,แขวง ท่าไม้ เขต กระทุ่มแบน,74110,สมุทรสาคร,Thailand,0-3447-2710-1,,,,,,,Chatchai T. +res_partner_cust_300,บริษัท ยูแทคไทย จำกัด,"UTAC Thai Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,40/10 สุขุมวิท 105 ถ.สุขุมวิท,แขวง บางนา เขต บางนา,10800,กรุงเทพมหานคร,Thailand,"0-2749-1680, 0-2393-3126-35",,"0-2398-7157, 0-2749-2872",,,,,Chatchai T. +res_partner_cust_301,บริษัท ยูเอฟเอ็ม ฟู้ดเซ็นเตอร์ จำกัด,"UFM Food Centre Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,"593, 593/29-39 ซอย สุขุมวิท 33/1 ถ.สุขุมวิท",แขวง คลองตันเหนือ เขต วัฒนา,10110,กรุงเทพมหานคร,Thailand,0-2260-5280-30,,0-2259-0620-30,,,,,Surasak S. +res_partner_cust_302,บริษัท วิสโก้ เอ็นจิเนียริ่ จำกัด,"Visco Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,800/378 หมู่ 11 ถ.นวมินทร์,แขวง คันนายาว เขต คันนายาว,10230,กรุงเทพมหานคร,Thailand,0-2947-7389,,0-2944-7929,,,,,Visak T. +res_partner_cust_303,บริษัท วีพีเอส รีครีเอชั่น จำกัด,"VPS Recreation Co.,Ltd.",,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,58 ซอย ตรอกศรีรับสุข ซอย วิภาวดี 62 ถ.,แขวง ตลาดบางเขน เขต หลักสี่,10210,กรุงเทพมหานคร,Thailand,0-2973-5440,,0-2973-4425,,,,,Weeranuwat S. +res_partner_cust_304,บริษัท วี.เมน.ฟิลส์ (ประเทศไทย) จำกัด,"V. mane Fisl Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,284 หมู่ 4 นิคมอุตสาหกรรมลาดกระบัง เขตทั่วไป โครงการ 3 ถ.ฉลองกรุง,แขวง ลำปลาทิว เขต ลาดกระบัง,10520,กรุงเทพมหานคร,Thailand,0-2326-0100,,0-2326-0155,,,,,Somboon T. +res_partner_cust_305,บริษัท วี.ดับบลิว.กรุ๊ป จำกัด,"V.W. Group Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,68/79 หมู่ 6 ซอย บางใหญ่ซิตี้ ถ.กาญจนาภิเษก,แขวง เสาธงหิน เขต บางใหญ่,11140,นนทบุรี,Thailand,0-2903-3190-2,,0-2903-3193,,,,,Chatchai T. +res_partner_cust_306,บริษัท วาลิเทค จำกัด,"Valitech Co.,Ltd.",,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,274 อาคารเอ 2 ชั้น 1 ซอย ศูนย์วิจัย 4 ถ.พระราม 9,แขวง บางกะปิ เขต ห้วยขวาง,10320,กรุงเทพมหานคร,Thailand,0-2319-9769,,0-2319-9770,,,,,Surasak S. +res_partner_cust_307,ห้างหุ้นส่วนจำกัด วีอาร์ เอ็กซ์เพิร์ท,ห้างหุ้นส่วนจำกัด วีอาร์ เอ็กซ์เพิร์ท,,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,100/3 หมู่ 7 ถ.ราษฎร์พัฒนา,แขวง สะพานสูง เขต สะพานสูง,10240,กรุงเทพมหานคร,Thailand,0-2917-3440,,0-2917-3441,,,,,Weeranuwat S. +res_partner_cust_308,บริษัท วี.ที.ซี. คูล จำกัด,"V.T.C Cool Co.,Ltd.",,60 Days,,TRUE,TRUE,FALSE,,Default,FALSE,82/92 หมู่ 6,แขวง ท่าทราย เขต เมือง,74000,สมุทรสาคร,Thailand,0-3481-0688,08-6315-0272,0-3442-1473,,,,,Weeranuwat S. +res_partner_cust_309,บริษัท วีโอวี อินเตอร์เนชั่นแนบ จำกัด,"VOV International Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,51/1004 หมู่ 2 ถ.ลำลูกกา,แขวง คูคต เขต ลำลูกกา,12130,ปทุมธานี,Thailand,0-2995-7470-5,,0-2995-7475,,,,,Dusit T. +res_partner_cust_310,บริษัท เวคเตอร์ไทย เทคโนโลยี จำกัด,"Vector Thai Technology Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,299 ซอย ลาดพร้าว 101 ถ.ลาดพร้าว,แขวง คลองจั่น เขต บางกะปิ,10240,กรุงเทพมหานคร,Thailand,"0-2736-9288, 0-2736-9588",,0-2376-0860,,,,,Surasak S. +res_partner_cust_311,บริษัท วรธนาวงศ์ จำกัด,"Worathanawong Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,77/16 หมู่ 10,แขวง บางม่วง เขต บางใหญ่,11140,นนทบุรี,Thailand,"0-2443-6667-9, 0-2921-4137-9",,0-2921-4145,,,,,Chairat S. +res_partner_cust_312,บริษัท เวสเทิร์น สตาร์ คอนสตรัคชั่น (2000) จำกัด,"Western Star Construction (2000) Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,339/31 หมู่ 1,แขวง ปากแพรก เขต เมือง,71000,กาญจนบุรี,Thailand,0-3424-1187,08-1434-9266,0-3424-1187,,,,,Chatchai T. +res_partner_cust_313,บริษัท วินด์ชิลล์ จำกัด,"Windchill Co.,Ltd.",,30 Days,,TRUE,TRUE,FALSE,,Default,FALSE,159/16 หมู่ 17 ถ.กาญจนาภิเษก,แขวง ศาลาธรรมสพน์ เขต ทวีวัฒนา,10170,กรุงเทพมหานคร,Thailand,0-2885-2995-97,,0-2885-2998,,,,,Chatchai T. +res_partner_cust_314,บริษัท วูวี่ คอร์ปอเรชั่น จำกัด,"Woovi Corporation Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,333 หมู่ 9 ถ.ศรีนครินทร์,แขวง บางนา เขต บางนา,10260,กรุงเทพมหานคร,Thailand,0-2748-7420-1,,0-2748-7420,,,,,Chairat S. +res_partner_cust_315,บริษัท ยงไถ่ คอนสตรัคชั่น จำกัด,"Yongtai Construction Co.,Ltd.",,Cash,,TRUE,TRUE,FALSE,,Default,FALSE,4 ซอย สุขุมวิท 101/1 ถ.สุขุมวิท,แขวง บางจาก เขต พระโขนง,10260,กรุงเทพมหานคร,Thailand,0-2743-9240-3,,0-2743-9240,,,,,Chairat S. +res_partner_cust_316,ห้างหุ้นส่วนจำกัด วาย.โอ.เอส ชัยยศเซอร์วิส,ห้างหุ้นส่วนจำกัด วาย.โอ.เอส ชัยยศเซอร์วิส,,Cash,100000,TRUE,TRUE,FALSE,,Default,FALSE,31/13 หมู่ 4,แขวง บ้านม้า เขต บางไทร,13190,พระนครศรีอยุธยา,Thailand,0-3571-8115,,0-3571-8115,,,,,Surasak S. diff --git a/sqp_config/master/department/hr.department.csv b/sqp_config/master/department/hr.department.csv new file mode 100755 index 0000000..0dd0dda --- /dev/null +++ b/sqp_config/master/department/hr.department.csv @@ -0,0 +1,39 @@ +"id","name" +"hr_department_1","ตัดเหล็ก Line 1" +"hr_department_2","ตัดเหล็ก Line 2" +"hr_department_3","ตัดเหล็ก Line 3" +"hr_department_4","ฉีดโฟม Line 1" +"hr_department_5","ฉีดโฟม Line 2" +"hr_department_6","ฉีดโฟม Line 3" +"hr_department_7","ฉีดโฟม Line 4" +"hr_department_8","ประกอบแผ่น" +"hr_department_9","ประกอบประตู" +"hr_department_10","ประกอบกระจก" +"hr_department_11","ประตูสำเร็จรูป" +"hr_department_12","สินค้าสำเร็จรูป" +"hr_department_13","คลังสินค้า" +"hr_department_14","คลังวัตถุดิบ" +"hr_department_15","ควบคุมคุณภาพ" +"hr_department_16","พ่นสี" +"hr_department_17","ซ่อมบำรุง" +"hr_department_18","บุคคลโรงงาน" +"hr_department_19","ถอดแบบ" +"hr_department_20","บริการ/ติดตั้ง" +"hr_department_21","สำนักงานใหญ่" +"hr_department_22","บริหารสูงสุด" +"hr_department_23","แผนก IT" +"hr_department_24","แผนกขาย" +"hr_department_25","แผนกเขียนแบบ" +"hr_department_26","แผนกจัดซื้อ" +"hr_department_27","แผนกซ่อมบำรุง" +"hr_department_28","แผนกติดตั้ง" +"hr_department_29","แผนกบริหารงานคุณภาพ" +"hr_department_30","แผนกบัญชีและการเงิน" +"hr_department_31","แผนกบุคคล" +"hr_department_32","แผนกวิศวกรรม" +"hr_department_33","ฝ่ายติดตั้ง" +"hr_department_34","ฝ่ายนำเข้าและส่งออก" +"hr_department_35","ฝ่ายบริหารสำนักงานใหญ่" +"hr_department_36","ฝ่ายบัญชีและการเงิน" +"hr_department_37","ฝ่ายผลิต" +"hr_department_38","ฝ่ายวิศวกรรมและ R&D" diff --git a/sqp_config/master/employee/hr.employee.csv b/sqp_config/master/employee/hr.employee.csv new file mode 100755 index 0000000..07a7df1 --- /dev/null +++ b/sqp_config/master/employee/hr.employee.csv @@ -0,0 +1,79 @@ +"id","code","name","notes","department_id" +"hr_employee_1",,"Visak Thunyawan","กรรมการผู้จัดการ","บริหารสูงสุด" +"hr_employee_10",,"Potchamal Apisitmontree","เจ้าหน้าที่ธุรการแผนกขาย","แผนกขาย" +"hr_employee_11",,"Surasak Sompruk","วิศวกรขาย","แผนกขาย" +"hr_employee_12",,"Phaisan Nakwijit","หัวหน้าแผนกติดตั้ง","แผนกติดตั้ง" +"hr_employee_13",,"Suwannee Aiem-On","ผู้จัดการฝ่ายบัญชีและการเงิน","ฝ่ายบัญชีและการเงิน" +"hr_employee_14",,"Dusit Thara","วิศวกรขาย","แผนกขาย" +"hr_employee_15",,"Nirintana Thamasiri","ผู้แทนฝ่ายบริหารงานคุณภาพ","แผนกบริหารงานคุณภาพ" +"hr_employee_16",,"Saranya Kijsarikan","หัวหน้าแผนกจัดซื้อ","แผนกจัดซื้อ" +"hr_employee_17",,"Chaiwat Poldechsathaporn","หัวหน้าส่วนเขียนแบบ","แผนกเขียนแบบ" +"hr_employee_18",,"Vichai Panyong","หัวหน้าแผนกเขียนแบบ","แผนกเขียนแบบ" +"hr_employee_19",,"Thanurawet Srisornthong","วิศวกรติดตั้ง","แผนกติดตั้ง" +"hr_employee_2",,"Somboon Thunyavan","กรรมการบริหารฝ่ายสำนักงานใหญ่","ฝ่ายบริหารสำนักงานใหญ่" +"hr_employee_20",,"Rawee Suksaeng","วิศวกรติดตั้ง","แผนกติดตั้ง" +"hr_employee_21",,"Pimpaphutsorn Khuamsawang","หัวหน้าแผนกบุคคล","แผนกบุคคล" +"hr_employee_22",,"Surasak Boonkaew","หัวหน้าส่วนบริการ","แผนกติดตั้ง" +"hr_employee_23",,"Weeranuwat Sukhontananon","วิศวกรขาย","แผนกขาย" +"hr_employee_24",,"Prawit Phensingkhon","เจ้าหน้าที่เขียนแบบ","แผนกเขียนแบบ" +"hr_employee_25",,"Wannee Chaisue","หัวหน้าแผนกบัญชีและการเงิน","แผนกบัญชีและการเงิน" +"hr_employee_26",,"Jongluk Pookphan","โฟร์แมนประจำไซด์งาน","แผนกติดตั้ง" +"hr_employee_27",,"Satit Intrawang","เจ้าหน้าที่เขียนแบบ","แผนกเขียนแบบ" +"hr_employee_28",,"Yuwaluk Wongkaew","เจ้าหน้าที่จัดซื้อ","แผนกจัดซื้อ" +"hr_employee_29",,"Nattapong Rakkeatpakpum","เจ้าหน้าที่เทคโนโลยีสารสนเทศ","แผนก IT" +"hr_employee_3",,"Niphon Chookaew","ผู้จัดการฝ่ายวิศวกรรมและ R&D","ฝ่ายวิศวกรรมและ R&D" +"hr_employee_30",,"Pattama Mingsuk","เจ้าหน้าที่ถอดแบบ","แผนกขาย" +"hr_employee_31",,"Parpon Kailob","เจ้าหน้าที่เขียนแบบ","แผนกเขียนแบบ" +"hr_employee_32",,"Theeravat Phuangkaeo","พนักงานหน่วยบริการ","แผนกติดตั้ง" +"hr_employee_33",,"Kamonrat Reabsomret","เจ้าหน้าที่ประสานงานแผนกขาย","แผนกขาย" +"hr_employee_34",,"Utorn Phawan","พนักงานรับส่ง-เอกสาร","แผนกขาย" +"hr_employee_35",,"Bunnari Thipmusik","พนักงานรับส่ง-เอกสาร","แผนกขาย" +"hr_employee_36",,"Saychon Sattham","พนักงานหน่วยบริการ","แผนกติดตั้ง" +"hr_employee_37",,"Tapin Runpapan","พนักงานหน่วยบริการ","แผนกติดตั้ง" +"hr_employee_38",,"Suwanna Yamkayan","วิศวกร","แผนกวิศวกรรม" +"hr_employee_39",,"Thawisak Buaphet","พนักงานหน่วยบริการ","แผนกติดตั้ง" +"hr_employee_4",,"Supot Promsawat","ผู้จัดการฝ่ายติดตั้ง","ฝ่ายติดตั้ง" +"hr_employee_40",,"Umaporn Suksaeng","ธุรการแผนกติดตั้ง","แผนกติดตั้ง" +"hr_employee_41",,"Anurak Sutthitham","วิศวกร","แผนกวิศวกรรม" +"hr_employee_42",,"Maliwan Onlamun","เจ้าหน้าที่การเงิน","แผนกบัญชีและการเงิน" +"hr_employee_43",,"Warin Pitakdamrongchai","วิศวกร","แผนกวิศวกรรม" +"hr_employee_44",,"Oranat Subsudsakul","เจ้าหน้าที่ถอดแบบ","แผนกขาย" +"hr_employee_46",,"Laphatrada Sungsikaew","หัวหน้าแผนกบุคคลและความปลอดภัยโรงงาน","ฝ่ายผลิต" +"hr_employee_5",,"Saowaluck Promsawat","เลขานุการฝ่ายนำเข้าและส่งออก","ฝ่ายนำเข้าและส่งออก" +"hr_employee_6",,"Somkiat Sangthongsakullert","วิศวกรติดตั้ง","แผนกติดตั้ง" +"hr_employee_7",,"Chairat Sangchot","วิศวกรขาย","แผนกขาย" +"hr_employee_8",,"Boonsong Heangpraseet","แม่บ้าน","แผนกบุคคล" +"hr_employee_9",,"Chatchai Tueansa-Ard","วิศวกรขาย","แผนกขาย" +"hr_employee_SP143005","SP143005","Sanan Lothalad","หัวหน้าส่วนประตู, แผนกผลิต", +"hr_employee_SP143006","SP143006","Kongjak Rodphai","หัวหน้าแผนกซ่อมบำรุง, แผนกซ่อมบำรุง", +"hr_employee_SP143009","SP143009","Decho Thongchai","หัวหน้าส่วนประกอบ, แผนกผลิต", +"hr_employee_SP144002","SP144002","Teerasak Donmon","หัวหน้าส่วนธุรการผลิตและจัดส่ง, แผนกผลิต", +"hr_employee_SP144004","SP144004","Apidet Kaewketkieng","หัวหน้าส่วนตัดเหล็ก, แผนกผลิต", +"hr_employee_SP144007","SP144007","Sang-arun Subbunchong","พนักงานขับรถ, หน่วยธุรการผลิตและจัดส่ง", +"hr_employee_SP145003","SP145003","Charn Srichan","พนักงานขับรถ, หน่วยธุรการผลิตและจัดส่ง", +"hr_employee_SP146007","SP146007","Pairoj Khansonthey","หัวหน้าส่วนประกันคุณภาพ, แผนกประกันคุณภาพ", +"hr_employee_SP146012","SP146012","Thatnapong Rodphai","พนักงานหน่วยซ่อมบำรุง, หน่วยซ่อมบำรุง", +"hr_employee_SP146013","SP146013","Narongsak Phombut","พนักงานหน่วยสำเร็จรูป, หน่วยสำเร็จรูป", +"hr_employee_SP147010","SP147010","Komsan Kaewketkieng","หัวหน้าหน่วยตัดเหล็ก 3, ส่วนตัดเหล็ก", +"hr_employee_SP147018","SP147018","Jirapong Thamma","หัวหน้าหน่วยฉีดโฟม 2, ส่วนฉีดโฟม", +"hr_employee_SP149005","SP149005","Wongnet Sathi","หัวหน้าหน่วยตัดเหล็ก 2, ส่วนตัดเหล็ก", +"hr_employee_SP149082","SP149082","Pithak Fangpaiboon","พนักงานขับรถ, หน่วยธุรการผลิตและจัดส่ง", +"hr_employee_SP149096","SP149096","Charoemphol Wongthongdee","พนักงานขับรถ, หน่วยธุรการผลิตและจัดส่ง", +"hr_employee_SP150038","SP150038","Rungnapha Pusawat","หัวหน้าหน่วยคลังสินค้า, ส่วนธุรการผลิตและจัดส่ง", +"hr_employee_SP150067","SP150067","Niphon Satsue","หัวหน้าหน่วยประกอบประตู, ส่วนประกอบ", +"hr_employee_SP150080","SP150080","Laphatrada Sungsikaew","หัวหน้าแผนกบุคคลและความปลอดภัยโรงงาน, ฝ่ายผลิต", +"hr_employee_SP150099","SP150099","Paphatsorn Keingkhan","หัวหน้าหน่วยสำเร็จรูป, ส่วนธุรการผลิตและจัดส่ง", +"hr_employee_SP150102","SP150102","Manop Boonto","หัวหน้าหน่วยพ่นสี, ส่วนประกอบ", +"hr_employee_SP151005","SP151005","Pornchai Phathan","พนักงานขับรถ, หน่วยธุรการผลิตและจัดส่ง", +"hr_employee_SP151076","SP151076","Janda Kotwong","หัวหน้าแผนกผลิต, ฝ่ายผลิต", +"hr_employee_SP151079","SP151079","Chhaly Hong","หัวหน้าหน่วยฉีดโฟม 1, ส่วนฉีดโฟม", +"hr_employee_SP151083","SP151083","Niwat Songwichai","หัวหน้าส่วนฉีดโฟม, แผนกผลิต", +"hr_employee_SP152013","SP152013","Pongsakorn Loelab","หัวหน้าส่วนคลังวัตถุดิบ, แผนกคลังวัตถุดิบ", +"hr_employee_SP152029","SP152029","Warunee Nadee","เลขานุการแผนกผลิต, แผนกผลิต", +"hr_employee_SP153071","SP153071","Komthorn Butsri","พนักงานขับรถ, หน่วยธุรการผลิตและจัดส่ง", +"hr_employee_SP154022","SP154022","Nat Angsila","เจ้าหน้าที่บุคคลโรงงาน, ส่วนบุคคลและความปลอดภัยโรงงาน", +"hr_employee_SP155028","SP155028","Phaiwong Jenkarn","หัวหน้าหน่วยซ่อมบำรุง, ส่วนซ่อมบำรุง", +"hr_employee_SP155034","SP155034","Suparnee Kotsuwan","เจ้าหน้าที่ธุรการแผนกซ่อมบำรุง, ส่วนซ่อมบำรุง", +"hr_employee_SP155059","SP155059","Wanphen Sodsanoi","เจ้าหน้าที่ถอดแบบผลิต, ส่วนคลังวัตถุดิบ", +"hr_employee_SP155098","SP155098","Anek Sitthiwanchai","หัวหน้าหน่วยฉีดโฟม 4, ส่วนฉีดโฟม", +"hr_employee_SP156001","SP156001","Chamnan Sanguansri","หัวหน้าหน่วยตัดเหล็ก 1, ส่วนตัดเหล็ก", diff --git a/sqp_config/master/product/Product_forSales.xlsx b/sqp_config/master/product/Product_forSales.xlsx new file mode 100755 index 0000000..e6a1b36 Binary files /dev/null and b/sqp_config/master/product/Product_forSales.xlsx differ diff --git a/sqp_config/master/product/ahu_with_3pricelist/product.pricelist.csv b/sqp_config/master/product/ahu_with_3pricelist/product.pricelist.csv new file mode 100755 index 0000000..0993610 --- /dev/null +++ b/sqp_config/master/product/ahu_with_3pricelist/product.pricelist.csv @@ -0,0 +1,4 @@ +id,company_id/id,currency_id/id,name,type +pricelist_ahu_1,,base.THB,AHU Price DAIKIN,sale +pricelist_ahu_2,,base.THB,AHU Price Shinko,sale +pricelist_ahu_3,,base.THB,AHU Price AlterAir,sale diff --git a/sqp_config/master/product/ahu_with_3pricelist/product.pricelist.version.csv b/sqp_config/master/product/ahu_with_3pricelist/product.pricelist.version.csv new file mode 100755 index 0000000..b36f90c --- /dev/null +++ b/sqp_config/master/product/ahu_with_3pricelist/product.pricelist.version.csv @@ -0,0 +1,106 @@ +id,name,pricelist_id/id,items_id/name,items_id/product_id/id,items_id/base,items_id/price_discount,items_id/price_surcharge +pricelist_ahu_v1,DAIKIN Version 1,pricelist_ahu_1,pricelist_ahu_v1_prod_1,product.product_ahu_1,1,-1,780 +,,,pricelist_ahu_v1_prod_2,product.product_ahu_2,1,-1,800 +,,,pricelist_ahu_v1_prod_3,product.product_ahu_3,1,-1,1800 +,,,pricelist_ahu_v1_prod_4,product.product_ahu_4,1,-1,2800 +,,,pricelist_ahu_v1_prod_5,product.product_ahu_5,1,-1,1405.3 +,,,pricelist_ahu_v1_prod_6,product.product_ahu_6,1,-1,1455.3 +,,,pricelist_ahu_v1_prod_7,product.product_ahu_7,1,-1,2455.3 +,,,pricelist_ahu_v1_prod_8,product.product_ahu_8,1,-1,3455.3 +,,,pricelist_ahu_v1_prod_9,product.product_ahu_9,1,-1, +,,,pricelist_ahu_v1_prod_10,product.product_ahu_10,1,-1, +,,,pricelist_ahu_v1_prod_11,product.product_ahu_11,1,-1, +,,,pricelist_ahu_v1_prod_12,product.product_ahu_12,1,-1,1598.24 +,,,pricelist_ahu_v1_prod_13,product.product_ahu_13,1,-1,1648.24 +,,,pricelist_ahu_v1_prod_14,product.product_ahu_14,1,-1,2648.24 +,,,pricelist_ahu_v1_prod_15,product.product_ahu_15,1,-1,3648.24 +,,,pricelist_ahu_v1_prod_16,product.product_ahu_16,1,-1,1162.75 +,,,pricelist_ahu_v1_prod_17,product.product_ahu_17,1,-1,1212.75 +,,,pricelist_ahu_v1_prod_18,product.product_ahu_18,1,-1,2212.75 +,,,pricelist_ahu_v1_prod_19,product.product_ahu_19,1,-1,3212.75 +,,,pricelist_ahu_v1_prod_20,product.product_ahu_20,1,-1, +,,,pricelist_ahu_v1_prod_21,product.product_ahu_21,1,-1, +,,,pricelist_ahu_v1_prod_22,product.product_ahu_22,1,-1, +,,,pricelist_ahu_v1_prod_23,product.product_ahu_23,1,-1, +,,,pricelist_ahu_v1_prod_24,product.product_ahu_24,1,-1, +,,,pricelist_ahu_v1_prod_25,product.product_ahu_25,1,-1, +,,,pricelist_ahu_v1_prod_26,product.product_ahu_26,1,-1, +,,,pricelist_ahu_v1_prod_27,product.product_ahu_27,1,-1, +,,,pricelist_ahu_v1_prod_28,product.product_ahu_28,1,-1, +,,,pricelist_ahu_v1_prod_29,product.product_ahu_29,1,-1,4410 +,,,pricelist_ahu_v1_prod_30,product.product_ahu_30,1,-1, +,,,pricelist_ahu_v1_prod_31,product.product_ahu_31,1,-1, +,,,pricelist_ahu_v1_prod_32,product.product_ahu_32,1,-1,1000 +,,,pricelist_ahu_v1_prod_33,product.product_ahu_33,1,-1,937.13 +,,,pricelist_ahu_v1_prod_34,product.product_ahu_34,1,-1,367.5 +,,,pricelist_ahu_v1_prod_35,product.product_ahu_35,1,-1,367.5 +pricelist_ahu_v2,Sinko Version 1,pricelist_ahu_2,pricelist_ahu_v2_prod_1,product.product_ahu_1,1,-1,805 +,,,pricelist_ahu_v2_prod_2,product.product_ahu_2,1,-1,855 +,,,pricelist_ahu_v2_prod_3,product.product_ahu_3,1,-1,1855 +,,,pricelist_ahu_v2_prod_4,product.product_ahu_4,1,-1,2855 +,,,pricelist_ahu_v2_prod_5,product.product_ahu_5,1,-1,860 +,,,pricelist_ahu_v2_prod_6,product.product_ahu_6,1,-1,910 +,,,pricelist_ahu_v2_prod_7,product.product_ahu_7,1,-1,1910 +,,,pricelist_ahu_v2_prod_8,product.product_ahu_8,1,-1,2910 +,,,pricelist_ahu_v2_prod_9,product.product_ahu_9,1,-1,910 +,,,pricelist_ahu_v2_prod_10,product.product_ahu_10,1,-1,1910 +,,,pricelist_ahu_v2_prod_11,product.product_ahu_11,1,-1,2910 +,,,pricelist_ahu_v2_prod_12,product.product_ahu_12,1,-1, +,,,pricelist_ahu_v2_prod_13,product.product_ahu_13,1,-1, +,,,pricelist_ahu_v2_prod_14,product.product_ahu_14,1,-1, +,,,pricelist_ahu_v2_prod_15,product.product_ahu_15,1,-1, +,,,pricelist_ahu_v2_prod_16,product.product_ahu_16,1,-1, +,,,pricelist_ahu_v2_prod_17,product.product_ahu_17,1,-1, +,,,pricelist_ahu_v2_prod_18,product.product_ahu_18,1,-1, +,,,pricelist_ahu_v2_prod_19,product.product_ahu_19,1,-1, +,,,pricelist_ahu_v2_prod_20,product.product_ahu_20,1,-1,1175 +,,,pricelist_ahu_v2_prod_21,product.product_ahu_21,1,-1,2175 +,,,pricelist_ahu_v2_prod_22,product.product_ahu_22,1,-1,3175 +,,,pricelist_ahu_v2_prod_23,product.product_ahu_23,1,-1,1175 +,,,pricelist_ahu_v2_prod_24,product.product_ahu_24,1,-1,2175 +,,,pricelist_ahu_v2_prod_25,product.product_ahu_25,1,-1,3175 +,,,pricelist_ahu_v2_prod_26,product.product_ahu_26,1,-1,2675 +,,,pricelist_ahu_v2_prod_27,product.product_ahu_27,1,-1,3675 +,,,pricelist_ahu_v2_prod_28,product.product_ahu_28,1,-1,4675 +,,,pricelist_ahu_v2_prod_29,product.product_ahu_29,1,-1, +,,,pricelist_ahu_v2_prod_30,product.product_ahu_30,1,-1,2675 +,,,pricelist_ahu_v2_prod_31,product.product_ahu_31,1,-1,3210 +,,,pricelist_ahu_v2_prod_32,product.product_ahu_32,1,-1,1000 +,,,pricelist_ahu_v2_prod_33,product.product_ahu_33,1,-1, +,,,pricelist_ahu_v2_prod_34,product.product_ahu_34,1,-1,335 +,,,pricelist_ahu_v2_prod_35,product.product_ahu_35,1,-1,350 +pricelist_ahu_v3,AlterAir Version 1,pricelist_ahu_3,pricelist_ahu_v3_prod_1,product.product_ahu_1,1,-1,830 +,,,pricelist_ahu_v3_prod_2,product.product_ahu_2,1,-1,850 +,,,pricelist_ahu_v3_prod_3,product.product_ahu_3,1,-1,1900 +,,,pricelist_ahu_v3_prod_4,product.product_ahu_4,1,-1,2900 +,,,pricelist_ahu_v3_prod_5,product.product_ahu_5,1,-1,900 +,,,pricelist_ahu_v3_prod_6,product.product_ahu_6,1,-1,950 +,,,pricelist_ahu_v3_prod_7,product.product_ahu_7,1,-1,2000 +,,,pricelist_ahu_v3_prod_8,product.product_ahu_8,1,-1,3000 +,,,pricelist_ahu_v3_prod_9,product.product_ahu_9,1,-1, +,,,pricelist_ahu_v3_prod_10,product.product_ahu_10,1,-1, +,,,pricelist_ahu_v3_prod_11,product.product_ahu_11,1,-1, +,,,pricelist_ahu_v3_prod_12,product.product_ahu_12,1,-1, +,,,pricelist_ahu_v3_prod_13,product.product_ahu_13,1,-1, +,,,pricelist_ahu_v3_prod_14,product.product_ahu_14,1,-1, +,,,pricelist_ahu_v3_prod_15,product.product_ahu_15,1,-1, +,,,pricelist_ahu_v3_prod_16,product.product_ahu_16,1,-1,1080 +,,,pricelist_ahu_v3_prod_17,product.product_ahu_17,1,-1,1100 +,,,pricelist_ahu_v3_prod_18,product.product_ahu_18,1,-1,2100 +,,,pricelist_ahu_v3_prod_19,product.product_ahu_19,1,-1,3100 +,,,pricelist_ahu_v3_prod_20,product.product_ahu_20,1,-1, +,,,pricelist_ahu_v3_prod_21,product.product_ahu_21,1,-1, +,,,pricelist_ahu_v3_prod_22,product.product_ahu_22,1,-1, +,,,pricelist_ahu_v3_prod_23,product.product_ahu_23,1,-1, +,,,pricelist_ahu_v3_prod_24,product.product_ahu_24,1,-1, +,,,pricelist_ahu_v3_prod_25,product.product_ahu_25,1,-1, +,,,pricelist_ahu_v3_prod_26,product.product_ahu_26,1,-1, +,,,pricelist_ahu_v3_prod_27,product.product_ahu_27,1,-1, +,,,pricelist_ahu_v3_prod_28,product.product_ahu_28,1,-1, +,,,pricelist_ahu_v3_prod_29,product.product_ahu_29,1,-1,3500 +,,,pricelist_ahu_v3_prod_30,product.product_ahu_30,1,-1, +,,,pricelist_ahu_v3_prod_31,product.product_ahu_31,1,-1, +,,,pricelist_ahu_v3_prod_32,product.product_ahu_32,1,-1,1000 +,,,pricelist_ahu_v3_prod_33,product.product_ahu_33,1,-1, +,,,pricelist_ahu_v3_prod_34,product.product_ahu_34,1,-1,350 +,,,pricelist_ahu_v3_prod_35,product.product_ahu_35,1,-1, diff --git a/sqp_config/master/product/ahu_with_3pricelist/product.product.csv b/sqp_config/master/product/ahu_with_3pricelist/product.product.csv new file mode 100755 index 0000000..6bbdefe --- /dev/null +++ b/sqp_config/master/product/ahu_with_3pricelist/product.product.csv @@ -0,0 +1,36 @@ +id,name,default_code,categ_id,partner_id,tag_ids,sale_ok,purchase_ok,is_one_time_use,type,procure_method,supply_method,cost_method,uom_id,uom_po_id,valuation,standard_price,list_price,taxes_id,supplier_taxes_id +product.product_ahu_1,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) None PVC. Frame,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_2,PU Panel (T) 25 mm. (Off White/Off White steel sheet) None PVC. Frame,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_3,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) None PVC. Frame,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_4,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) None PVC. Frame,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_5,PU Panel (T) 25 mm. (Galvanized/Off White steel sheet) PVC. Frame,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_6,PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_7,PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_8,PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_9,"PU Panel (T) 25 mm. (Off White/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_10,"PU Panel (T) 25 mm. (Stainless/Off White steel sheet) PVC. Frame. , Steel Flat-Bar",,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_11,"PU Panel (T) 25 mm. (Stainless/Stainless steel sheet) PVC. Frame. , Steel Flat-Bar",,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_12,PU Panel (T) 42 mm. (Galvanized/Off White steel sheet) Slip joint with PVC. Frame,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_13,PU Panel (T) 42 mm. (Off White/Off White steel sheet) Slip joint with PVC. Frame,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_14,PU Panel (T) 42 mm. (Stainless/Off White steel sheet) Slip joint with PVC. Frame,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_15,PU Panel (T) 42 mm. (Stainless/Stainless steel sheet) Slip joint with PVC. Frame,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_16,PU Panel (T) 50 mm. (Galvanized/Off White steel sheet) Slip joint with Camlock,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_17,PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint with Camlock,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_18,PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint with Camlock,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_19,PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint with Camlock,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_20,"TGH : PU Panel (T) 50 mm. (Off White/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_21,"TGH : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_22,"TGH : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) Slip joint + Cam lock , PVC. Frame. , Steel Flat-Bar",,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_23,"CJ : PU Panel (T) 50 mm. (Off White/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_24,"CJ : PU Panel (T) 50 mm. (Stainless/Off White steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_25,"CJ : PU Panel (T) 50 mm. (Stainless/Stainless steel sheet) PVC. Frame CJ. Type A & B , Steel Flat-Bar",,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_26,Rockwool Panel (T) 50 mm. ( Off White / Off White steel sheet),,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_27,Rockwool Panel (T) 50 mm. ( Styainless / Off White steel sheet),,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_28,Rockwool Panel (T) 50 mm. ( Stainlesse / Stainless steel sheet),,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_29,Single swing door 4 frame.(Color/Color steel sheet) (W) 500 x (H) 700 x (T) 50 mm.(Standard size),,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_30,CJ : Single swing door 4 frame.(Color/Color steel sheet),,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_31,TGH : Single swing door 4 frame.(Color / Color steel sheet),,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_32,Stainless steel sheet (T) 0.5 mm. (Add 1 side panel),,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_33,Aluminium Angle 40x40 (Off white color) (L) 6 m.,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,pcs,pcs,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_34,Off white color steel sheet (T) 0.5 mm.,,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_ahu_35,Color Off White Spray (MT158),,Non-Standard,,AHU,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,nos,nos,Periodical (manual),0,0,Output VAT,Input VAT diff --git a/sqp_config/master/product/clean_room/product.product.csv b/sqp_config/master/product/clean_room/product.product.csv new file mode 100755 index 0000000..c00bf78 --- /dev/null +++ b/sqp_config/master/product/clean_room/product.product.csv @@ -0,0 +1,102 @@ +id,name,default_code,categ_id,partner_id,tag_ids,sale_ok,purchase_ok,is_one_time_use,type,procure_method,supply_method,cost_method,uom_id,uom_po_id,valuation,standard_price,list_price,taxes_id,supplier_taxes_id +product.product_clean_room_1,Wall Panel (T) 25 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1200,Output VAT 7%,Input VAT +product.product_clean_room_2,Wall Panel (T) 25 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1150,Output VAT 7%,Input VAT +product.product_clean_room_3,Wall Panel (T) 25 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1100,Output VAT 7%,Input VAT +product.product_clean_room_4,Wall Panel (T) 42 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1350,Output VAT 7%,Input VAT +product.product_clean_room_5,Wall Panel (T) 42 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1300,Output VAT 7%,Input VAT +product.product_clean_room_6,Wall Panel (T) 42 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1250,Output VAT 7%,Input VAT +product.product_clean_room_7,Wall Panel (T) 50 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1540,Output VAT 7%,Input VAT +product.product_clean_room_8,Wall Panel (T) 50 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1500,Output VAT 7%,Input VAT +product.product_clean_room_9,Wall Panel (T) 50 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1450,Output VAT 7%,Input VAT +product.product_clean_room_10,Wall Panel (T) 75 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1900,Output VAT 7%,Input VAT +product.product_clean_room_11,Wall Panel (T) 75 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1850,Output VAT 7%,Input VAT +product.product_clean_room_12,Wall Panel (T) 75 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1800,Output VAT 7%,Input VAT +product.product_clean_room_13,Wall Panel (T) 100 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2000,Output VAT 7%,Input VAT +product.product_clean_room_14,Wall Panel (T) 100 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1900,Output VAT 7%,Input VAT +product.product_clean_room_15,Wall Panel (T) 100 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1850,Output VAT 7%,Input VAT +product.product_clean_room_16,Ceiling Panel (T) 25 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1200,Output VAT 7%,Input VAT +product.product_clean_room_17,Ceiling Panel (T) 25 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1150,Output VAT 7%,Input VAT +product.product_clean_room_18,Ceiling Panel (T) 25 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1100,Output VAT 7%,Input VAT +product.product_clean_room_19,Ceiling Panel (T) 42 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1350,Output VAT 7%,Input VAT +product.product_clean_room_20,Ceiling Panel (T) 42 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1300,Output VAT 7%,Input VAT +product.product_clean_room_21,Ceiling Panel (T) 42 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1250,Output VAT 7%,Input VAT +product.product_clean_room_22,Ceiling Panel (T) 50 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1540,Output VAT 7%,Input VAT +product.product_clean_room_23,Ceiling Panel (T) 50 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1500,Output VAT 7%,Input VAT +product.product_clean_room_24,Ceiling Panel (T) 50 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1450,Output VAT 7%,Input VAT +product.product_clean_room_25,Ceiling Panel (T) 75 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1900,Output VAT 7%,Input VAT +product.product_clean_room_26,Ceiling Panel (T) 75 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1850,Output VAT 7%,Input VAT +product.product_clean_room_27,Ceiling Panel (T) 75 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1800,Output VAT 7%,Input VAT +product.product_clean_room_28,Ceiling Panel (T) 100 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2000,Output VAT 7%,Input VAT +product.product_clean_room_29,Ceiling Panel (T) 100 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1900,Output VAT 7%,Input VAT +product.product_clean_room_30,Ceiling Panel (T) 100 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1850,Output VAT 7%,Input VAT +product.product_clean_room_31,Panel (T) 100 mm. Wall return air (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,6000,Output VAT 7%,Input VAT +product.product_clean_room_32,Panel (T) 100 mm. Wall return air (Stainless /Stainless),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,12000,Output VAT 7%,Input VAT +product.product_clean_room_33,Panel (T) 200 mm. Wall return air (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,8000,Output VAT 7%,Input VAT +product.product_clean_room_34,Panel (T) 200 mm. Wall return air (Stainless /Stainless),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,16000,Output VAT 7%,Input VAT +product.product_clean_room_35,Panel (T) 200 mm. Wall return for Hepa (Color/Color) Excluded Hepa,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,12000,Output VAT 7%,Input VAT +product.product_clean_room_36,Panel (T) 200 mm. Wall return for Hepa (Stainless /Stainless) Excluded Hepa,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,20000,Output VAT 7%,Input VAT +product.product_clean_room_37,Wall Panel (T) 42 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2840,Output VAT 7%,Input VAT +product.product_clean_room_38,Wall Panel (T) 50 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,3000,Output VAT 7%,Input VAT +product.product_clean_room_39,Wall Panel (T) 75 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,3500,Output VAT 7%,Input VAT +product.product_clean_room_40,Wall Panel (T) 100 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,4000,Output VAT 7%,Input VAT +product.product_clean_room_41,Wall Panel (T) 125 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,4500,Output VAT 7%,Input VAT +product.product_clean_room_42,Ceiling Panel (T) 42 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2840,Output VAT 7%,Input VAT +product.product_clean_room_43,Ceiling Panel (T) 50 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,3000,Output VAT 7%,Input VAT +product.product_clean_room_44,Ceiling Panel (T) 75 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,3500,Output VAT 7%,Input VAT +product.product_clean_room_45,Ceiling Panel (T) 100 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,4000,Output VAT 7%,Input VAT +product.product_clean_room_46,Ceiling Panel (T) 125 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,4500,Output VAT 7%,Input VAT +product.product_clean_room_47,"Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,25000,Output VAT 7%,Input VAT +product.product_clean_room_48,"Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,30000,Output VAT 7%,Input VAT +product.product_clean_room_49,"Single swing door 4 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,25000,Output VAT 7%,Input VAT +product.product_clean_room_50,"Single swing door 4 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,30000,Output VAT 7%,Input VAT +product.product_clean_room_51,"Double swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,35000,Output VAT 7%,Input VAT +product.product_clean_room_52,"Double swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT 7%,Input VAT +product.product_clean_room_53,"Double swing door 4 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,35000,Output VAT 7%,Input VAT +product.product_clean_room_54,"Double swing door 4 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT 7%,Input VAT +product.product_clean_room_55,"Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 50 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,27000,Output VAT 7%,Input VAT +product.product_clean_room_56,"Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 50 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,34000,Output VAT 7%,Input VAT +product.product_clean_room_57,"Single swing door 4 Frame (W) 900 x (H) 2,100 x (T) 50 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,27000,Output VAT 7%,Input VAT +product.product_clean_room_58,"Single swing door 4 Frame (W) 900 x (H) 2,100 x (T) 50 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,34000,Output VAT 7%,Input VAT +product.product_clean_room_59,"Combination swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,35000,Output VAT 7%,Input VAT +product.product_clean_room_60,"Combination swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT 7%,Input VAT +product.product_clean_room_61,"Single sliding door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,35000,Output VAT 7%,Input VAT +product.product_clean_room_62,"Single sliding door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Stainless)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT 7%,Input VAT +product.product_clean_room_63,"Double sliding door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,54000,Output VAT 7%,Input VAT +product.product_clean_room_64,"Double sliding door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Stainless)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,60000,Output VAT 7%,Input VAT +product.product_clean_room_65,"Emergency Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT 7%,Input VAT +product.product_clean_room_66,"Emergency Double swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,55000,Output VAT 7%,Input VAT +product.product_clean_room_67,"Emergency Service door (Single swing) 4 Frame (W) 600 x (H) 1,000 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,20000,Output VAT 7%,Input VAT +product.product_clean_room_68,Single fixed window (Temper glass) (W) 865 x (H) 865 (T) 6 mm.,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,5500,Output VAT 7%,Input VAT +product.product_clean_room_69,Double fixed window (Temper glass) (W) 865 x (H) 865 (T) 6 mm.,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,8000,Output VAT 7%,Input VAT +product.product_clean_room_70,"Single fixed window (Temper glass) (W) 1,160 x (H) 900 (T) 6 mm.",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,7500,Output VAT 7%,Input VAT +product.product_clean_room_71,"Double fixed window (Temper glass) (W) 1,160 x (H) 900 (T) 6 mm.",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,12000,Output VAT 7%,Input VAT +product.product_clean_room_72,"Sliding window (Glass) (W) 900 x (H) 1,800 (T) 6 mm.",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,20000,Output VAT 7%,Input VAT +product.product_clean_room_73,"Sliding window (Glass) (W) 900 x (H) 2,000 (T) 6 mm.",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,30000,Output VAT 7%,Input VAT +product.product_clean_room_74,Aluminium beam support,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,1200,Output VAT 7%,Input VAT +product.product_clean_room_75,Aluminium floor base,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,700,Output VAT 7%,Input VAT +product.product_clean_room_76,Aluminium angle + PVC Curve (30 x 30),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,800,Output VAT 7%,Input VAT +product.product_clean_room_77,Aluminium Curve,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,1200,Output VAT 7%,Input VAT +product.product_clean_room_78,Aluminium Angle 40 x 40,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,500,Output VAT 7%,Input VAT +product.product_clean_room_79,Opening cutting Lighting,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,1200,Output VAT 7%,Input VAT +product.product_clean_room_80,"STD. Column Cladding (400 x 400 mm. , 4 ด้าน)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,8000,Output VAT 7%,Input VAT +product.product_clean_room_81,"Hanging system (Ceiling beam, bracket, T-Bar)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,1500,Output VAT 7%,Input VAT +product.product_clean_room_82,Spray paint,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,tube,tube,Periodical (manual),0,500,Output VAT 7%,Input VAT +product.product_clean_room_83,Inter Lock 2 CH,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT 7%,Input VAT +product.product_clean_room_84,"Silicone ""Sika"" (0.4 Tube/m2)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,tube,tube,Periodical (manual),0,200,Output VAT 7%,Input VAT +product.product_clean_room_85,Lighting,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 7%,Input VAT +product.product_clean_room_86,Imbeded Conduit & Back Box,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,200,Output VAT 7%,Input VAT +product.product_clean_room_87,"Other fitting parts (Silicone, bolt, nut & washer)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,300,Output VAT 7%,Input VAT +product.product_clean_room_88,Installation Clean Room with Supervisor (Bangkok and Surroudings area),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,400,Output VAT 7%,Input VAT +product.product_clean_room_89,Installation Clean Room with Supervisor (Upcountry),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,450,Output VAT 7%,Input VAT +product.product_clean_room_90,Installation Clean Room with Supervisor (Oversea),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT 7%,Input VAT +product.product_clean_room_91,"Opening panel with aluminium frame for Hepa, Lighting",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,1500,Output VAT 7%,Input VAT +product.product_clean_room_92,Hole for Sprinkle Head,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,hole,hole,Periodical (manual),0,80,Output VAT 7%,Input VAT +product.product_clean_room_93,Demolish C/R Panel with fitting parts,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,150,Output VAT 7%,Input VAT +product.product_clean_room_94,Demolish window glass,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,150,Output VAT 7%,Input VAT +product.product_clean_room_95,Demolish Single swing / sliding door,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,1500,Output VAT 7%,Input VAT +product.product_clean_room_96,Demolish Double swing / sliding door,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,1500,Output VAT 7%,Input VAT +product.product_clean_room_97,Temporary wall,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,4000,Output VAT 7%,Input VAT +product.product_clean_room_98,Transportation Clean RoomBangkok and Surroudings,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,7000,Output VAT 7%,Input VAT +product.product_clean_room_99,Transportation Clean Room Upcountry,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 7%,Input VAT +product.product_clean_room_100,Transportation Clean Room Oversea,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 7%,Input VAT +product.product_clean_room_101,Miscellaneous and Overhead Cost,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 7%,Input VAT diff --git a/sqp_config/master/product/clean_room/product.product.csv.old b/sqp_config/master/product/clean_room/product.product.csv.old new file mode 100755 index 0000000..58594dd --- /dev/null +++ b/sqp_config/master/product/clean_room/product.product.csv.old @@ -0,0 +1,102 @@ +id,name,default_code,categ_id,partner_id,tag_ids,sale_ok,purchase_ok,is_one_time_use,type,procure_method,supply_method,cost_method,uom_id,uom_po_id,valuation,standard_price,list_price,taxes_id,supplier_taxes_id +product.product_clean_room_1,Wall Panel (T) 25 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1200,Output VAT,Input VAT +product.product_clean_room_2,Wall Panel (T) 25 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1150,Output VAT,Input VAT +product.product_clean_room_3,Wall Panel (T) 25 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1100,Output VAT,Input VAT +product.product_clean_room_4,Wall Panel (T) 42 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1350,Output VAT,Input VAT +product.product_clean_room_5,Wall Panel (T) 42 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1300,Output VAT,Input VAT +product.product_clean_room_6,Wall Panel (T) 42 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1250,Output VAT,Input VAT +product.product_clean_room_7,Wall Panel (T) 50 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1540,Output VAT,Input VAT +product.product_clean_room_8,Wall Panel (T) 50 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1500,Output VAT,Input VAT +product.product_clean_room_9,Wall Panel (T) 50 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1450,Output VAT,Input VAT +product.product_clean_room_10,Wall Panel (T) 75 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1900,Output VAT,Input VAT +product.product_clean_room_11,Wall Panel (T) 75 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1850,Output VAT,Input VAT +product.product_clean_room_12,Wall Panel (T) 75 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1800,Output VAT,Input VAT +product.product_clean_room_13,Wall Panel (T) 100 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2000,Output VAT,Input VAT +product.product_clean_room_14,Wall Panel (T) 100 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1900,Output VAT,Input VAT +product.product_clean_room_15,Wall Panel (T) 100 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1850,Output VAT,Input VAT +product.product_clean_room_16,Ceiling Panel (T) 25 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1200,Output VAT,Input VAT +product.product_clean_room_17,Ceiling Panel (T) 25 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1150,Output VAT,Input VAT +product.product_clean_room_18,Ceiling Panel (T) 25 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1100,Output VAT,Input VAT +product.product_clean_room_19,Ceiling Panel (T) 42 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1350,Output VAT,Input VAT +product.product_clean_room_20,Ceiling Panel (T) 42 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1300,Output VAT,Input VAT +product.product_clean_room_21,Ceiling Panel (T) 42 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1250,Output VAT,Input VAT +product.product_clean_room_22,Ceiling Panel (T) 50 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1540,Output VAT,Input VAT +product.product_clean_room_23,Ceiling Panel (T) 50 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1500,Output VAT,Input VAT +product.product_clean_room_24,Ceiling Panel (T) 50 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1450,Output VAT,Input VAT +product.product_clean_room_25,Ceiling Panel (T) 75 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1900,Output VAT,Input VAT +product.product_clean_room_26,Ceiling Panel (T) 75 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1850,Output VAT,Input VAT +product.product_clean_room_27,Ceiling Panel (T) 75 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1800,Output VAT,Input VAT +product.product_clean_room_28,Ceiling Panel (T) 100 mm. Polyurethane Foam (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2000,Output VAT,Input VAT +product.product_clean_room_29,Ceiling Panel (T) 100 mm. Polyurethane Foam (Color / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1900,Output VAT,Input VAT +product.product_clean_room_30,Ceiling Panel (T) 100 mm. Polyurethane Foam (Galvanized / Galvanized),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1850,Output VAT,Input VAT +product.product_clean_room_31,Panel (T) 100 mm. Wall return air (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,6000,Output VAT,Input VAT +product.product_clean_room_32,Panel (T) 100 mm. Wall return air (Stainless /Stainless),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,12000,Output VAT,Input VAT +product.product_clean_room_33,Panel (T) 200 mm. Wall return air (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,8000,Output VAT,Input VAT +product.product_clean_room_34,Panel (T) 200 mm. Wall return air (Stainless /Stainless),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,16000,Output VAT,Input VAT +product.product_clean_room_35,Panel (T) 200 mm. Wall return for Hepa (Color/Color) Excluded Hepa,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,12000,Output VAT,Input VAT +product.product_clean_room_36,Panel (T) 200 mm. Wall return for Hepa (Stainless /Stainless) Excluded Hepa,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,20000,Output VAT,Input VAT +product.product_clean_room_37,Wall Panel (T) 42 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2840,Output VAT,Input VAT +product.product_clean_room_38,Wall Panel (T) 50 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,3000,Output VAT,Input VAT +product.product_clean_room_39,Wall Panel (T) 75 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,3500,Output VAT,Input VAT +product.product_clean_room_40,Wall Panel (T) 100 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,4000,Output VAT,Input VAT +product.product_clean_room_41,Wall Panel (T) 125 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,4500,Output VAT,Input VAT +product.product_clean_room_42,Ceiling Panel (T) 42 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2840,Output VAT,Input VAT +product.product_clean_room_43,Ceiling Panel (T) 50 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,3000,Output VAT,Input VAT +product.product_clean_room_44,Ceiling Panel (T) 75 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,3500,Output VAT,Input VAT +product.product_clean_room_45,Ceiling Panel (T) 100 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,4000,Output VAT,Input VAT +product.product_clean_room_46,Ceiling Panel (T) 125 mm. Rock Wool (Color / Color),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,4500,Output VAT,Input VAT +product.product_clean_room_47,"Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,25000,Output VAT,Input VAT +product.product_clean_room_48,"Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,30000,Output VAT,Input VAT +product.product_clean_room_49,"Single swing door 4 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,25000,Output VAT,Input VAT +product.product_clean_room_50,"Single swing door 4 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,30000,Output VAT,Input VAT +product.product_clean_room_51,"Double swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,35000,Output VAT,Input VAT +product.product_clean_room_52,"Double swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT,Input VAT +product.product_clean_room_53,"Double swing door 4 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,35000,Output VAT,Input VAT +product.product_clean_room_54,"Double swing door 4 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT,Input VAT +product.product_clean_room_55,"Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 50 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,27000,Output VAT,Input VAT +product.product_clean_room_56,"Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 50 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,34000,Output VAT,Input VAT +product.product_clean_room_57,"Single swing door 4 Frame (W) 900 x (H) 2,100 x (T) 50 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,27000,Output VAT,Input VAT +product.product_clean_room_58,"Single swing door 4 Frame (W) 900 x (H) 2,100 x (T) 50 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,34000,Output VAT,Input VAT +product.product_clean_room_59,"Combination swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,35000,Output VAT,Input VAT +product.product_clean_room_60,"Combination swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (SS/SS)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT,Input VAT +product.product_clean_room_61,"Single sliding door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,35000,Output VAT,Input VAT +product.product_clean_room_62,"Single sliding door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Stainless)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT,Input VAT +product.product_clean_room_63,"Double sliding door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,54000,Output VAT,Input VAT +product.product_clean_room_64,"Double sliding door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Stainless)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,60000,Output VAT,Input VAT +product.product_clean_room_65,"Emergency Single swing door 3 Frame (W) 900 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT,Input VAT +product.product_clean_room_66,"Emergency Double swing door 3 Frame (W) 1,800 x (H) 2,100 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,55000,Output VAT,Input VAT +product.product_clean_room_67,"Emergency Service door (Single swing) 4 Frame (W) 600 x (H) 1,000 x (T) 42 mm. (Color steel sheet)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,20000,Output VAT,Input VAT +product.product_clean_room_68,Single fixed window (Temper glass) (W) 865 x (H) 865 (T) 6 mm.,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,5500,Output VAT,Input VAT +product.product_clean_room_69,Double fixed window (Temper glass) (W) 865 x (H) 865 (T) 6 mm.,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,8000,Output VAT,Input VAT +product.product_clean_room_70,"Single fixed window (Temper glass) (W) 1,160 x (H) 900 (T) 6 mm.",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,7500,Output VAT,Input VAT +product.product_clean_room_71,"Double fixed window (Temper glass) (W) 1,160 x (H) 900 (T) 6 mm.",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,12000,Output VAT,Input VAT +product.product_clean_room_72,"Sliding window (Glass) (W) 900 x (H) 1,800 (T) 6 mm.",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,20000,Output VAT,Input VAT +product.product_clean_room_73,"Sliding window (Glass) (W) 900 x (H) 2,000 (T) 6 mm.",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,30000,Output VAT,Input VAT +product.product_clean_room_74,Aluminium beam support,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,1200,Output VAT,Input VAT +product.product_clean_room_75,Aluminium floor base,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,700,Output VAT,Input VAT +product.product_clean_room_76,Aluminium angle + PVC Curve (30 x 30),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,800,Output VAT,Input VAT +product.product_clean_room_77,Aluminium Curve,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,1200,Output VAT,Input VAT +product.product_clean_room_78,Aluminium Angle 40 x 40,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,500,Output VAT,Input VAT +product.product_clean_room_79,Opening cutting Lighting,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,1200,Output VAT,Input VAT +product.product_clean_room_80,"STD. Column Cladding (400 x 400 mm. , 4 ด้าน)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,8000,Output VAT,Input VAT +product.product_clean_room_81,"Hanging system (Ceiling beam, bracket, T-Bar)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,1500,Output VAT,Input VAT +product.product_clean_room_82,Spray paint,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,tube,tube,Periodical (manual),0,500,Output VAT,Input VAT +product.product_clean_room_83,Inter Lock 2 CH,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT,Input VAT +product.product_clean_room_84,"Silicone ""Sika"" (0.4 Tube/m2)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,tube,tube,Periodical (manual),0,200,Output VAT,Input VAT +product.product_clean_room_85,Lighting,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT,Input VAT +product.product_clean_room_86,Imbeded Conduit & Back Box,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,200,Output VAT,Input VAT +product.product_clean_room_87,"Other fitting parts (Silicone, bolt, nut & washer)",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,300,Output VAT,Input VAT +product.product_clean_room_88,Installation Clean Room with Supervisor (Bangkok and Surroudings area),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,400,Output VAT,Input VAT +product.product_clean_room_89,Installation Clean Room with Supervisor (Upcountry),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,450,Output VAT,Input VAT +product.product_clean_room_90,Installation Clean Room with Supervisor (Oversea),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT,Input VAT +product.product_clean_room_91,"Opening panel with aluminium frame for Hepa, Lighting",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,1500,Output VAT,Input VAT +product.product_clean_room_92,Hole for Sprinkle Head,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,hole,hole,Periodical (manual),0,80,Output VAT,Input VAT +product.product_clean_room_93,Demolish C/R Panel with fitting parts,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,150,Output VAT,Input VAT +product.product_clean_room_94,Demolish window glass,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,150,Output VAT,Input VAT +product.product_clean_room_95,Demolish Single swing / sliding door,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,1500,Output VAT,Input VAT +product.product_clean_room_96,Demolish Double swing / sliding door,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,1500,Output VAT,Input VAT +product.product_clean_room_97,Temporary wall,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,4000,Output VAT,Input VAT +product.product_clean_room_98,Transportation Clean RoomBangkok and Surroudings,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,7000,Output VAT,Input VAT +product.product_clean_room_99,Transportation Clean Room Upcountry,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT,Input VAT +product.product_clean_room_100,Transportation Clean Room Oversea,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT,Input VAT +product.product_clean_room_101,Miscellaneous and Overhead Cost,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT,Input VAT diff --git a/sqp_config/master/product/cold_room/product.product.csv b/sqp_config/master/product/cold_room/product.product.csv new file mode 100755 index 0000000..5ce9fa9 --- /dev/null +++ b/sqp_config/master/product/cold_room/product.product.csv @@ -0,0 +1,211 @@ +id,name,default_code,categ_id,partner_id,tag_ids,sale_ok,purchase_ok,is_one_time_use,type,procure_method,supply_method,cost_method,uom_id,uom_po_id,valuation,standard_price,list_price,taxes_id,supplier_taxes_id +product.product_cold_room_1,Wall panel (T) 50 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1540,Output VAT,Input VAT +product.product_cold_room_2,Ceiling panel (T) 50 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1600,Output VAT,Input VAT +product.product_cold_room_3,Floor panel (T) 50 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,5700,Output VAT,Input VAT +product.product_cold_room_4,Floor insulation (T) 50 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,900,Output VAT,Input VAT +product.product_cold_room_5,Room lamp (Water proof type),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,10000,Output VAT,Input VAT +product.product_cold_room_6,"Single swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,35000,Output VAT,Input VAT +product.product_cold_room_7,"Single swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT,Input VAT +product.product_cold_room_8,"Single swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,38000,Output VAT,Input VAT +product.product_cold_room_9,"Single swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,43000,Output VAT,Input VAT +product.product_cold_room_10,"Double swing door (3 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,86000,Output VAT,Input VAT +product.product_cold_room_11,"Double swing door (3 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,96000,Output VAT,Input VAT +product.product_cold_room_12,"Double swing door (4 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,96000,Output VAT,Input VAT +product.product_cold_room_13,"Double swing door (4 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,106000,Output VAT,Input VAT +product.product_cold_room_14,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,56000,Output VAT,Input VAT +product.product_cold_room_15,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,60000,Output VAT,Input VAT +product.product_cold_room_16,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,75000,Output VAT,Input VAT +product.product_cold_room_17,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,62000,Output VAT,Input VAT +product.product_cold_room_18,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,66000,Output VAT,Input VAT +product.product_cold_room_19,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,80000,Output VAT,Input VAT +product.product_cold_room_20,PVC Strip curtain,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,3500,Output VAT,Input VAT +product.product_cold_room_21,Pressure relief port,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,5000,Output VAT,Input VAT +product.product_cold_room_22,Steel base for Cold Room,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,6000,Output VAT,Input VAT +product.product_cold_room_23,"Other fitting parts (Silicone, bolt, nut, washer, rivet & etc.)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,400,Output VAT,Input VAT +product.product_cold_room_24,Floor heater with Thermostat,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT,Input VAT +product.product_cold_room_25,Wall panel (T) 75 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1900,Output VAT,Input VAT +product.product_cold_room_26,Ceiling panel (T) 75 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1900,Output VAT,Input VAT +product.product_cold_room_27,Floor panel (T) 75 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,5800,Output VAT,Input VAT +product.product_cold_room_28,Floor insulation (T) 75 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1150,Output VAT,Input VAT +product.product_cold_room_29,"Single swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,48000,Output VAT,Input VAT +product.product_cold_room_30,"Single swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,64000,Output VAT,Input VAT +product.product_cold_room_31,"Single swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,51000,Output VAT,Input VAT +product.product_cold_room_32,"Single swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,67000,Output VAT,Input VAT +product.product_cold_room_33,"Double swing door (3 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,96000,Output VAT,Input VAT +product.product_cold_room_34,"Double swing door (3 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,120000,Output VAT,Input VAT +product.product_cold_room_35,"Double swing door (4 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,102000,Output VAT,Input VAT +product.product_cold_room_36,"Double swing door (4 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,128000,Output VAT,Input VAT +product.product_cold_room_37,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,65000,Output VAT,Input VAT +product.product_cold_room_38,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,70000,Output VAT,Input VAT +product.product_cold_room_39,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,85000,Output VAT,Input VAT +product.product_cold_room_40,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,60000,Output VAT,Input VAT +product.product_cold_room_41,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,68000,Output VAT,Input VAT +product.product_cold_room_42,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,90000,Output VAT,Input VAT +product.product_cold_room_43,Wall panel (T) 100 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2200,Output VAT,Input VAT +product.product_cold_room_44,Ceiling panel (T) 100 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2200,Output VAT,Input VAT +product.product_cold_room_45,Floor panel (T) 100 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,6000,Output VAT,Input VAT +product.product_cold_room_46,Floor insulation (T) 100 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1500,Output VAT,Input VAT +product.product_cold_room_47,"Single swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,48000,Output VAT,Input VAT +product.product_cold_room_48,"Single swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,64000,Output VAT,Input VAT +product.product_cold_room_49,"Single swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,51000,Output VAT,Input VAT +product.product_cold_room_50,"Single swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,67000,Output VAT,Input VAT +product.product_cold_room_51,"Double swing door (3 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,96000,Output VAT,Input VAT +product.product_cold_room_52,"Double swing door (3 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,120000,Output VAT,Input VAT +product.product_cold_room_53,"Double swing door (4 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,102000,Output VAT,Input VAT +product.product_cold_room_54,"Double swing door (4 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,128000,Output VAT,Input VAT +product.product_cold_room_55,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,65000,Output VAT,Input VAT +product.product_cold_room_56,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,70000,Output VAT,Input VAT +product.product_cold_room_57,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,85000,Output VAT,Input VAT +product.product_cold_room_58,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,68000,Output VAT,Input VAT +product.product_cold_room_59,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,75000,Output VAT,Input VAT +product.product_cold_room_60,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,90000,Output VAT,Input VAT +product.product_cold_room_61,Wall panel (T) 125 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2600,Output VAT,Input VAT +product.product_cold_room_62,Ceiling panel (T) 125 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2600,Output VAT,Input VAT +product.product_cold_room_63,Floor panel (T) 125 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,6300,Output VAT,Input VAT +product.product_cold_room_64,Floor Insulation (T) 125 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1700,Output VAT,Input VAT +product.product_cold_room_65,"Single swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,53000,Output VAT,Input VAT +product.product_cold_room_66,"Single swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,68000,Output VAT,Input VAT +product.product_cold_room_67,"Single swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,56000,Output VAT,Input VAT +product.product_cold_room_68,"Single swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,70000,Output VAT,Input VAT +product.product_cold_room_69,"Double swing door (3 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,100000,Output VAT,Input VAT +product.product_cold_room_70,"Double swing door (3 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,130000,Output VAT,Input VAT +product.product_cold_room_71,"Double swing door (4 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,108000,Output VAT,Input VAT +product.product_cold_room_72,"Double swing door (4 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,134400,Output VAT,Input VAT +product.product_cold_room_73,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,70000,Output VAT,Input VAT +product.product_cold_room_74,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,85000,Output VAT,Input VAT +product.product_cold_room_75,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,100000,Output VAT,Input VAT +product.product_cold_room_76,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,75000,Output VAT,Input VAT +product.product_cold_room_77,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,90000,Output VAT,Input VAT +product.product_cold_room_78,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,120000,Output VAT,Input VAT +product.product_cold_room_79,Wall panel (T) 150 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2900,Output VAT,Input VAT +product.product_cold_room_80,Ceiling panel (T) 150 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2900,Output VAT,Input VAT +product.product_cold_room_81,Floor panel (T) 150 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,7000,Output VAT,Input VAT +product.product_cold_room_82,Floor Insulation (T) 150 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2100,Output VAT,Input VAT +product.product_cold_room_83,"Swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 150 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,55000,Output VAT,Input VAT +product.product_cold_room_84,"Swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 150 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,77760,Output VAT,Input VAT +product.product_cold_room_85,"Swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 150 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,59000,Output VAT,Input VAT +product.product_cold_room_86,"Swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 150 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,81000,Output VAT,Input VAT +product.product_cold_room_87,Heater for door,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,130,Output VAT,Input VAT +product.product_cold_room_88,Door hinge for Swing door (Kason) (Double),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,9750,Output VAT,Input VAT +product.product_cold_room_89,Door Latch for Swing door (Kason),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,7800,Output VAT,Input VAT +product.product_cold_room_90,Door Closer for Swing door,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,3640,Output VAT,Input VAT +product.product_cold_room_91,Door packing rubber (E : Shape),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,650,Output VAT,Input VAT +product.product_cold_room_92,Door packing rubber for Sliding door,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,780,Output VAT,Input VAT +product.product_cold_room_93,"Entrance door for Swing door Size : (W) 800 x (H) 1,800 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,26000,Output VAT,Input VAT +product.product_cold_room_94,"Entrance door for Swing door Size : (W) 1,200 x (H) 2,000 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,28600,Output VAT,Input VAT +product.product_cold_room_95,"Panel for door Size : (W) 800 x (H) 1,800 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,21060,Output VAT,Input VAT +product.product_cold_room_96,"Panel for door Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,26000,Output VAT,Input VAT +product.product_cold_room_97,"Panel for door Size : (W) 1,200 x (H) 2,000 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,24700,Output VAT,Input VAT +product.product_cold_room_98,"Panel for door Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,32500,Output VAT,Input VAT +product.product_cold_room_99,Aluminium cap for Heater,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,390,Output VAT,Input VAT +product.product_cold_room_100,Insulation bolt (n : ½) L = 110,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,104,Output VAT,Input VAT +product.product_cold_room_101,Insulation bolt (n : ½) L = 170,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,156,Output VAT,Input VAT +product.product_cold_room_102,Hanging plate with roller,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,3900,Output VAT,Input VAT +product.product_cold_room_103,Handle for sliding door (Out side),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,9100,Output VAT,Input VAT +product.product_cold_room_104,Handle for sliding door (Inside),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,7800,Output VAT,Input VAT +product.product_cold_room_105,Hinge for key,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,2600,Output VAT,Input VAT +product.product_cold_room_106,"Entrance for Sliding door Size : (W) 800 x (H) 1,800 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,26000,Output VAT,Input VAT +product.product_cold_room_107,"Entrance for Sliding door Size : (W) 1,200 x (H) 2,000 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,28600,Output VAT,Input VAT +product.product_cold_room_108,"Panel for Sliding door Size : (W) 800 x (H) 1,800 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,28600,Output VAT,Input VAT +product.product_cold_room_109,"Panel for Sliding door Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,31200,Output VAT,Input VAT +product.product_cold_room_110,"Panel for Sliding door Size : (W) 1,200 x (H) 2,000 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,31200,Output VAT,Input VAT +product.product_cold_room_111,"Panel for Sliding door Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40300,Output VAT,Input VAT +product.product_cold_room_112,"Aluminium Rail for door Size : (W) 800 x (H) 1,800 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,7150,Output VAT,Input VAT +product.product_cold_room_113,"Aluminium Rail for door Size : (W) 1,200 x (H) 2,000 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,8450,Output VAT,Input VAT +product.product_cold_room_114,Steel cover for door,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,1040,Output VAT,Input VAT +product.product_cold_room_115,Insulation Panel for Door SUS304 / SUS304 (T) 75 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,7800,Output VAT,Input VAT +product.product_cold_room_116,Insulation Panel for Door Color / Color (T) 75 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,5200,Output VAT,Input VAT +product.product_cold_room_117,Insulation Panel for Door SUS304 / SUS304 (T) 100 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,8450,Output VAT,Input VAT +product.product_cold_room_118,Insulation Panel for Door Color / Color (T) 100 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,5850,Output VAT,Input VAT +product.product_cold_room_119,Insulation Panel for Door SUS304 / SUS304 (T) 125 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,9100,Output VAT,Input VAT +product.product_cold_room_120,Insulation Panel for Door Color / Color (T) 125 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,6500,Output VAT,Input VAT +product.product_cold_room_121,Insulation Panel for Door SUS304 / SUS304 (T) 150 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,9750,Output VAT,Input VAT +product.product_cold_room_122,Insulation Panel for Door Color / Color (T) 150 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,7150,Output VAT,Input VAT +product.product_cold_room_123,Installation Cold Room Bangkok and Surroundings 0 ~ 500 m2,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,400,Output VAT,Input VAT +product.product_cold_room_124,"Installation Cold Room Bangkok and Surroundings 501~1,000 m2",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,350,Output VAT,Input VAT +product.product_cold_room_125,"Installation Cold Room Bangkok and Surroundings 1,001 m2 Up",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,300,Output VAT,Input VAT +product.product_cold_room_126,Installation Cold Room Upcountry 0 ~ 500 m2,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,450,Output VAT,Input VAT +product.product_cold_room_127,"Installation Cold Room Upcountry 501~1,000 m2",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,400,Output VAT,Input VAT +product.product_cold_room_128,"Installation Cold Room Upcountry 1,001 m2 Up",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,300,Output VAT,Input VAT +product.product_cold_room_129,Transportation Cold Room Bangkok and Surroundings,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,6500,Output VAT,Input VAT +product.product_cold_room_130,Transportation Cold Room Upcountry,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT,Input VAT +product.product_cold_room_131,Miscellaneous and Overhead Cost,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT,Input VAT +product.product_cold_room_132,Aluminium for installation,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,500,Output VAT,Input VAT +product.product_cold_room_133,Aluminium beam support,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),,1200,Output VAT,Input VAT +product.product_cold_room_134,Aluminium floor base,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),,700,Output VAT,Input VAT +product.product_cold_room_135,Aluminium angle + PVC Curve (30 x 30),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),,800,Output VAT,Input VAT +product.product_cold_room_136,Aluminium Curve,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),,1200,Output VAT,Input VAT +product.product_cold_room_137,Aluminium Angle 40 x 40,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),,500,Output VAT,Input VAT +product.product_cold_room_138,Opening cutting Lighting,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,1200,Output VAT,Input VAT +product.product_cold_room_139,"STD. Column Cladding (400 x 400 mm. , 4 ด้าน)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,8000,Output VAT,Input VAT +product.product_cold_room_140,"Hanging system (Ceiling beam, bracket, T-Bar)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),,1500,Output VAT,Input VAT +product.product_cold_room_141,Spray paint,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,tube,tube,Periodical (manual),,500,Output VAT,Input VAT +product.product_cold_room_142,Pu Chemical (Iso/Polyol),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,kg,kg,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_143,"Silicone ""Sika"" (0.4 Tube/m2)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,tube,tube,Periodical (manual),,200,Output VAT,Input VAT +product.product_cold_room_144,Lighting,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_145,Temporary wall,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,4000,Output VAT,Input VAT +product.product_cold_room_146,Demolish C/R Panel with fitting parts,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,150,Output VAT,Input VAT +product.product_cold_room_147,Demolish window glass,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,150,Output VAT,Input VAT +product.product_cold_room_148,Demolish Single swing / sliding door,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_149,Demolish Double swing / sliding door,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_150,Installation Door Cold Room (Double swing / sliding door),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_151,Installation Door Cold Room (Sing swing / sliding door),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_152,Wall panel (T) 50 mm. (Color steel sheet/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_153,Wall panel (T) 50 mm. (Galvanized/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_154,Wall panel (T) 50 mm. (Color steel sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_155,Wall panel (T) 50 mm. (Stainless sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_156,Ceiling panel (T) 50 mm. (Color steel sheet/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_157,Ceiling panel (T) 50 mm. (Galvanized/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_158,Ceiling panel (T) 50 mm. (Color steel sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_159,Ceiling panel (T) 50 mm. (Stainless sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_160,"Floor panel (T) 50 mm. (Plywood(T)10mm.,Aluminium checker plate (T)2.5mm.)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,5700,Output VAT,Input VAT +product.product_cold_room_161,"Floor panel (T) 50 mm. (Plywood(T)10mm.,Stainless checker plate (T)2.5mm.)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_162,Wall panel (T) 75 mm. (Color steel sheet/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_163,Wall panel (T) 75 mm. (Galvanized/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_164,Wall panel (T) 75 mm. (Color steel sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_165,Wall panel (T) 75 mm. (Stainless sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_166,Ceiling panel (T) 75 mm. (Color steel sheet/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_167,Ceiling panel (T) 75 mm. (Galvanized/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_168,Ceiling panel (T) 75 mm. (Color steel sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_169,Ceiling panel (T) 75 mm. (Stainless sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_170,"Floor panel (T) 75 mm. (Plywood(T)10mm.,Aluminium checker plate (T)2.5mm.)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,5800,Output VAT,Input VAT +product.product_cold_room_171,"Floor panel (T) 75 mm. (Plywood(T)10mm.,Stainless checker plate (T)2.5mm.)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_172,Wall panel (T) 100 mm. (Color steel sheet/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_173,Wall panel (T) 100 mm. (Galvanized/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_174,Wall panel (T) 100 mm. (Color steel sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_175,Wall panel (T) 100 mm. (Stainless sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_176,Ceiling panel (T) 100 mm. (Color steel sheet/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_177,Ceiling panel (T) 100 mm. (Galvanized/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_178,Ceiling panel (T) 100 mm. (Color steel sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_179,Ceiling panel (T) 100 mm. (Stainless sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_180,"Floor panel (T) 100 mm. (Plywood(T)10mm.,Aluminium checker plate (T)2.5mm.)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,6000,Output VAT,Input VAT +product.product_cold_room_181,"Floor panel (T) 100 mm. (Plywood(T)10mm.,Stainless checker plate (T)2.5mm.)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_182,Wall panel (T) 125 mm. (Color steel sheet/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_183,Wall panel (T) 125 mm. (Galvanized/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_184,Wall panel (T) 125 mm. (Color steel sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_185,Wall panel (T) 125 mm. (Stainless sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_186,Ceiling panel (T) 125 mm. (Color steel sheet/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_187,Ceiling panel (T) 125 mm. (Galvanized/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_188,Ceiling panel (T) 125 mm. (Color steel sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_189,Ceiling panel (T) 125 mm. (Stainless sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_190,"Floor panel (T) 125 mm. (Plywood(T)10mm.,Aluminium checker plate (T)2.5mm.)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,6300,Output VAT,Input VAT +product.product_cold_room_191,"Floor panel (T) 125 mm. (Plywood(T)10mm.,Stainless checker plate (T)2.5mm.)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_192,Wall panel (T) 150 mm. (Color steel sheet/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_193,Wall panel (T) 150 mm. (Galvanized/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_194,Wall panel (T) 150 mm. (Color steel sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_195,Wall panel (T) 150 mm. (Stainless sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_196,Ceiling panel (T) 150 mm. (Color steel sheet/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_197,Ceiling panel (T) 150 mm. (Galvanized/Galvanized),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_198,Ceiling panel (T) 150 mm. (Color steel sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_199,Ceiling panel (T) 150 mm. (Stainless sheet/Stainless sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_200,"Floor panel (T) 150 mm. (Plywood(T)10mm.,Aluminium checker plate (T)2.5mm.)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,7000,Output VAT,Input VAT +product.product_cold_room_201,"Floor panel (T) 150 mm. (Plywood(T)10mm.,Stainless checker plate (T)2.5mm.)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_202,Handle for swing door ,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_203,"Mobile Cold Room 1Door (T)100mm. Size:(W) 1,100 x (L) 1,015 x (H) 1,600 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_204,"Mobile Cold Room 1Door (T)100mm. Size:(W) 1,100 x (L) 1,015 x (H) 2,000 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_205,"Mobile Cold Room 2Door (T)100mm. Size:(W) 1,100 x (L) 1,830 x (H) 1,600 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_206,"Mobile Cold Room 2Door (T)100mm. Size:(W) 1,100 x (L) 1,830 x (H) 2,000 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_207,"Mobile Cold Room 3Door (T)100mm. Size:(W) 1,100 x (L) 2,650 x (H) 1,600 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_208,"Mobile Cold Room 3Door (T)100mm. Size:(W) 1,100 x (L) 2,650 x (H) 2,000 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_209,Fix Window Glass with Heater,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),,0,Output VAT,Input VAT +product.product_cold_room_210,Color steel sheet (T) 0.50mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),,0,Output VAT,Input VAT diff --git a/sqp_config/master/product/cold_room/product.product.csv.old b/sqp_config/master/product/cold_room/product.product.csv.old new file mode 100755 index 0000000..04d278f --- /dev/null +++ b/sqp_config/master/product/cold_room/product.product.csv.old @@ -0,0 +1,132 @@ +id,name,default_code,categ_id,partner_id,tag_ids,sale_ok,purchase_ok,is_one_time_use,type,procure_method,supply_method,cost_method,uom_id,uom_po_id,valuation,standard_price,list_price,taxes_id,supplier_taxes_id +product.product_cold_room_1,Wall panel (T) 50 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1540,Output VAT,Input VAT +product.product_cold_room_2,Ceiling panel (T) 50 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1600,Output VAT,Input VAT +product.product_cold_room_3,Floor panel (T) 50 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,5700,Output VAT,Input VAT +product.product_cold_room_4,Floor insulation (T) 50 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,900,Output VAT,Input VAT +product.product_cold_room_5,Room lamp (Water proof type),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,10000,Output VAT,Input VAT +product.product_cold_room_6,"Single swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,35000,Output VAT,Input VAT +product.product_cold_room_7,"Single swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT,Input VAT +product.product_cold_room_8,"Single swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,38000,Output VAT,Input VAT +product.product_cold_room_9,"Single swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,43000,Output VAT,Input VAT +product.product_cold_room_10,"Double swing door (3 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,86000,Output VAT,Input VAT +product.product_cold_room_11,"Double swing door (3 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,96000,Output VAT,Input VAT +product.product_cold_room_12,"Double swing door (4 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,96000,Output VAT,Input VAT +product.product_cold_room_13,"Double swing door (4 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,106000,Output VAT,Input VAT +product.product_cold_room_14,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,56000,Output VAT,Input VAT +product.product_cold_room_15,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,60000,Output VAT,Input VAT +product.product_cold_room_16,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,75000,Output VAT,Input VAT +product.product_cold_room_17,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,62000,Output VAT,Input VAT +product.product_cold_room_18,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,66000,Output VAT,Input VAT +product.product_cold_room_19,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,80000,Output VAT,Input VAT +product.product_cold_room_20,PVC Strip curtain,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,3500,Output VAT,Input VAT +product.product_cold_room_21,Pressure relief port,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,5000,Output VAT,Input VAT +product.product_cold_room_22,Steel base for Cold Room,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,6000,Output VAT,Input VAT +product.product_cold_room_23,"Other fitting parts (Silicone, bolt, nut, washer, rivet & etc.)",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,400,Output VAT,Input VAT +product.product_cold_room_24,Floor heater with Thermostat,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT,Input VAT +product.product_cold_room_25,Wall panel (T) 75 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1900,Output VAT,Input VAT +product.product_cold_room_26,Ceiling panel (T) 75 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1900,Output VAT,Input VAT +product.product_cold_room_27,Floor panel (T) 75 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,5800,Output VAT,Input VAT +product.product_cold_room_28,Floor insulation (T) 75 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1150,Output VAT,Input VAT +product.product_cold_room_29,"Single swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,48000,Output VAT,Input VAT +product.product_cold_room_30,"Single swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,64000,Output VAT,Input VAT +product.product_cold_room_31,"Single swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,51000,Output VAT,Input VAT +product.product_cold_room_32,"Single swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,67000,Output VAT,Input VAT +product.product_cold_room_33,"Double swing door (3 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,96000,Output VAT,Input VAT +product.product_cold_room_34,"Double swing door (3 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,120000,Output VAT,Input VAT +product.product_cold_room_35,"Double swing door (4 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,102000,Output VAT,Input VAT +product.product_cold_room_36,"Double swing door (4 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,128000,Output VAT,Input VAT +product.product_cold_room_37,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,65000,Output VAT,Input VAT +product.product_cold_room_38,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,70000,Output VAT,Input VAT +product.product_cold_room_39,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,85000,Output VAT,Input VAT +product.product_cold_room_40,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,60000,Output VAT,Input VAT +product.product_cold_room_41,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,68000,Output VAT,Input VAT +product.product_cold_room_42,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,90000,Output VAT,Input VAT +product.product_cold_room_43,Wall panel (T) 100 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2200,Output VAT,Input VAT +product.product_cold_room_44,Ceiling panel (T) 100 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2200,Output VAT,Input VAT +product.product_cold_room_45,Floor panel (T) 100 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,6000,Output VAT,Input VAT +product.product_cold_room_46,Floor insulation (T) 100 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1500,Output VAT,Input VAT +product.product_cold_room_47,"Single swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,48000,Output VAT,Input VAT +product.product_cold_room_48,"Single swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,64000,Output VAT,Input VAT +product.product_cold_room_49,"Single swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,51000,Output VAT,Input VAT +product.product_cold_room_50,"Single swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,67000,Output VAT,Input VAT +product.product_cold_room_51,"Double swing door (3 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,96000,Output VAT,Input VAT +product.product_cold_room_52,"Double swing door (3 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,120000,Output VAT,Input VAT +product.product_cold_room_53,"Double swing door (4 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,102000,Output VAT,Input VAT +product.product_cold_room_54,"Double swing door (4 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,128000,Output VAT,Input VAT +product.product_cold_room_55,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,65000,Output VAT,Input VAT +product.product_cold_room_56,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,70000,Output VAT,Input VAT +product.product_cold_room_57,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,85000,Output VAT,Input VAT +product.product_cold_room_58,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,68000,Output VAT,Input VAT +product.product_cold_room_59,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,75000,Output VAT,Input VAT +product.product_cold_room_60,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,90000,Output VAT,Input VAT +product.product_cold_room_61,Wall panel (T) 125 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2600,Output VAT,Input VAT +product.product_cold_room_62,Ceiling panel (T) 125 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2600,Output VAT,Input VAT +product.product_cold_room_63,Floor panel (T) 125 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,6300,Output VAT,Input VAT +product.product_cold_room_64,Floor Insulation (T) 125 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,1700,Output VAT,Input VAT +product.product_cold_room_65,"Single swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,53000,Output VAT,Input VAT +product.product_cold_room_66,"Single swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,68000,Output VAT,Input VAT +product.product_cold_room_67,"Single swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,56000,Output VAT,Input VAT +product.product_cold_room_68,"Single swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,70000,Output VAT,Input VAT +product.product_cold_room_69,"Double swing door (3 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,100000,Output VAT,Input VAT +product.product_cold_room_70,"Double swing door (3 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,130000,Output VAT,Input VAT +product.product_cold_room_71,"Double swing door (4 Frame) Size : (W) 1,600 x (H) 1,800 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,108000,Output VAT,Input VAT +product.product_cold_room_72,"Double swing door (4 Frame) Size : (W) 2,400 x (H) 2,000 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,134400,Output VAT,Input VAT +product.product_cold_room_73,"Sliding door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,70000,Output VAT,Input VAT +product.product_cold_room_74,"Sliding door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,85000,Output VAT,Input VAT +product.product_cold_room_75,"Sliding door (3 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,100000,Output VAT,Input VAT +product.product_cold_room_76,"Sliding door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,75000,Output VAT,Input VAT +product.product_cold_room_77,"Sliding door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,90000,Output VAT,Input VAT +product.product_cold_room_78,"Sliding door (4 Frame) Size : (W) 2,400 x (H) 2,400 x (T) 125 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,120000,Output VAT,Input VAT +product.product_cold_room_79,Wall panel (T) 150 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2900,Output VAT,Input VAT +product.product_cold_room_80,Ceiling panel (T) 150 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2900,Output VAT,Input VAT +product.product_cold_room_81,Floor panel (T) 150 mm. (Color steel sheet/Color steel sheet),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,7000,Output VAT,Input VAT +product.product_cold_room_82,Floor Insulation (T) 150 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2100,Output VAT,Input VAT +product.product_cold_room_83,"Swing door (3 Frame) Size : (W) 800 x (H) 1,800 x (T) 150 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,55000,Output VAT,Input VAT +product.product_cold_room_84,"Swing door (3 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 150 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,77760,Output VAT,Input VAT +product.product_cold_room_85,"Swing door (4 Frame) Size : (W) 800 x (H) 1,800 x (T) 150 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,59000,Output VAT,Input VAT +product.product_cold_room_86,"Swing door (4 Frame) Size : (W) 1,200 x (H) 2,000 x (T) 150 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,81000,Output VAT,Input VAT +product.product_cold_room_87,Heater for door,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,130,Output VAT,Input VAT +product.product_cold_room_88,Door hinge for Swing door (Kason) (Double),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,9750,Output VAT,Input VAT +product.product_cold_room_89,Door Latch for Swing door (Kason),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,7800,Output VAT,Input VAT +product.product_cold_room_90,Door Closer for Swing door,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,3640,Output VAT,Input VAT +product.product_cold_room_91,Door packing rubber (E : Shape),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,650,Output VAT,Input VAT +product.product_cold_room_92,Door packing rubber for Sliding door,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,780,Output VAT,Input VAT +product.product_cold_room_93,"Entrance door for Swing door Size : (W) 800 x (H) 1,800 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,26000,Output VAT,Input VAT +product.product_cold_room_94,"Entrance door for Swing door Size : (W) 1,200 x (H) 2,000 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,28600,Output VAT,Input VAT +product.product_cold_room_95,"Panel for door Size : (W) 800 x (H) 1,800 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,21060,Output VAT,Input VAT +product.product_cold_room_96,"Panel for door Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,26000,Output VAT,Input VAT +product.product_cold_room_97,"Panel for door Size : (W) 1,200 x (H) 2,000 x (T) 50 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,24700,Output VAT,Input VAT +product.product_cold_room_98,"Panel for door Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,32500,Output VAT,Input VAT +product.product_cold_room_99,Aluminium cap for Heater,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,390,Output VAT,Input VAT +product.product_cold_room_100,Insulation bolt (n : ½) L = 110,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,104,Output VAT,Input VAT +product.product_cold_room_101,Insulation bolt (n : ½) L = 170,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,156,Output VAT,Input VAT +product.product_cold_room_102,Hanging plate with roller,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,3900,Output VAT,Input VAT +product.product_cold_room_103,Handle for sliding door (Out side),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,9100,Output VAT,Input VAT +product.product_cold_room_104,Handle for sliding door (Inside),,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,7800,Output VAT,Input VAT +product.product_cold_room_105,Hinge for key,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,2600,Output VAT,Input VAT +product.product_cold_room_106,"Entrance for Sliding door Size : (W) 800 x (H) 1,800 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,26000,Output VAT,Input VAT +product.product_cold_room_107,"Entrance for Sliding door Size : (W) 1,200 x (H) 2,000 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,28600,Output VAT,Input VAT +product.product_cold_room_108,"Panel for Sliding door Size : (W) 800 x (H) 1,800 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,28600,Output VAT,Input VAT +product.product_cold_room_109,"Panel for Sliding door Size : (W) 800 x (H) 1,800 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,31200,Output VAT,Input VAT +product.product_cold_room_110,"Panel for Sliding door Size : (W) 1,200 x (H) 2,000 x (T) 75 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,31200,Output VAT,Input VAT +product.product_cold_room_111,"Panel for Sliding door Size : (W) 1,200 x (H) 2,000 x (T) 100 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40300,Output VAT,Input VAT +product.product_cold_room_112,"Aluminium Rail for door Size : (W) 800 x (H) 1,800 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,7150,Output VAT,Input VAT +product.product_cold_room_113,"Aluminium Rail for door Size : (W) 1,200 x (H) 2,000 mm.",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,8450,Output VAT,Input VAT +product.product_cold_room_114,Steel cover for door,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,1040,Output VAT,Input VAT +product.product_cold_room_115,Insulation Panel for Door SUS304 / SUS304 (T) 75 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,7800,Output VAT,Input VAT +product.product_cold_room_116,Insulation Panel for Door Color / Color (T) 75 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,5200,Output VAT,Input VAT +product.product_cold_room_117,Insulation Panel for Door SUS304 / SUS304 (T) 100 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,8450,Output VAT,Input VAT +product.product_cold_room_118,Insulation Panel for Door Color / Color (T) 100 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,5850,Output VAT,Input VAT +product.product_cold_room_119,Insulation Panel for Door SUS304 / SUS304 (T) 125 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,9100,Output VAT,Input VAT +product.product_cold_room_120,Insulation Panel for Door Color / Color (T) 125 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,6500,Output VAT,Input VAT +product.product_cold_room_121,Insulation Panel for Door SUS304 / SUS304 (T) 150 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,9750,Output VAT,Input VAT +product.product_cold_room_122,Insulation Panel for Door Color / Color (T) 150 mm.,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,7150,Output VAT,Input VAT +product.product_cold_room_123,Installation Cold Room Bangkok and Surroundings 0 ~ 500 m2,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,400,Output VAT,Input VAT +product.product_cold_room_124,"Installation Cold Room Bangkok and Surroundings 501~1,000 m2",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,350,Output VAT,Input VAT +product.product_cold_room_125,"Installation Cold Room Bangkok and Surroundings 1,001 m2 Up",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,300,Output VAT,Input VAT +product.product_cold_room_126,Installation Cold Room Upcountry 0 ~ 500 m2,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,450,Output VAT,Input VAT +product.product_cold_room_127,"Installation Cold Room Upcountry 501~1,000 m2",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,400,Output VAT,Input VAT +product.product_cold_room_128,"Installation Cold Room Upcountry 1,001 m2 Up",,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,300,Output VAT,Input VAT +product.product_cold_room_129,Transportation Cold Room Bangkok and Surroundings,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,6500,Output VAT,Input VAT +product.product_cold_room_130,Transportation Cold Room Upcountry,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT,Input VAT +product.product_cold_room_131,Miscellaneous and Overhead Cost,,Non-Standard,,Cold Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT,Input VAT diff --git a/sqp_config/master/product/expense/product.product.csv b/sqp_config/master/product/expense/product.product.csv new file mode 100755 index 0000000..bd9ef61 --- /dev/null +++ b/sqp_config/master/product/expense/product.product.csv @@ -0,0 +1,119 @@ +"id","name","default_code","categ_id","partner_id","tag_ids","hr_expense_ok","sale_ok","purchase_ok","is_one_time_use","type","procure_method","supply_method","cost_method","uom_id","uom_po_id","valuation","standard_price","list_price","taxes_id","supplier_taxes_id","property_account_income","property_account_expense","use_suspend_account" +"product.product_expense_1","เบี้ยเลี้ยงพนักงานขนส่ง - โรงงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500451,500451,TRUE +"product.product_expense_2","เบี้ยเลี้ยงพนักงานอื่นๆ - โรงงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500450,500450,TRUE +"product.product_expense_3","ค่าเบี้ยเลี้ยง - Install",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501160,501160,TRUE +"product.product_expense_4","ค่าเบี้ยเลี้ยงแผนกอื่นๆ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501440,501440,TRUE +"product.product_expense_5","ค่าทางด่วน/ค่าที่จอดรถ - โรงงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500525,500525,TRUE +"product.product_expense_6","ค่าทางด่วน - สำนักงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501430,501430,TRUE +"product.product_expense_7","ค่าที่จอดรถ/ค่าข้ามแพ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501440,501440,TRUE +"product.product_expense_8","ค่าที่พักพนักงานทำงานนอกโรงงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500525,500525,TRUE +"product.product_expense_9","ค่าที่พักพนักงานไปทำงานหน้างาน - สำนักงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501440,501440,TRUE +"product.product_expense_10","ค่าปรับตำรวจ",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",502170,502170,TRUE +"product.product_expense_11","ค่าธรรมเนียมเก็บขนมูลฝอย/ขนถ่ายสิ่งปฏิกูล - โรงงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500520,500520,TRUE +"product.product_expense_12","ค่าธรรมเนียมเก็บขนมูลฝอย/ขนถ่ายสิ่งปฏิกูล - สำนักงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",502190,502190,TRUE +"product.product_expense_13","ค่าไปรษณีย์/ค่าอากรแสตมป์ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501260,501260,TRUE +"product.product_expense_14","เงินทดรองจ่าย - โรงงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",100630,100630,TRUE +"product.product_expense_15","เงินทดรองจ่าย - เดินทางไปต่างประเทศ",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",100630,100630,TRUE +"product.product_expense_16","เงินทดรองจ่าย - เดินทางภายในประเทศ",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",100630,100630,TRUE +"product.product_expense_17","เงินทดรองจ่าย - รับรองลูกค้า",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",100630,100630,TRUE +"product.product_expense_18","เงินทดรองจ่าย - กรรมการ",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",100630,100630,TRUE +"product.product_expense_19","เงินทดรองจ่าย - อื่นๆ",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",100630,100630,TRUE +"product.product_expense_20","ค่าแท็กซี่ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501420,501420,TRUE +"product.product_expense_21","ค่าอาหารและเครื่องดื่มรับรองลูกค้า",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501330,501330,TRUE +"product.product_expense_22","ค่าของขวัญให้ลูกค้า ",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501330,501330,TRUE +"product.product_expense_23","ค่าธรรมเนียมการขอวีซ่าและหนังสือเดินทาง",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501440,501440,TRUE +"product.product_expense_24","ค่าสมาชิก/ค่าบำรุงสมาคม ",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",502130,502130,TRUE +"product.product_expense_25","ค่าธรรมเนียมการขอหนังสือรับรองและเอกสารต่างๆ",,"Expenses",,,"TRUE","FALSE","FALSE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",502130,502130,TRUE +"product.product_expense_26","ค่ารับรองอื่นๆ ",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501330,501330,TRUE +"product.product_expense_27","ค่าใช้จ่ายเดินทางอื่นๆ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500525,500525,TRUE +"product.product_expense_28","ค่าใช้จ่ายเดินทางอื่นๆ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501440,501440,TRUE +"product.product_expense_29","ค่าตั๋วเครื่องบิน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501440,501440,TRUE +"product.product_expense_30","ค่าน้ำมันรถ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500525,500525,TRUE +"product.product_expense_31","ค่าน้ำมันรถ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501410,501410,TRUE +"product.product_expense_32","ค่าน้ำมันรถโฟล์คลิฟท์/เครื่องตัดหญ้า",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500599,500599,TRUE +"product.product_expense_33","ค่าแก๊ส",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500510,500510,TRUE +"product.product_expense_34","ค่ารถตู้ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501420,501420,TRUE +"product.product_expense_35","ค่าซ่อมแซมบำรุงรักษา/คชจ.อื่นๆเกี่ยวกับยานพาหนะ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500526,500526,TRUE +"product.product_expense_36","ค่าซ่อมแซมบำรุงรักษา/คชจ.อื่นๆเกี่ยวกับยานพาหนะ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501670,501670,TRUE +"product.product_expense_37","ค่าประกันภัย/ค่าพ.ร.บ.ยานพาหนะ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500527,500527,TRUE +"product.product_expense_38","ค่าต่อทะเบียนรถยนต์ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500528,500528,TRUE +"product.product_expense_39","ค่าประกันภัย/ค่าพ.ร.บ.ยานพาหนะ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501450,501450,TRUE +"product.product_expense_40","ค่าต่อทะเบียนรถยนต์ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501460,501460,TRUE +"product.product_expense_41","ค่าภาษีโรงเรือน-ที่ดินและภาษีป้าย - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500592,500592,TRUE +"product.product_expense_42","ค่าธรรมเนียมใบอนุญาตโรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500593,500593,TRUE +"product.product_expense_43","ค่ารักษาความปลอดภัย - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500595,500595,TRUE +"product.product_expense_44","ค่ารักษาความปลอดภัย - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501291,501291,TRUE +"product.product_expense_45","ค่าใช้จ่ายวิจัยและพัฒนา",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500594,500594,TRUE +"product.product_expense_46","ค่ายาและค่ารักษาพยาบาลพนักงาน - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500453,500453,TRUE +"product.product_expense_47","ค่ายาและค่ารักษาพยาบาลพนักงาน - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501133,501133,TRUE +"product.product_expense_48","ค่าประกันภัยพนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501150,501150,TRUE +"product.product_expense_49","ค่าตรวจสุขภาพพนักงาน - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500454,500454,TRUE +"product.product_expense_50","ค่าตรวจสุขภาพพนักงาน - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501132,501132,TRUE +"product.product_expense_51","ค่าเสื้อพนักงาน - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500454,500454,TRUE +"product.product_expense_52","ค่าเสื้อพนักงาน - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501132,501132,TRUE +"product.product_expense_53","ค่าชดเชยพนักงาน - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500454,500454,TRUE +"product.product_expense_54","ค่าชดเชยพนักงาน - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501132,501132,TRUE +"product.product_expense_55","ค่าสวัสดิการพนักงานอื่นๆ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500454,500454,TRUE +"product.product_expense_56","ค่าสวัสดิการพนักงานอื่นๆ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501132,501132,TRUE +"product.product_expense_57","ค่าใช้จ่ายสำหรับพนักงานอื่นๆ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500452,500452,TRUE +"product.product_expense_58","ค่าใช้จ่ายสำหรับพนักงานอื่นๆ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501160,501160,TRUE +"product.product_expense_59","ค่าน้ำประปา - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500522,500522,TRUE +"product.product_expense_60","ค่าไฟฟ้า - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500521,500521,TRUE +"product.product_expense_61","ค่าโทรศัพท์และโทรสาร - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500523,500523,TRUE +"product.product_expense_62","ค่าเช่า - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500524,500524,TRUE +"product.product_expense_63","ค่าน้ำประปา - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501240,501240,TRUE +"product.product_expense_64","ค่าไฟฟ้า - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501230,501230,TRUE +"product.product_expense_65","ค่าโทรศัพท์ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501210,501210,TRUE +"product.product_expense_66","ค่าโทรสาร - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501220,501220,TRUE +"product.product_expense_67","ค่าเช่า - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501250,501250,TRUE +"product.product_expense_68","ค่าถ่ายเอกสาร/ค่าบริการ Internet /ค่า Leased Line",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",502140,502140,TRUE +"product.product_expense_69","ค่าใช้จ่ายเกี่ยวกับจัดหาบุคคลากร",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501290,501290,TRUE +"product.product_expense_70","ค่าใช้จ่ายในการอบรมและสัมมนา",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501290,501290,TRUE +"product.product_expense_71","ค่ากาแฟ/น้ำดื่มและค่าใช้จ่ายเบ็ดเตล็ดอื่นๆ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500599,500599,TRUE +"product.product_expense_72","ค่ากาแฟ/น้ำดื่มและค่าใช้จ่ายเบ็ดเตล็ดอื่นๆ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",502190,502190,TRUE +"product.product_expense_73","ค่าจ้างเหมา/ค่าแรงติดตั้ง",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500414,500414,TRUE +"product.product_expense_74","ค่าจ้างทำของ",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500415,500415,TRUE +"product.product_expense_75","ค่าจ้างรถขนส่งสินค้าให้ลูกค้า",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500591,500591,TRUE +"product.product_expense_76","ค่าขนส่งสินค้าจาก Supplier",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500221,500221,TRUE +"product.product_expense_77","ค่าพาเลทไม้",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500590,500590,TRUE +"product.product_expense_78","ค่าวัสดุสิ้นเปลือง - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500590,500590,TRUE +"product.product_expense_79","ค่าใช้จ่ายในการผลิตอื่นๆ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500599,500599,TRUE +"product.product_expense_80","ค่าวัสดุสิ้นเปลือง - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501280,501280,TRUE +"product.product_expense_81","ค่าวัสดุ/ค่าใช้จ่ายที่ Install จ่ายหรือจัดซื้อหน้างาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500590,500590,TRUE +"product.product_expense_82","ค่าวัสดุสำหรับงานตัวอย่าง",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500594,500594,TRUE +"product.product_expense_83","ค่าซ่อมแซมและบำรุงรักษาเครื่องจักร",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500530,500530,TRUE +"product.product_expense_84","ค่าซ่อมแซมและบำรุงรักษาเครื่องมือเครื่องใช้ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500540,500540,TRUE +"product.product_expense_85","ค่าซ่อมแซมและบำรุงรักษาคอมพิวเตอร์ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500540,500540,TRUE +"product.product_expense_86","ค่าซ่อมแซมและบำรุงรักษาอาคาร",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501620,501620,TRUE +"product.product_expense_87","ค่าซ่อมแซมและบำรุงรักษาเครื่องใช้สำนักงาน - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501630,501630,TRUE +"product.product_expense_88","ค่าซ่อมแซมและบำรุงรักษาเครื่องตกแต่งและติดตั้ง",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501640,501640,TRUE +"product.product_expense_89","ค่าวัสดุสิ้นเปลือง/อุปกรณ์ต่อพ่วงคอมพิวเตอร์ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500590,500590,TRUE +"product.product_expense_90","ค่าเครื่องเขียนและแบบพิมพ์ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500596,500596,TRUE +"product.product_expense_91","ค่ากระดาษ - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500596,500596,TRUE +"product.product_expense_92","ค่าหมึก Printer / Fax - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500596,500596,TRUE +"product.product_expense_93","ค่าเครื่องเขียนและแบบพิมพ์ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501270,501270,TRUE +"product.product_expense_94","ค่ากระดาษ - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501270,501270,TRUE +"product.product_expense_95","ค่าหมึก Printer / Fax - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501270,501270,TRUE +"product.product_expense_96","ค่าโฆษณา/คชจ.ในการออกบูธ/คชจ.อื่นๆในการส่งเสริมการขาย",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501320,501320,TRUE +"product.product_expense_97","ค่าบริการการขาย/ค่านายหน้าในการขาย",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501310,501310,TRUE +"product.product_expense_98","ค่าธรรมเนียมธนาคาร/คชจ.อื่นๆเกี่ยวกับธนาคาร",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",502120,502120,TRUE +"product.product_expense_99","ค่าธรรมเนียมวิชาชีพ",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501510,501510,TRUE +"product.product_expense_100","ค่าที่ปรึกษา",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501511,501511,TRUE +"product.product_expense_101","ค่าทนายความ",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501512,501512,TRUE +"product.product_expense_102","ค่าสอบบัญชี",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",502110,502110,TRUE +"product.product_expense_103","ค่าทำบัญชี",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",502111,502111,TRUE +"product.product_expense_104","ค่าประกันอัคคีภัย",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501292,501292,TRUE +"product.product_expense_105","ค่าภาษี ภ.ง.ด. 1 - โรงงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",201470,201470,TRUE +"product.product_expense_106","ค่าภาษี ภ.ง.ด. 1 - สำนักงาน",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",201470,201470,TRUE +"product.product_expense_107","ค่าภาษี ภ.ง.ด. 3 ",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",201470,201470,TRUE +"product.product_expense_108","ค่าภาษี ภ.ง.ด. 53",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",201470,201470,TRUE +"product.product_expense_109","ค่าเบี้ยปรับเงินเพิ่ม",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",502150,502150,TRUE +"product.product_expense_110","ดอกเบี้ยจ่าย",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",503110,503110,TRUE +"product.product_expense_111","ดอกเบี้ยเบิกเกินบัญชีธนาคาร",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",503111,503111,TRUE +"product.product_expense_112","ดอกเบี้ยเงินกู้ธนาคาร",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",503112,503112,TRUE +"product.product_expense_113","ค่าเงินบริจาค",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501840,501840,TRUE +"product.product_expense_114","ค่าอากรขาเข้า",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500225,500225,TRUE +"product.product_expense_115","ค่าใช้จ่ายในการนำเข้า",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",500224,500224,TRUE +"product.product_expense_116","ค่าใช้จ่ายในการส่งออก",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501340,501340,TRUE +"product.product_expense_117","ค่า Freight Charge",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501342,501342,TRUE +"product.product_expense_118","ค่าประกันภัยสินค้าส่งออก",,"Expenses",,,"TRUE","FALSE","TRUE","FALSE","Service","Make to Stock","Buy","Standard Price","EA","EA","Periodical (manual)",0,0,"Output VAT 7%","Input VAT",501344,501344,TRUE diff --git a/sqp_config/master/product/export/product.pricelist.csv b/sqp_config/master/product/export/product.pricelist.csv new file mode 100755 index 0000000..2c52636 --- /dev/null +++ b/sqp_config/master/product/export/product.pricelist.csv @@ -0,0 +1,2 @@ +id,company_id/id,currency_id/id,name,type +pricelist_export_usd,,base.USD,Price Export,sale diff --git a/sqp_config/master/product/export/product.pricelist.version.csv b/sqp_config/master/product/export/product.pricelist.version.csv new file mode 100755 index 0000000..8e94f38 --- /dev/null +++ b/sqp_config/master/product/export/product.pricelist.version.csv @@ -0,0 +1,47 @@ +id,name,pricelist_id/id,items_id/name,items_id/product_id/id,items_id/base,items_id/price_discount,items_id/price_surcharge +pricelist_export_usd_v1,Export USD Version 1,pricelist_export_usd,pricelist_export_usd_v1_prod_1,product.product_export_1,1,-1,85.5 +,,,pricelist_export_usd_v1_prod_2,product.product_export_2,1,-1,17 +,,,pricelist_export_usd_v1_prod_3,product.product_export_3,1,-1,91 +,,,pricelist_export_usd_v1_prod_4,product.product_export_4,1,-1,25 +,,,pricelist_export_usd_v1_prod_5,product.product_export_5,1,-1,1100 +,,,pricelist_export_usd_v1_prod_6,product.product_export_6,1,-1,1350 +,,,pricelist_export_usd_v1_prod_7,product.product_export_7,1,-1,280 +,,,pricelist_export_usd_v1_prod_8,product.product_export_8,1,-1,350 +,,,pricelist_export_usd_v1_prod_9,product.product_export_9,1,-1,10 +,,,pricelist_export_usd_v1_prod_10,product.product_export_10,1,-1,5 +,,,pricelist_export_usd_v1_prod_11,product.product_export_11,1,-1,10 +,,,pricelist_export_usd_v1_prod_12,product.product_export_12,1,-1,0 +,,,pricelist_export_usd_v1_prod_13,product.product_export_13,1,-1,0 +,,,pricelist_export_usd_v1_prod_14,product.product_export_14,1,-1,45 +,,,pricelist_export_usd_v1_prod_15,product.product_export_15,1,-1,32 +,,,pricelist_export_usd_v1_prod_16,product.product_export_16,1,-1,25 +,,,pricelist_export_usd_v1_prod_17,product.product_export_17,1,-1,20 +,,,pricelist_export_usd_v1_prod_18,product.product_export_18,1,-1,900 +,,,pricelist_export_usd_v1_prod_19,product.product_export_19,1,-1,1350 +,,,pricelist_export_usd_v1_prod_20,product.product_export_20,1,-1,260 +,,,pricelist_export_usd_v1_prod_21,product.product_export_21,1,-1,550 +,,,pricelist_export_usd_v1_prod_22,product.product_export_22,1,-1,400 +,,,pricelist_export_usd_v1_prod_23,product.product_export_23,1,-1,400 +,,,pricelist_export_usd_v1_prod_24,product.product_export_24,1,-1,650 +,,,pricelist_export_usd_v1_prod_25,product.product_export_25,1,-1,550 +,,,pricelist_export_usd_v1_prod_26,product.product_export_26,1,-1,115 +,,,pricelist_export_usd_v1_prod_27,product.product_export_27,1,-1,160 +,,,pricelist_export_usd_v1_prod_28,product.product_export_28,1,-1,10 +,,,pricelist_export_usd_v1_prod_29,product.product_export_29,1,-1,10 +,,,pricelist_export_usd_v1_prod_30,product.product_export_30,1,-1,10 +,,,pricelist_export_usd_v1_prod_31,product.product_export_31,1,-1,64 +,,,pricelist_export_usd_v1_prod_32,product.product_export_32,1,-1,800 +,,,pricelist_export_usd_v1_prod_33,product.product_export_33,1,-1,1200 +,,,pricelist_export_usd_v1_prod_34,product.product_export_34,1,-1,10 +,,,pricelist_export_usd_v1_prod_35,product.product_export_35,1,-1,10 +,,,pricelist_export_usd_v1_prod_36,product.product_export_36,1,-1,0 +,,,pricelist_export_usd_v1_prod_37,product.product_export_37,1,-1,0 +,,,pricelist_export_usd_v1_prod_38,product.product_export_38,1,-1,81.5 +,,,pricelist_export_usd_v1_prod_39,product.product_export_39,1,-1,81.5 +,,,pricelist_export_usd_v1_prod_40,product.product_export_40,1,-1,152.5 +,,,pricelist_export_usd_v1_prod_41,product.product_export_41,1,-1,1360 +,,,pricelist_export_usd_v1_prod_42,product.product_export_42,1,-1,2450 +,,,pricelist_export_usd_v1_prod_43,product.product_export_43,1,-1,400 +,,,pricelist_export_usd_v1_prod_44,product.product_export_44,1,-1,100 +,,,pricelist_export_usd_v1_prod_45,product.product_export_45,1,-1,140 +,,,pricelist_export_usd_v1_prod_46,product.product_export_46,1,-1,0 diff --git a/sqp_config/master/product/export/product.product.csv b/sqp_config/master/product/export/product.product.csv new file mode 100755 index 0000000..8428f39 --- /dev/null +++ b/sqp_config/master/product/export/product.product.csv @@ -0,0 +1,46 @@ +id,name,default_code,categ_id,partner_id,tag_ids,is_international,sale_ok,purchase_ok,is_one_time_use,type,procure_method,supply_method,cost_method,uom_id,uom_po_id,valuation,standard_price,list_price,taxes_id,supplier_taxes_id +product.product_export_1,Non Progressive Wall Panel Overall thickness : 50 mm. Rockwool Insulation 0.8 mm. PPGL on both sides ,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT 0%, +product.product_export_2,"Wall Accessories Level adjustable floor track Both sides cavity cap Sealant Anchor bolt, nut, washer & rivet etc.",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT 0%, +product.product_export_3,Non Progressive Walkable False Ceiling Panel Overall thickness : 75 mm. Rockwool Insulation 0.8 mm. PPGL on both sides,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT 0%, +product.product_export_4,"Ceiling Accessories Aluminium ceiling beam Ceiling suspension sets Sealant Bolt, nut washer & rivet etc.",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT 0%, +product.product_export_5,"Hinge Doors Sandwich Panel 50mm. thk. 0.8mm powder coated skin Rockwool Insulation Including SS D-handle, push plate, dismountable SS hinges, powder coated al.door frame,door closer, and drop seal gasket Size 900 x 2100mm (Single)",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_6,"Hinge Doors Sandwich Panel 50mm. thk. 0.8mm powder coated skin Rockwool Insulation Including SS D-handle, push plate, dismountable SS hinges, powder coated al.door frame,door closer, and drop seal gasket Size 1500 x 2100mm (Double)",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_7,"Double Glazed Window 6 mm Tempered glass Powder painted al.profriled frame, rectangular corner Size 900x1000mm",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_8,Return Air Riser Hollow Size 150W x 900L x 3000H 0.8 mm. PPGI on both sides Rockwool Insulation with 600 x 600 mm. perforated grille & washable filter,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_9,Aluminium Coving 90○ Corner (Between wall panel to wall panel) Top Coving (From wall panel to ceiling),,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,0,Output VAT 0%, +product.product_export_10,PVC 3 way corner pieces at junction of wall panel & false ceiling,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,pcs,pcs,Periodical (manual),0,0,Output VAT 0%, +product.product_export_11,Cutout in ceiling & wall Finishing with al.profile,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,0,Output VAT 0%, +product.product_export_12,Installation,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 0%, +product.product_export_13,Freight,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 0%, +product.product_export_14,Walkable Ceiling Panel (75 mm. thk) 0.5 mm. Powder Coated on both sides Load bearing 120 kg/m2,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT 0%, +product.product_export_15,Wall Panel (50 mm. thk) 0.5 mm. Powder Coated on both sides ,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT 0%, +product.product_export_16,"Ceiling panel accessories Including al.beam, 1.5 meter suspension set & sealant",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT 0%, +product.product_export_17,"Wall panel accessories Including al. floor runner, anchor bolt & sealant",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT 0%, +product.product_export_18,"Doors Sandwich Panel 50mm. thk. 0.5mm color steel sheet skin 0.5mm color steel sheet skin Including SS Lever, dismountable SS hinges, powder coated al.door frame,door closer, double glazed view window and drop seal gasket Opening Size 900x2100mm (single)",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_19,"Doors Sandwich Panel 50mm. thk. 0.5mm color steel sheet skin Including SS Lever, dismountable SS hinges, powder coated al.door frame,door closer, double glazed view window and drop seal gasket Opening Size 1400 x2100mm (double)",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_20,"Double Glazed Window 6 mm Tempered glass Powder painted al.profriled frame, rectangular corner Size 1160x900mm",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_21,"Diffuser & Grille Supply Diffuser (Swril Type) with HEPA & box External dimension : 670(W) x 670(L) x 450(H) mm. Main body : Electrogalnize w/epoxy powder coating. Main body : Electrogalnize w/epoxy powder coating. With H14 HEPA Filter, 700 CFM MPPS efficiency : 99.9995%",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_22,Diffuser & Grille Supply Diffuser (Swril Type) & box (No HEPA) External dimension : 670(W) x 670(L) x 450(H) mm. Main body : Electrogalnize w/epoxy powder coating.,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_23,Diffuser & Grille Return Grille (Perforated Type) & box (No HEPA) External dimension : 670(W) x 670(L) x 450(H) mm. Main body : Electrogalnize w/epoxy powder coating.,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_24,"Low Level Return Air Riser (External Type) Cavity dimension : 930(W) x 150(D) mm External dimension : 1155(W) x 225(D) mm. Main body : 75mm .thk panel. Grille : 610x610mm perforated type with washable G4 prefilter Filter size : 914x610x66mm. With H14 HEPA Filter, 700 CFM",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_25,"Low Level Return Air Riser (External Type) Cavity dimension : 930(W) x 150(D) mm External dimension : 1155(W) x 225(D) mm. Main body : 75mm .thk panel. Grille : 610x610mm perforated type with washable G4 prefilter Filter size : 914x610x66mm. Without H14 HEPA Filter, 700 CFM",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_26,Clean Room Light Fixture 2x36w (CFL),,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_27,Clean Room Light Fixture 3x36w (CFL),,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_28,"Electrical Points (Excluding accessories) 3/4"" conduit & handy box 2""x2"" in panel Room Light Switch (On-Off)",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_29,"Electrical Points (Excluding accessories) 3/4"" conduit & handy box 2""x2"" in panel Phone Socket ",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_30,"Electrical Points (Excluding accessories) 3/4"" conduit & handy box 2""x2"" in panel 16A 3-Pin Power Socket with top male plug ",,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_31,Removable Wall Panel (50 mm. thk) 0.5 mm. PPGI on both sides Non progressive Joint ,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,0,Output VAT 0%, +product.product_export_32,Door Interlocking Indicator Green/Red indicating light above doors Electromegnetic lock Including de-activating function (emergency SW) Two related doors interlocking,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_33,Door Interlocking Indicator Green/Red indicating light above doors Electromegnetic lock Including de-activating function (emergency SW) Three related doors interlocking,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,0,Output VAT 0%, +product.product_export_34,AL. Coving with aluminium base Top Coving (wall to ceiling) Bottom Coving (wall to floor) Side Coving (wall to wall),,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,0,Output VAT 0%, +product.product_export_35,Ceiling & Wall panel cutout trimming Finishing with powder coated aluminium profile,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,0,Output VAT 0%, +product.product_export_36,Installation.,,Export,,Clean Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 0%, +product.product_export_38,Cold Room Ceiling Panel 0.5 mm. PPGL on both sides PUF Insulation with camlock Including fixing accessories Overall thickness : 100 mm.,,Export,,Cold Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 0%, +product.product_export_39,Cold Room Wall Panel 0.5 mm. PPGL on both sides PUF Insulation with camlock Including fixing accessories Overall thickness : 100 mm.,,Export,,Cold Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 0%, +product.product_export_40,Cold Room Floor Panel 0.5 mm. PPGL on both sides PUF Insulation with camlock Including fixing accessories & 3.2mm al.checker plate Overall thickness : 100 mm.,,Export,,Cold Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 0%, +product.product_export_41,Swing Door Including door frame & heater Size 1000W x 1800H mm Sandwich Panel 100mm. thk.,,Export,,Cold Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 0%, +product.product_export_42,"Sliding Door Including door frame, rail, roller & heater Sandwich Panel 100mm. thk. Size 1000W x 1800H mm",,Export,,Cold Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 0%, +product.product_export_43,PVC Stripe Curtain Size 1000W x 1800H mm,,Export,,Cold Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 0%, +product.product_export_44,Water Proof Fluorescent Light 2x36 watt,,Export,,Cold Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 0%, +product.product_export_45,"Room Pressure Balancing Heated Port 6-1/4"" Diameter",,Export,,Cold Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 0%, +product.product_export_46,Freight ,,Export,,Cold Room,TRUE,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,lot,lot,Periodical (manual),0,0,Output VAT 0%, diff --git a/sqp_config/master/product/maintenance/product.product.csv b/sqp_config/master/product/maintenance/product.product.csv new file mode 100755 index 0000000..96d3b7b --- /dev/null +++ b/sqp_config/master/product/maintenance/product.product.csv @@ -0,0 +1,106 @@ +"id","name","default_code","categ_id","partner_id","tag_ids","sale_ok","purchase_ok","is_one_time_use","type","procure_method","supply_method","cost_method","uom_id","uom_po_id","valuation","taxes_id","supplier_taxes_id" +"product.product_mnt_1","Limit Switch 10A 250V AC TZ 7100 ใช้กับเครื่องพับหัว - ท้ายไฮดรอลิก ตัดเหล็ก Line 1","MN01000","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_2","Limit Switch รุ่น SHL - D55 ใช้ที่แผนกตัดเหล็ก Line 3","MN01001","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_3","Limit Switch D4N - 212G NO. 21Z11ZA","MN01002","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_4","Limit Switch ใช้กับเครื่องตัดอลูมิเนียม 2 หัว แผนกประตู ยี่ห้อ Tend รุ่น TZ - 8111","MN01003","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_5","Limit Switch Omron 10A 250V AC ZC - D55 ใช้ที่แผนกตัดเหล็ก Line 2 ","MN01004","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_6","Air Regulator Model : AW2000 - 02 Press:.0.05-0.85MPa ใช้กับเครื่องฉีดโฟม Line 1,2,3","MN02000","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_7"," Regulator + Gauge ขนาดรู 1/4"" 50-ET01006 ใช้ได้ทั่วไป","MN02001","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_8","Air Regulator 40/20 SP.5401079 แท้งเคมี","MN02002","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_9","Sensor หัวฉีด Cannon ","MN03000","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_10","สายสัญญาณเซนเซอร์หัวฉีด ใช้ร่วมกันได้ทั้ง 3 เครื่อง","MN03001","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_11","Seal Cylinder Part No.MB2P05 Location/Doc.No. CL1A2-49","MN04000","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_12","Seal 40-35-8 อะไหล่ของรถโฟลค์ลิฟท์","MN04001","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_13","Seal กระบอกหัวบากมุมลูกสูบ ขนาด 4x6x30","MN04002","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_14","ชุด Seal คอกกระบอกหัวบาก RSS ขนาด 25x35/2 หนา 8","MN04003","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_15","Guid Ring 960001226 Rod Guide Ring1/DWR 80","MN04004","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_16","Seal กระบอก 960001610 Seal Type B374314 ","MN04005","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_17","Seal กันฝุ่น 960001389 Dustring Type WRM314346","MN04006","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_18","Seal เครื่องพับ ตัดเหล็ก Line 1","MN04007","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","set","set","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_19","Seal เครื่องตัดเหล็ก Cut To Length ตัดเหล็ก Line 1","MN04008","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","set","set","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_20","Seal ปากกระบอก เบอร์ 35-34-6 ใช้ที่ตัดเหล็ก Line 3","MN04009","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_21","Seal กันฝุ่นปากกระบอก เบอร์ 35-43-5/6.5 ใช้ที่ตัดเหล็ก Line 3","MN04010","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_22","Seal ชุด Punc รู Speed Lock WPI 30x38x5/6.5","MN04011","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_23","Seal ชุด Punc รู Speed Lock UNP 30x45x10 ใช้ที่ตัดเหล็ก Line 1","MN04012","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_24","Seal ชุด Punc รู Speed Lock UNP 40x50x6 ใช้ที่แผนกตัดเหล็ก Line 1","MN04013","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_25","Seal ปั๊ม Iso A 100 Z 09910 CAO ใช้กับเครื่องฉีดโฟม Line 3","MN04014","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_26","Seal For Reducer ซิลฝาแทงค์ด้าน Poly 25-40-7","MN04015","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_27","Mechanical Seal ซิลปั๊มดูดเคมีเข้าแทงค์ 70-GL 2011 ใช้ร่วมกันได้ทั้ง 3 เครื่อง","MN04016","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_28","Seal ปั๊ม Iso A 200 Z 23120 CAO ใช้กับเครื่องฉีดโฟม Line 1","MN04017","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_29","O-Ring P42 ชุด Punc รู Speed Lock 41.7x3.5 ใช้ที่แผนกตัดเหล็ก Line 1","MN05000","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_30","O-Ring น็อต Nozzle หัวฉีดตัวใน 103080-0 ใช้ร่วมกันได้ทั้ง 3 เครื่อง","MN05001","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_31","O-Ring น็อต Nozzle หัวฉีดตัวนอก 150263-0 ใช้ร่วมกันได้ทั้ง 3 เครื่อง","MN05002","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_32","O-Ring ปั๊ม Iso A 100 64717919 CAO ใช้กับเครื่องฉีดโฟม Line 3","MN05003","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_33","O-Ring กรองน้ำยา Z19037 CAO ใช้ร่วมกันได้ทั้ง 3 เครื่อง","MN05004","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_34","O-Ring ไฮดรอลิค หัวฉีด 150125-0 ใช้ร่วมกันได้ทั้ง 3 เครื่อง","MN05005","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_35","O-Ring ปะกบหัวฉีด ขนาด 20x15.4x2.3 150195-0 ใช้ร่วมกันได้ทั้ง 3 เครื่อง","MN05006","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_36","O-Ring หน้าจานปั๊ม 281042-0 ใช้กับเครื่องฉีดโฟม Mold 1","MN05007","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_37","O-Ring ข้างจานปั๊ม Z03649 CAO ใช้กับเครื่องฉีดโฟม Mold 1","MN05008","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_38","O-Ring ปะกับหน้าสายปั๊ม O-Ring Viton 45x4 ใช้กับเครื่องฉีดโฟม Mold 1","MN05009","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_39","Hennecke O-Ring D9509-467 045 เบอร์ 1","MN06000","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_40","Hennecke O-Ring D9509-467 052 เบอร์ 2","MN06001","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_41","Hennecke O-Ring D9509-467 191 เบอร์ 3","MN06002","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_42","Hennecke O-Ring D9509-467 192 เบอร์ 4","MN06003","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_43","Hennecke O-Ring D9509-467 204 เบอร์ 5","MN06004","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_44","Hennecke O-Ring D9509-464 067 เบอร์ 6","MN06005","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_45","Hennecke O-Ring D9509-467 207 เบอร์ 8","MN06006","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_46","Hennecke O-Ring D9509-703 985 เบอร์ 9","MN06007","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_47","Hennecke O-Ring D9509-710 864 เบอร์ 10","MN06008","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_48","Hennecke O-Ring D9509-467 028 เบอร์ 17","MN06009","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_49","Hennecke O-Ring D9509-646 187 เบอร์ 18","MN06010","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_50","Hennecke O-Ring D9509-467 007 เบอร์ 19","MN06011","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_51","Air fitting SUS 1/4"" Cannon 3 way 8mm.","MN07000","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_52","Air fitting SUS 1/4"" Cannon 8mm. 2 หุน งอ 90º","MN07001","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_53","Air fitting 1/2"" พลาสติก 10 mm. 4 หุน งอ 90º","MN07002","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_54","Air fitting 1/4"" พลาสติก งอ 90º ต่อสาย PU รู 8 มิล ใช้กับเครื่องตัดอลูมิเนียม 2 หัว","MN07003","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_55","ต่อตรงตาไก่ ทองเหลือง 5/16 แบบสองหัว 5 หุน","MN07004","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_56","Mini Ball Valve 1/4"" ผู้ + เมีย 2 หุน","MN07005","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_57","Mini Ball Valve 1/4"" เมีย + เมีย ","MN07006","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_58","Ball Valve 1/2"" เกลียวนอก + เกลียวใน","MN07007","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_59","สปีดคอนโทรล 1/4"" รู 6 mm.","MN07008","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_60","สปีดคอนโทรล 1/4"" รู 8 mm.","MN07009","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_61","สปีดคอนโทรล 1/4"" รู 10 mm.","MN07010","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_62","ต่อตรง PU 1/2"" รู 8 mm.","MN07011","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_63","ต่อตรง PU 1/2"" รู 10 mm.","MN07012","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_64","ต่อตรง PU 3/8"" รู 8 mm.","MN07013","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_65","สามทาง PU 1/2"" รู 10 mm.","MN07014","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_66","Air fitting 1/8"" พลาสติก เกลียว 1/8"" รู 8 mm.งอ 90º ","MN07015","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_67","ต่อตรง PU เกลียว 1/4"" รู 8 mm.","MN07016","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_68","ต่อตรง PU เกลียว 1/4"" รู 6 mm.","MN07017","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_69","ต่อตรง PU เกลียว 1/4"" รู 10 mm.","MN07018","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_70","ต่อตรง PU เกลียว 1/8"" รู 8 mm.","MN07019","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_71","ต่อตรง PU ลด 10x8","MN07020","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_72","ต่อตรง PU ลด 8x6","MN07021","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_73","ต่อตรง PU 8x8","MN07022","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_74","สามทาง PU รู10x10x10","MN07023","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_75","สปีดคอนโทรล 1/8"" รู 8 mm.","MN07024","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_76","สายไนลอน 6x8 160004-0 Nylon Tube 8x6","MN07025","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","m","m","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_77","คอล์ย Slow ตัดเหล็ก Line 3 FMS-GO-06-02 AC 220V","MN08000","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_78","Type Timer H3Y-2 60S 200-230 V AC Lot No. 1330M","MN08001","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_79","Power Supply 24 Vdc NES-50-24 DA89235547","MN08002","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_80","หลอดไฟแสงจันทร์ HPL-N 250w","MN08003","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_81","Emergency Switch ","MN08004","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_82","3A Solid State Relay Module 1-MM-SSR 3A","MN08005","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_83","Parker Coil ZB09 9w 110-120v/50-60Hz 100% ED IP 65 ใช้กับ Mold 4 เครื่องเก่า","MN08006","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_84","Solenoid Valve + Parker Coil 3/4"" ใช้กับ Mold 4 เครื่องเก่า","MN08007","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_85","General - Purpose Relay Omron MY4 220/240 VAC 14 ขา","MN08008","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_86","General - Purpose Relay Omron MY2 220/240 VAC 8 ขา","MN08009","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_87","General - Purpose Relay Omron MY2N 24VDC 8 ขา","MN08010","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_88","Socket PYE-08A ใช้สำหรับ Relay MY-2","MN08011","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_89","Socket PYE-14A ใช้สำหรับ Relay MY-4 PY 6021 B","MN08012","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_90","Type Timer H3Y-2 30S 24 VDC","MN08013","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_91","Power Supply 24 Vdc NES-150-24 ","MN08014","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_92","Selector Switch Z34137 CAO ใช้ร่วมกันได้ทั้ง 3 เครื่อง","MN08015","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_93","Solenoid Valve ชุดน้ำยา MC Z17385 CAO ใช้ร่วมกันได้ทั้ง 3 เครื่อง","MN08016","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_94","Pressurs Gauge Low 40 bar Z19597CAO","MN08017","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_95","Pressurs Gauge Low 400 bar Z19598CAO","MN08018","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_96","Inductive Senser Complete with block","MN08019","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_97","ดอกเจาะนำศูนย์ ขนาด 3.2 x 90'","MN09000","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_98","ดอกเจาะนำศูนย์ ขนาด 4 x 10' 90'","MN09001","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_99","ยอย Motor Hydraulic รุ่น HOF-42 ใช้กับเครื่องตัดเหล็ก Cut to Length","MN09002","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_100","ยอย Motor Hydraulic รุ่น HOF-28 ","MN09003","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_101","ยอย Motor Hydraulic รุ่น HOF-55 ","MN09004","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_102","น็อตเซิลหัวฉีด CO 607AO400-AOOA ใช้ร่วมกันได้ทั้ง 3 เครื่อง","MN10000","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_103","Filter ปั๊มน้ำยา CU 250/250V Z03479CA0 ใช้ได้ทั้ง Mold 2และ3","MN10001","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_104","Filter ปั๊มน้ำยา CU 350/250V Z21365CA0 ใช้กับเครื่องฉีดโฟม1","MN10002","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" +"product.product_mnt_105","Injector, Mounted 3.0 mm. น็อตเซิลหัวฉีด K 7048 - 148 807","MN10003","Maintenance",,,"TRUE","TRUE","FALSE","Stockable Product","Make to Stock","Buy","Average Price","EA","EA","Periodical (manual)","Output VAT 7%","Input VAT" diff --git a/sqp_config/master/product/maintenance/stock_count.csv b/sqp_config/master/product/maintenance/stock_count.csv new file mode 100755 index 0000000..840c925 --- /dev/null +++ b/sqp_config/master/product/maintenance/stock_count.csv @@ -0,0 +1,106 @@ +"id","name","inventory_line_id/location_id","inventory_line_id/product_id/id","inventory_line_id/product_uom","inventory_line_id/product_qty" +"stock_mnt_14Jan14","นับสต๊อก Maintenance 14Jan14","MN","product.product_mnt_1","EA",11 +,,"MN","product.product_mnt_2","EA",0 +,,"MN","product.product_mnt_3","EA",4 +,,"MN","product.product_mnt_4","EA",6 +,,"MN","product.product_mnt_5","EA",5 +,,"MN","product.product_mnt_6","EA",2 +,,"MN","product.product_mnt_7","EA",3 +,,"MN","product.product_mnt_8","EA",2 +,,"MN","product.product_mnt_9","EA",1 +,,"MN","product.product_mnt_10","EA",1 +,,"MN","product.product_mnt_11","EA",4 +,,"MN","product.product_mnt_12","EA",3 +,,"MN","product.product_mnt_13","EA",0 +,,"MN","product.product_mnt_14","EA",6 +,,"MN","product.product_mnt_15","EA",62 +,,"MN","product.product_mnt_16","EA",30 +,,"MN","product.product_mnt_17","EA",30 +,,"MN","product.product_mnt_18","set",2 +,,"MN","product.product_mnt_19","set",2 +,,"MN","product.product_mnt_20","EA",5 +,,"MN","product.product_mnt_21","EA",5 +,,"MN","product.product_mnt_22","EA",8 +,,"MN","product.product_mnt_23","EA",8 +,,"MN","product.product_mnt_24","EA",16 +,,"MN","product.product_mnt_25","EA",8 +,,"MN","product.product_mnt_26","EA",5 +,,"MN","product.product_mnt_27","EA",3 +,,"MN","product.product_mnt_28","EA",4 +,,"MN","product.product_mnt_29","EA",16 +,,"MN","product.product_mnt_30","EA",19 +,,"MN","product.product_mnt_31","EA",10 +,,"MN","product.product_mnt_32","EA",3 +,,"MN","product.product_mnt_33","EA",1 +,,"MN","product.product_mnt_34","EA",3 +,,"MN","product.product_mnt_35","EA",4 +,,"MN","product.product_mnt_36","EA",4 +,,"MN","product.product_mnt_37","EA",4 +,,"MN","product.product_mnt_38","EA",3 +,,"MN","product.product_mnt_39","EA",6 +,,"MN","product.product_mnt_40","EA",1 +,,"MN","product.product_mnt_41","EA",0 +,,"MN","product.product_mnt_42","EA",6 +,,"MN","product.product_mnt_43","EA",5 +,,"MN","product.product_mnt_44","EA",1 +,,"MN","product.product_mnt_45","EA",1 +,,"MN","product.product_mnt_46","EA",1 +,,"MN","product.product_mnt_47","EA",1 +,,"MN","product.product_mnt_48","EA",0 +,,"MN","product.product_mnt_49","EA",0 +,,"MN","product.product_mnt_50","EA",0 +,,"MN","product.product_mnt_51","EA",2 +,,"MN","product.product_mnt_52","EA",12 +,,"MN","product.product_mnt_53","EA",7 +,,"MN","product.product_mnt_54","EA",11 +,,"MN","product.product_mnt_55","EA",7 +,,"MN","product.product_mnt_56","EA",1 +,,"MN","product.product_mnt_57","EA",8 +,,"MN","product.product_mnt_58","EA",5 +,,"MN","product.product_mnt_59","EA",3 +,,"MN","product.product_mnt_60","EA",2 +,,"MN","product.product_mnt_61","EA",7 +,,"MN","product.product_mnt_62","EA",3 +,,"MN","product.product_mnt_63","EA",6 +,,"MN","product.product_mnt_64","EA",1 +,,"MN","product.product_mnt_65","EA",6 +,,"MN","product.product_mnt_66","EA",7 +,,"MN","product.product_mnt_67","EA",6 +,,"MN","product.product_mnt_68","EA",3 +,,"MN","product.product_mnt_69","EA",2 +,,"MN","product.product_mnt_70","EA",8 +,,"MN","product.product_mnt_71","EA",8 +,,"MN","product.product_mnt_72","EA",2 +,,"MN","product.product_mnt_73","EA",6 +,,"MN","product.product_mnt_74","EA",20 +,,"MN","product.product_mnt_75","EA",4 +,,"MN","product.product_mnt_76","m",12 +,,"MN","product.product_mnt_77","EA",1 +,,"MN","product.product_mnt_78","EA",5 +,,"MN","product.product_mnt_79","EA",1 +,,"MN","product.product_mnt_80","EA",4 +,,"MN","product.product_mnt_81","EA",20 +,,"MN","product.product_mnt_82","EA",6 +,,"MN","product.product_mnt_83","EA",1 +,,"MN","product.product_mnt_84","EA",0 +,,"MN","product.product_mnt_85","EA",6 +,,"MN","product.product_mnt_86","EA",0 +,,"MN","product.product_mnt_87","EA",7 +,,"MN","product.product_mnt_88","EA",0 +,,"MN","product.product_mnt_89","EA",25 +,,"MN","product.product_mnt_90","EA",0 +,,"MN","product.product_mnt_91","EA",1 +,,"MN","product.product_mnt_92","EA",2 +,,"MN","product.product_mnt_93","EA",1 +,,"MN","product.product_mnt_94","EA",0 +,,"MN","product.product_mnt_95","EA",4 +,,"MN","product.product_mnt_96","EA",3 +,,"MN","product.product_mnt_97","EA",5 +,,"MN","product.product_mnt_98","EA",8 +,,"MN","product.product_mnt_99","EA",4 +,,"MN","product.product_mnt_100","EA",1 +,,"MN","product.product_mnt_101","EA",1 +,,"MN","product.product_mnt_102","EA",1 +,,"MN","product.product_mnt_103","EA",4 +,,"MN","product.product_mnt_104","EA",1 +,,"MN","product.product_mnt_105","EA",1 diff --git a/sqp_config/master/product/non_progressive/product.product.csv b/sqp_config/master/product/non_progressive/product.product.csv new file mode 100755 index 0000000..22df5ca --- /dev/null +++ b/sqp_config/master/product/non_progressive/product.product.csv @@ -0,0 +1,18 @@ +id,name,default_code,categ_id,partner_id,tag_ids,sale_ok,purchase_ok,is_one_time_use,type,procure_method,supply_method,cost_method,uom_id,uom_po_id,valuation,standard_price,list_price,taxes_id,supplier_taxes_id +product.product_non_progressive_1,NPS-Wall panel 50 mm. - Surface material : Color steel sheet 0.5 mm. - Al frame - Non Progressive joint - Insulation PU 50 mm. Class SE B-3,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2500,Output VAT,Input VAT +product.product_non_progressive_2,NPS-Ceiling panel 75 mm. - Surface material : Color steel sheet 0.5 mm. - Al frame - Non Progressive joint - Insulation PU 50 mm. Class SE B-3,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,2800,Output VAT,Input VAT +product.product_non_progressive_3,NPS-PVC Coving (For wall 50 mm.),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,800,Output VAT,Input VAT +product.product_non_progressive_4,NPS-Aluminium coving (For wall 50 mm.),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,1200,Output VAT,Input VAT +product.product_non_progressive_5,NPS-Floor Base AL (For wall 50 mm.),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,m,m,Periodical (manual),0,950,Output VAT,Input VAT +product.product_non_progressive_6,NPS-Others accessories (For wall 50 mm.),,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,sqm,sqm,Periodical (manual),0,450,Output VAT,Input VAT +product.product_non_progressive_7,NPS-Hanging + Beam for Ceiling,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,1200,Output VAT,Input VAT +product.product_non_progressive_8,NPS-Flat Type Window - Temper glass Size : 1200 x 1000 x 50 mm. ,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,12000,Output VAT,Input VAT +product.product_non_progressive_9,NPS-Flat Type Window - Temper glass Size : 1200 x 2100 x 50 mm. ,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,22000,Output VAT,Input VAT +product.product_non_progressive_10,NPS-Single Swing Flat Type Door Surface : Color/Color - Size : 900 x 2100 x 50 mm. - Handle SUS,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,25000,Output VAT,Input VAT +product.product_non_progressive_11,NPS-Single Swing Flat Type Door Surface : Stainless/Stainless - Size : 900 x 2100 x 50 mm. - Handle SUS,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,30000,Output VAT,Input VAT +product.product_non_progressive_12,NPS-Double Swing Flat Type Door Surface : Color/Color - Size : 1800 x 2100 x 50 mm. - Handle SUS,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,35000,Output VAT,Input VAT +product.product_non_progressive_13,NPS-Double Swing Flat Type Door Surface : Stainless/Stainless - Size : 900 x 2100 x 50 mm. - Handle SUS,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,40000,Output VAT,Input VAT +product.product_non_progressive_14,NPS-Lighting Concealed Type - 1 x 36 watt,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,2500,Output VAT,Input VAT +product.product_non_progressive_15,NPS-Aluminium frame with cutting,,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,1200,Output VAT,Input VAT +product.product_non_progressive_16,"NPS-Single Swing Flat Type Door FULL GLASS : 900 x 2,100 mm.",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,45000,Output VAT,Input VAT +product.product_non_progressive_17,"NPS-Double Glass Flat Type Door FULL GLASS : 1,800 x 2,100 mm.",,Non-Standard,,Clean Room,TRUE,FALSE,FALSE,Service,Make to Order,Manufacture,Standard Price,set,set,Periodical (manual),0,55000,Output VAT,Input VAT diff --git a/sqp_config/master/product/std_ahu_amair/product.product.csv b/sqp_config/master/product/std_ahu_amair/product.product.csv new file mode 100755 index 0000000..d223bec --- /dev/null +++ b/sqp_config/master/product/std_ahu_amair/product.product.csv @@ -0,0 +1,1480 @@ +id,name,default_code,categ_id,partner_id,tag_ids,sale_ok,purchase_ok,is_one_time_use,type,procure_method,supply_method,cost_method,uom_id,uom_po_id,valuation,standard_price,list_price,taxes_id,supplier_taxes_id +product.product_std-ahu-amair_1,PNL ASSY 25MM 0305 CL/GI,362-1AD0305CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,458,Output VAT,Input VAT +product.product_std-ahu-amair_2,PNL ASSY 25MM 0306 CL/GI,362-1AD0306CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,535,Output VAT,Input VAT +product.product_std-ahu-amair_3,PNL ASSY 25MM 0404 CL/CL,362-1AD0404CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,657,Output VAT,Input VAT +product.product_std-ahu-amair_4,PNL ASSY 25MM 0404 CL/GI,362-1AD0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,569,Output VAT,Input VAT +product.product_std-ahu-amair_5,PNL ASSY 25MM 0404 CL/SS,362-1AD0404CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,914,Output VAT,Input VAT +product.product_std-ahu-amair_6,PNL ASSY 25MM 0405 CL/GI,362-1AD0405CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,589,Output VAT,Input VAT +product.product_std-ahu-amair_7,PNL ASSY 25MM 0406 CL/CL,362-1AD0406CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,766,Output VAT,Input VAT +product.product_std-ahu-amair_8,PNL ASSY 25MM 0406 CL/GI,362-1AD0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,634,Output VAT,Input VAT +product.product_std-ahu-amair_9,PNL ASSY 25MM 0406 CL/SS,362-1AD0406CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1328,Output VAT,Input VAT +product.product_std-ahu-amair_10,PNL ASSY 25MM 0506 CL/GI,362-1AD0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,875,Output VAT,Input VAT +product.product_std-ahu-amair_11,PNL ASSY 25MM 0506 CL/SS,362-1AD0506CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1614,Output VAT,Input VAT +product.product_std-ahu-amair_12,PNL ASSY 25MM 0606 CL/GI,362-1AD0606CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1087,Output VAT,Input VAT +product.product_std-ahu-amair_13,PNL ASSY 25MM 0305 CL/GI,362-1AF0305CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,469,Output VAT,Input VAT +product.product_std-ahu-amair_14,PNL ASSY 25MM 0306 CL/GI,362-1AF0306CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,556,Output VAT,Input VAT +product.product_std-ahu-amair_15,PNL ASSY 25MM 0404 CL/CL,362-1AF0404CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,657,Output VAT,Input VAT +product.product_std-ahu-amair_16,PNL ASSY 25MM 0404 CL/GI,362-1AF0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,548,Output VAT,Input VAT +product.product_std-ahu-amair_17,PNL ASSY 25MM 0404 CL/SS,362-1AF0404CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1065,Output VAT,Input VAT +product.product_std-ahu-amair_18,PNL ASSY 25MM 0405 CL/GI,362-1AF0405CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,633,Output VAT,Input VAT +product.product_std-ahu-amair_19,PNL ASSY 25MM 0406 CL/GI,362-1AF0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,645,Output VAT,Input VAT +product.product_std-ahu-amair_20,PNL ASSY 25MM 0406 CL/SS,362-1AF0406CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1433,Output VAT,Input VAT +product.product_std-ahu-amair_21,PNL ASSY 25MM 0506 CL/GI,362-1AF0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,966,Output VAT,Input VAT +product.product_std-ahu-amair_22,PNL ASSY 25MM 0506 CL/SS,362-1AF0506CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1944,Output VAT,Input VAT +product.product_std-ahu-amair_23,PNL ASSY 25MM 0606 CL/GI,362-1AF0606CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1164,Output VAT,Input VAT +product.product_std-ahu-amair_24,PNL ASSY 25MM 0204 CL/GI,362-1AG0204CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,514,Output VAT,Input VAT +product.product_std-ahu-amair_25,PNL ASSY 25MM 0206 CL/GI,362-1AG0206CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,737,Output VAT,Input VAT +product.product_std-ahu-amair_26,PNL ASSY 25MM 0406 CL/GI,362-1AG0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,949,Output VAT,Input VAT +product.product_std-ahu-amair_27,PNL ASSY 25MM 0506 CL/GI,362-1AG0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1300,Output VAT,Input VAT +product.product_std-ahu-amair_28,PNL ASSY 25MM 0305 CL/GI,362-1AI0305CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1526,Output VAT,Input VAT +product.product_std-ahu-amair_29,PNL ASSY 25MM 0306 CL/GI,362-1AI0306CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1635,Output VAT,Input VAT +product.product_std-ahu-amair_30,PNL ASSY 25MM 0404 CL/GI,362-1AI0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1455,Output VAT,Input VAT +product.product_std-ahu-amair_31,PNL ASSY 25MM 0405 CL/GI,362-1AI0405CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1507,Output VAT,Input VAT +product.product_std-ahu-amair_32,PNL ASSY 25MM 0406 CL/GI,362-1AI0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1662,Output VAT,Input VAT +product.product_std-ahu-amair_33,PNL ASSY 25MM 0406 CL/GI,362-1AI0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,927,Output VAT,Input VAT +product.product_std-ahu-amair_34,PNL ASSY 25MM 0504 CL/GI,362-1AI0504CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1507,Output VAT,Input VAT +product.product_std-ahu-amair_35,PNL ASSY 25MM 0505 CL/GI,362-1AI0505CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1559,Output VAT,Input VAT +product.product_std-ahu-amair_36,PNL ASSY 25MM 0605 CL/GI,362-1AI0605CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1871,Output VAT,Input VAT +product.product_std-ahu-amair_37,PNL ASSY 25MM 0305 CL/GI,362-1AJ0305CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,709,Output VAT,Input VAT +product.product_std-ahu-amair_38,PNL ASSY 25MM 0306 CL/GI,362-1AJ0306CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,818,Output VAT,Input VAT +product.product_std-ahu-amair_39,PNL ASSY 25MM 0404 CL/GI,362-1AJ0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,624,Output VAT,Input VAT +product.product_std-ahu-amair_40,PNL ASSY 25MM 0405 CL/GI,362-1AJ0405CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,727,Output VAT,Input VAT +product.product_std-ahu-amair_41,PNL ASSY 25MM 0406 CL/GI,362-1AJ0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,833,Output VAT,Input VAT +product.product_std-ahu-amair_42,PNL ASSY 25MM 0406 CL/GI,362-1AJ0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,699,Output VAT,Input VAT +product.product_std-ahu-amair_43,PNL ASSY 25MM 0504 CL/GI,362-1AJ0504CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,624,Output VAT,Input VAT +product.product_std-ahu-amair_44,PNL ASSY 25MM 0505 CL/GI,362-1AJ0505CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,676,Output VAT,Input VAT +product.product_std-ahu-amair_45,PNL ASSY 25MM 0605 CL/GI,362-1AJ0605CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,936,Output VAT,Input VAT +product.product_std-ahu-amair_46,PNL ASSY 25MM 0101 CL/CL,362-1AS0101CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,18,Output VAT,Input VAT +product.product_std-ahu-amair_47,PNL ASSY 25MM 0101 CL/GI,362-1AS0101CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,18,Output VAT,Input VAT +product.product_std-ahu-amair_48,PNL ASSY 25MM 0101 GI/GI,362-1AS0101GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,18,Output VAT,Input VAT +product.product_std-ahu-amair_49,PNL ASSY 25MM 0102 CL/CL,362-1AS0102CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,36,Output VAT,Input VAT +product.product_std-ahu-amair_50,PNL ASSY 25MM 0102 CL/GI,362-1AS0102CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,35,Output VAT,Input VAT +product.product_std-ahu-amair_51,PNL ASSY 25MM 0102 GI/GI,362-1AS0102GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,35,Output VAT,Input VAT +product.product_std-ahu-amair_52,PNL ASSY 25MM 0103 CL/CL,362-1AS0103CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,51,Output VAT,Input VAT +product.product_std-ahu-amair_53,PNL ASSY 25MM 0103 CL/GI,362-1AS0103CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,51,Output VAT,Input VAT +product.product_std-ahu-amair_54,PNL ASSY 25MM 0103 GI/GI,362-1AS0103GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,51,Output VAT,Input VAT +product.product_std-ahu-amair_55,PNL ASSY 25MM 0104 CL/CL,362-1AS0104CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,70,Output VAT,Input VAT +product.product_std-ahu-amair_56,PNL ASSY 25MM 0104 CL/GI,362-1AS0104CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,69,Output VAT,Input VAT +product.product_std-ahu-amair_57,PNL ASSY 25MM 0104 GI/GI,362-1AS0104GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,68,Output VAT,Input VAT +product.product_std-ahu-amair_58,PNL ASSY 25MM 0104 CL/SS,362-1AS0104CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,200,Output VAT,Input VAT +product.product_std-ahu-amair_59,PNL ASSY 25MM 0105 CL/CL,362-1AS0105CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,89,Output VAT,Input VAT +product.product_std-ahu-amair_60,PNL ASSY 25MM 0105 CL/GI,362-1AS0105CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,86,Output VAT,Input VAT +product.product_std-ahu-amair_61,PNL ASSY 25MM 0105 GI/GI,362-1AS0105GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,86,Output VAT,Input VAT +product.product_std-ahu-amair_62,PNL ASSY 25MM 0106 CL/CL,362-1AS0106CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,106,Output VAT,Input VAT +product.product_std-ahu-amair_63,PNL ASSY 25MM 0106 CL/GI,362-1AS0106CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,104,Output VAT,Input VAT +product.product_std-ahu-amair_64,PNL ASSY 25MM 0106 GI/GI,362-1AS0106GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,103,Output VAT,Input VAT +product.product_std-ahu-amair_65,PNL ASSY 25MM 0107 CL/CL,362-1AS0107CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,124,Output VAT,Input VAT +product.product_std-ahu-amair_66,PNL ASSY 25MM 0107 CL/GI,362-1AS0107CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,122,Output VAT,Input VAT +product.product_std-ahu-amair_67,PNL ASSY 25MM 0107 GI/GI,362-1AS0107GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,121,Output VAT,Input VAT +product.product_std-ahu-amair_68,PNL ASSY 25MM 0108 CL/CL,362-1AS0108CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,142,Output VAT,Input VAT +product.product_std-ahu-amair_69,PNL ASSY 25MM 0108 CL/GI,362-1AS0108CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,139,Output VAT,Input VAT +product.product_std-ahu-amair_70,PNL ASSY 25MM 0108 GI/GI,362-1AS0108GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,135,Output VAT,Input VAT +product.product_std-ahu-amair_71,PNL ASSY 25MM 0109 CL/CL,362-1AS0109CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,159,Output VAT,Input VAT +product.product_std-ahu-amair_72,PNL ASSY 25MM 0109 CL/GI,362-1AS0109CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,156,Output VAT,Input VAT +product.product_std-ahu-amair_73,PNL ASSY 25MM 0109 GI/GI,362-1AS0109GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,154,Output VAT,Input VAT +product.product_std-ahu-amair_74,PNL ASSY 25MM 0110 CL/CL,362-1AS0110CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,177,Output VAT,Input VAT +product.product_std-ahu-amair_75,PNL ASSY 25MM 0110 CL/GI,362-1AS0110CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,172,Output VAT,Input VAT +product.product_std-ahu-amair_76,PNL ASSY 25MM 0110 GI/GI,362-1AS0110GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,171,Output VAT,Input VAT +product.product_std-ahu-amair_77,PNL ASSY 25MM 0111 CL/CL,362-1AS0111CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,194,Output VAT,Input VAT +product.product_std-ahu-amair_78,PNL ASSY 25MM 0111 CL/GI,362-1AS0111CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,191,Output VAT,Input VAT +product.product_std-ahu-amair_79,PNL ASSY 25MM 0111 GI/GI,362-1AS0111GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,189,Output VAT,Input VAT +product.product_std-ahu-amair_80,PNL ASSY 25MM 0112 CL/CL,362-1AS0112CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,213,Output VAT,Input VAT +product.product_std-ahu-amair_81,PNL ASSY 25MM 0112 CL/GI,362-1AS0112CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,209,Output VAT,Input VAT +product.product_std-ahu-amair_82,PNL ASSY 25MM 0112 GI/GI,362-1AS0112GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,207,Output VAT,Input VAT +product.product_std-ahu-amair_83,PNL ASSY 25MM 0112 CL/SS,362-1AS0112CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,608,Output VAT,Input VAT +product.product_std-ahu-amair_84,PNL ASSY 25MM 0113 CL/CL,362-1AS0113CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,230,Output VAT,Input VAT +product.product_std-ahu-amair_85,PNL ASSY 25MM 0113 CL/GI,362-1AS0113CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,226,Output VAT,Input VAT +product.product_std-ahu-amair_86,PNL ASSY 25MM 0113 GI/GI,362-1AS0113GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,223,Output VAT,Input VAT +product.product_std-ahu-amair_87,PNL ASSY 25MM 0114 CL/CL,362-1AS0114CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,247,Output VAT,Input VAT +product.product_std-ahu-amair_88,PNL ASSY 25MM 0114 CL/GI,362-1AS0114CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,242,Output VAT,Input VAT +product.product_std-ahu-amair_89,PNL ASSY 25MM 0114 GI/GI,362-1AS0114GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,240,Output VAT,Input VAT +product.product_std-ahu-amair_90,PNL ASSY 25MM 0115 CL/GI,362-1AS0115CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,294,Output VAT,Input VAT +product.product_std-ahu-amair_91,PNL ASSY 25MM 0202 CL/CL,362-1AS0202CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,71,Output VAT,Input VAT +product.product_std-ahu-amair_92,PNL ASSY 25MM 0202 CL/GI,362-1AS0202CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,70,Output VAT,Input VAT +product.product_std-ahu-amair_93,PNL ASSY 25MM 0202 GI/GI,362-1AS0202GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,68,Output VAT,Input VAT +product.product_std-ahu-amair_94,PNL ASSY 25MM 0203 CL/CL,362-1AS0203CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,107,Output VAT,Input VAT +product.product_std-ahu-amair_95,PNL ASSY 25MM 0203 CL/GI,362-1AS0203CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,105,Output VAT,Input VAT +product.product_std-ahu-amair_96,PNL ASSY 25MM 0203 GI/GI,362-1AS0203GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,104,Output VAT,Input VAT +product.product_std-ahu-amair_97,PNL ASSY 25MM 0204 CL/CL,362-1AS0204CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,144,Output VAT,Input VAT +product.product_std-ahu-amair_98,PNL ASSY 25MM 0204 CL/GI,362-1AS0204CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,142,Output VAT,Input VAT +product.product_std-ahu-amair_99,PNL ASSY 25MM 0204 GI/GI,362-1AS0204GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,138,Output VAT,Input VAT +product.product_std-ahu-amair_100,PNL ASSY 25MM 0204 CL/SS,362-1AS0204CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,391,Output VAT,Input VAT +product.product_std-ahu-amair_101,PNL ASSY 25MM 0205 CL/CL,362-1AS0205CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,181,Output VAT,Input VAT +product.product_std-ahu-amair_102,PNL ASSY 25MM 0205 CL/GI,362-1AS0205CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,175,Output VAT,Input VAT +product.product_std-ahu-amair_103,PNL ASSY 25MM 0205 GI/GI,362-1AS0205GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,172,Output VAT,Input VAT +product.product_std-ahu-amair_104,PNL ASSY 25MM 0206 CL/CL,362-1AS0206CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,216,Output VAT,Input VAT +product.product_std-ahu-amair_105,PNL ASSY 25MM 0206 CL/GI,362-1AS0206CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,213,Output VAT,Input VAT +product.product_std-ahu-amair_106,PNL ASSY 25MM 0206 GI/GI,362-1AS0206GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,209,Output VAT,Input VAT +product.product_std-ahu-amair_107,PNL ASSY 25MM 0207 CL/CL,362-1AS0207CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,253,Output VAT,Input VAT +product.product_std-ahu-amair_108,PNL ASSY 25MM 0207 CL/GI,362-1AS0207CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,249,Output VAT,Input VAT +product.product_std-ahu-amair_109,PNL ASSY 25MM 0207 GI/GI,362-1AS0207GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,242,Output VAT,Input VAT +product.product_std-ahu-amair_110,PNL ASSY 25MM 0208 CL/CL,362-1AS0208CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,288,Output VAT,Input VAT +product.product_std-ahu-amair_111,PNL ASSY 25MM 0208 CL/GI,362-1AS0208CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,282,Output VAT,Input VAT +product.product_std-ahu-amair_112,PNL ASSY 25MM 0208 GI/GI,362-1AS0208GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,278,Output VAT,Input VAT +product.product_std-ahu-amair_113,PNL ASSY 25MM 0209 CL/CL,362-1AS0209CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,324,Output VAT,Input VAT +product.product_std-ahu-amair_114,PNL ASSY 25MM 0209 CL/GI,362-1AS0209CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,319,Output VAT,Input VAT +product.product_std-ahu-amair_115,PNL ASSY 25MM 0209 GI/GI,362-1AS0209GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,314,Output VAT,Input VAT +product.product_std-ahu-amair_116,PNL ASSY 25MM 0210 CL/CL,362-1AS0210CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,361,Output VAT,Input VAT +product.product_std-ahu-amair_117,PNL ASSY 25MM 0210 CL/GI,362-1AS0210CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,354,Output VAT,Input VAT +product.product_std-ahu-amair_118,PNL ASSY 25MM 0210 GI/GI,362-1AS0210GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,348,Output VAT,Input VAT +product.product_std-ahu-amair_119,PNL ASSY 25MM 0210 CL/SS,362-1AS0210CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,968,Output VAT,Input VAT +product.product_std-ahu-amair_120,PNL ASSY 25MM 0211 CL/CL,362-1AS0211CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,395,Output VAT,Input VAT +product.product_std-ahu-amair_121,PNL ASSY 25MM 0211 CL/GI,362-1AS0211CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,390,Output VAT,Input VAT +product.product_std-ahu-amair_122,PNL ASSY 25MM 0211 GI/GI,362-1AS0211GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,384,Output VAT,Input VAT +product.product_std-ahu-amair_123,PNL ASSY 25MM 0212 CL/CL,362-1AS0212CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,431,Output VAT,Input VAT +product.product_std-ahu-amair_124,PNL ASSY 25MM 0212 CL/GI,362-1AS0212CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,425,Output VAT,Input VAT +product.product_std-ahu-amair_125,PNL ASSY 25MM 0212 GI/GI,362-1AS0212GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,419,Output VAT,Input VAT +product.product_std-ahu-amair_126,PNL ASSY 25MM 0212 CL/SS,362-1AS0212CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1158,Output VAT,Input VAT +product.product_std-ahu-amair_127,PNL ASSY 25MM 0213 CL/CL,362-1AS0213CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,468,Output VAT,Input VAT +product.product_std-ahu-amair_128,PNL ASSY 25MM 0213 CL/GI,362-1AS0213CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,461,Output VAT,Input VAT +product.product_std-ahu-amair_129,PNL ASSY 25MM 0213 GI/GI,362-1AS0213GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,453,Output VAT,Input VAT +product.product_std-ahu-amair_130,PNL ASSY 25MM 0214 CL/CL,362-1AS0214CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,503,Output VAT,Input VAT +product.product_std-ahu-amair_131,PNL ASSY 25MM 0214 CL/GI,362-1AS0214CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,497,Output VAT,Input VAT +product.product_std-ahu-amair_132,PNL ASSY 25MM 0214 GI/GI,362-1AS0214GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,489,Output VAT,Input VAT +product.product_std-ahu-amair_133,PNL ASSY 25MM 0303 CL/CL,362-1AS0303CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,161,Output VAT,Input VAT +product.product_std-ahu-amair_134,PNL ASSY 25MM 0303 CL/GI,362-1AS0303CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,159,Output VAT,Input VAT +product.product_std-ahu-amair_135,PNL ASSY 25MM 0303 GI/GI,362-1AS0303GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,156,Output VAT,Input VAT +product.product_std-ahu-amair_136,PNL ASSY 25MM 0304 CL/CL,362-1AS0304CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,216,Output VAT,Input VAT +product.product_std-ahu-amair_137,PNL ASSY 25MM 0304 CL/GI,362-1AS0304CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,214,Output VAT,Input VAT +product.product_std-ahu-amair_138,PNL ASSY 25MM 0304 GI/GI,362-1AS0304GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,210,Output VAT,Input VAT +product.product_std-ahu-amair_139,PNL ASSY 25MM 0304 CL/SS,362-1AS0304CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,580,Output VAT,Input VAT +product.product_std-ahu-amair_140,PNL ASSY 25MM 0305 CL/CL,362-1AS0305CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,271,Output VAT,Input VAT +product.product_std-ahu-amair_141,PNL ASSY 25MM 0305 CL/GI,362-1AS0305CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,267,Output VAT,Input VAT +product.product_std-ahu-amair_142,PNL ASSY 25MM 0305 GI/GI,362-1AS0305GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,261,Output VAT,Input VAT +product.product_std-ahu-amair_143,PNL ASSY 25MM 0306 CL/CL,362-1AS0306CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,325,Output VAT,Input VAT +product.product_std-ahu-amair_144,PNL ASSY 25MM 0306 CL/GI,362-1AS0306CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,320,Output VAT,Input VAT +product.product_std-ahu-amair_145,PNL ASSY 25MM 0306 GI/GI,362-1AS0306GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,315,Output VAT,Input VAT +product.product_std-ahu-amair_146,PNL ASSY 25MM 0307 CL/CL,362-1AS0307CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,381,Output VAT,Input VAT +product.product_std-ahu-amair_147,PNL ASSY 25MM 0307 CL/GI,362-1AS0307CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,373,Output VAT,Input VAT +product.product_std-ahu-amair_148,PNL ASSY 25MM 0307 GI/GI,362-1AS0307GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,366,Output VAT,Input VAT +product.product_std-ahu-amair_149,PNL ASSY 25MM 0308 CL/CL,362-1AS0308CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,433,Output VAT,Input VAT +product.product_std-ahu-amair_150,PNL ASSY 25MM 0308 CL/GI,362-1AS0308CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,428,Output VAT,Input VAT +product.product_std-ahu-amair_151,PNL ASSY 25MM 0308 GI/GI,362-1AS0308GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,420,Output VAT,Input VAT +product.product_std-ahu-amair_152,PNL ASSY 25MM 0309 CL/CL,362-1AS0309CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,489,Output VAT,Input VAT +product.product_std-ahu-amair_153,PNL ASSY 25MM 0309 CL/GI,362-1AS0309CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,480,Output VAT,Input VAT +product.product_std-ahu-amair_154,PNL ASSY 25MM 0309 GI/GI,362-1AS0309GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,473,Output VAT,Input VAT +product.product_std-ahu-amair_155,PNL ASSY 25MM 0310 CL/CL,362-1AS0310CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,544,Output VAT,Input VAT +product.product_std-ahu-amair_156,PNL ASSY 25MM 0310 CL/GI,362-1AS0310CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,534,Output VAT,Input VAT +product.product_std-ahu-amair_157,PNL ASSY 25MM 0310 GI/GI,362-1AS0310GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,527,Output VAT,Input VAT +product.product_std-ahu-amair_158,PNL ASSY 25MM 0311 CL/CL,362-1AS0311CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,598,Output VAT,Input VAT +product.product_std-ahu-amair_159,PNL ASSY 25MM 0311 CL/GI,362-1AS0311CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,588,Output VAT,Input VAT +product.product_std-ahu-amair_160,PNL ASSY 25MM 0311 GI/GI,362-1AS0311GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,578,Output VAT,Input VAT +product.product_std-ahu-amair_161,PNL ASSY 25MM 0312 CL/CL,362-1AS0312CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,653,Output VAT,Input VAT +product.product_std-ahu-amair_162,PNL ASSY 25MM 0312 CL/GI,362-1AS0312CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,641,Output VAT,Input VAT +product.product_std-ahu-amair_163,PNL ASSY 25MM 0312 GI/GI,362-1AS0312GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,631,Output VAT,Input VAT +product.product_std-ahu-amair_164,PNL ASSY 25MM 0313 CL/CL,362-1AS0313CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,707,Output VAT,Input VAT +product.product_std-ahu-amair_165,PNL ASSY 25MM 0313 CL/GI,362-1AS0313CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,695,Output VAT,Input VAT +product.product_std-ahu-amair_166,PNL ASSY 25MM 0313 GI/GI,362-1AS0313GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,683,Output VAT,Input VAT +product.product_std-ahu-amair_167,PNL ASSY 25MM 0314 CL/CL,362-1AS0314CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,762,Output VAT,Input VAT +product.product_std-ahu-amair_168,PNL ASSY 25MM 0314 CL/GI,362-1AS0314CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,749,Output VAT,Input VAT +product.product_std-ahu-amair_169,PNL ASSY 25MM 0314 GI/GI,362-1AS0314GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,737,Output VAT,Input VAT +product.product_std-ahu-amair_170,PNL ASSY 25MM 0315 CL/GI,362-1AS0315CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,905,Output VAT,Input VAT +product.product_std-ahu-amair_171,PNL ASSY 25MM 0316 CL/GI,362-1AS0316CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1014,Output VAT,Input VAT +product.product_std-ahu-amair_172,PNL ASSY 25MM 0402 CL/GI,362-1AS0402CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,142,Output VAT,Input VAT +product.product_std-ahu-amair_173,PNL ASSY 25MM 0404 CL/CL,362-1AS0404CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,290,Output VAT,Input VAT +product.product_std-ahu-amair_174,PNL ASSY 25MM 0404 CL/GI,362-1AS0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,284,Output VAT,Input VAT +product.product_std-ahu-amair_175,PNL ASSY 25MM 0404 GI/GI,362-1AS0404GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,280,Output VAT,Input VAT +product.product_std-ahu-amair_176,PNL ASSY 25MM 0404 CL/SS,362-1AS0404CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,781,Output VAT,Input VAT +product.product_std-ahu-amair_177,PNL ASSY 25MM 0405 CL/CL,362-1AS0405CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,362,Output VAT,Input VAT +product.product_std-ahu-amair_178,PNL ASSY 25MM 0405 CL/GI,362-1AS0405CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,358,Output VAT,Input VAT +product.product_std-ahu-amair_179,PNL ASSY 25MM 0405 GI/GI,362-1AS0405GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,350,Output VAT,Input VAT +product.product_std-ahu-amair_180,PNL ASSY 25MM 0405 CL/SS,362-1AS0405CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1039,Output VAT,Input VAT +product.product_std-ahu-amair_181,PNL ASSY 25MM 0406 CL/CL,362-1AS0406CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,434,Output VAT,Input VAT +product.product_std-ahu-amair_182,PNL ASSY 25MM 0406 CL/GI,362-1AS0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,428,Output VAT,Input VAT +product.product_std-ahu-amair_183,PNL ASSY 25MM 0406 GI/GI,362-1AS0406GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,421,Output VAT,Input VAT +product.product_std-ahu-amair_184,PNL ASSY 25MM 0406 CL/SS,362-1AS0406CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1244,Output VAT,Input VAT +product.product_std-ahu-amair_185,PNL ASSY 25MM 0407 CL/CL,362-1AS0407CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,508,Output VAT,Input VAT +product.product_std-ahu-amair_186,PNL ASSY 25MM 0407 CL/GI,362-1AS0407CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,500,Output VAT,Input VAT +product.product_std-ahu-amair_187,PNL ASSY 25MM 0407 GI/GI,362-1AS0407GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,491,Output VAT,Input VAT +product.product_std-ahu-amair_188,PNL ASSY 25MM 0407 CL/SS,362-1AS0407CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1456,Output VAT,Input VAT +product.product_std-ahu-amair_189,PNL ASSY 25MM 0408 CL/CL,362-1AS0408CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,580,Output VAT,Input VAT +product.product_std-ahu-amair_190,PNL ASSY 25MM 0408 CL/GI,362-1AS0408CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,571,Output VAT,Input VAT +product.product_std-ahu-amair_191,PNL ASSY 25MM 0408 GI/GI,362-1AS0408GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,562,Output VAT,Input VAT +product.product_std-ahu-amair_192,PNL ASSY 25MM 0408 CL/SS,362-1AS0408CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1565,Output VAT,Input VAT +product.product_std-ahu-amair_193,PNL ASSY 25MM 0409 CL/CL,362-1AS0409CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,654,Output VAT,Input VAT +product.product_std-ahu-amair_194,PNL ASSY 25MM 0409 CL/GI,362-1AS0409CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,643,Output VAT,Input VAT +product.product_std-ahu-amair_195,PNL ASSY 25MM 0409 GI/GI,362-1AS0409GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,632,Output VAT,Input VAT +product.product_std-ahu-amair_196,PNL ASSY 25MM 0409 CL/SS,362-1AS0409CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1754,Output VAT,Input VAT +product.product_std-ahu-amair_197,PNL ASSY 25MM 0410 CL/CL,362-1AS0410CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,726,Output VAT,Input VAT +product.product_std-ahu-amair_198,PNL ASSY 25MM 0410 CL/GI,362-1AS0410CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,715,Output VAT,Input VAT +product.product_std-ahu-amair_199,PNL ASSY 25MM 0410 GI/GI,362-1AS0410GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,703,Output VAT,Input VAT +product.product_std-ahu-amair_200,PNL ASSY 25MM 0410 CL/SS,362-1AS0410CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1958,Output VAT,Input VAT +product.product_std-ahu-amair_201,PNL ASSY 25MM 0411 CL/CL,362-1AS0411CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,800,Output VAT,Input VAT +product.product_std-ahu-amair_202,PNL ASSY 25MM 0411 CL/GI,362-1AS0411CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,785,Output VAT,Input VAT +product.product_std-ahu-amair_203,PNL ASSY 25MM 0411 GI/GI,362-1AS0411GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,774,Output VAT,Input VAT +product.product_std-ahu-amair_204,PNL ASSY 25MM 0412 CL/CL,362-1AS0412CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,872,Output VAT,Input VAT +product.product_std-ahu-amair_205,PNL ASSY 25MM 0412 CL/GI,362-1AS0412CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,859,Output VAT,Input VAT +product.product_std-ahu-amair_206,PNL ASSY 25MM 0412 GI/GI,362-1AS0412GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,844,Output VAT,Input VAT +product.product_std-ahu-amair_207,PNL ASSY 25MM 0412 CL/SS,362-1AS0412CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2351,Output VAT,Input VAT +product.product_std-ahu-amair_208,PNL ASSY 25MM 0413 CL/CL,362-1AS0413CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,945,Output VAT,Input VAT +product.product_std-ahu-amair_209,PNL ASSY 25MM 0413 CL/GI,362-1AS0413CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,929,Output VAT,Input VAT +product.product_std-ahu-amair_210,PNL ASSY 25MM 0413 GI/GI,362-1AS0413GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,914,Output VAT,Input VAT +product.product_std-ahu-amair_211,PNL ASSY 25MM 0414 CL/CL,362-1AS0414CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1017,Output VAT,Input VAT +product.product_std-ahu-amair_212,PNL ASSY 25MM 0414 CL/GI,362-1AS0414CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1001,Output VAT,Input VAT +product.product_std-ahu-amair_213,PNL ASSY 25MM 0414 GI/GI,362-1AS0414GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,985,Output VAT,Input VAT +product.product_std-ahu-amair_214,PNL ASSY 25MM 0416 GI/GI,362-1AS0416GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1355,Output VAT,Input VAT +product.product_std-ahu-amair_215,PNL ASSY 25MM 0505 CL/CL,362-1AS0505CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,453,Output VAT,Input VAT +product.product_std-ahu-amair_216,PNL ASSY 25MM 0505 CL/GI,362-1AS0505CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,447,Output VAT,Input VAT +product.product_std-ahu-amair_217,PNL ASSY 25MM 0505 GI/GI,362-1AS0505GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,439,Output VAT,Input VAT +product.product_std-ahu-amair_218,PNL ASSY 25MM 0506 CL/CL,362-1AS0506CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,544,Output VAT,Input VAT +product.product_std-ahu-amair_219,PNL ASSY 25MM 0506 CL/GI,362-1AS0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,536,Output VAT,Input VAT +product.product_std-ahu-amair_220,PNL ASSY 25MM 0506 GI/GI,362-1AS0506GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,527,Output VAT,Input VAT +product.product_std-ahu-amair_221,PNL ASSY 25MM 0506 CL/SS,362-1AS0506CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1562,Output VAT,Input VAT +product.product_std-ahu-amair_222,PNL ASSY 25MM 0507 CL/CL,362-1AS0507CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,635,Output VAT,Input VAT +product.product_std-ahu-amair_223,PNL ASSY 25MM 0507 CL/GI,362-1AS0507CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,627,Output VAT,Input VAT +product.product_std-ahu-amair_224,PNL ASSY 25MM 0507 GI/GI,362-1AS0507GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,616,Output VAT,Input VAT +product.product_std-ahu-amair_225,PNL ASSY 25MM 0508 CL/CL,362-1AS0508CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,726,Output VAT,Input VAT +product.product_std-ahu-amair_226,PNL ASSY 25MM 0508 CL/GI,362-1AS0508CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,715,Output VAT,Input VAT +product.product_std-ahu-amair_227,PNL ASSY 25MM 0508 GI/GI,362-1AS0508GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,703,Output VAT,Input VAT +product.product_std-ahu-amair_228,PNL ASSY 25MM 0508 CL/SS,362-1AS0508CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2085,Output VAT,Input VAT +product.product_std-ahu-amair_229,PNL ASSY 25MM 0509 CL/CL,362-1AS0509CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,820,Output VAT,Input VAT +product.product_std-ahu-amair_230,PNL ASSY 25MM 0509 CL/GI,362-1AS0509CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,805,Output VAT,Input VAT +product.product_std-ahu-amair_231,PNL ASSY 25MM 0509 GI/GI,362-1AS0509GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,792,Output VAT,Input VAT +product.product_std-ahu-amair_232,PNL ASSY 25MM 0510 CL/CL,362-1AS0510CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,910,Output VAT,Input VAT +product.product_std-ahu-amair_233,PNL ASSY 25MM 0510 CL/GI,362-1AS0510CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,895,Output VAT,Input VAT +product.product_std-ahu-amair_234,PNL ASSY 25MM 0510 GI/GI,362-1AS0510GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,881,Output VAT,Input VAT +product.product_std-ahu-amair_235,PNL ASSY 25MM 0511 CL/CL,362-1AS0511CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1000,Output VAT,Input VAT +product.product_std-ahu-amair_236,PNL ASSY 25MM 0511 CL/GI,362-1AS0511CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,985,Output VAT,Input VAT +product.product_std-ahu-amair_237,PNL ASSY 25MM 0511 GI/GI,362-1AS0511GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,970,Output VAT,Input VAT +product.product_std-ahu-amair_238,PNL ASSY 25MM 0512 CL/CL,362-1AS0512CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1094,Output VAT,Input VAT +product.product_std-ahu-amair_239,PNL ASSY 25MM 0512 CL/GI,362-1AS0512CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1075,Output VAT,Input VAT +product.product_std-ahu-amair_240,PNL ASSY 25MM 0512 GI/GI,362-1AS0512GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1057,Output VAT,Input VAT +product.product_std-ahu-amair_241,PNL ASSY 25MM 0512 CL/SS,362-1AS0512CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2946,Output VAT,Input VAT +product.product_std-ahu-amair_242,PNL ASSY 25MM 0513 CL/CL,362-1AS0513CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1183,Output VAT,Input VAT +product.product_std-ahu-amair_243,PNL ASSY 25MM 0513 CL/GI,362-1AS0513CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1163,Output VAT,Input VAT +product.product_std-ahu-amair_244,PNL ASSY 25MM 0513 GI/GI,362-1AS0513GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1146,Output VAT,Input VAT +product.product_std-ahu-amair_245,PNL ASSY 25MM 0514 CL/CL,362-1AS0514CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1274,Output VAT,Input VAT +product.product_std-ahu-amair_246,PNL ASSY 25MM 0514 CL/GI,362-1AS0514CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1253,Output VAT,Input VAT +product.product_std-ahu-amair_247,PNL ASSY 25MM 0514 GI/GI,362-1AS0514GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1233,Output VAT,Input VAT +product.product_std-ahu-amair_248,PNL ASSY 25MM 0516 CL/GI,362-1AS0516CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1570,Output VAT,Input VAT +product.product_std-ahu-amair_249,PNL ASSY 25MM 0604 CL/GI,362-1AS0604CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,428,Output VAT,Input VAT +product.product_std-ahu-amair_250,PNL ASSY 25MM 0606 CL/CL,362-1AS0606CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,654,Output VAT,Input VAT +product.product_std-ahu-amair_251,PNL ASSY 25MM 0606 CL/GI,362-1AS0606CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,644,Output VAT,Input VAT +product.product_std-ahu-amair_252,PNL ASSY 25MM 0606 GI/GI,362-1AS0606GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,633,Output VAT,Input VAT +product.product_std-ahu-amair_253,PNL ASSY 25MM 0607 CL/CL,362-1AS0607CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,764,Output VAT,Input VAT +product.product_std-ahu-amair_254,PNL ASSY 25MM 0607 CL/GI,362-1AS0607CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,750,Output VAT,Input VAT +product.product_std-ahu-amair_255,PNL ASSY 25MM 0607 GI/GI,362-1AS0607GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,738,Output VAT,Input VAT +product.product_std-ahu-amair_256,PNL ASSY 25MM 0608 CL/CL,362-1AS0608CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,874,Output VAT,Input VAT +product.product_std-ahu-amair_257,PNL ASSY 25MM 0608 CL/GI,362-1AS0608CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,860,Output VAT,Input VAT +product.product_std-ahu-amair_258,PNL ASSY 25MM 0608 GI/GI,362-1AS0608GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,844,Output VAT,Input VAT +product.product_std-ahu-amair_259,PNL ASSY 25MM 0608 CL/SS,362-1AS0608CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2352,Output VAT,Input VAT +product.product_std-ahu-amair_260,PNL ASSY 25MM 0609 CL/CL,362-1AS0609CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,983,Output VAT,Input VAT +product.product_std-ahu-amair_261,PNL ASSY 25MM 0609 CL/GI,362-1AS0609CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,969,Output VAT,Input VAT +product.product_std-ahu-amair_262,PNL ASSY 25MM 0609 GI/GI,362-1AS0609GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,951,Output VAT,Input VAT +product.product_std-ahu-amair_263,PNL ASSY 25MM 0610 CL/CL,362-1AS0610CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1094,Output VAT,Input VAT +product.product_std-ahu-amair_264,PNL ASSY 25MM 0610 CL/GI,362-1AS0610CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1076,Output VAT,Input VAT +product.product_std-ahu-amair_265,PNL ASSY 25MM 0610 GI/GI,362-1AS0610GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1057,Output VAT,Input VAT +product.product_std-ahu-amair_266,PNL ASSY 25MM 0610 CL/SS,362-1AS0610CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2947,Output VAT,Input VAT +product.product_std-ahu-amair_267,PNL ASSY 25MM 0611 CL/CL,362-1AS0611CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1204,Output VAT,Input VAT +product.product_std-ahu-amair_268,PNL ASSY 25MM 0611 CL/GI,362-1AS0611CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1183,Output VAT,Input VAT +product.product_std-ahu-amair_269,PNL ASSY 25MM 0611 GI/GI,362-1AS0611GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1163,Output VAT,Input VAT +product.product_std-ahu-amair_270,PNL ASSY 25MM 0612 CL/CL,362-1AS0612CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1314,Output VAT,Input VAT +product.product_std-ahu-amair_271,PNL ASSY 25MM 0612 CL/GI,362-1AS0612CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1291,Output VAT,Input VAT +product.product_std-ahu-amair_272,PNL ASSY 25MM 0612 GI/GI,362-1AS0612GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1270,Output VAT,Input VAT +product.product_std-ahu-amair_273,PNL ASSY 25MM 0612 CL/SS,362-1AS0612CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3764,Output VAT,Input VAT +product.product_std-ahu-amair_274,PNL ASSY 25MM 0613 CL/CL,362-1AS0613CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1422,Output VAT,Input VAT +product.product_std-ahu-amair_275,PNL ASSY 25MM 0613 CL/GI,362-1AS0613CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1398,Output VAT,Input VAT +product.product_std-ahu-amair_276,PNL ASSY 25MM 0613 GI/GI,362-1AS0613GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1377,Output VAT,Input VAT +product.product_std-ahu-amair_277,PNL ASSY 25MM 0614 CL/CL,362-1AS0614CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1531,Output VAT,Input VAT +product.product_std-ahu-amair_278,PNL ASSY 25MM 0614 CL/GI,362-1AS0614CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1507,Output VAT,Input VAT +product.product_std-ahu-amair_279,PNL ASSY 25MM 0614 GI/GI,362-1AS0614GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1482,Output VAT,Input VAT +product.product_std-ahu-amair_280,PNL ASSY 25MM 0706 CL/GI,362-1AS0706CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,750,Output VAT,Input VAT +product.product_std-ahu-amair_281,PNL ASSY 25MM 0707 CL/CL,362-1AS0707CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,891,Output VAT,Input VAT +product.product_std-ahu-amair_282,PNL ASSY 25MM 0707 CL/GI,362-1AS0707CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,877,Output VAT,Input VAT +product.product_std-ahu-amair_283,PNL ASSY 25MM 0707 GI/GI,362-1AS0707GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,863,Output VAT,Input VAT +product.product_std-ahu-amair_284,PNL ASSY 25MM 0708 CL/CL,362-1AS0708CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1019,Output VAT,Input VAT +product.product_std-ahu-amair_285,PNL ASSY 25MM 0708 CL/GI,362-1AS0708CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1004,Output VAT,Input VAT +product.product_std-ahu-amair_286,PNL ASSY 25MM 0708 GI/GI,362-1AS0708GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,986,Output VAT,Input VAT +product.product_std-ahu-amair_287,PNL ASSY 25MM 0708 CL/SS,362-1AS0708CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2744,Output VAT,Input VAT +product.product_std-ahu-amair_288,PNL ASSY 25MM 0709 CL/CL,362-1AS0709CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1148,Output VAT,Input VAT +product.product_std-ahu-amair_289,PNL ASSY 25MM 0709 CL/GI,362-1AS0709CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1128,Output VAT,Input VAT +product.product_std-ahu-amair_290,PNL ASSY 25MM 0709 GI/GI,362-1AS0709GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1111,Output VAT,Input VAT +product.product_std-ahu-amair_291,PNL ASSY 25MM 0710 CL/CL,362-1AS0710CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1276,Output VAT,Input VAT +product.product_std-ahu-amair_292,PNL ASSY 25MM 0710 CL/GI,362-1AS0710CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1256,Output VAT,Input VAT +product.product_std-ahu-amair_293,PNL ASSY 25MM 0710 GI/GI,362-1AS0710GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1234,Output VAT,Input VAT +product.product_std-ahu-amair_294,PNL ASSY 25MM 0711 CL/CL,362-1AS0711CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1404,Output VAT,Input VAT +product.product_std-ahu-amair_295,PNL ASSY 25MM 0711 CL/GI,362-1AS0711CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1382,Output VAT,Input VAT +product.product_std-ahu-amair_296,PNL ASSY 25MM 0711 GI/GI,362-1AS0711GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1358,Output VAT,Input VAT +product.product_std-ahu-amair_297,PNL ASSY 25MM 0712 CL/CL,362-1AS0712CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1532,Output VAT,Input VAT +product.product_std-ahu-amair_298,PNL ASSY 25MM 0712 CL/GI,362-1AS0712CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1507,Output VAT,Input VAT +product.product_std-ahu-amair_299,PNL ASSY 25MM 0712 GI/GI,362-1AS0712GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1482,Output VAT,Input VAT +product.product_std-ahu-amair_300,PNL ASSY 25MM 0712 CL/SS,362-1AS0712CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,4123,Output VAT,Input VAT +product.product_std-ahu-amair_301,PNL ASSY 25MM 0713 CL/CL,362-1AS0713CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1659,Output VAT,Input VAT +product.product_std-ahu-amair_302,PNL ASSY 25MM 0713 CL/GI,362-1AS0713CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1633,Output VAT,Input VAT +product.product_std-ahu-amair_303,PNL ASSY 25MM 0713 GI/GI,362-1AS0713GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1607,Output VAT,Input VAT +product.product_std-ahu-amair_304,PNL ASSY 25MM 0714 CL/CL,362-1AS0714CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1790,Output VAT,Input VAT +product.product_std-ahu-amair_305,PNL ASSY 25MM 0714 CL/GI,362-1AS0714CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1760,Output VAT,Input VAT +product.product_std-ahu-amair_306,PNL ASSY 25MM 0714 GI/GI,362-1AS0714GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1730,Output VAT,Input VAT +product.product_std-ahu-amair_307,PNL ASSY 25MM 0715 CL/GI,362-1AS0715CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2127,Output VAT,Input VAT +product.product_std-ahu-amair_308,PNL ASSY 50MM 0305 CL/GI,362-2AD0305CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,567,Output VAT,Input VAT +product.product_std-ahu-amair_309,PNL ASSY 50MM 0306 CL/GI,362-2AD0306CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,644,Output VAT,Input VAT +product.product_std-ahu-amair_310,PNL ASSY 50MM 0404 CL/GI,362-2AD0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,636,Output VAT,Input VAT +product.product_std-ahu-amair_311,PNL ASSY 50MM 0405 CL/GI,362-2AD0405CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,698,Output VAT,Input VAT +product.product_std-ahu-amair_312,PNL ASSY 50MM 0406 CL/CL,362-2AD0406CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,742,Output VAT,Input VAT +product.product_std-ahu-amair_313,PNL ASSY 50MM 0406 CL/GI,362-2AD0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,742,Output VAT,Input VAT +product.product_std-ahu-amair_314,PNL ASSY 50MM 0506 CL/GI,362-2AD0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,938,Output VAT,Input VAT +product.product_std-ahu-amair_315,PNL ASSY 50MM 0606 CL/GI,362-2AD0606CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1133,Output VAT,Input VAT +product.product_std-ahu-amair_316,PNL ASSY 50MM 0305 CL/GI,362-2AF0305CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,619,Output VAT,Input VAT +product.product_std-ahu-amair_317,PNL ASSY 50MM 0306 CL/GI,362-2AF0306CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,771,Output VAT,Input VAT +product.product_std-ahu-amair_318,PNL ASSY 50MM 0404 CL/GI,362-2AF0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,688,Output VAT,Input VAT +product.product_std-ahu-amair_319,PNL ASSY 50MM 0405 CL/GI,362-2AF0405CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,782,Output VAT,Input VAT +product.product_std-ahu-amair_320,PNL ASSY 50MM 0406 CL/CL,362-2AF0406CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,794,Output VAT,Input VAT +product.product_std-ahu-amair_321,PNL ASSY 50MM 0406 CL/GI,362-2AF0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,794,Output VAT,Input VAT +product.product_std-ahu-amair_322,PNL ASSY 50MM 0506 CL/GI,362-2AF0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,956,Output VAT,Input VAT +product.product_std-ahu-amair_323,PNL ASSY 50MM 0606 CL/GI,362-2AF0606CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1149,Output VAT,Input VAT +product.product_std-ahu-amair_324,PNL ASSY 50MM 0204 CL/GI,362-2AG0204CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,616,Output VAT,Input VAT +product.product_std-ahu-amair_325,PNL ASSY 50MM 0404 CL/GI,362-2AG0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2274,Output VAT,Input VAT +product.product_std-ahu-amair_326,PNL ASSY 50MM 0406 CL/GI,362-2AG0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1005,Output VAT,Input VAT +product.product_std-ahu-amair_327,PNL ASSY 50MM 0506 CL/GI,362-2AG0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1281,Output VAT,Input VAT +product.product_std-ahu-amair_328,PNL ASSY 50MM 0508 CL/CL,362-2AG0508CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2111,Output VAT,Input VAT +product.product_std-ahu-amair_329,PNL ASSY 50MM 0508 CL/GI,362-2AG0508CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2061,Output VAT,Input VAT +product.product_std-ahu-amair_330,PNL ASSY 50MM 0305 CL/GI,362-2AI0305CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1472,Output VAT,Input VAT +product.product_std-ahu-amair_331,PNL ASSY 50MM 0404 CL/GI,362-2AI0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1409,Output VAT,Input VAT +product.product_std-ahu-amair_332,PNL ASSY 50MM 0405 CL/GI,362-2AI0405CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1458,Output VAT,Input VAT +product.product_std-ahu-amair_333,PNL ASSY 50MM 0406 CL/GI,362-2AI0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1509,Output VAT,Input VAT +product.product_std-ahu-amair_334,PNL ASSY 50MM 0506 CL/GI,362-2AI0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,654,Output VAT,Input VAT +product.product_std-ahu-amair_335,PNL ASSY 50MM 0305 CL/GI,362-2AJ0305CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1036,Output VAT,Input VAT +product.product_std-ahu-amair_336,PNL ASSY 50MM 0404 CL/GI,362-2AJ0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,754,Output VAT,Input VAT +product.product_std-ahu-amair_337,PNL ASSY 50MM 0405 CL/GI,362-2AJ0405CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,780,Output VAT,Input VAT +product.product_std-ahu-amair_338,PNL ASSY 50MM 0406 CL/GI,362-2AJ0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,806,Output VAT,Input VAT +product.product_std-ahu-amair_339,PNL ASSY 50MM 0506 CL/GI,362-2AJ0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1526,Output VAT,Input VAT +product.product_std-ahu-amair_340,PNL ASSY 50MM 0104 CL/GI,362-2AL0104CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,131,Output VAT,Input VAT +product.product_std-ahu-amair_341,PNL ASSY 50MM 0105 CL/GI,362-2AL0105CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,159,Output VAT,Input VAT +product.product_std-ahu-amair_342,PNL ASSY 50MM 0106 CL/GI,362-2AL0106CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,189,Output VAT,Input VAT +product.product_std-ahu-amair_343,PNL ASSY 50MM 0107 CL/GI,362-2AL0107CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,220,Output VAT,Input VAT +product.product_std-ahu-amair_344,PNL ASSY 50MM 0108 CL/GI,362-2AL0108CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,250,Output VAT,Input VAT +product.product_std-ahu-amair_345,PNL ASSY 50MM 0109 CL/GI,362-2AL0109CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,281,Output VAT,Input VAT +product.product_std-ahu-amair_346,PNL ASSY 50MM 0110 CL/GI,362-2AL0110CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,310,Output VAT,Input VAT +product.product_std-ahu-amair_347,PNL ASSY 50MM 0111 CL/GI,362-2AL0111CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,341,Output VAT,Input VAT +product.product_std-ahu-amair_348,PNL ASSY 50MM 0112 CL/GI,362-2AL0112CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,371,Output VAT,Input VAT +product.product_std-ahu-amair_349,PNL ASSY 50MM 0113 CL/GI,362-2AL0113CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,402,Output VAT,Input VAT +product.product_std-ahu-amair_350,PNL ASSY 50MM 0114 CL/GI,362-2AL0114CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,431,Output VAT,Input VAT +product.product_std-ahu-amair_351,PNL ASSY 50MM 0204 CL/GI,362-2AL0204CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,225,Output VAT,Input VAT +product.product_std-ahu-amair_352,PNL ASSY 50MM 0205 CL/GI,362-2AL0205CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,277,Output VAT,Input VAT +product.product_std-ahu-amair_353,PNL ASSY 50MM 0206 CL/GI,362-2AL0206CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,330,Output VAT,Input VAT +product.product_std-ahu-amair_354,PNL ASSY 50MM 0206 CL/SS,362-2AL0206CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,696,Output VAT,Input VAT +product.product_std-ahu-amair_355,PNL ASSY 50MM 0207 CL/GI,362-2AL0207CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,382,Output VAT,Input VAT +product.product_std-ahu-amair_356,PNL ASSY 50MM 0208 CL/GI,362-2AL0208CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,433,Output VAT,Input VAT +product.product_std-ahu-amair_357,PNL ASSY 50MM 0208 CL/SS,362-2AL0208CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,930,Output VAT,Input VAT +product.product_std-ahu-amair_358,PNL ASSY 50MM 0209 CL/GI,362-2AL0209CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,486,Output VAT,Input VAT +product.product_std-ahu-amair_359,PNL ASSY 50MM 0210 CL/GI,362-2AL0210CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,538,Output VAT,Input VAT +product.product_std-ahu-amair_360,PNL ASSY 50MM 0210 CL/SS,362-2AL0210CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1153,Output VAT,Input VAT +product.product_std-ahu-amair_361,PNL ASSY 50MM 0211 CL/GI,362-2AL0211CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,588,Output VAT,Input VAT +product.product_std-ahu-amair_362,PNL ASSY 50MM 0212 CL/GI,362-2AL0212CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,640,Output VAT,Input VAT +product.product_std-ahu-amair_363,PNL ASSY 50MM 0213 CL/GI,362-2AL0213CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,692,Output VAT,Input VAT +product.product_std-ahu-amair_364,PNL ASSY 50MM 0214 CL/GI,362-2AL0214CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,745,Output VAT,Input VAT +product.product_std-ahu-amair_365,PNL ASSY 50MM 0304 CL/GI,362-2AL0304CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,320,Output VAT,Input VAT +product.product_std-ahu-amair_366,PNL ASSY 50MM 0305 CL/GI,362-2AL0305CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,393,Output VAT,Input VAT +product.product_std-ahu-amair_367,PNL ASSY 50MM 0306 CL/GI,362-2AL0306CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,469,Output VAT,Input VAT +product.product_std-ahu-amair_368,PNL ASSY 50MM 0306 CL/CL,362-2AL0306CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,590,Output VAT,Input VAT +product.product_std-ahu-amair_369,PNL ASSY 50MM 0307 CL/GI,362-2AL0307CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,543,Output VAT,Input VAT +product.product_std-ahu-amair_370,PNL ASSY 50MM 0308 CL/GI,362-2AL0308CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,614,Output VAT,Input VAT +product.product_std-ahu-amair_371,PNL ASSY 50MM 0309 CL/GI,362-2AL0309CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,688,Output VAT,Input VAT +product.product_std-ahu-amair_372,PNL ASSY 50MM 0310 CL/GI,362-2AL0310CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,764,Output VAT,Input VAT +product.product_std-ahu-amair_373,PNL ASSY 50MM 0310 CL/SS,362-2AL0310CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1470,Output VAT,Input VAT +product.product_std-ahu-amair_374,PNL ASSY 50MM 0311 CL/GI,362-2AL0311CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,836,Output VAT,Input VAT +product.product_std-ahu-amair_375,PNL ASSY 50MM 0312 CL/GI,362-2AL0312CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,910,Output VAT,Input VAT +product.product_std-ahu-amair_376,PNL ASSY 50MM 0313 CL/GI,362-2AL0313CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,985,Output VAT,Input VAT +product.product_std-ahu-amair_377,PNL ASSY 50MM 0314 CL/GI,362-2AL0314CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1058,Output VAT,Input VAT +product.product_std-ahu-amair_378,PNL ASSY 50MM 0404 CL/GI,362-2AL0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,416,Output VAT,Input VAT +product.product_std-ahu-amair_379,PNL ASSY 50MM 0405 CL/GI,362-2AL0405CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,512,Output VAT,Input VAT +product.product_std-ahu-amair_380,PNL ASSY 50MM 0406 CL/GI,362-2AL0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,607,Output VAT,Input VAT +product.product_std-ahu-amair_381,PNL ASSY 50MM 0407 CL/GI,362-2AL0407CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,704,Output VAT,Input VAT +product.product_std-ahu-amair_382,PNL ASSY 50MM 0408 CL/GI,362-2AL0408CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,797,Output VAT,Input VAT +product.product_std-ahu-amair_383,PNL ASSY 50MM 0409 CL/GI,362-2AL0409CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,893,Output VAT,Input VAT +product.product_std-ahu-amair_384,PNL ASSY 50MM 0410 CL/GI,362-2AL0410CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,989,Output VAT,Input VAT +product.product_std-ahu-amair_385,PNL ASSY 50MM 0411 CL/GI,362-2AL0411CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1084,Output VAT,Input VAT +product.product_std-ahu-amair_386,PNL ASSY 50MM 0412 CL/GI,362-2AL0412CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1180,Output VAT,Input VAT +product.product_std-ahu-amair_387,PNL ASSY 50MM 0413 CL/GI,362-2AL0413CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1274,Output VAT,Input VAT +product.product_std-ahu-amair_388,PNL ASSY 50MM 0414 CL/GI,362-2AL0414CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1370,Output VAT,Input VAT +product.product_std-ahu-amair_389,PNL ASSY 50MM 0505 CL/GI,362-2AL0505CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,628,Output VAT,Input VAT +product.product_std-ahu-amair_390,PNL ASSY 50MM 0506 CL/GI,362-2AL0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,747,Output VAT,Input VAT +product.product_std-ahu-amair_391,PNL ASSY 50MM 0507 CL/GI,362-2AL0507CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,863,Output VAT,Input VAT +product.product_std-ahu-amair_392,PNL ASSY 50MM 0508 CL/GI,362-2AL0508CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,980,Output VAT,Input VAT +product.product_std-ahu-amair_393,PNL ASSY 50MM 0509 CL/GI,362-2AL0509CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1097,Output VAT,Input VAT +product.product_std-ahu-amair_394,PNL ASSY 50MM 0510 CL/GI,362-2AL0510CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1215,Output VAT,Input VAT +product.product_std-ahu-amair_395,PNL ASSY 50MM 0511 CL/GI,362-2AL0511CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1332,Output VAT,Input VAT +product.product_std-ahu-amair_396,PNL ASSY 50MM 0512 CL/GI,362-2AL0512CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1449,Output VAT,Input VAT +product.product_std-ahu-amair_397,PNL ASSY 50MM 0513 CL/GI,362-2AL0513CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1566,Output VAT,Input VAT +product.product_std-ahu-amair_398,PNL ASSY 50MM 0514 CL/GI,362-2AL0514CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1683,Output VAT,Input VAT +product.product_std-ahu-amair_399,PNL ASSY 50MM 0514 CL/GI,362-2AL0516CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2098,Output VAT,Input VAT +product.product_std-ahu-amair_400,PNL ASSY 50MM 0606 CL/GI,362-2AL0606CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,886,Output VAT,Input VAT +product.product_std-ahu-amair_401,PNL ASSY 50MM 0607 CL/GI,362-2AL0607CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1024,Output VAT,Input VAT +product.product_std-ahu-amair_402,PNL ASSY 50MM 0608 CL/GI,362-2AL0608CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1162,Output VAT,Input VAT +product.product_std-ahu-amair_403,PNL ASSY 50MM 0609 CL/GI,362-2AL0609CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1302,Output VAT,Input VAT +product.product_std-ahu-amair_404,PNL ASSY 50MM 0610 CL/GI,362-2AL0610CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1441,Output VAT,Input VAT +product.product_std-ahu-amair_405,PNL ASSY 50MM 0611 CL/GI,362-2AL0611CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1580,Output VAT,Input VAT +product.product_std-ahu-amair_406,PNL ASSY 50MM 0612 CL/GI,362-2AL0612CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1719,Output VAT,Input VAT +product.product_std-ahu-amair_407,PNL ASSY 50MM 0613 CL/GI,362-2AL0613CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1858,Output VAT,Input VAT +product.product_std-ahu-amair_408,PNL ASSY 50MM 0614 CL/GI,362-2AL0614CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1996,Output VAT,Input VAT +product.product_std-ahu-amair_409,PNL ASSY 50MM 0707 CL/GI,362-2AL0707CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1183,Output VAT,Input VAT +product.product_std-ahu-amair_410,PNL ASSY 50MM 0708 CL/GI,362-2AL0708CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1344,Output VAT,Input VAT +product.product_std-ahu-amair_411,PNL ASSY 50MM 0709 CL/GI,362-2AL0709CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1507,Output VAT,Input VAT +product.product_std-ahu-amair_412,PNL ASSY 50MM 0710 CL/GI,362-2AL0710CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1667,Output VAT,Input VAT +product.product_std-ahu-amair_413,PNL ASSY 50MM 0711 CL/GI,362-2AL0711CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1827,Output VAT,Input VAT +product.product_std-ahu-amair_414,PNL ASSY 50MM 0712 CL/GI,362-2AL0712CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1989,Output VAT,Input VAT +product.product_std-ahu-amair_415,PNL ASSY 50MM 0713 CL/GI,362-2AL0713CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2149,Output VAT,Input VAT +product.product_std-ahu-amair_416,PNL ASSY 50MM 0714 CL/GI,362-2AL0714CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2310,Output VAT,Input VAT +product.product_std-ahu-amair_417,PNL ASSY 50MM 0101 CL/CL,362-2AS0101CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,21,Output VAT,Input VAT +product.product_std-ahu-amair_418,PNL ASSY 50MM 0101 CL/GI,362-2AS0101CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,21,Output VAT,Input VAT +product.product_std-ahu-amair_419,PNL ASSY 50MM 0101 GI/GI,362-2AS0101GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,21,Output VAT,Input VAT +product.product_std-ahu-amair_420,PNL ASSY 50MM 0102 CL/CL,362-2AS0102CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,42,Output VAT,Input VAT +product.product_std-ahu-amair_421,PNL ASSY 50MM 0102 CL/GI,362-2AS0102CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,42,Output VAT,Input VAT +product.product_std-ahu-amair_422,PNL ASSY 50MM 0102 GI/GI,362-2AS0102GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,41,Output VAT,Input VAT +product.product_std-ahu-amair_423,PNL ASSY 50MM 0103 CL/CL,362-2AS0103CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,63,Output VAT,Input VAT +product.product_std-ahu-amair_424,PNL ASSY 50MM 0103 CL/GI,362-2AS0103CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,63,Output VAT,Input VAT +product.product_std-ahu-amair_425,PNL ASSY 50MM 0103 GI/GI,362-2AS0103GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,63,Output VAT,Input VAT +product.product_std-ahu-amair_426,PNL ASSY 50MM 0104 CL/CL,362-2AS0104CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,110,Output VAT,Input VAT +product.product_std-ahu-amair_427,PNL ASSY 50MM 0104 CL/GI,362-2AS0104CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,84,Output VAT,Input VAT +product.product_std-ahu-amair_428,PNL ASSY 50MM 0104 GI/GI,362-2AS0104GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,82,Output VAT,Input VAT +product.product_std-ahu-amair_429,PNL ASSY 50MM 0105 CL/CL,362-2AS0105CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,106,Output VAT,Input VAT +product.product_std-ahu-amair_430,PNL ASSY 50MM 0105 CL/GI,362-2AS0105CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,104,Output VAT,Input VAT +product.product_std-ahu-amair_431,PNL ASSY 50MM 0105 GI/GI,362-2AS0105GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,104,Output VAT,Input VAT +product.product_std-ahu-amair_432,PNL ASSY 50MM 0106 CL/CL,362-2AS0106CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,128,Output VAT,Input VAT +product.product_std-ahu-amair_433,PNL ASSY 50MM 0106 CL/GI,362-2AS0106CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,126,Output VAT,Input VAT +product.product_std-ahu-amair_434,PNL ASSY 50MM 0106 GI/GI,362-2AS0106GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,123,Output VAT,Input VAT +product.product_std-ahu-amair_435,PNL ASSY 50MM 0107 CL/CL,362-2AS0107CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,149,Output VAT,Input VAT +product.product_std-ahu-amair_436,PNL ASSY 50MM 0107 CL/GI,362-2AS0107CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,145,Output VAT,Input VAT +product.product_std-ahu-amair_437,PNL ASSY 50MM 0107 GI/GI,362-2AS0107GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,143,Output VAT,Input VAT +product.product_std-ahu-amair_438,PNL ASSY 50MM 0108 CL/CL,362-2AS0108CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,168,Output VAT,Input VAT +product.product_std-ahu-amair_439,PNL ASSY 50MM 0108 CL/GI,362-2AS0108CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,166,Output VAT,Input VAT +product.product_std-ahu-amair_440,PNL ASSY 50MM 0108 GI/GI,362-2AS0108GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,165,Output VAT,Input VAT +product.product_std-ahu-amair_441,PNL ASSY 50MM 0109 CL/CL,362-2AS0109CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,189,Output VAT,Input VAT +product.product_std-ahu-amair_442,PNL ASSY 50MM 0109 CL/GI,362-2AS0109CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,188,Output VAT,Input VAT +product.product_std-ahu-amair_443,PNL ASSY 50MM 0109 GI/GI,362-2AS0109GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,186,Output VAT,Input VAT +product.product_std-ahu-amair_444,PNL ASSY 50MM 0110 CL/CL,362-2AS0110CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,212,Output VAT,Input VAT +product.product_std-ahu-amair_445,PNL ASSY 50MM 0110 CL/GI,362-2AS0110CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,210,Output VAT,Input VAT +product.product_std-ahu-amair_446,PNL ASSY 50MM 0110 GI/GI,362-2AS0110GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,207,Output VAT,Input VAT +product.product_std-ahu-amair_447,PNL ASSY 50MM 0111 CL/CL,362-2AS0111CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,232,Output VAT,Input VAT +product.product_std-ahu-amair_448,PNL ASSY 50MM 0111 CL/GI,362-2AS0111CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,229,Output VAT,Input VAT +product.product_std-ahu-amair_449,PNL ASSY 50MM 0111 GI/GI,362-2AS0111GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,227,Output VAT,Input VAT +product.product_std-ahu-amair_450,PNL ASSY 50MM 0112 CL/CL,362-2AS0112CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,254,Output VAT,Input VAT +product.product_std-ahu-amair_451,PNL ASSY 50MM 0112 CL/GL,362-2AS0112CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,250,Output VAT,Input VAT +product.product_std-ahu-amair_452,PNL ASSY 50MM 0112 GI/GI,362-2AS0112GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,247,Output VAT,Input VAT +product.product_std-ahu-amair_453,PNL ASSY 50MM 0113 CL/CL,362-2AS0113CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,274,Output VAT,Input VAT +product.product_std-ahu-amair_454,PNL ASSY 50MM 0113 CL/GI,362-2AS0113CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,270,Output VAT,Input VAT +product.product_std-ahu-amair_455,PNL ASSY 50MM 0113 GI/GI,362-2AS0113GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,269,Output VAT,Input VAT +product.product_std-ahu-amair_456,PNL ASSY 50MM 0114 CL/CL,362-2AS0114CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,296,Output VAT,Input VAT +product.product_std-ahu-amair_457,PNL ASSY 50MM 0114 CL/GI,362-2AS0114CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,291,Output VAT,Input VAT +product.product_std-ahu-amair_458,PNL ASSY 50MM 0114 GI/GI,362-2AS0114GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,289,Output VAT,Input VAT +product.product_std-ahu-amair_459,PNL ASSY 50MM 0202 CL/CL,362-2AS0202CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,86,Output VAT,Input VAT +product.product_std-ahu-amair_460,PNL ASSY 50MM 0202 CL/GI,362-2AS0202CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,84,Output VAT,Input VAT +product.product_std-ahu-amair_461,PNL ASSY 50MM 0202 GI/GI,362-2AS0202GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,83,Output VAT,Input VAT +product.product_std-ahu-amair_462,PNL ASSY 50MM 0203 CL/CL,362-2AS0203CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,130,Output VAT,Input VAT +product.product_std-ahu-amair_463,PNL ASSY 50MM 0203 CL/GI,362-2AS0203CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,128,Output VAT,Input VAT +product.product_std-ahu-amair_464,PNL ASSY 50MM 0203 GI/GI,362-2AS0203GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,126,Output VAT,Input VAT +product.product_std-ahu-amair_465,PNL ASSY 50MM 0208 CL/CL,362-2AS0204CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,172,Output VAT,Input VAT +product.product_std-ahu-amair_466,PNL ASSY 50MM 0204 CL/GI,362-2AS0204CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,169,Output VAT,Input VAT +product.product_std-ahu-amair_467,PNL ASSY 50MM 0204 GI/GI,362-2AS0204GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,166,Output VAT,Input VAT +product.product_std-ahu-amair_468,PNL ASSY 50MM 0204 GI/SS,362-2AS0204CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,418,Output VAT,Input VAT +product.product_std-ahu-amair_469,PNL ASSY 50MM 0205 CL/CL,362-2AS0205CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,214,Output VAT,Input VAT +product.product_std-ahu-amair_470,PNL ASSY 50MM 0205 CL/GI,362-2AS0205CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,212,Output VAT,Input VAT +product.product_std-ahu-amair_471,PNL ASSY 50MM 0205 GI/GI,362-2AS0205GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,210,Output VAT,Input VAT +product.product_std-ahu-amair_472,PNL ASSY 50MM 0205 CL/SS,362-2AS0205CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,513,Output VAT,Input VAT +product.product_std-ahu-amair_473,PNL ASSY 50MM 0206 CL/CL,362-2AS0206CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,257,Output VAT,Input VAT +product.product_std-ahu-amair_474,PNL ASSY 50MM 0206 CL/GI,362-2AS0206CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,255,Output VAT,Input VAT +product.product_std-ahu-amair_475,PNL ASSY 50MM 0206 GI/GI,362-2AS0206GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,251,Output VAT,Input VAT +product.product_std-ahu-amair_476,PNL ASSY 50MM 0206 CL/SS,362-2AS0206CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,622,Output VAT,Input VAT +product.product_std-ahu-amair_477,PNL ASSY 50MM 0207 CL/CL,362-2AS0207CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,302,Output VAT,Input VAT +product.product_std-ahu-amair_478,PNL ASSY 50MM 0207 CL/GI,362-2AS0207CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,297,Output VAT,Input VAT +product.product_std-ahu-amair_479,PNL ASSY 50MM 0207 GI/GI,362-2AS0207GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,293,Output VAT,Input VAT +product.product_std-ahu-amair_480,PNL ASSY 50MM 0208 CL/CL,362-2AS0208CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,344,Output VAT,Input VAT +product.product_std-ahu-amair_481,PNL ASSY 50MM 0208 CL/GI,362-2AS0208CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,339,Output VAT,Input VAT +product.product_std-ahu-amair_482,PNL ASSY 50MM 0208 GI/GI,362-2AS0208GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,336,Output VAT,Input VAT +product.product_std-ahu-amair_483,PNL ASSY 50MM 0208 CL/SS,362-2AS0208CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,837,Output VAT,Input VAT +product.product_std-ahu-amair_484,PNL ASSY 50MM 0209 CL/CL,362-2AS0209CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,389,Output VAT,Input VAT +product.product_std-ahu-amair_485,PNL ASSY 50MM 0209 CL/GI,362-2AS0209CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,384,Output VAT,Input VAT +product.product_std-ahu-amair_486,PNL ASSY 50MM 0209 GI/GI,362-2AS0209GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,377,Output VAT,Input VAT +product.product_std-ahu-amair_487,PNL ASSY 50MM 0210 CL/CL,362-2AS0210CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,430,Output VAT,Input VAT +product.product_std-ahu-amair_488,PNL ASSY 50MM 0210 CL/GI,362-2AS0210CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,426,Output VAT,Input VAT +product.product_std-ahu-amair_489,PNL ASSY 50MM 0210 GI/GI,362-2AS0210GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,419,Output VAT,Input VAT +product.product_std-ahu-amair_490,PNL ASSY 50MM 0210 CL/SS,362-2AS0210CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1040,Output VAT,Input VAT +product.product_std-ahu-amair_491,PNL ASSY 50MM 0211 CL/CL,362-2AS0211CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,475,Output VAT,Input VAT +product.product_std-ahu-amair_492,PNL ASSY 50MM 0211 CL/GI,362-2AS0211CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,469,Output VAT,Input VAT +product.product_std-ahu-amair_493,PNL ASSY 50MM 0211 GI/GI,362-2AS0211GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,462,Output VAT,Input VAT +product.product_std-ahu-amair_494,PNL ASSY 50MM 0212 CL/CL,362-2AS0212CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,517,Output VAT,Input VAT +product.product_std-ahu-amair_495,PNL ASSY 50MM 0212 CL/GI,362-2AS0212CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,509,Output VAT,Input VAT +product.product_std-ahu-amair_496,PNL ASSY 50MM 0212 CL/SS,362-2AS0212CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1176,Output VAT,Input VAT +product.product_std-ahu-amair_497,PNL ASSY 50MM 0212 GI/GI,362-2AS0212GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,504,Output VAT,Input VAT +product.product_std-ahu-amair_498,PNL ASSY 50MM 0213 CL/CL,362-2AS0213CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,561,Output VAT,Input VAT +product.product_std-ahu-amair_499,PNL ASSY 50MM 0213 CL/GI,362-2AS0213CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,553,Output VAT,Input VAT +product.product_std-ahu-amair_500,PNL ASSY 50MM 0213 GI/GI,362-2AS0213GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,546,Output VAT,Input VAT +product.product_std-ahu-amair_501,PNL ASSY 50MM 0214 CL/CL,362-2AS0214CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,604,Output VAT,Input VAT +product.product_std-ahu-amair_502,PNL ASSY 50MM 0214 CL/GI,362-2AS0214CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,596,Output VAT,Input VAT +product.product_std-ahu-amair_503,PNL ASSY 50MM 0214 GI/GI,362-2AS0214GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,588,Output VAT,Input VAT +product.product_std-ahu-amair_504,PNL ASSY 50MM 0216 CL/GI,362-2AS0216CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,754,Output VAT,Input VAT +product.product_std-ahu-amair_505,PNL ASSY 50MM 0303 CL/CL,362-2AS0303CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,192,Output VAT,Input VAT +product.product_std-ahu-amair_506,PNL ASSY 50MM 0303 CL/GI,362-2AS0303CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,190,Output VAT,Input VAT +product.product_std-ahu-amair_507,PNL ASSY 50MM 0303 GI/GI,362-2AS0303GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,189,Output VAT,Input VAT +product.product_std-ahu-amair_508,PNL ASSY 50MM 0304 CL/CL,362-2AS0304CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,258,Output VAT,Input VAT +product.product_std-ahu-amair_509,PNL ASSY 50MM 0304 CL/GI,362-2AS0304CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,255,Output VAT,Input VAT +product.product_std-ahu-amair_510,PNL ASSY 50MM 0304 GI/GI,362-2AS0304GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,252,Output VAT,Input VAT +product.product_std-ahu-amair_511,PNL ASSY 50MM 0305 CL/CL,362-2AS0305CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,324,Output VAT,Input VAT +product.product_std-ahu-amair_512,PNL ASSY 50MM 0305 CL/GI,362-2AS0305CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,319,Output VAT,Input VAT +product.product_std-ahu-amair_513,PNL ASSY 50MM 0305 GI/GI,362-2AS0305GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,315,Output VAT,Input VAT +product.product_std-ahu-amair_514,PNL ASSY 50MM 0306 CL/CL,362-2AS0306CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,389,Output VAT,Input VAT +product.product_std-ahu-amair_515,PNL ASSY 50MM 0306 CL/GI,362-2AS0306CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,385,Output VAT,Input VAT +product.product_std-ahu-amair_516,PNL ASSY 50MM 0306 GI/GI,362-2AS0306GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,378,Output VAT,Input VAT +product.product_std-ahu-amair_517,PNL ASSY 50MM 0306 CL/SS,362-2AS0306CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,934,Output VAT,Input VAT +product.product_std-ahu-amair_518,PNL ASSY 50MM 0307 CL/CL,362-2AS0307CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,454,Output VAT,Input VAT +product.product_std-ahu-amair_519,PNL ASSY 50MM 0307 CL/GI,362-2AS0307CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,448,Output VAT,Input VAT +product.product_std-ahu-amair_520,PNL ASSY 50MM 0307 GI/GI,362-2AS0307GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,444,Output VAT,Input VAT +product.product_std-ahu-amair_521,PNL ASSY 50MM 0308 CL/CL,362-2AS0308CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,520,Output VAT,Input VAT +product.product_std-ahu-amair_522,PNL ASSY 50MM 0308 CL/GI,362-2AS0308CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,514,Output VAT,Input VAT +product.product_std-ahu-amair_523,PNL ASSY 50MM 0308 GI/GI,362-2AS0308GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,506,Output VAT,Input VAT +product.product_std-ahu-amair_524,PNL ASSY 50MM 0308 CL/SS,362-2AS0308CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1259,Output VAT,Input VAT +product.product_std-ahu-amair_525,PNL ASSY 50MM 0309 CL/CL,362-2AS0309CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,586,Output VAT,Input VAT +product.product_std-ahu-amair_526,PNL ASSY 50MM 0309 CL/GI,362-2AS0309CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,578,Output VAT,Input VAT +product.product_std-ahu-amair_527,PNL ASSY 50MM 0309 GI/GI,362-2AS0309GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,570,Output VAT,Input VAT +product.product_std-ahu-amair_528,PNL ASSY 50MM 0310 CL/CL,362-2AS0310CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,651,Output VAT,Input VAT +product.product_std-ahu-amair_529,PNL ASSY 50MM 0310 CL/GI,362-2AS0310CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,643,Output VAT,Input VAT +product.product_std-ahu-amair_530,PNL ASSY 50MM 0310 GI/GI,362-2AS0310GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,633,Output VAT,Input VAT +product.product_std-ahu-amair_531,PNL ASSY 50MM 0310 CL/SS,362-2AS0310CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1571,Output VAT,Input VAT +product.product_std-ahu-amair_532,PNL ASSY 50MM 0311 CL/CL,362-2AS0311CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,715,Output VAT,Input VAT +product.product_std-ahu-amair_533,PNL ASSY 50MM 0311 CL/GI,362-2AS0311CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,707,Output VAT,Input VAT +product.product_std-ahu-amair_534,PNL ASSY 50MM 0311 GI/GI,362-2AS0311GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,697,Output VAT,Input VAT +product.product_std-ahu-amair_535,PNL ASSY 50MM 0312 CL/CL,362-2AS0312CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,782,Output VAT,Input VAT +product.product_std-ahu-amair_536,PNL ASSY 50MM 0312 CL/GL,362-2AS0312CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,770,Output VAT,Input VAT +product.product_std-ahu-amair_537,PNL ASSY 50MM 0312 GI/GI,362-2AS0312GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,762,Output VAT,Input VAT +product.product_std-ahu-amair_538,PNL ASSY 50MM 0313 CL/CL,362-2AS0313CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,845,Output VAT,Input VAT +product.product_std-ahu-amair_539,PNL ASSY 50MM 0313 CL/GI,362-2AS0313CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,835,Output VAT,Input VAT +product.product_std-ahu-amair_540,PNL ASSY 50MM 0313 GI/GI,362-2AS0313GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,825,Output VAT,Input VAT +product.product_std-ahu-amair_541,PNL ASSY 50MM 0314 CL/CL,362-2AS0314CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,911,Output VAT,Input VAT +product.product_std-ahu-amair_542,PNL ASSY 50MM 0314 CL/GL,362-2AS0314CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,899,Output VAT,Input VAT +product.product_std-ahu-amair_543,PNL ASSY 50MM 0314 GI/GI,362-2AS0314GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,887,Output VAT,Input VAT +product.product_std-ahu-amair_544,PNL ASSY 50MM 0404 CL/CL,362-2AS0404CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,346,Output VAT,Input VAT +product.product_std-ahu-amair_545,PNL ASSY 50MM 0404 CL/GI,362-2AS0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,341,Output VAT,Input VAT +product.product_std-ahu-amair_546,PNL ASSY 50MM 0404 GI/GI,362-2AS0404GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,338,Output VAT,Input VAT +product.product_std-ahu-amair_547,PNL ASSY 50MM 0404 CL/SS,362-2AS0404CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,839,Output VAT,Input VAT +product.product_std-ahu-amair_548,PNL ASSY 50MM 0405 CL/CL,362-2AS0405CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,434,Output VAT,Input VAT +product.product_std-ahu-amair_549,PNL ASSY 50MM 0405 CL/GI,362-2AS0405CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,428,Output VAT,Input VAT +product.product_std-ahu-amair_550,PNL ASSY 50MM 0405 GI/GI,362-2AS0405GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,422,Output VAT,Input VAT +product.product_std-ahu-amair_551,PNL ASSY 50MM 0405 CL/SS,362-2AS0405CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1043,Output VAT,Input VAT +product.product_std-ahu-amair_552,PNL ASSY 50MM 0406 CL/CL,362-2AS0406CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,655,Output VAT,Input VAT +product.product_std-ahu-amair_553,PNL ASSY 50MM 0406 CL/GL,362-2AS0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,515,Output VAT,Input VAT +product.product_std-ahu-amair_554,PNL ASSY 50MM 0406 GI/GI,362-2AS0406GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,507,Output VAT,Input VAT +product.product_std-ahu-amair_555,PNL ASSY 50MM 0407 CL/CL,362-2AS0407CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,608,Output VAT,Input VAT +product.product_std-ahu-amair_556,PNL ASSY 50MM 0407 CL/GI,362-2AS0407CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,601,Output VAT,Input VAT +product.product_std-ahu-amair_557,PNL ASSY 50MM 0407 GI/GI,362-2AS0407GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,592,Output VAT,Input VAT +product.product_std-ahu-amair_558,PNL ASSY 50MM 0408 CL/CL,362-2AS0408CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,695,Output VAT,Input VAT +product.product_std-ahu-amair_559,PNL ASSY 50MM 0408 CL/GI,362-2AS0408CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,686,Output VAT,Input VAT +product.product_std-ahu-amair_560,PNL ASSY 50MM 0408 GI/GI,362-2AS0408GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,678,Output VAT,Input VAT +product.product_std-ahu-amair_561,PNL ASSY 50MM 0408 CL/SS,362-2AS0408CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1680,Output VAT,Input VAT +product.product_std-ahu-amair_562,PNL ASSY 50MM 0409 CL/CL,362-2AS0409CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,784,Output VAT,Input VAT +product.product_std-ahu-amair_563,PNL ASSY 50MM 0409 CL/GI,362-2AS0409CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,771,Output VAT,Input VAT +product.product_std-ahu-amair_564,PNL ASSY 50MM 0409 GI/GI,362-2AS0409GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,763,Output VAT,Input VAT +product.product_std-ahu-amair_565,PNL ASSY 50MM 0410 CL/CL,362-2AS0410CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,869,Output VAT,Input VAT +product.product_std-ahu-amair_566,PNL ASSY 50MM 0410 CL/GI,362-2AS0410CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,860,Output VAT,Input VAT +product.product_std-ahu-amair_567,PNL ASSY 50MM 0410 GI/GI,362-2AS0410GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,847,Output VAT,Input VAT +product.product_std-ahu-amair_568,PNL ASSY 50MM 0410 CL/SS,362-2AS0410CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2103,Output VAT,Input VAT +product.product_std-ahu-amair_569,PNL ASSY 50MM 0411 CL/CL,362-2AS0411CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,957,Output VAT,Input VAT +product.product_std-ahu-amair_570,PNL ASSY 50MM 0411 CL/GI,362-2AS0411CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,945,Output VAT,Input VAT +product.product_std-ahu-amair_571,PNL ASSY 50MM 0411 GI/GI,362-2AS0411GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,931,Output VAT,Input VAT +product.product_std-ahu-amair_572,PNL ASSY 50MM 0412 CL/CL,362-2AS0412CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1044,Output VAT,Input VAT +product.product_std-ahu-amair_573,PNL ASSY 50MM 0412 CL/GI,362-2AS0412CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1031,Output VAT,Input VAT +product.product_std-ahu-amair_574,PNL ASSY 50MM 0412 GI/GI,362-2AS0412GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1017,Output VAT,Input VAT +product.product_std-ahu-amair_575,PNL ASSY 50MM 0412 CL/SS,362-2AS0412CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2522,Output VAT,Input VAT +product.product_std-ahu-amair_576,PNL ASSY 50MM 0413 CL/CL,362-2AS0413CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1131,Output VAT,Input VAT +product.product_std-ahu-amair_577,PNL ASSY 50MM 0413 CL/GI,362-2AS0413CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1117,Output VAT,Input VAT +product.product_std-ahu-amair_578,PNL ASSY 50MM 0413 GI/GI,362-2AS0413GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1103,Output VAT,Input VAT +product.product_std-ahu-amair_579,PNL ASSY 50MM 0414 CL/CL,362-2AS0414CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1219,Output VAT,Input VAT +product.product_std-ahu-amair_580,PNL ASSY 50MM 0414 CL/GL,362-2AS0414CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1204,Output VAT,Input VAT +product.product_std-ahu-amair_581,PNL ASSY 50MM 0414 GI/GI,362-2AS0414GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1186,Output VAT,Input VAT +product.product_std-ahu-amair_582,PNL ASSY 50MM 0416 CL/GL,362-2AS0416CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1433,Output VAT,Input VAT +product.product_std-ahu-amair_583,PNL ASSY 50MM 0505 CL/CL,362-2AS0505CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,544,Output VAT,Input VAT +product.product_std-ahu-amair_584,PNL ASSY 50MM 0505 CL/GI,362-2AS0505CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,535,Output VAT,Input VAT +product.product_std-ahu-amair_585,PNL ASSY 50MM 0505 GI/GI,362-2AS0505GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,529,Output VAT,Input VAT +product.product_std-ahu-amair_586,PNL ASSY 50MM 0506 CL/CL,362-2AS0506CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,653,Output VAT,Input VAT +product.product_std-ahu-amair_587,PNL ASSY 50MM 0506 CL/GI,362-2AS0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,644,Output VAT,Input VAT +product.product_std-ahu-amair_588,PNL ASSY 50MM 0506 GI/GI,362-2AS0506GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,634,Output VAT,Input VAT +product.product_std-ahu-amair_589,PNL ASSY 50MM 0506 CL/SS,362-2AS0506CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1572,Output VAT,Input VAT +product.product_std-ahu-amair_590,PNL ASSY 50MM 0507 CL/CL,362-2AS0507CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,762,Output VAT,Input VAT +product.product_std-ahu-amair_591,PNL ASSY 50MM 0507 CL/GI,362-2AS0507CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,750,Output VAT,Input VAT +product.product_std-ahu-amair_592,PNL ASSY 50MM 0507 GI/GI,362-2AS0507GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,742,Output VAT,Input VAT +product.product_std-ahu-amair_593,PNL ASSY 50MM 0508 CL/CL,362-2AS0508CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,870,Output VAT,Input VAT +product.product_std-ahu-amair_594,PNL ASSY 50MM 0508 CL/GI,362-2AS0508CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,860,Output VAT,Input VAT +product.product_std-ahu-amair_595,PNL ASSY 50MM 0508 GI/GI,362-2AS0508GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,847,Output VAT,Input VAT +product.product_std-ahu-amair_596,PNL ASSY 50MM 0508 CL/SS,362-2AS0508CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2103,Output VAT,Input VAT +product.product_std-ahu-amair_597,PNL ASSY 50MM 0509 CL/CL,362-2AS0509CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,980,Output VAT,Input VAT +product.product_std-ahu-amair_598,PNL ASSY 50MM 0509 CL/GI,362-2AS0509CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,967,Output VAT,Input VAT +product.product_std-ahu-amair_599,PNL ASSY 50MM 0509 GI/GI,362-2AS0509GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,954,Output VAT,Input VAT +product.product_std-ahu-amair_600,PNL ASSY 50MM 0510 CL/CL,362-2AS0510CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1090,Output VAT,Input VAT +product.product_std-ahu-amair_601,PNL ASSY 50MM 0510 CL/GI,362-2AS0510CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1074,Output VAT,Input VAT +product.product_std-ahu-amair_602,PNL ASSY 50MM 0510 GI/GI,362-2AS0510GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1062,Output VAT,Input VAT +product.product_std-ahu-amair_603,PNL ASSY 50MM 0510 CL/SS,362-2AS0510CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2631,Output VAT,Input VAT +product.product_std-ahu-amair_604,PNL ASSY 50MM 0511 CL/CL,362-2AS0511CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1200,Output VAT,Input VAT +product.product_std-ahu-amair_605,PNL ASSY 50MM 0511 CL/GI,362-2AS0511CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1183,Output VAT,Input VAT +product.product_std-ahu-amair_606,PNL ASSY 50MM 0511 GI/GI,362-2AS0511GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1168,Output VAT,Input VAT +product.product_std-ahu-amair_607,PNL ASSY 50MM 0512 CL/CL,362-2AS0512CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1308,Output VAT,Input VAT +product.product_std-ahu-amair_608,PNL ASSY 50MM 0512 CL/GL,362-2AS0512CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1290,Output VAT,Input VAT +product.product_std-ahu-amair_609,PNL ASSY 50MM 0512 GI/GI,362-2AS0512GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1274,Output VAT,Input VAT +product.product_std-ahu-amair_610,PNL ASSY 50MM 0513 CL/CL,362-2AS0513CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1418,Output VAT,Input VAT +product.product_std-ahu-amair_611,PNL ASSY 50MM 0513 CL/GI,362-2AS0513CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1398,Output VAT,Input VAT +product.product_std-ahu-amair_612,PNL ASSY 50MM 0513 GI/GI,362-2AS0513GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1381,Output VAT,Input VAT +product.product_std-ahu-amair_613,PNL ASSY 50MM 0514 CL/CL,362-2AS0514CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1525,Output VAT,Input VAT +product.product_std-ahu-amair_614,PNL ASSY 50MM 0514 CL/GL,362-2AS0514CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1507,Output VAT,Input VAT +product.product_std-ahu-amair_615,PNL ASSY 50MM 0514 GI/GI,362-2AS0514GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1487,Output VAT,Input VAT +product.product_std-ahu-amair_616,PNL ASSY 50MM 0516 CL/GL,362-2AS0516CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1885,Output VAT,Input VAT +product.product_std-ahu-amair_617,PNL ASSY 50MM 0606 CL/CL,362-2AS0606CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,982,Output VAT,Input VAT +product.product_std-ahu-amair_618,PNL ASSY 50MM 0606 CL/GI,362-2AS0606CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,773,Output VAT,Input VAT +product.product_std-ahu-amair_619,PNL ASSY 50MM 0606 GI/GI,362-2AS0606GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,764,Output VAT,Input VAT +product.product_std-ahu-amair_620,PNL ASSY 50MM 0606 CL/SS,362-2AS0606CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1885,Output VAT,Input VAT +product.product_std-ahu-amair_621,PNL ASSY 50MM 0607 CL/CL,362-2AS0607CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,915,Output VAT,Input VAT +product.product_std-ahu-amair_622,PNL ASSY 50MM 0607 CL/GI,362-2AS0607CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,903,Output VAT,Input VAT +product.product_std-ahu-amair_623,PNL ASSY 50MM 0607 GI/GI,362-2AS0607GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,890,Output VAT,Input VAT +product.product_std-ahu-amair_624,PNL ASSY 50MM 0607 CL/SS,362-2AS0607CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2211,Output VAT,Input VAT +product.product_std-ahu-amair_625,PNL ASSY 50MM 0608 CL/CL,362-2AS0608CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1045,Output VAT,Input VAT +product.product_std-ahu-amair_626,PNL ASSY 50MM 0608 CL/GI,362-2AS0608CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1033,Output VAT,Input VAT +product.product_std-ahu-amair_627,PNL ASSY 50MM 0608 GI/GI,362-2AS0608GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1019,Output VAT,Input VAT +product.product_std-ahu-amair_628,PNL ASSY 50MM 0608 CL/SS,362-2AS0608CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2524,Output VAT,Input VAT +product.product_std-ahu-amair_629,PNL ASSY 50MM 0609 CL/CL,362-2AS0609CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1178,Output VAT,Input VAT +product.product_std-ahu-amair_630,PNL ASSY 50MM 0609 CL/GI,362-2AS0609CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1162,Output VAT,Input VAT +product.product_std-ahu-amair_631,PNL ASSY 50MM 0609 GI/GI,362-2AS0609GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1148,Output VAT,Input VAT +product.product_std-ahu-amair_632,PNL ASSY 50MM 0609 CL/SS,362-2AS0609CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2837,Output VAT,Input VAT +product.product_std-ahu-amair_633,PNL ASSY 50MM 0610 CL/CL,362-2AS0610CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1309,Output VAT,Input VAT +product.product_std-ahu-amair_634,PNL ASSY 50MM 0610 CL/GL,362-2AS0610CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1291,Output VAT,Input VAT +product.product_std-ahu-amair_635,PNL ASSY 50MM 0610 GI/GI,362-2AS0610GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1274,Output VAT,Input VAT +product.product_std-ahu-amair_636,PNL ASSY 50MM 0610 CL/SS,362-2AS0610CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3161,Output VAT,Input VAT +product.product_std-ahu-amair_637,PNL ASSY 50MM 0611 CL/CL,362-2AS0611CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1582,Output VAT,Input VAT +product.product_std-ahu-amair_638,PNL ASSY 50MM 0611 CL/GL,362-2AS0611CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1422,Output VAT,Input VAT +product.product_std-ahu-amair_639,PNL ASSY 50MM 0611 GI/GI,362-2AS0611GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1403,Output VAT,Input VAT +product.product_std-ahu-amair_640,PNL ASSY 50MM 0612 CL/CL,362-2AS0612CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1571,Output VAT,Input VAT +product.product_std-ahu-amair_641,PNL ASSY 50MM 0612 CL/GI,362-2AS0612CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1550,Output VAT,Input VAT +product.product_std-ahu-amair_642,PNL ASSY 50MM 0612 GI/GI,362-2AS0612GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1530,Output VAT,Input VAT +product.product_std-ahu-amair_643,PNL ASSY 50MM 0612 CL/SS,362-2AS0612CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3786,Output VAT,Input VAT +product.product_std-ahu-amair_644,PNL ASSY 50MM 0613 CL/CL,362-2AS0613CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1702,Output VAT,Input VAT +product.product_std-ahu-amair_645,PNL ASSY 50MM 0613 CL/GI,362-2AS0613CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1680,Output VAT,Input VAT +product.product_std-ahu-amair_646,PNL ASSY 50MM 0613 GI/GI,362-2AS0613GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1658,Output VAT,Input VAT +product.product_std-ahu-amair_647,PNL ASSY 50MM 0614 CL/CL,362-2AS0614CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1835,Output VAT,Input VAT +product.product_std-ahu-amair_648,PNL ASSY 50MM 0614 CL/GL,362-2AS0614CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1811,Output VAT,Input VAT +product.product_std-ahu-amair_649,PNL ASSY 50MM 0614 GI/GI,362-2AS0614GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1786,Output VAT,Input VAT +product.product_std-ahu-amair_650,PNL ASSY 50MM 0707 CL/CL,362-2AS0707CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1200,Output VAT,Input VAT +product.product_std-ahu-amair_651,PNL ASSY 50MM 0707 CL/GI,362-2AS0707CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1055,Output VAT,Input VAT +product.product_std-ahu-amair_652,PNL ASSY 50MM 0707 GI/GI,362-2AS0707GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1040,Output VAT,Input VAT +product.product_std-ahu-amair_653,PNL ASSY 50MM 0708 CL/CL,362-2AS0708CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1222,Output VAT,Input VAT +product.product_std-ahu-amair_654,PNL ASSY 50MM 0708 CL/GL,362-2AS0708CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1205,Output VAT,Input VAT +product.product_std-ahu-amair_655,PNL ASSY 50MM 0708 GI/GI,362-2AS0708GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1190,Output VAT,Input VAT +product.product_std-ahu-amair_656,PNL ASSY 50MM 0708 CL/SS,362-2AS0708CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2945,Output VAT,Input VAT +product.product_std-ahu-amair_657,PNL ASSY 50MM 0709 CL/CL,362-2AS0709CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1515,Output VAT,Input VAT +product.product_std-ahu-amair_658,PNL ASSY 50MM 0709 CL/GI,362-2AS0709CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1357,Output VAT,Input VAT +product.product_std-ahu-amair_659,PNL ASSY 50MM 0709 GI/GI,362-2AS0709GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1339,Output VAT,Input VAT +product.product_std-ahu-amair_660,PNL ASSY 50MM 0710 CL/CL,362-2AS0710CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1527,Output VAT,Input VAT +product.product_std-ahu-amair_661,PNL ASSY 50MM 0710 CL/GI,362-2AS0710CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1508,Output VAT,Input VAT +product.product_std-ahu-amair_662,PNL ASSY 50MM 0710 GI/GI,362-2AS0710GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1489,Output VAT,Input VAT +product.product_std-ahu-amair_663,PNL ASSY 50MM 0710 CL/SS,362-2AS0710CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3692,Output VAT,Input VAT +product.product_std-ahu-amair_664,PNL ASSY 50MM 0711 CL/CL,362-2AS0711CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1681,Output VAT,Input VAT +product.product_std-ahu-amair_665,PNL ASSY 50MM 0711 CL/GI,362-2AS0711CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1659,Output VAT,Input VAT +product.product_std-ahu-amair_666,PNL ASSY 50MM 0711 GI/GI,362-2AS0711GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1639,Output VAT,Input VAT +product.product_std-ahu-amair_667,PNL ASSY 50MM 0712 CL/CL,362-2AS0712CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1835,Output VAT,Input VAT +product.product_std-ahu-amair_668,PNL ASSY 50MM 0712 CL/GL,362-2AS0712CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1811,Output VAT,Input VAT +product.product_std-ahu-amair_669,PNL ASSY 50MM 0712 GI/GI,362-2AS0712GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1787,Output VAT,Input VAT +product.product_std-ahu-amair_670,PNL ASSY 50MM 0712 CL/SS,362-2AS0712CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,4427,Output VAT,Input VAT +product.product_std-ahu-amair_671,PNL ASSY 50MM 0713 CL/CL,362-2AS0713CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1989,Output VAT,Input VAT +product.product_std-ahu-amair_672,PNL ASSY 50MM 0713 CL/GI,362-2AS0713CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1962,Output VAT,Input VAT +product.product_std-ahu-amair_673,PNL ASSY 50MM 0713 GI/GI,362-2AS0713GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1937,Output VAT,Input VAT +product.product_std-ahu-amair_674,PNL ASSY 50MM 0714 CL/CL,362-2AS0714CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2142,Output VAT,Input VAT +product.product_std-ahu-amair_675,PNL ASSY 50MM 0714 CL/GL,362-2AS0714CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2114,Output VAT,Input VAT +product.product_std-ahu-amair_676,PNL ASSY 50MM 0714 GI/GI,362-2AS0714GIGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2086,Output VAT,Input VAT +product.product_std-ahu-amair_677,HINGE DOOR ASSY 25MM 0306 CL/CL,362-1AH0306CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2562,Output VAT,Input VAT +product.product_std-ahu-amair_678,HINGE DOOR ASSY 25MM 0404 CL/CL,362-1AH0404CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1934,Output VAT,Input VAT +product.product_std-ahu-amair_679,HINGE DOOR ASSY 25MM 0404 CL/GI,362-1AH0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1825,Output VAT,Input VAT +product.product_std-ahu-amair_680,HINGE DOOR ASSY 25MM 0404 CL/SS,362-1AH0404CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2322,Output VAT,Input VAT +product.product_std-ahu-amair_681,HINGE DOOR ASSY 25MM 0405 CL/CL,362-1AH0405CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2375,Output VAT,Input VAT +product.product_std-ahu-amair_682,HINGE DOOR ASSY 25MM 0406 CL/CL,362-1AH0406CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2422,Output VAT,Input VAT +product.product_std-ahu-amair_683,HINGE DOOR ASSY 25MM 0406 CL/GI,362-1AH0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2259,Output VAT,Input VAT +product.product_std-ahu-amair_684,HINGE DOOR ASSY 25MM 0406 CL/SS,362-1AH0406CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3005,Output VAT,Input VAT +product.product_std-ahu-amair_685,HINGE DOOR ASSY 25MM 0506 CL/CL,362-1AH0506CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3421,Output VAT,Input VAT +product.product_std-ahu-amair_686,HINGE DOOR ASSY 25MM 0506 CL/GI,362-1AH0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3148,Output VAT,Input VAT +product.product_std-ahu-amair_687,HINGE DOOR ASSY 25MM 0606 CL/CL,362-1AH0606CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3885,Output VAT,Input VAT +product.product_std-ahu-amair_688,HINGE DOOR ASSY 25MM 0606 CL/GI,362-1AH0606CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3558,Output VAT,Input VAT +product.product_std-ahu-amair_689,HINGE DOOR ASSY 50MM 0404 CL/CL,362-2AH0404CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2250,Output VAT,Input VAT +product.product_std-ahu-amair_690,HINGE DOOR ASSY 50MM 0404 CL/GI,362-2AH0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2141,Output VAT,Input VAT +product.product_std-ahu-amair_691,HINGE DOOR ASSY 50MM 0405 CL/CL,362-2AH0405CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2519,Output VAT,Input VAT +product.product_std-ahu-amair_692,HINGE DOOR ASSY 50MM 0406 CL/CL,362-2AH0406CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2789,Output VAT,Input VAT +product.product_std-ahu-amair_693,HINGE DOOR ASSY 50MM 0406 CL/GI,362-2AH0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2625,Output VAT,Input VAT +product.product_std-ahu-amair_694,HINGE DOOR ASSY 50MM 0406 CL/SS,362-2AH0406CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3371,Output VAT,Input VAT +product.product_std-ahu-amair_695,HINGE DOOR ASSY 50MM 0506 CL/CL,362-2AH0506CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3474,Output VAT,Input VAT +product.product_std-ahu-amair_696,HINGE DOOR ASSY 50MM 0506 CL/GI,362-2AH0506CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3202,Output VAT,Input VAT +product.product_std-ahu-amair_697,HINGE DOOR ASSY 50MM 0506 CL/SS,362-2AH0506CLSS,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,4131,Output VAT,Input VAT +product.product_std-ahu-amair_698,HINGE DOOR ASSY 50MM 0606 CL/CL,362-2AH0606CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3917,Output VAT,Input VAT +product.product_std-ahu-amair_699,HINGE DOOR ASSY 50MM 0606 CL/GI,362-2AH0606CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3590,Output VAT,Input VAT +product.product_std-ahu-amair_700,HINGE DOOR PANEL 25MM 0404,888-350001,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1701,Output VAT,Input VAT +product.product_std-ahu-amair_701,HINGE DOOR PANEL 25MM 0406,888-350001,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1744,Output VAT,Input VAT +product.product_std-ahu-amair_702,Size : 614 x 1982 CLGI,888-360179,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1109,Output VAT,Input VAT +product.product_std-ahu-amair_703,Size : 614 x 1982 CLGI,888-360180,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1270,Output VAT,Input VAT +product.product_std-ahu-amair_704,Size : 769 x 1982 CLGI,888-362956,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1462,Output VAT,Input VAT +product.product_std-ahu-amair_705,Size : 769 x 1827 CLGI,888-362953,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1510,Output VAT,Input VAT +product.product_std-ahu-amair_706,Size : 769 x 1928 CLGI,888-362954,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1585,Output VAT,Input VAT +product.product_std-ahu-amair_707,Size : 769 x 1827 CLGI,888-362955,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1348,Output VAT,Input VAT +product.product_std-ahu-amair_708,Size : 614 x 1672 CLGI,888-362973,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1199,Output VAT,Input VAT +product.product_std-ahu-amair_709,LATCH PANEL ASSY 50MM 0607 CL/GI,888-363793,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2100,Output VAT,Input VAT +product.product_std-ahu-amair_710,LATCH DOOR ASSY 25MM 0406 CL/CL,888-364028,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2747,Output VAT,Input VAT +product.product_std-ahu-amair_711,LATCH DOOR ASSY 25MM 0506 CL/CL,888-364057,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3755,Output VAT,Input VAT +product.product_std-ahu-amair_712,LATCH DOOR ASSY 50MM 0506 CL/CL,888-364055,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3809,Output VAT,Input VAT +product.product_std-ahu-amair_713,LATCH DOOR ASSY 50MM 0606 CL/CL,888-364056,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,4256,Output VAT,Input VAT +product.product_std-ahu-amair_714,PNL ASSY 25MM 0309 CL/GI,999-1AD0309CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1464,Output VAT,Input VAT +product.product_std-ahu-amair_715,PNL AD ASSY 25MM0404CL/GI,999-1AD0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,779,Output VAT,Input VAT +product.product_std-ahu-amair_716,PNL AD ASSY 25MM0406CL/GI,999-1AD0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,863,Output VAT,Input VAT +product.product_std-ahu-amair_717,PNL ASSY 25MM 0408 CL/GI,999-1AD0408CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1658,Output VAT,Input VAT +product.product_std-ahu-amair_718,PNL ASSY 25MM 0409 CL/GI,999-1AD0409CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1757,Output VAT,Input VAT +product.product_std-ahu-amair_719,PNL ASSY 25MM 0504 CL/GI,999-1AD0504CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1189,Output VAT,Input VAT +product.product_std-ahu-amair_720,PNL AD ASSY 25MM 0604CL/GI,999-1AD0604CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,602,Output VAT,Input VAT +product.product_std-ahu-amair_721,PNL ASSY 25MM 0309 CL/GI,999-1AF0309CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1464,Output VAT,Input VAT +product.product_std-ahu-amair_722,PNL ASSY 25MM 0408 CL/GI,999-1AF0408CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1658,Output VAT,Input VAT +product.product_std-ahu-amair_723,PNL ASSY 25MM 0409 CL/GI,999-1AF0409CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1757,Output VAT,Input VAT +product.product_std-ahu-amair_724,PNL ASSY 25MM 0504 CL/GI,999-1AF0504CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,633,Output VAT,Input VAT +product.product_std-ahu-amair_725,PNL AF ASSY 25MM 0604CLGI,999-1AF0604CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,612,Output VAT,Input VAT +product.product_std-ahu-amair_726,PNL ASSY 25MM 0208 CL/GI,999-1AG0208CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,633,Output VAT,Input VAT +product.product_std-ahu-amair_727,PNL ASSY 25MM 0209 CL/GI,999-1AG0209CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,683,Output VAT,Input VAT +product.product_std-ahu-amair_728,PANEL ASSY 25MM 0307 CL/GI,999-1AG0307CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,953,Output VAT,Input VAT +product.product_std-ahu-amair_729,PANEL ASSY 25MM 0405 CL/GI,999-1AG0405CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,741,Output VAT,Input VAT +product.product_std-ahu-amair_730,PANEL ASSY 25MM 0508 CL/GI,999-1AG0508CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1333,Output VAT,Input VAT +product.product_std-ahu-amair_731,PANEL ASSY 25MM 0610 CL/GI,999-1AG0610CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1589,Output VAT,Input VAT +product.product_std-ahu-amair_732,PNL ASSY 25MM 0409 CL/GI,999-1AI0409CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2537,Output VAT,Input VAT +product.product_std-ahu-amair_733,PNL ASSY 25MM 0409 CL/GI,999-1AJ0409CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1757,Output VAT,Input VAT +product.product_std-ahu-amair_734,PNL ASSY 25MM 0118 CL/GL,999-1AS0118CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,314,Output VAT,Input VAT +product.product_std-ahu-amair_735,PNL ASSY 25MM 0204 CL/GI,999-1AS0204CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,405,Output VAT,Input VAT +product.product_std-ahu-amair_736,PNL ASSY 25MM 0304 CL/GI,999-1AS0304CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,280,Output VAT,Input VAT +product.product_std-ahu-amair_737,PNL ASSY 25MM 0406 CL/GI,999-1AS0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,689,Output VAT,Input VAT +product.product_std-ahu-amair_738,PNL ASSY 25MM 0118 CL/GL,999-1AS0418CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1288,Output VAT,Input VAT +product.product_std-ahu-amair_739,PNL ASSY 25MM 0518 CL/GL,999-1AS0518CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1617,Output VAT,Input VAT +product.product_std-ahu-amair_740,PNL ASSY 50MM 0608 CL/GI,999-2AD0608CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1554,Output VAT,Input VAT +product.product_std-ahu-amair_741,PNL ASSY 50MM 0608 CL/GI,999-2AF0608CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1554,Output VAT,Input VAT +product.product_std-ahu-amair_742,PNL ASSY 50MM 0204 CL/GI,999-2AG0204CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,586,Output VAT,Input VAT +product.product_std-ahu-amair_743,PNL ASSY 50MM 0206 CL/GI,999-2AG0206CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,732,Output VAT,Input VAT +product.product_std-ahu-amair_744,PNL ASSY 50MM 0218 CL/GL,999-2AL0218CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,960,Output VAT,Input VAT +product.product_std-ahu-amair_745,PNL ASSY 50MM 0306 CL/GL,999-2AL0306CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1106,Output VAT,Input VAT +product.product_std-ahu-amair_746,PNL ASSY 50MM 0418 CL/GL,999-2AL0418CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1738,Output VAT,Input VAT +product.product_std-ahu-amair_747,PNL ASSY 50MM 0118 CL/GL,999-2AS0118CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,370,Output VAT,Input VAT +product.product_std-ahu-amair_748,PAL ASSY 50MM 0204 CL/GI,999-2AS0204CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,573,Output VAT,Input VAT +product.product_std-ahu-amair_749,PNL ASSY 50MM 0218 CL/GL,999-2AS0218CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,769,Output VAT,Input VAT +product.product_std-ahu-amair_750,PAL ASSY 50MM 0404 CL/GI,999-2AS0404CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,745,Output VAT,Input VAT +product.product_std-ahu-amair_751,PNL ASSY 50MM 0406 CL/GI,999-2AS0406CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,916,Output VAT,Input VAT +product.product_std-ahu-amair_752,PNL ASSY 50MM 0408 CL/GI,999-2AS0408CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1458,Output VAT,Input VAT +product.product_std-ahu-amair_753,PNL ASSY 50MM 0418 CL/GL,999-2AS0418CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1548,Output VAT,Input VAT +product.product_std-ahu-amair_754,PNL ASSY 50MM 0518 CL/GL,999-2AS0518CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1938,Output VAT,Input VAT +product.product_std-ahu-amair_755,PNL ASSY 50MM 0618 CL/GL,999-2AS0618CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2327,Output VAT,Input VAT +product.product_std-ahu-amair_756,PNL ASSY 50MM 0614-5MM,999-2BL0614CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1996,Output VAT,Input VAT +product.product_std-ahu-amair_757,DOUBLE PANEL 0408 CLGI,999-3620017CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1490,Output VAT,Input VAT +product.product_std-ahu-amair_758,DOUBLE PANEL 584x1000 CL/CL,999-3620018CLCL,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1130,Output VAT,Input VAT +product.product_std-ahu-amair_759,DOUBLE PANEL 584x1000CLGI,999-3620018CLGI,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1027,Output VAT,Input VAT +product.product_std-ahu-amair_760,PNL ASSY 50MM 0411 CL/GI,999-3620049,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1084,Output VAT,Input VAT +product.product_std-ahu-amair_761,PNL ASSY 50MM 0406 CL/GI,999-3620050,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,607,Output VAT,Input VAT +product.product_std-ahu-amair_762,PNL ASSY 50MM 0409 CL/GI,999-3620051,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,893,Output VAT,Input VAT +product.product_std-ahu-amair_763,PNL ASSY 25MM 0410 CL/GI,999-3620061-01,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,4001,Output VAT,Input VAT +product.product_std-ahu-amair_764,PNL ASSY 25MM 0610 CL/GI,999-3620061-02,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,6313,Output VAT,Input VAT +product.product_std-ahu-amair_765,PNL ASSY 25MM 0310 CL/GI,999-3620061-03,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3144,Output VAT,Input VAT +product.product_std-ahu-amair_766,PNL ASSY 25MM 0404 CL/GI,999-3620061-04,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3488,Output VAT,Input VAT +product.product_std-ahu-amair_767,PNL ASSY 25MM 0110 CL/GI,999-3620061-05,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1715,Output VAT,Input VAT +product.product_std-ahu-amair_768,PNL ASSY 25MM 0304 CL/GI,999-3620061-06,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2599,Output VAT,Input VAT +product.product_std-ahu-amair_769,PNL ASSY 25MM 0204 CL/GI,999-3620061-07,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2599,Output VAT,Input VAT +product.product_std-ahu-amair_770,PNL ASSY 25MM 0204 CL/GI,999-3620061-08,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2599,Output VAT,Input VAT +product.product_std-ahu-amair_771,PNL ASSY 25MM 0404 CL/GI,999-3620086,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,361,Output VAT,Input VAT +product.product_std-ahu-amair_772,PNL ASSY 25MM 0406 CL/GI,999-3620087,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,524,Output VAT,Input VAT +product.product_std-ahu-amair_773,PNL ASSY 25MM 0407 CL/GI,999-3620088,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,605,Output VAT,Input VAT +product.product_std-ahu-amair_774,PNL ASSY 25MM 0408 CL/GI,999-3620089,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,686,Output VAT,Input VAT +product.product_std-ahu-amair_775,PNL ASSY 25MM 0409 CL/GI,999-3620221,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1644,Output VAT,Input VAT +product.product_std-ahu-amair_776,PNL ASSY 25MM 0409 CL/GI,999-3620222,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1644,Output VAT,Input VAT +product.product_std-ahu-amair_777,PNL ASSY 25MM 0408 CL/GI,999-3620227,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1745,Output VAT,Input VAT +product.product_std-ahu-amair_778,PNL ASSY 25MM 0408 CL/GI,999-3620228,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1745,Output VAT,Input VAT +product.product_std-ahu-amair_779,PNL ASSY 25MM 0308 CL/GI,999-3620249,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,428,Output VAT,Input VAT +product.product_std-ahu-amair_780,PNL ASSY 25MM 0409 CL/GI,999-62324,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1644,Output VAT,Input VAT +product.product_std-ahu-amair_781,PNL ASSY 25MM 0305 CL/GI 0B,362-1AD0305CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,440,Output VAT,Input VAT +product.product_std-ahu-amair_782,PNL ASSY 25MM 0306 CL/GI 0B,362-1AD0306CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,513,Output VAT,Input VAT +product.product_std-ahu-amair_783,PNL ASSY 25MM 0404 CL/CL 0B,362-1AD0404CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,630,Output VAT,Input VAT +product.product_std-ahu-amair_784,PNL ASSY 25MM 0404 CL/GI 0B,362-1AD0404CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,547,Output VAT,Input VAT +product.product_std-ahu-amair_785,PNL ASSY 25MM 0404 CL/SS 0B,362-1AD0404CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,877,Output VAT,Input VAT +product.product_std-ahu-amair_786,PNL ASSY 25MM 0405 CL/GI 0B,362-1AD0405CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,566,Output VAT,Input VAT +product.product_std-ahu-amair_787,PNL ASSY 25MM 0406 CL/CL 0B,362-1AD0406CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,735,Output VAT,Input VAT +product.product_std-ahu-amair_788,PNL ASSY 25MM 0406 CL/GI 0B,362-1AD0406CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,608,Output VAT,Input VAT +product.product_std-ahu-amair_789,PNL ASSY 25MM 0406 CL/SS 0B,362-1AD0406CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1275,Output VAT,Input VAT +product.product_std-ahu-amair_790,PNL ASSY 25MM 0506 CL/GI 0B,362-1AD0506CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,840,Output VAT,Input VAT +product.product_std-ahu-amair_791,PNL ASSY 25MM 0506 CL/SS 0B,362-1AD0506CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1549,Output VAT,Input VAT +product.product_std-ahu-amair_792,PNL ASSY 25MM 0606 CL/GI 0B,362-1AD0606CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1044,Output VAT,Input VAT +product.product_std-ahu-amair_793,PNL ASSY 25MM 0305 CL/GI 0B,362-1AF0305CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,450,Output VAT,Input VAT +product.product_std-ahu-amair_794,PNL ASSY 25MM 0306 CL/GI 0B,362-1AF0306CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,534,Output VAT,Input VAT +product.product_std-ahu-amair_795,PNL ASSY 25MM 0404 CL/CL 0B,362-1AF0404CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,630,Output VAT,Input VAT +product.product_std-ahu-amair_796,PNL ASSY 25MM 0404 CL/GI 0B,362-1AF0404CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,526,Output VAT,Input VAT +product.product_std-ahu-amair_797,PNL ASSY 25MM 0404 CL/SS 0B,362-1AF0404CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1023,Output VAT,Input VAT +product.product_std-ahu-amair_798,PNL ASSY 25MM 0405 CL/GI 0B,362-1AF0405CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,607,Output VAT,Input VAT +product.product_std-ahu-amair_799,PNL ASSY 25MM 0406 CL/GI 0B,362-1AF0406CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,619,Output VAT,Input VAT +product.product_std-ahu-amair_800,PNL ASSY 25MM 0406 CL/SS 0B,362-1AF0406CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1375,Output VAT,Input VAT +product.product_std-ahu-amair_801,PNL ASSY 25MM 0506 CL/GI 0B,362-1AF0506CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,928,Output VAT,Input VAT +product.product_std-ahu-amair_802,PNL ASSY 25MM 0506 CL/SS 0B,362-1AF0506CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1866,Output VAT,Input VAT +product.product_std-ahu-amair_803,PNL ASSY 25MM 0606 CL/GI 0B,362-1AF0606CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1117,Output VAT,Input VAT +product.product_std-ahu-amair_804,PNL ASSY 25MM 0204 CL/GI 0B,362-1AG0204CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,494,Output VAT,Input VAT +product.product_std-ahu-amair_805,PNL ASSY 25MM 0206 CL/GI 0B,362-1AG0206CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,707,Output VAT,Input VAT +product.product_std-ahu-amair_806,PNL ASSY 25MM 0406 CL/GI 0B,362-1AG0406CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,911,Output VAT,Input VAT +product.product_std-ahu-amair_807,PNL ASSY 25MM 0506 CL/GI 0B,362-1AG0506CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1248,Output VAT,Input VAT +product.product_std-ahu-amair_808,PNL ASSY 25MM 0305 CL/GI 0B,362-1AI0305CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1465,Output VAT,Input VAT +product.product_std-ahu-amair_809,PNL ASSY 25MM 0306 CL/GI 0B,362-1AI0306CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1570,Output VAT,Input VAT +product.product_std-ahu-amair_810,PNL ASSY 25MM 0404 CL/GI 0B,362-1AI0404CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1397,Output VAT,Input VAT +product.product_std-ahu-amair_811,PNL ASSY 25MM 0405 CL/GI 0B,362-1AI0405CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1447,Output VAT,Input VAT +product.product_std-ahu-amair_812,PNL ASSY 25MM 0406 CL/GI 0B,362-1AI0406CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1596,Output VAT,Input VAT +product.product_std-ahu-amair_813,PNL ASSY 25MM 0406 CL/CP 0B,362-1AI0406CLCP0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,890,Output VAT,Input VAT +product.product_std-ahu-amair_814,PNL ASSY 25MM 0504 CL/GI 0B,362-1AI0504CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1447,Output VAT,Input VAT +product.product_std-ahu-amair_815,PNL ASSY 25MM 0505 CL/GI 0B,362-1AI0505CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1497,Output VAT,Input VAT +product.product_std-ahu-amair_816,PNL ASSY 25MM 0605 CL/GI 0B,362-1AI0605CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1796,Output VAT,Input VAT +product.product_std-ahu-amair_817,PNL ASSY 25MM 0305 CL/GI 0B,362-1AJ0305CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,681,Output VAT,Input VAT +product.product_std-ahu-amair_818,PNL ASSY 25MM 0306 CL/GI 0B,362-1AJ0306CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,785,Output VAT,Input VAT +product.product_std-ahu-amair_819,PNL ASSY 25MM 0404 CL/GI 0B,362-1AJ0404CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,599,Output VAT,Input VAT +product.product_std-ahu-amair_820,PNL ASSY 25MM 0405 CL/GI 0B,362-1AJ0405CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,698,Output VAT,Input VAT +product.product_std-ahu-amair_821,PNL ASSY 25MM 0406 CL/GI 0B,362-1AJ0406CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,800,Output VAT,Input VAT +product.product_std-ahu-amair_822,PNL ASSY 25MM 0406 CL/CP 0B,362-1AJ0406CLCP0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,671,Output VAT,Input VAT +product.product_std-ahu-amair_823,PNL ASSY 25MM 0504 CL/GI 0B,362-1AJ0504CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,599,Output VAT,Input VAT +product.product_std-ahu-amair_824,PNL ASSY 25MM 0505 CL/GI 0B,362-1AJ0505CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,649,Output VAT,Input VAT +product.product_std-ahu-amair_825,PNL ASSY 25MM 0605 CL/GI 0B,362-1AJ0605CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,898,Output VAT,Input VAT +product.product_std-ahu-amair_826,PNL ASSY 25MM 0101 CL/CL 0B,362-1AS0101CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,17,Output VAT,Input VAT +product.product_std-ahu-amair_827,PNL ASSY 25MM 0101 CL/GI 0B,362-1AS0101CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,17,Output VAT,Input VAT +product.product_std-ahu-amair_828,PNL ASSY 25MM 0101 GI/GI 0B,362-1AS0101GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,17,Output VAT,Input VAT +product.product_std-ahu-amair_829,PNL ASSY 25MM 0102 CL/CL 0B,362-1AS0102CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,34,Output VAT,Input VAT +product.product_std-ahu-amair_830,PNL ASSY 25MM 0102 CL/GI 0B,362-1AS0102CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,33,Output VAT,Input VAT +product.product_std-ahu-amair_831,PNL ASSY 25MM 0102 GI/GI 0B,362-1AS0102GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,33,Output VAT,Input VAT +product.product_std-ahu-amair_832,PNL ASSY 25MM 0103 CL/CL 0B,362-1AS0103CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,49,Output VAT,Input VAT +product.product_std-ahu-amair_833,PNL ASSY 25MM 0103 CL/GI 0B,362-1AS0103CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,49,Output VAT,Input VAT +product.product_std-ahu-amair_834,PNL ASSY 25MM 0103 GI/GI 0B,362-1AS0103GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,49,Output VAT,Input VAT +product.product_std-ahu-amair_835,PNL ASSY 25MM 0104 CL/CL 0B,362-1AS0104CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,67,Output VAT,Input VAT +product.product_std-ahu-amair_836,PNL ASSY 25MM 0104 CL/GI 0B,362-1AS0104CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,66,Output VAT,Input VAT +product.product_std-ahu-amair_837,PNL ASSY 25MM 0104 GI/GI 0B,362-1AS0104GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,65,Output VAT,Input VAT +product.product_std-ahu-amair_838,PNL ASSY 25MM 0104 CL/SS 0B,362-1AS0104CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,192,Output VAT,Input VAT +product.product_std-ahu-amair_839,PNL ASSY 25MM 0105 CL/CL 0B,362-1AS0105CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,85,Output VAT,Input VAT +product.product_std-ahu-amair_840,PNL ASSY 25MM 0105 CL/GI 0B,362-1AS0105CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,83,Output VAT,Input VAT +product.product_std-ahu-amair_841,PNL ASSY 25MM 0105 GI/GI 0B,362-1AS0105GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,83,Output VAT,Input VAT +product.product_std-ahu-amair_842,PNL ASSY 25MM 0106 CL/CL 0B,362-1AS0106CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,102,Output VAT,Input VAT +product.product_std-ahu-amair_843,PNL ASSY 25MM 0106 CL/GI 0B,362-1AS0106CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,100,Output VAT,Input VAT +product.product_std-ahu-amair_844,PNL ASSY 25MM 0106 GI/GI 0B,362-1AS0106GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,99,Output VAT,Input VAT +product.product_std-ahu-amair_845,PNL ASSY 25MM 0107 CL/CL 0B,362-1AS0107CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,119,Output VAT,Input VAT +product.product_std-ahu-amair_846,PNL ASSY 25MM 0107 CL/GI 0B,362-1AS0107CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,117,Output VAT,Input VAT +product.product_std-ahu-amair_847,PNL ASSY 25MM 0107 GI/GI 0B,362-1AS0107GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,116,Output VAT,Input VAT +product.product_std-ahu-amair_848,PNL ASSY 25MM 0108 CL/CL 0B,362-1AS0108CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,137,Output VAT,Input VAT +product.product_std-ahu-amair_849,PNL ASSY 25MM 0108 CL/GI 0B,362-1AS0108CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,134,Output VAT,Input VAT +product.product_std-ahu-amair_850,PNL ASSY 25MM 0108 GI/GI 0B,362-1AS0108GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,130,Output VAT,Input VAT +product.product_std-ahu-amair_851,PNL ASSY 25MM 0109 CL/CL 0B,362-1AS0109CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,153,Output VAT,Input VAT +product.product_std-ahu-amair_852,PNL ASSY 25MM 0109 CL/GI 0B,362-1AS0109CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,150,Output VAT,Input VAT +product.product_std-ahu-amair_853,PNL ASSY 25MM 0109 GI/GI 0B,362-1AS0109GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,148,Output VAT,Input VAT +product.product_std-ahu-amair_854,PNL ASSY 25MM 0110 CL/CL 0B,362-1AS0110CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,169,Output VAT,Input VAT +product.product_std-ahu-amair_855,PNL ASSY 25MM 0110 CL/GI 0B,362-1AS0110CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,166,Output VAT,Input VAT +product.product_std-ahu-amair_856,PNL ASSY 25MM 0110 GI/GI 0B,362-1AS0110GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,165,Output VAT,Input VAT +product.product_std-ahu-amair_857,PNL ASSY 25MM 0111 CL/CL 0B,362-1AS0111CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,186,Output VAT,Input VAT +product.product_std-ahu-amair_858,PNL ASSY 25MM 0111 CL/GI 0B,362-1AS0111CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,183,Output VAT,Input VAT +product.product_std-ahu-amair_859,PNL ASSY 25MM 0111 GI/GI 0B,362-1AS0111GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,181,Output VAT,Input VAT +product.product_std-ahu-amair_860,PNL ASSY 25MM 0112 CL/CL 0B,362-1AS0112CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,204,Output VAT,Input VAT +product.product_std-ahu-amair_861,PNL ASSY 25MM 0112 CL/GI 0B,362-1AS0112CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,200,Output VAT,Input VAT +product.product_std-ahu-amair_862,PNL ASSY 25MM 0112 GI/GI 0B,362-1AS0112GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,198,Output VAT,Input VAT +product.product_std-ahu-amair_863,PNL ASSY 25MM 0112 CL/SS 0B,362-1AS0112CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,583,Output VAT,Input VAT +product.product_std-ahu-amair_864,PNL ASSY 25MM 0113 CL/CL 0B,362-1AS0113CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,221,Output VAT,Input VAT +product.product_std-ahu-amair_865,PNL ASSY 25MM 0113 CL/GI 0B,362-1AS0113CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,217,Output VAT,Input VAT +product.product_std-ahu-amair_866,PNL ASSY 25MM 0113 GI/GI 0B,362-1AS0113GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,214,Output VAT,Input VAT +product.product_std-ahu-amair_867,PNL ASSY 25MM 0114 CL/CL 0B,362-1AS0114CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,237,Output VAT,Input VAT +product.product_std-ahu-amair_868,PNL ASSY 25MM 0114 CL/GI 0B,362-1AS0114CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,232,Output VAT,Input VAT +product.product_std-ahu-amair_869,PNL ASSY 25MM 0114 GI/GI 0B,362-1AS0114GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,230,Output VAT,Input VAT +product.product_std-ahu-amair_870,PNL ASSY 25MM 0115 CL/GI 0B,362-1AS0115CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,282,Output VAT,Input VAT +product.product_std-ahu-amair_871,PNL ASSY 25MM 0202 CL/CL 0B,362-1AS0202CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,68,Output VAT,Input VAT +product.product_std-ahu-amair_872,PNL ASSY 25MM 0202 CL/GI 0B,362-1AS0202CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,67,Output VAT,Input VAT +product.product_std-ahu-amair_873,PNL ASSY 25MM 0202 GI/GI 0B,362-1AS0202GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,65,Output VAT,Input VAT +product.product_std-ahu-amair_874,PNL ASSY 25MM 0203 CL/CL 0B,362-1AS0203CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,103,Output VAT,Input VAT +product.product_std-ahu-amair_875,PNL ASSY 25MM 0203 CL/GI 0B,362-1AS0203CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,101,Output VAT,Input VAT +product.product_std-ahu-amair_876,PNL ASSY 25MM 0203 GI/GI 0B,362-1AS0203GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,100,Output VAT,Input VAT +product.product_std-ahu-amair_877,PNL ASSY 25MM 0204 CL/CL 0B,362-1AS0204CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,139,Output VAT,Input VAT +product.product_std-ahu-amair_878,PNL ASSY 25MM 0204 CL/GI 0B,362-1AS0204CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,137,Output VAT,Input VAT +product.product_std-ahu-amair_879,PNL ASSY 25MM 0204 GI/GI 0B,362-1AS0204GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,133,Output VAT,Input VAT +product.product_std-ahu-amair_880,PNL ASSY 25MM 0204 CL/SS 0B,362-1AS0204CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,375,Output VAT,Input VAT +product.product_std-ahu-amair_881,PNL ASSY 25MM 0205 CL/CL 0B,362-1AS0205CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,173,Output VAT,Input VAT +product.product_std-ahu-amair_882,PNL ASSY 25MM 0205 CL/GI 0B,362-1AS0205CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,168,Output VAT,Input VAT +product.product_std-ahu-amair_883,PNL ASSY 25MM 0205 GI/GI 0B,362-1AS0205GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,166,Output VAT,Input VAT +product.product_std-ahu-amair_884,PNL ASSY 25MM 0206 CL/CL 0B,362-1AS0206CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,207,Output VAT,Input VAT +product.product_std-ahu-amair_885,PNL ASSY 25MM 0206 CL/GI 0B,362-1AS0206CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,204,Output VAT,Input VAT +product.product_std-ahu-amair_886,PNL ASSY 25MM 0206 GI/GI 0B,362-1AS0206GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,200,Output VAT,Input VAT +product.product_std-ahu-amair_887,PNL ASSY 25MM 0207 CL/CL 0B,362-1AS0207CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,243,Output VAT,Input VAT +product.product_std-ahu-amair_888,PNL ASSY 25MM 0207 CL/GI 0B,362-1AS0207CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,239,Output VAT,Input VAT +product.product_std-ahu-amair_889,PNL ASSY 25MM 0207 GI/GI 0B,362-1AS0207GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,232,Output VAT,Input VAT +product.product_std-ahu-amair_890,PNL ASSY 25MM 0208 CL/CL 0B,362-1AS0208CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,277,Output VAT,Input VAT +product.product_std-ahu-amair_891,PNL ASSY 25MM 0208 CL/GI 0B,362-1AS0208CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,271,Output VAT,Input VAT +product.product_std-ahu-amair_892,PNL ASSY 25MM 0208 GI/GI 0B,362-1AS0208GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,267,Output VAT,Input VAT +product.product_std-ahu-amair_893,PNL ASSY 25MM 0209 CL/CL 0B,362-1AS0209CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,311,Output VAT,Input VAT +product.product_std-ahu-amair_894,PNL ASSY 25MM 0209 CL/GI 0B,362-1AS0209CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,307,Output VAT,Input VAT +product.product_std-ahu-amair_895,PNL ASSY 25MM 0209 GI/GI 0B,362-1AS0209GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,302,Output VAT,Input VAT +product.product_std-ahu-amair_896,PNL ASSY 25MM 0210 CL/CL 0B,362-1AS0210CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,346,Output VAT,Input VAT +product.product_std-ahu-amair_897,PNL ASSY 25MM 0210 CL/GI 0B,362-1AS0210CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,339,Output VAT,Input VAT +product.product_std-ahu-amair_898,PNL ASSY 25MM 0210 GI/GI 0B,362-1AS0210GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,335,Output VAT,Input VAT +product.product_std-ahu-amair_899,PNL ASSY 25MM 0210 CL/SS 0B,362-1AS0210CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,930,Output VAT,Input VAT +product.product_std-ahu-amair_900,PNL ASSY 25MM 0211 CL/CL 0B,362-1AS0211CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,379,Output VAT,Input VAT +product.product_std-ahu-amair_901,PNL ASSY 25MM 0211 CL/GI 0B,362-1AS0211CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,374,Output VAT,Input VAT +product.product_std-ahu-amair_902,PNL ASSY 25MM 0211 GI/GI 0B,362-1AS0211GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,368,Output VAT,Input VAT +product.product_std-ahu-amair_903,PNL ASSY 25MM 0212 CL/CL 0B,362-1AS0212CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,414,Output VAT,Input VAT +product.product_std-ahu-amair_904,PNL ASSY 25MM 0212 CL/GI 0B,362-1AS0212CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,408,Output VAT,Input VAT +product.product_std-ahu-amair_905,PNL ASSY 25MM 0212 GI/GI 0B,362-1AS0212GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,402,Output VAT,Input VAT +product.product_std-ahu-amair_906,PNL ASSY 25MM 0212 CL/SS 0B,362-1AS0212CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1112,Output VAT,Input VAT +product.product_std-ahu-amair_907,PNL ASSY 25MM 0213 CL/CL 0B,362-1AS0213CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,449,Output VAT,Input VAT +product.product_std-ahu-amair_908,PNL ASSY 25MM 0213 CL/GI 0B,362-1AS0213CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,443,Output VAT,Input VAT +product.product_std-ahu-amair_909,PNL ASSY 25MM 0213 GI/GI 0B,362-1AS0213GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,435,Output VAT,Input VAT +product.product_std-ahu-amair_910,PNL ASSY 25MM 0214 CL/CL 0B,362-1AS0214CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,483,Output VAT,Input VAT +product.product_std-ahu-amair_911,PNL ASSY 25MM 0214 CL/GI 0B,362-1AS0214CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,477,Output VAT,Input VAT +product.product_std-ahu-amair_912,PNL ASSY 25MM 0214 GI/GI 0B,362-1AS0214GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,470,Output VAT,Input VAT +product.product_std-ahu-amair_913,PNL ASSY 25MM 0303 CL/CL 0B,362-1AS0303CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,155,Output VAT,Input VAT +product.product_std-ahu-amair_914,PNL ASSY 25MM 0303 CL/GI 0B,362-1AS0303CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,153,Output VAT,Input VAT +product.product_std-ahu-amair_915,PNL ASSY 25MM 0303 GI/GI 0B,362-1AS0303GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,150,Output VAT,Input VAT +product.product_std-ahu-amair_916,PNL ASSY 25MM 0304 CL/CL 0B,362-1AS0304CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,207,Output VAT,Input VAT +product.product_std-ahu-amair_917,PNL ASSY 25MM 0304 CL/GI 0B,362-1AS0304CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,205,Output VAT,Input VAT +product.product_std-ahu-amair_918,PNL ASSY 25MM 0304 GI/GI 0B,362-1AS0304GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,201,Output VAT,Input VAT +product.product_std-ahu-amair_919,PNL ASSY 25MM 0304 CL/SS 0B,362-1AS0304CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,557,Output VAT,Input VAT +product.product_std-ahu-amair_920,PNL ASSY 25MM 0305 CL/CL 0B,362-1AS0305CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,260,Output VAT,Input VAT +product.product_std-ahu-amair_921,PNL ASSY 25MM 0305 CL/GI 0B,362-1AS0305CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,256,Output VAT,Input VAT +product.product_std-ahu-amair_922,PNL ASSY 25MM 0305 GI/GI 0B,362-1AS0305GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,251,Output VAT,Input VAT +product.product_std-ahu-amair_923,PNL ASSY 25MM 0306 CL/CL 0B,362-1AS0306CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,312,Output VAT,Input VAT +product.product_std-ahu-amair_924,PNL ASSY 25MM 0306 CL/GI 0B,362-1AS0306CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,308,Output VAT,Input VAT +product.product_std-ahu-amair_925,PNL ASSY 25MM 0306 GI/GI 0B,362-1AS0306GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,303,Output VAT,Input VAT +product.product_std-ahu-amair_926,PNL ASSY 25MM 0307 CL/CL 0B,362-1AS0307CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,365,Output VAT,Input VAT +product.product_std-ahu-amair_927,PNL ASSY 25MM 0307 CL/GI 0B,362-1AS0307CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,358,Output VAT,Input VAT +product.product_std-ahu-amair_928,PNL ASSY 25MM 0307 GI/GI 0B,362-1AS0307GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,351,Output VAT,Input VAT +product.product_std-ahu-amair_929,PNL ASSY 25MM 0308 CL/CL 0B,362-1AS0308CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,416,Output VAT,Input VAT +product.product_std-ahu-amair_930,PNL ASSY 25MM 0308 CL/GI 0B,362-1AS0308CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,411,Output VAT,Input VAT +product.product_std-ahu-amair_931,PNL ASSY 25MM 0308 GI/GI 0B,362-1AS0308GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,403,Output VAT,Input VAT +product.product_std-ahu-amair_932,PNL ASSY 25MM 0309 CL/CL 0B,362-1AS0309CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,470,Output VAT,Input VAT +product.product_std-ahu-amair_933,PNL ASSY 25MM 0309 CL/GI 0B,362-1AS0309CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,461,Output VAT,Input VAT +product.product_std-ahu-amair_934,PNL ASSY 25MM 0309 GI/GI 0B,362-1AS0309GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,454,Output VAT,Input VAT +product.product_std-ahu-amair_935,PNL ASSY 25MM 0310 CL/CL 0B,362-1AS0310CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,522,Output VAT,Input VAT +product.product_std-ahu-amair_936,PNL ASSY 25MM 0310 CL/GI 0B,362-1AS0310CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,512,Output VAT,Input VAT +product.product_std-ahu-amair_937,PNL ASSY 25MM 0310 GI/GI 0B,362-1AS0310GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,505,Output VAT,Input VAT +product.product_std-ahu-amair_938,PNL ASSY 25MM 0311 CL/CL 0B,362-1AS0311CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,574,Output VAT,Input VAT +product.product_std-ahu-amair_939,PNL ASSY 25MM 0311 CL/GI 0B,362-1AS0311CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,564,Output VAT,Input VAT +product.product_std-ahu-amair_940,PNL ASSY 25MM 0311 GI/GI 0B,362-1AS0311GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,555,Output VAT,Input VAT +product.product_std-ahu-amair_941,PNL ASSY 25MM 0312 CL/CL 0B,362-1AS0312CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,627,Output VAT,Input VAT +product.product_std-ahu-amair_942,PNL ASSY 25MM 0312 CL/GI 0B,362-1AS0312CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,616,Output VAT,Input VAT +product.product_std-ahu-amair_943,PNL ASSY 25MM 0312 GI/GI 0B,362-1AS0312GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,606,Output VAT,Input VAT +product.product_std-ahu-amair_944,PNL ASSY 25MM 0313 CL/CL 0B,362-1AS0313CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,678,Output VAT,Input VAT +product.product_std-ahu-amair_945,PNL ASSY 25MM 0313 CL/GI 0B,362-1AS0313CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,668,Output VAT,Input VAT +product.product_std-ahu-amair_946,PNL ASSY 25MM 0313 GI/GI 0B,362-1AS0313GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,656,Output VAT,Input VAT +product.product_std-ahu-amair_947,PNL ASSY 25MM 0314 CL/CL 0B,362-1AS0314CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,731,Output VAT,Input VAT +product.product_std-ahu-amair_948,PNL ASSY 25MM 0314 CL/GI 0B,362-1AS0314CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,719,Output VAT,Input VAT +product.product_std-ahu-amair_949,PNL ASSY 25MM 0314 GI/GI 0B,362-1AS0314GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,707,Output VAT,Input VAT +product.product_std-ahu-amair_950,PNL ASSY 25MM 0315 CL/GI 0B,362-1AS0315CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,869,Output VAT,Input VAT +product.product_std-ahu-amair_951,PNL ASSY 25MM 0316 CL/GI 0B,362-1AS0316CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,974,Output VAT,Input VAT +product.product_std-ahu-amair_952,PNL ASSY 25MM 0402 CL/GI 0B,362-1AS0402CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,137,Output VAT,Input VAT +product.product_std-ahu-amair_953,PNL ASSY 25MM 0404 CL/CL 0B,362-1AS0404CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,279,Output VAT,Input VAT +product.product_std-ahu-amair_954,PNL ASSY 25MM 0404 CL/GI 0B,362-1AS0404CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,273,Output VAT,Input VAT +product.product_std-ahu-amair_955,PNL ASSY 25MM 0404 GI/GI 0B,362-1AS0404GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,269,Output VAT,Input VAT +product.product_std-ahu-amair_956,PNL ASSY 25MM 0404 CL/SS 0B,362-1AS0404CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,750,Output VAT,Input VAT +product.product_std-ahu-amair_957,PNL ASSY 25MM 0405 CL/CL 0B,362-1AS0405CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,347,Output VAT,Input VAT +product.product_std-ahu-amair_958,PNL ASSY 25MM 0405 CL/GI 0B,362-1AS0405CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,343,Output VAT,Input VAT +product.product_std-ahu-amair_959,PNL ASSY 25MM 0405 GI/GI 0B,362-1AS0405GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,336,Output VAT,Input VAT +product.product_std-ahu-amair_960,PNL ASSY 25MM 0405 CL/SS 0B,362-1AS0405CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,998,Output VAT,Input VAT +product.product_std-ahu-amair_961,PNL ASSY 25MM 0406 CL/CL 0B,362-1AS0406CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,417,Output VAT,Input VAT +product.product_std-ahu-amair_962,PNL ASSY 25MM 0406 CL/GI 0B,362-1AS0406CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,411,Output VAT,Input VAT +product.product_std-ahu-amair_963,PNL ASSY 25MM 0406 GI/GI 0B,362-1AS0406GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,404,Output VAT,Input VAT +product.product_std-ahu-amair_964,PNL ASSY 25MM 0406 CL/SS 0B,362-1AS0406CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1194,Output VAT,Input VAT +product.product_std-ahu-amair_965,PNL ASSY 25MM 0407 CL/CL 0B,362-1AS0407CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,488,Output VAT,Input VAT +product.product_std-ahu-amair_966,PNL ASSY 25MM 0407 CL/GI 0B,362-1AS0407CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,480,Output VAT,Input VAT +product.product_std-ahu-amair_967,PNL ASSY 25MM 0407 GI/GI 0B,362-1AS0407GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,472,Output VAT,Input VAT +product.product_std-ahu-amair_968,PNL ASSY 25MM 0407 CL/SS 0B,362-1AS0407CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1397,Output VAT,Input VAT +product.product_std-ahu-amair_969,PNL ASSY 25MM 0408 CL/CL 0B,362-1AS0408CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,557,Output VAT,Input VAT +product.product_std-ahu-amair_970,PNL ASSY 25MM 0408 CL/GI 0B,362-1AS0408CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,548,Output VAT,Input VAT +product.product_std-ahu-amair_971,PNL ASSY 25MM 0408 GI/GI 0B,362-1AS0408GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,539,Output VAT,Input VAT +product.product_std-ahu-amair_972,PNL ASSY 25MM 0408 CL/SS 0B,362-1AS0408CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1502,Output VAT,Input VAT +product.product_std-ahu-amair_973,PNL ASSY 25MM 0409 CL/CL 0B,362-1AS0409CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,628,Output VAT,Input VAT +product.product_std-ahu-amair_974,PNL ASSY 25MM 0409 CL/GI 0B,362-1AS0409CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,617,Output VAT,Input VAT +product.product_std-ahu-amair_975,PNL ASSY 25MM 0409 GI/GI 0B,362-1AS0409GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,607,Output VAT,Input VAT +product.product_std-ahu-amair_976,PNL ASSY 25MM 0409 CL/SS 0B,362-1AS0409CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1684,Output VAT,Input VAT +product.product_std-ahu-amair_977,PNL ASSY 25MM 0410 CL/CL 0B,362-1AS0410CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,697,Output VAT,Input VAT +product.product_std-ahu-amair_978,PNL ASSY 25MM 0410 CL/GI 0B,362-1AS0410CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,686,Output VAT,Input VAT +product.product_std-ahu-amair_979,PNL ASSY 25MM 0410 GI/GI 0B,362-1AS0410GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,674,Output VAT,Input VAT +product.product_std-ahu-amair_980,PNL ASSY 25MM 0410 CL/SS 0B,362-1AS0410CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1880,Output VAT,Input VAT +product.product_std-ahu-amair_981,PNL ASSY 25MM 0411 CL/CL 0B,362-1AS0411CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,768,Output VAT,Input VAT +product.product_std-ahu-amair_982,PNL ASSY 25MM 0411 CL/GI 0B,362-1AS0411CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,754,Output VAT,Input VAT +product.product_std-ahu-amair_983,PNL ASSY 25MM 0411 GI/GI 0B,362-1AS0411GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,743,Output VAT,Input VAT +product.product_std-ahu-amair_984,PNL ASSY 25MM 0412 CL/CL 0B,362-1AS0412CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,838,Output VAT,Input VAT +product.product_std-ahu-amair_985,PNL ASSY 25MM 0412 CL/GI 0B,362-1AS0412CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,825,Output VAT,Input VAT +product.product_std-ahu-amair_986,PNL ASSY 25MM 0412 GI/GI 0B,362-1AS0412GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,811,Output VAT,Input VAT +product.product_std-ahu-amair_987,PNL ASSY 25MM 0412 CL/SS 0B,362-1AS0412CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2257,Output VAT,Input VAT +product.product_std-ahu-amair_988,PNL ASSY 25MM 0413 CL/CL 0B,362-1AS0413CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,907,Output VAT,Input VAT +product.product_std-ahu-amair_989,PNL ASSY 25MM 0413 CL/GI 0B,362-1AS0413CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,892,Output VAT,Input VAT +product.product_std-ahu-amair_990,PNL ASSY 25MM 0413 GI/GI 0B,362-1AS0413GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,877,Output VAT,Input VAT +product.product_std-ahu-amair_991,PNL ASSY 25MM 0414 CL/CL 0B,362-1AS0414CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,977,Output VAT,Input VAT +product.product_std-ahu-amair_992,PNL ASSY 25MM 0414 CL/GI 0B,362-1AS0414CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,961,Output VAT,Input VAT +product.product_std-ahu-amair_993,PNL ASSY 25MM 0414 GI/GI 0B,362-1AS0414GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,946,Output VAT,Input VAT +product.product_std-ahu-amair_994,PNL ASSY 25MM 0416 GI/GI 0B,362-1AS0416GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1301,Output VAT,Input VAT +product.product_std-ahu-amair_995,PNL ASSY 25MM 0505 CL/CL 0B,362-1AS0505CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,435,Output VAT,Input VAT +product.product_std-ahu-amair_996,PNL ASSY 25MM 0505 CL/GI 0B,362-1AS0505CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,429,Output VAT,Input VAT +product.product_std-ahu-amair_997,PNL ASSY 25MM 0505 GI/GI 0B,362-1AS0505GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,421,Output VAT,Input VAT +product.product_std-ahu-amair_998,PNL ASSY 25MM 0506 CL/CL 0B,362-1AS0506CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,522,Output VAT,Input VAT +product.product_std-ahu-amair_999,PNL ASSY 25MM 0506 CL/GI 0B,362-1AS0506CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,514,Output VAT,Input VAT +product.product_std-ahu-amair_1000,PNL ASSY 25MM 0506 GI/GI 0B,362-1AS0506GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,505,Output VAT,Input VAT +product.product_std-ahu-amair_1001,PNL ASSY 25MM 0506 CL/SS 0B,362-1AS0506CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1500,Output VAT,Input VAT +product.product_std-ahu-amair_1002,PNL ASSY 25MM 0507 CL/CL 0B,362-1AS0507CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,610,Output VAT,Input VAT +product.product_std-ahu-amair_1003,PNL ASSY 25MM 0507 CL/GI 0B,362-1AS0507CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,602,Output VAT,Input VAT +product.product_std-ahu-amair_1004,PNL ASSY 25MM 0507 GI/GI 0B,362-1AS0507GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,591,Output VAT,Input VAT +product.product_std-ahu-amair_1005,PNL ASSY 25MM 0508 CL/CL 0B,362-1AS0508CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,697,Output VAT,Input VAT +product.product_std-ahu-amair_1006,PNL ASSY 25MM 0508 CL/GI 0B,362-1AS0508CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,686,Output VAT,Input VAT +product.product_std-ahu-amair_1007,PNL ASSY 25MM 0508 GI/GI 0B,362-1AS0508GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,674,Output VAT,Input VAT +product.product_std-ahu-amair_1008,PNL ASSY 25MM 0508 CL/SS 0B,362-1AS0508CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2001,Output VAT,Input VAT +product.product_std-ahu-amair_1009,PNL ASSY 25MM 0509 CL/CL 0B,362-1AS0509CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,787,Output VAT,Input VAT +product.product_std-ahu-amair_1010,PNL ASSY 25MM 0509 CL/GI 0B,362-1AS0509CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,773,Output VAT,Input VAT +product.product_std-ahu-amair_1011,PNL ASSY 25MM 0509 GI/GI 0B,362-1AS0509GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,760,Output VAT,Input VAT +product.product_std-ahu-amair_1012,PNL ASSY 25MM 0510 CL/CL 0B,362-1AS0510CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,873,Output VAT,Input VAT +product.product_std-ahu-amair_1013,PNL ASSY 25MM 0510 CL/GI 0B,362-1AS0510CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,859,Output VAT,Input VAT +product.product_std-ahu-amair_1014,PNL ASSY 25MM 0510 GI/GI 0B,362-1AS0510GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,845,Output VAT,Input VAT +product.product_std-ahu-amair_1015,PNL ASSY 25MM 0511 CL/CL 0B,362-1AS0511CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,960,Output VAT,Input VAT +product.product_std-ahu-amair_1016,PNL ASSY 25MM 0511 CL/GI 0B,362-1AS0511CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,946,Output VAT,Input VAT +product.product_std-ahu-amair_1017,PNL ASSY 25MM 0511 GI/GI 0B,362-1AS0511GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,931,Output VAT,Input VAT +product.product_std-ahu-amair_1018,PNL ASSY 25MM 0512 CL/CL 0B,362-1AS0512CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1050,Output VAT,Input VAT +product.product_std-ahu-amair_1019,PNL ASSY 25MM 0512 CL/GI 0B,362-1AS0512CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1032,Output VAT,Input VAT +product.product_std-ahu-amair_1020,PNL ASSY 25MM 0512 GI/GI 0B,362-1AS0512GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1014,Output VAT,Input VAT +product.product_std-ahu-amair_1021,PNL ASSY 25MM 0512 CL/SS 0B,362-1AS0512CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2828,Output VAT,Input VAT +product.product_std-ahu-amair_1022,PNL ASSY 25MM 0513 CL/CL 0B,362-1AS0513CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1136,Output VAT,Input VAT +product.product_std-ahu-amair_1023,PNL ASSY 25MM 0513 CL/GI 0B,362-1AS0513CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1117,Output VAT,Input VAT +product.product_std-ahu-amair_1024,PNL ASSY 25MM 0513 GI/GI 0B,362-1AS0513GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1100,Output VAT,Input VAT +product.product_std-ahu-amair_1025,PNL ASSY 25MM 0514 CL/CL 0B,362-1AS0514CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1223,Output VAT,Input VAT +product.product_std-ahu-amair_1026,PNL ASSY 25MM 0514 CL/GI 0B,362-1AS0514CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1203,Output VAT,Input VAT +product.product_std-ahu-amair_1027,PNL ASSY 25MM 0514 GI/GI 0B,362-1AS0514GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1183,Output VAT,Input VAT +product.product_std-ahu-amair_1028,PNL ASSY 25MM 0516 CL/GI 0B,362-1AS0516CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1507,Output VAT,Input VAT +product.product_std-ahu-amair_1029,PNL ASSY 25MM 0604 CL/GI 0B,362-1AS0604CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,411,Output VAT,Input VAT +product.product_std-ahu-amair_1030,PNL ASSY 25MM 0606 CL/CL 0B,362-1AS0606CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,628,Output VAT,Input VAT +product.product_std-ahu-amair_1031,PNL ASSY 25MM 0606 CL/GI 0B,362-1AS0606CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,618,Output VAT,Input VAT +product.product_std-ahu-amair_1032,PNL ASSY 25MM 0606 GI/GI 0B,362-1AS0606GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,608,Output VAT,Input VAT +product.product_std-ahu-amair_1033,PNL ASSY 25MM 0607 CL/CL 0B,362-1AS0607CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,733,Output VAT,Input VAT +product.product_std-ahu-amair_1034,PNL ASSY 25MM 0607 CL/GI 0B,362-1AS0607CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,720,Output VAT,Input VAT +product.product_std-ahu-amair_1035,PNL ASSY 25MM 0607 GI/GI 0B,362-1AS0607GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,708,Output VAT,Input VAT +product.product_std-ahu-amair_1036,PNL ASSY 25MM 0608 CL/CL 0B,362-1AS0608CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,840,Output VAT,Input VAT +product.product_std-ahu-amair_1037,PNL ASSY 25MM 0608 CL/GI 0B,362-1AS0608CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,826,Output VAT,Input VAT +product.product_std-ahu-amair_1038,PNL ASSY 25MM 0608 GI/GI 0B,362-1AS0608GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,811,Output VAT,Input VAT +product.product_std-ahu-amair_1039,PNL ASSY 25MM 0608 CL/SS 0B,362-1AS0608CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2258,Output VAT,Input VAT +product.product_std-ahu-amair_1040,PNL ASSY 25MM 0609 CL/CL 0B,362-1AS0609CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,944,Output VAT,Input VAT +product.product_std-ahu-amair_1041,PNL ASSY 25MM 0609 CL/GI 0B,362-1AS0609CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,930,Output VAT,Input VAT +product.product_std-ahu-amair_1042,PNL ASSY 25MM 0609 GI/GI 0B,362-1AS0609GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,913,Output VAT,Input VAT +product.product_std-ahu-amair_1043,PNL ASSY 25MM 0610 CL/CL 0B,362-1AS0610CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1050,Output VAT,Input VAT +product.product_std-ahu-amair_1044,PNL ASSY 25MM 0610 CL/GI 0B,362-1AS0610CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1033,Output VAT,Input VAT +product.product_std-ahu-amair_1045,PNL ASSY 25MM 0610 GI/GI 0B,362-1AS0610GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1014,Output VAT,Input VAT +product.product_std-ahu-amair_1046,PNL ASSY 25MM 0610 CL/SS 0B,362-1AS0610CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2829,Output VAT,Input VAT +product.product_std-ahu-amair_1047,PNL ASSY 25MM 0611 CL/CL 0B,362-1AS0611CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1156,Output VAT,Input VAT +product.product_std-ahu-amair_1048,PNL ASSY 25MM 0611 CL/GI 0B,362-1AS0611CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1136,Output VAT,Input VAT +product.product_std-ahu-amair_1049,PNL ASSY 25MM 0611 GI/GI 0B,362-1AS0611GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1117,Output VAT,Input VAT +product.product_std-ahu-amair_1050,PNL ASSY 25MM 0612 CL/CL 0B,362-1AS0612CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1261,Output VAT,Input VAT +product.product_std-ahu-amair_1051,PNL ASSY 25MM 0612 CL/GI 0B,362-1AS0612CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1239,Output VAT,Input VAT +product.product_std-ahu-amair_1052,PNL ASSY 25MM 0612 GI/GI 0B,362-1AS0612GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1219,Output VAT,Input VAT +product.product_std-ahu-amair_1053,PNL ASSY 25MM 0612 CL/SS 0B,362-1AS0612CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3614,Output VAT,Input VAT +product.product_std-ahu-amair_1054,PNL ASSY 25MM 0613 CL/CL 0B,362-1AS0613CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1365,Output VAT,Input VAT +product.product_std-ahu-amair_1055,PNL ASSY 25MM 0613 CL/GI 0B,362-1AS0613CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1343,Output VAT,Input VAT +product.product_std-ahu-amair_1056,PNL ASSY 25MM 0613 GI/GI 0B,362-1AS0613GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1322,Output VAT,Input VAT +product.product_std-ahu-amair_1057,PNL ASSY 25MM 0614 CL/CL 0B,362-1AS0614CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1470,Output VAT,Input VAT +product.product_std-ahu-amair_1058,PNL ASSY 25MM 0614 CL/GI 0B,362-1AS0614CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1447,Output VAT,Input VAT +product.product_std-ahu-amair_1059,PNL ASSY 25MM 0614 GI/GI 0B,362-1AS0614GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1423,Output VAT,Input VAT +product.product_std-ahu-amair_1060,PNL ASSY 25MM 0706 CL/GI 0B,362-1AS0706CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,720,Output VAT,Input VAT +product.product_std-ahu-amair_1061,PNL ASSY 25MM 0707 CL/CL 0B,362-1AS0707CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,855,Output VAT,Input VAT +product.product_std-ahu-amair_1062,PNL ASSY 25MM 0707 CL/GI 0B,362-1AS0707CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,841,Output VAT,Input VAT +product.product_std-ahu-amair_1063,PNL ASSY 25MM 0707 GI/GI 0B,362-1AS0707GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,829,Output VAT,Input VAT +product.product_std-ahu-amair_1064,PNL ASSY 25MM 0708 CL/CL 0B,362-1AS0708CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,979,Output VAT,Input VAT +product.product_std-ahu-amair_1065,PNL ASSY 25MM 0708 CL/GI 0B,362-1AS0708CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,964,Output VAT,Input VAT +product.product_std-ahu-amair_1066,PNL ASSY 25MM 0708 GI/GI 0B,362-1AS0708GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,947,Output VAT,Input VAT +product.product_std-ahu-amair_1067,PNL ASSY 25MM 0708 CL/SS 0B,362-1AS0708CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2634,Output VAT,Input VAT +product.product_std-ahu-amair_1068,PNL ASSY 25MM 0709 CL/CL 0B,362-1AS0709CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1102,Output VAT,Input VAT +product.product_std-ahu-amair_1069,PNL ASSY 25MM 0709 CL/GI 0B,362-1AS0709CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1083,Output VAT,Input VAT +product.product_std-ahu-amair_1070,PNL ASSY 25MM 0709 GI/GI 0B,362-1AS0709GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1066,Output VAT,Input VAT +product.product_std-ahu-amair_1071,PNL ASSY 25MM 0710 CL/CL 0B,362-1AS0710CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1225,Output VAT,Input VAT +product.product_std-ahu-amair_1072,PNL ASSY 25MM 0710 CL/GI 0B,362-1AS0710CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1205,Output VAT,Input VAT +product.product_std-ahu-amair_1073,PNL ASSY 25MM 0710 GI/GI 0B,362-1AS0710GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1184,Output VAT,Input VAT +product.product_std-ahu-amair_1074,PNL ASSY 25MM 0711 CL/CL 0B,362-1AS0711CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1347,Output VAT,Input VAT +product.product_std-ahu-amair_1075,PNL ASSY 25MM 0711 CL/GI 0B,362-1AS0711CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1327,Output VAT,Input VAT +product.product_std-ahu-amair_1076,PNL ASSY 25MM 0711 GI/GI 0B,362-1AS0711GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1304,Output VAT,Input VAT +product.product_std-ahu-amair_1077,PNL ASSY 25MM 0712 CL/CL 0B,362-1AS0712CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1471,Output VAT,Input VAT +product.product_std-ahu-amair_1078,PNL ASSY 25MM 0712 CL/GI 0B,362-1AS0712CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1447,Output VAT,Input VAT +product.product_std-ahu-amair_1079,PNL ASSY 25MM 0712 GI/GI 0B,362-1AS0712GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1423,Output VAT,Input VAT +product.product_std-ahu-amair_1080,PNL ASSY 25MM 0712 CL/SS 0B,362-1AS0712CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3958,Output VAT,Input VAT +product.product_std-ahu-amair_1081,PNL ASSY 25MM 0713 CL/CL 0B,362-1AS0713CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1593,Output VAT,Input VAT +product.product_std-ahu-amair_1082,PNL ASSY 25MM 0713 CL/GI 0B,362-1AS0713CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1568,Output VAT,Input VAT +product.product_std-ahu-amair_1083,PNL ASSY 25MM 0713 GI/GI 0B,362-1AS0713GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1542,Output VAT,Input VAT +product.product_std-ahu-amair_1084,PNL ASSY 25MM 0714 CL/CL 0B,362-1AS0714CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1718,Output VAT,Input VAT +product.product_std-ahu-amair_1085,PNL ASSY 25MM 0714 CL/GI 0B,362-1AS0714CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1689,Output VAT,Input VAT +product.product_std-ahu-amair_1086,PNL ASSY 25MM 0714 GI/GI 0B,362-1AS0714GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1661,Output VAT,Input VAT +product.product_std-ahu-amair_1087,PNL ASSY 25MM 0715 CL/GI 0B,362-1AS0715CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2042,Output VAT,Input VAT +product.product_std-ahu-amair_1088,PNL ASSY 50MM 0305 CL/GI 0B,362-2AD0305CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,545,Output VAT,Input VAT +product.product_std-ahu-amair_1089,PNL ASSY 50MM 0306 CL/GI 0B,362-2AD0306CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,618,Output VAT,Input VAT +product.product_std-ahu-amair_1090,PNL ASSY 50MM 0404 CL/GI 0B,362-2AD0404CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,611,Output VAT,Input VAT +product.product_std-ahu-amair_1091,PNL ASSY 50MM 0405 CL/GI 0B,362-2AD0405CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,670,Output VAT,Input VAT +product.product_std-ahu-amair_1092,PNL ASSY 50MM 0406 CL/CL 0B,362-2AD0406CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,712,Output VAT,Input VAT +product.product_std-ahu-amair_1093,PNL ASSY 50MM 0406 CL/GI 0B,362-2AD0406CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,712,Output VAT,Input VAT +product.product_std-ahu-amair_1094,PNL ASSY 50MM 0506 CL/GI 0B,362-2AD0506CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,900,Output VAT,Input VAT +product.product_std-ahu-amair_1095,PNL ASSY 50MM 0606 CL/GI 0B,362-2AD0606CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1088,Output VAT,Input VAT +product.product_std-ahu-amair_1096,PNL ASSY 50MM 0305 CL/GI 0B,362-2AF0305CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,594,Output VAT,Input VAT +product.product_std-ahu-amair_1097,PNL ASSY 50MM 0306 CL/GI 0B,362-2AF0306CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,740,Output VAT,Input VAT +product.product_std-ahu-amair_1098,PNL ASSY 50MM 0404 CL/GI 0B,362-2AF0404CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,661,Output VAT,Input VAT +product.product_std-ahu-amair_1099,PNL ASSY 50MM 0405 CL/GI 0B,362-2AF0405CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,751,Output VAT,Input VAT +product.product_std-ahu-amair_1100,PNL ASSY 50MM 0406 CL/CL 0B,362-2AF0406CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,762,Output VAT,Input VAT +product.product_std-ahu-amair_1101,PNL ASSY 50MM 0406 CL/GI 0B,362-2AF0406CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,762,Output VAT,Input VAT +product.product_std-ahu-amair_1102,PNL ASSY 50MM 0506 CL/GI 0B,362-2AF0506CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,918,Output VAT,Input VAT +product.product_std-ahu-amair_1103,PNL ASSY 50MM 0606 CL/GI 0B,362-2AF0606CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1103,Output VAT,Input VAT +product.product_std-ahu-amair_1104,PNL ASSY 50MM 0204 CL/GI 0B,362-2AG0204CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,592,Output VAT,Input VAT +product.product_std-ahu-amair_1105,PNL ASSY 50MM 0404 CL/GI 0B,362-2AG0404CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2183,Output VAT,Input VAT +product.product_std-ahu-amair_1106,PNL ASSY 50MM 0406 CL/GI 0B,362-2AG0406CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,965,Output VAT,Input VAT +product.product_std-ahu-amair_1107,PNL ASSY 50MM 0506 CL/GI 0B,362-2AG0506CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1230,Output VAT,Input VAT +product.product_std-ahu-amair_1108,PNL ASSY 50MM 0508 CL/CL 0B,362-2AG0508CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2027,Output VAT,Input VAT +product.product_std-ahu-amair_1109,PNL ASSY 50MM 0508 CL/GI 0B,362-2AG0508CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1978,Output VAT,Input VAT +product.product_std-ahu-amair_1110,PNL ASSY 50MM 0305 CL/GI 0B,362-2AI0305CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1413,Output VAT,Input VAT +product.product_std-ahu-amair_1111,PNL ASSY 50MM 0404 CL/GI 0B,362-2AI0404CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1352,Output VAT,Input VAT +product.product_std-ahu-amair_1112,PNL ASSY 50MM 0405 CL/GI 0B,362-2AI0405CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1400,Output VAT,Input VAT +product.product_std-ahu-amair_1113,PNL ASSY 50MM 0406 CL/GI 0B,362-2AI0406CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1449,Output VAT,Input VAT +product.product_std-ahu-amair_1114,PNL ASSY 50MM 0506 CL/GI 0B,362-2AI0506CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,628,Output VAT,Input VAT +product.product_std-ahu-amair_1115,PNL ASSY 50MM 0305 CL/GI 0B,362-2AJ0305CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,995,Output VAT,Input VAT +product.product_std-ahu-amair_1116,PNL ASSY 50MM 0404 CL/GI 0B,362-2AJ0404CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,724,Output VAT,Input VAT +product.product_std-ahu-amair_1117,PNL ASSY 50MM 0405 CL/GI 0B,362-2AJ0405CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,749,Output VAT,Input VAT +product.product_std-ahu-amair_1118,PNL ASSY 50MM 0406 CL/GI 0B,362-2AJ0406CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,774,Output VAT,Input VAT +product.product_std-ahu-amair_1119,PNL ASSY 50MM 0506 CL/GI 0B,362-2AJ0506CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1465,Output VAT,Input VAT +product.product_std-ahu-amair_1120,PNL ASSY 50MM 0104 CL/GI 0A,362-2AL0104CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,126,Output VAT,Input VAT +product.product_std-ahu-amair_1121,PNL ASSY 50MM 0105 CL/GI 0A,362-2AL0105CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,153,Output VAT,Input VAT +product.product_std-ahu-amair_1122,PNL ASSY 50MM 0106 CL/GI 0A,362-2AL0106CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,181,Output VAT,Input VAT +product.product_std-ahu-amair_1123,PNL ASSY 50MM 0107 CL/GI 0A,362-2AL0107CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,211,Output VAT,Input VAT +product.product_std-ahu-amair_1124,PNL ASSY 50MM 0108 CL/GI 0A,362-2AL0108CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,240,Output VAT,Input VAT +product.product_std-ahu-amair_1125,PNL ASSY 50MM 0109 CL/GI 0A,362-2AL0109CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,270,Output VAT,Input VAT +product.product_std-ahu-amair_1126,PNL ASSY 50MM 0110 CL/GI 0A,362-2AL0110CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,298,Output VAT,Input VAT +product.product_std-ahu-amair_1127,PNL ASSY 50MM 0111 CL/GI 0A,362-2AL0111CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,328,Output VAT,Input VAT +product.product_std-ahu-amair_1128,PNL ASSY 50MM 0112 CL/GI 0A,362-2AL0112CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,356,Output VAT,Input VAT +product.product_std-ahu-amair_1129,PNL ASSY 50MM 0113 CL/GI 0A,362-2AL0113CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,386,Output VAT,Input VAT +product.product_std-ahu-amair_1130,PNL ASSY 50MM 0114 CL/GI 0A,362-2AL0114CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,414,Output VAT,Input VAT +product.product_std-ahu-amair_1131,PNL ASSY 50MM 0204 CL/GI 0A,362-2AL0204CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,216,Output VAT,Input VAT +product.product_std-ahu-amair_1132,PNL ASSY 50MM 0205 CL/GI 0A,362-2AL0205CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,266,Output VAT,Input VAT +product.product_std-ahu-amair_1133,PNL ASSY 50MM 0206 CL/GI 0A,362-2AL0206CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,317,Output VAT,Input VAT +product.product_std-ahu-amair_1134,PNL ASSY 50MM 0206 CL/SS 0A,362-2AL0206CLSS0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,668,Output VAT,Input VAT +product.product_std-ahu-amair_1135,PNL ASSY 50MM 0207 CL/GI 0A,362-2AL0207CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,366,Output VAT,Input VAT +product.product_std-ahu-amair_1136,PNL ASSY 50MM 0208 CL/GI 0A,362-2AL0208CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,416,Output VAT,Input VAT +product.product_std-ahu-amair_1137,PNL ASSY 50MM 0208 CL/SS 0A,362-2AL0208CLSS0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,893,Output VAT,Input VAT +product.product_std-ahu-amair_1138,PNL ASSY 50MM 0209 CL/GI 0A,362-2AL0209CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,467,Output VAT,Input VAT +product.product_std-ahu-amair_1139,PNL ASSY 50MM 0210 CL/GI 0A,362-2AL0210CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,516,Output VAT,Input VAT +product.product_std-ahu-amair_1140,PNL ASSY 50MM 0210 CL/SS 0A,362-2AL0210CLSS0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1107,Output VAT,Input VAT +product.product_std-ahu-amair_1141,PNL ASSY 50MM 0211 CL/GI 0A,362-2AL0211CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,564,Output VAT,Input VAT +product.product_std-ahu-amair_1142,PNL ASSY 50MM 0212 CL/GI 0A,362-2AL0212CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,615,Output VAT,Input VAT +product.product_std-ahu-amair_1143,PNL ASSY 50MM 0213 CL/GI 0A,362-2AL0213CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,665,Output VAT,Input VAT +product.product_std-ahu-amair_1144,PNL ASSY 50MM 0214 CL/GI 0A,362-2AL0214CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,715,Output VAT,Input VAT +product.product_std-ahu-amair_1145,PNL ASSY 50MM 0304 CL/GI 0A,362-2AL0304CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,308,Output VAT,Input VAT +product.product_std-ahu-amair_1146,PNL ASSY 50MM 0305 CL/GI 0A,362-2AL0305CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,377,Output VAT,Input VAT +product.product_std-ahu-amair_1147,PNL ASSY 50MM 0306 CL/GI 0A,362-2AL0306CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,450,Output VAT,Input VAT +product.product_std-ahu-amair_1148,PNL ASSY 50MM 0306 CL/CL 0A,362-2AL0306CLCL0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,567,Output VAT,Input VAT +product.product_std-ahu-amair_1149,PNL ASSY 50MM 0307 CL/GI 0A,362-2AL0307CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,521,Output VAT,Input VAT +product.product_std-ahu-amair_1150,PNL ASSY 50MM 0308 CL/GI 0A,362-2AL0308CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,589,Output VAT,Input VAT +product.product_std-ahu-amair_1151,PNL ASSY 50MM 0309 CL/GI 0A,362-2AL0309CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,661,Output VAT,Input VAT +product.product_std-ahu-amair_1152,PNL ASSY 50MM 0310 CL/GI 0A,362-2AL0310CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,733,Output VAT,Input VAT +product.product_std-ahu-amair_1153,PNL ASSY 50MM 0310 CL/SS 0A,362-2AL0310CLSS0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1412,Output VAT,Input VAT +product.product_std-ahu-amair_1154,PNL ASSY 50MM 0311 CL/GI 0A,362-2AL0311CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,803,Output VAT,Input VAT +product.product_std-ahu-amair_1155,PNL ASSY 50MM 0312 CL/GI 0A,362-2AL0312CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,873,Output VAT,Input VAT +product.product_std-ahu-amair_1156,PNL ASSY 50MM 0313 CL/GI 0A,362-2AL0313CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,946,Output VAT,Input VAT +product.product_std-ahu-amair_1157,PNL ASSY 50MM 0314 CL/GI 0A,362-2AL0314CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1015,Output VAT,Input VAT +product.product_std-ahu-amair_1158,PNL ASSY 50MM 0404 CL/GI 0A,362-2AL0404CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,399,Output VAT,Input VAT +product.product_std-ahu-amair_1159,PNL ASSY 50MM 0405 CL/GI 0A,362-2AL0405CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,492,Output VAT,Input VAT +product.product_std-ahu-amair_1160,PNL ASSY 50MM 0406 CL/GI 0A,362-2AL0406CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,583,Output VAT,Input VAT +product.product_std-ahu-amair_1161,PNL ASSY 50MM 0407 CL/GI 0A,362-2AL0407CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,675,Output VAT,Input VAT +product.product_std-ahu-amair_1162,PNL ASSY 50MM 0408 CL/GI 0A,362-2AL0408CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,765,Output VAT,Input VAT +product.product_std-ahu-amair_1163,PNL ASSY 50MM 0409 CL/GI 0A,362-2AL0409CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,857,Output VAT,Input VAT +product.product_std-ahu-amair_1164,PNL ASSY 50MM 0410 CL/GI 0A,362-2AL0410CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,950,Output VAT,Input VAT +product.product_std-ahu-amair_1165,PNL ASSY 50MM 0411 CL/GI 0A,362-2AL0411CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1040,Output VAT,Input VAT +product.product_std-ahu-amair_1166,PNL ASSY 50MM 0412 CL/GI 0A,362-2AL0412CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1133,Output VAT,Input VAT +product.product_std-ahu-amair_1167,PNL ASSY 50MM 0413 CL/GI 0A,362-2AL0413CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1223,Output VAT,Input VAT +product.product_std-ahu-amair_1168,PNL ASSY 50MM 0414 CL/GI 0A,362-2AL0414CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1316,Output VAT,Input VAT +product.product_std-ahu-amair_1169,PNL ASSY 50MM 0505 CL/GI 0A,362-2AL0505CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,603,Output VAT,Input VAT +product.product_std-ahu-amair_1170,PNL ASSY 50MM 0506 CL/GI 0A,362-2AL0506CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,717,Output VAT,Input VAT +product.product_std-ahu-amair_1171,PNL ASSY 50MM 0507 CL/GI 0A,362-2AL0507CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,829,Output VAT,Input VAT +product.product_std-ahu-amair_1172,PNL ASSY 50MM 0508 CL/GI 0A,362-2AL0508CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,941,Output VAT,Input VAT +product.product_std-ahu-amair_1173,PNL ASSY 50MM 0509 CL/GI 0A,362-2AL0509CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1053,Output VAT,Input VAT +product.product_std-ahu-amair_1174,PNL ASSY 50MM 0510 CL/GI 0A,362-2AL0510CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1167,Output VAT,Input VAT +product.product_std-ahu-amair_1175,PNL ASSY 50MM 0511 CL/GI 0A,362-2AL0511CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1279,Output VAT,Input VAT +product.product_std-ahu-amair_1176,PNL ASSY 50MM 0512 CL/GI 0A,362-2AL0512CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1391,Output VAT,Input VAT +product.product_std-ahu-amair_1177,PNL ASSY 50MM 0513 CL/GI 0A,362-2AL0513CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1504,Output VAT,Input VAT +product.product_std-ahu-amair_1178,PNL ASSY 50MM 0514 CL/GI 0A,362-2AL0514CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1616,Output VAT,Input VAT +product.product_std-ahu-amair_1179,PNL ASSY 50MM 0514 CL/GI 0A,362-2AL0516CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2014,Output VAT,Input VAT +product.product_std-ahu-amair_1180,PNL ASSY 50MM 0606 CL/GI 0A,362-2AL0606CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,850,Output VAT,Input VAT +product.product_std-ahu-amair_1181,PNL ASSY 50MM 0607 CL/GI 0A,362-2AL0607CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,983,Output VAT,Input VAT +product.product_std-ahu-amair_1182,PNL ASSY 50MM 0608 CL/GI 0A,362-2AL0608CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1116,Output VAT,Input VAT +product.product_std-ahu-amair_1183,PNL ASSY 50MM 0609 CL/GI 0A,362-2AL0609CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1250,Output VAT,Input VAT +product.product_std-ahu-amair_1184,PNL ASSY 50MM 0610 CL/GI 0A,362-2AL0610CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1383,Output VAT,Input VAT +product.product_std-ahu-amair_1185,PNL ASSY 50MM 0611 CL/GI 0A,362-2AL0611CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1516,Output VAT,Input VAT +product.product_std-ahu-amair_1186,PNL ASSY 50MM 0612 CL/GI 0A,362-2AL0612CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1651,Output VAT,Input VAT +product.product_std-ahu-amair_1187,PNL ASSY 50MM 0613 CL/GI 0A,362-2AL0613CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1784,Output VAT,Input VAT +product.product_std-ahu-amair_1188,PNL ASSY 50MM 0614 CL/GI 0A,362-2AL0614CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1916,Output VAT,Input VAT +product.product_std-ahu-amair_1189,PNL ASSY 50MM 0707 CL/GI 0A,362-2AL0707CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1136,Output VAT,Input VAT +product.product_std-ahu-amair_1190,PNL ASSY 50MM 0708 CL/GI 0A,362-2AL0708CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1290,Output VAT,Input VAT +product.product_std-ahu-amair_1191,PNL ASSY 50MM 0709 CL/GI 0A,362-2AL0709CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1447,Output VAT,Input VAT +product.product_std-ahu-amair_1192,PNL ASSY 50MM 0710 CL/GI 0A,362-2AL0710CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1600,Output VAT,Input VAT +product.product_std-ahu-amair_1193,PNL ASSY 50MM 0711 CL/GI 0A,362-2AL0711CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1754,Output VAT,Input VAT +product.product_std-ahu-amair_1194,PNL ASSY 50MM 0712 CL/GI 0A,362-2AL0712CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1909,Output VAT,Input VAT +product.product_std-ahu-amair_1195,PNL ASSY 50MM 0713 CL/GI 0A,362-2AL0713CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2063,Output VAT,Input VAT +product.product_std-ahu-amair_1196,PNL ASSY 50MM 0714 CL/GI 0A,362-2AL0714CLGI0A,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2217,Output VAT,Input VAT +product.product_std-ahu-amair_1197,PNL ASSY 50MM 0101 CL/CL 0B,362-2AS0101CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,20,Output VAT,Input VAT +product.product_std-ahu-amair_1198,PNL ASSY 50MM 0101 CL/GI 0B,362-2AS0101CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,20,Output VAT,Input VAT +product.product_std-ahu-amair_1199,PNL ASSY 50MM 0101 GI/GI 0B,362-2AS0101GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,20,Output VAT,Input VAT +product.product_std-ahu-amair_1200,PNL ASSY 50MM 0102 CL/CL 0B,362-2AS0102CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,40,Output VAT,Input VAT +product.product_std-ahu-amair_1201,PNL ASSY 50MM 0102 CL/GI 0B,362-2AS0102CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,40,Output VAT,Input VAT +product.product_std-ahu-amair_1202,PNL ASSY 50MM 0102 GI/GI 0B,362-2AS0102GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,39,Output VAT,Input VAT +product.product_std-ahu-amair_1203,PNL ASSY 50MM 0103 CL/CL 0B,362-2AS0103CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,60,Output VAT,Input VAT +product.product_std-ahu-amair_1204,PNL ASSY 50MM 0103 CL/GI 0B,362-2AS0103CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,60,Output VAT,Input VAT +product.product_std-ahu-amair_1205,PNL ASSY 50MM 0103 GI/GI 0B,362-2AS0103GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,60,Output VAT,Input VAT +product.product_std-ahu-amair_1206,PNL ASSY 50MM 0104 CL/CL 0B,362-2AS0104CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,106,Output VAT,Input VAT +product.product_std-ahu-amair_1207,PNL ASSY 50MM 0104 CL/GI 0B,362-2AS0104CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,81,Output VAT,Input VAT +product.product_std-ahu-amair_1208,PNL ASSY 50MM 0104 GI/GI 0B,362-2AS0104GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,79,Output VAT,Input VAT +product.product_std-ahu-amair_1209,PNL ASSY 50MM 0105 CL/CL 0B,362-2AS0105CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,102,Output VAT,Input VAT +product.product_std-ahu-amair_1210,PNL ASSY 50MM 0105 CL/GI 0B,362-2AS0105CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,100,Output VAT,Input VAT +product.product_std-ahu-amair_1211,PNL ASSY 50MM 0105 GI/GI 0B,362-2AS0105GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,100,Output VAT,Input VAT +product.product_std-ahu-amair_1212,PNL ASSY 50MM 0106 CL/CL 0B,362-2AS0106CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,123,Output VAT,Input VAT +product.product_std-ahu-amair_1213,PNL ASSY 50MM 0106 CL/GI 0B,362-2AS0106CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,121,Output VAT,Input VAT +product.product_std-ahu-amair_1214,PNL ASSY 50MM 0106 GI/GI 0B,362-2AS0106GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,118,Output VAT,Input VAT +product.product_std-ahu-amair_1215,PNL ASSY 50MM 0107 CL/CL 0B,362-2AS0107CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,143,Output VAT,Input VAT +product.product_std-ahu-amair_1216,PNL ASSY 50MM 0107 CL/GI 0B,362-2AS0107CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,140,Output VAT,Input VAT +product.product_std-ahu-amair_1217,PNL ASSY 50MM 0107 GI/GI 0B,362-2AS0107GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,138,Output VAT,Input VAT +product.product_std-ahu-amair_1218,PNL ASSY 50MM 0108 CL/CL 0B,362-2AS0108CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,162,Output VAT,Input VAT +product.product_std-ahu-amair_1219,PNL ASSY 50MM 0108 CL/GI 0B,362-2AS0108CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,160,Output VAT,Input VAT +product.product_std-ahu-amair_1220,PNL ASSY 50MM 0108 GI/GI 0B,362-2AS0108GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,159,Output VAT,Input VAT +product.product_std-ahu-amair_1221,PNL ASSY 50MM 0109 CL/CL 0B,362-2AS0109CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,181,Output VAT,Input VAT +product.product_std-ahu-amair_1222,PNL ASSY 50MM 0109 CL/GI 0B,362-2AS0109CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,180,Output VAT,Input VAT +product.product_std-ahu-amair_1223,PNL ASSY 50MM 0109 GI/GI 0B,362-2AS0109GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,178,Output VAT,Input VAT +product.product_std-ahu-amair_1224,PNL ASSY 50MM 0110 CL/CL 0B,362-2AS0110CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,203,Output VAT,Input VAT +product.product_std-ahu-amair_1225,PNL ASSY 50MM 0110 CL/GI 0B,362-2AS0110CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,201,Output VAT,Input VAT +product.product_std-ahu-amair_1226,PNL ASSY 50MM 0110 GI/GI 0B,362-2AS0110GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,198,Output VAT,Input VAT +product.product_std-ahu-amair_1227,PNL ASSY 50MM 0111 CL/CL 0B,362-2AS0111CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,223,Output VAT,Input VAT +product.product_std-ahu-amair_1228,PNL ASSY 50MM 0111 CL/GI 0B,362-2AS0111CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,220,Output VAT,Input VAT +product.product_std-ahu-amair_1229,PNL ASSY 50MM 0111 GI/GI 0B,362-2AS0111GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,218,Output VAT,Input VAT +product.product_std-ahu-amair_1230,PNL ASSY 50MM 0112 CL/CL 0B,362-2AS0112CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,244,Output VAT,Input VAT +product.product_std-ahu-amair_1231,PNL ASSY 50MM 0112 CL/GI 0B,362-2AS0112CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,240,Output VAT,Input VAT +product.product_std-ahu-amair_1232,PNL ASSY 50MM 0112 GI/GI 0B,362-2AS0112GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,237,Output VAT,Input VAT +product.product_std-ahu-amair_1233,PNL ASSY 50MM 0113 CL/CL 0B,362-2AS0113CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,263,Output VAT,Input VAT +product.product_std-ahu-amair_1234,PNL ASSY 50MM 0113 CL/GI 0B,362-2AS0113CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,259,Output VAT,Input VAT +product.product_std-ahu-amair_1235,PNL ASSY 50MM 0113 GI/GI 0B,362-2AS0113GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,258,Output VAT,Input VAT +product.product_std-ahu-amair_1236,PNL ASSY 50MM 0114 CL/CL 0B,362-2AS0114CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,284,Output VAT,Input VAT +product.product_std-ahu-amair_1237,PNL ASSY 50MM 0114 CL/GI 0B,362-2AS0114CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,280,Output VAT,Input VAT +product.product_std-ahu-amair_1238,PNL ASSY 50MM 0114 GI/GI 0B,362-2AS0114GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,278,Output VAT,Input VAT +product.product_std-ahu-amair_1239,PNL ASSY 50MM 0202 CL/CL 0B,362-2AS0202CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,83,Output VAT,Input VAT +product.product_std-ahu-amair_1240,PNL ASSY 50MM 0202 CL/GI 0B,362-2AS0202CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,81,Output VAT,Input VAT +product.product_std-ahu-amair_1241,PNL ASSY 50MM 0202 GI/GI 0B,362-2AS0202GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,80,Output VAT,Input VAT +product.product_std-ahu-amair_1242,PNL ASSY 50MM 0203 CL/CL 0B,362-2AS0203CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,125,Output VAT,Input VAT +product.product_std-ahu-amair_1243,PNL ASSY 50MM 0203 CL/GI 0B,362-2AS0203CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,123,Output VAT,Input VAT +product.product_std-ahu-amair_1244,PNL ASSY 50MM 0203 GI/GI 0B,362-2AS0203GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,121,Output VAT,Input VAT +product.product_std-ahu-amair_1245,PNL ASSY 50MM 0208 CL/CL 0B,362-2AS0204CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,166,Output VAT,Input VAT +product.product_std-ahu-amair_1246,PNL ASSY 50MM 0204 CL/GI 0B,362-2AS0204CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,163,Output VAT,Input VAT +product.product_std-ahu-amair_1247,PNL ASSY 50MM 0204 GI/GI 0B,362-2AS0204GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,160,Output VAT,Input VAT +product.product_std-ahu-amair_1248,PNL ASSY 50MM 0204 CL/SS 0B,362-2AS0204CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,401,Output VAT,Input VAT +product.product_std-ahu-amair_1249,PNL ASSY 50MM 0205 CL/CL 0B,362-2AS0205CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,205,Output VAT,Input VAT +product.product_std-ahu-amair_1250,PNL ASSY 50MM 0205 CL/GI 0B,362-2AS0205CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,203,Output VAT,Input VAT +product.product_std-ahu-amair_1251,PNL ASSY 50MM 0205 GI/GI 0B,362-2AS0205GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,201,Output VAT,Input VAT +product.product_std-ahu-amair_1252,PNL ASSY 50MM 0205 CL/SS 0B,362-2AS0205CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,492,Output VAT,Input VAT +product.product_std-ahu-amair_1253,PNL ASSY 50MM 0206 CL/CL 0B,362-2AS0206CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,247,Output VAT,Input VAT +product.product_std-ahu-amair_1254,PNL ASSY 50MM 0206 CL/GI 0B,362-2AS0206CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,245,Output VAT,Input VAT +product.product_std-ahu-amair_1255,PNL ASSY 50MM 0206 GI/GI 0B,362-2AS0206GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,241,Output VAT,Input VAT +product.product_std-ahu-amair_1256,PNL ASSY 50MM 0206 CL/SS 0B,362-2AS0206CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,597,Output VAT,Input VAT +product.product_std-ahu-amair_1257,PNL ASSY 50MM 0207 CL/CL 0B,362-2AS0207CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,290,Output VAT,Input VAT +product.product_std-ahu-amair_1258,PNL ASSY 50MM 0207 CL/GI 0B,362-2AS0207CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,285,Output VAT,Input VAT +product.product_std-ahu-amair_1259,PNL ASSY 50MM 0207 GI/GI 0B,362-2AS0207GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,281,Output VAT,Input VAT +product.product_std-ahu-amair_1260,PNL ASSY 50MM 0208 CL/CL 0B,362-2AS0208CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,331,Output VAT,Input VAT +product.product_std-ahu-amair_1261,PNL ASSY 50MM 0208 CL/GI 0B,362-2AS0208CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,326,Output VAT,Input VAT +product.product_std-ahu-amair_1262,PNL ASSY 50MM 0208 GI/GI 0B,362-2AS0208GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,323,Output VAT,Input VAT +product.product_std-ahu-amair_1263,PNL ASSY 50MM 0208 CL/SS 0B,362-2AS0208CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,803,Output VAT,Input VAT +product.product_std-ahu-amair_1264,PNL ASSY 50MM 0209 CL/CL 0B,362-2AS0209CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,373,Output VAT,Input VAT +product.product_std-ahu-amair_1265,PNL ASSY 50MM 0209 CL/GI 0B,362-2AS0209CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,368,Output VAT,Input VAT +product.product_std-ahu-amair_1266,PNL ASSY 50MM 0209 GI/GI 0B,362-2AS0209GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,362,Output VAT,Input VAT +product.product_std-ahu-amair_1267,PNL ASSY 50MM 0210 CL/CL 0B,362-2AS0210CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,413,Output VAT,Input VAT +product.product_std-ahu-amair_1268,PNL ASSY 50MM 0210 CL/GI 0B,362-2AS0210CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,409,Output VAT,Input VAT +product.product_std-ahu-amair_1269,PNL ASSY 50MM 0210 GI/GI 0B,362-2AS0210GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,402,Output VAT,Input VAT +product.product_std-ahu-amair_1270,PNL ASSY 50MM 0210 CL/SS 0B,362-2AS0210CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,999,Output VAT,Input VAT +product.product_std-ahu-amair_1271,PNL ASSY 50MM 0211 CL/CL 0B,362-2AS0211CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,456,Output VAT,Input VAT +product.product_std-ahu-amair_1272,PNL ASSY 50MM 0211 CL/GI 0B,362-2AS0211CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,450,Output VAT,Input VAT +product.product_std-ahu-amair_1273,PNL ASSY 50MM 0211 GI/GI 0B,362-2AS0211GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,444,Output VAT,Input VAT +product.product_std-ahu-amair_1274,PNL ASSY 50MM 0212 CL/CL 0B,362-2AS0212CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,497,Output VAT,Input VAT +product.product_std-ahu-amair_1275,PNL ASSY 50MM 0212 CL/GI 0B,362-2AS0212CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,489,Output VAT,Input VAT +product.product_std-ahu-amair_1276,PNL ASSY 50MM 0212 CL/SS 0B,362-2AS0212CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1129,Output VAT,Input VAT +product.product_std-ahu-amair_1277,PNL ASSY 50MM 0212 GI/GI 0B,362-2AS0212GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,484,Output VAT,Input VAT +product.product_std-ahu-amair_1278,PNL ASSY 50MM 0213 CL/CL 0B,362-2AS0213CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,538,Output VAT,Input VAT +product.product_std-ahu-amair_1279,PNL ASSY 50MM 0213 CL/GI 0B,362-2AS0213CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,531,Output VAT,Input VAT +product.product_std-ahu-amair_1280,PNL ASSY 50MM 0213 GI/GI 0B,362-2AS0213GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,524,Output VAT,Input VAT +product.product_std-ahu-amair_1281,PNL ASSY 50MM 0214 CL/CL 0B,362-2AS0214CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,580,Output VAT,Input VAT +product.product_std-ahu-amair_1282,PNL ASSY 50MM 0214 CL/GI 0B,362-2AS0214CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,572,Output VAT,Input VAT +product.product_std-ahu-amair_1283,PNL ASSY 50MM 0214 GI/GI 0B,362-2AS0214GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,564,Output VAT,Input VAT +product.product_std-ahu-amair_1284,PNL ASSY 50MM 0216 CL/GI 0B,362-2AS0216CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,724,Output VAT,Input VAT +product.product_std-ahu-amair_1285,PNL ASSY 50MM 0303 CL/CL 0B,362-2AS0303CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,184,Output VAT,Input VAT +product.product_std-ahu-amair_1286,PNL ASSY 50MM 0303 CL/GI 0B,362-2AS0303CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,182,Output VAT,Input VAT +product.product_std-ahu-amair_1287,PNL ASSY 50MM 0303 GI/GI 0B,362-2AS0303GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,181,Output VAT,Input VAT +product.product_std-ahu-amair_1288,PNL ASSY 50MM 0304 CL/CL 0B,362-2AS0304CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,248,Output VAT,Input VAT +product.product_std-ahu-amair_1289,PNL ASSY 50MM 0304 CL/GI 0B,362-2AS0304CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,245,Output VAT,Input VAT +product.product_std-ahu-amair_1290,PNL ASSY 50MM 0304 GI/GI 0B,362-2AS0304GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,242,Output VAT,Input VAT +product.product_std-ahu-amair_1291,PNL ASSY 50MM 0305 CL/CL 0B,362-2AS0305CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,311,Output VAT,Input VAT +product.product_std-ahu-amair_1292,PNL ASSY 50MM 0305 CL/GI 0B,362-2AS0305CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,307,Output VAT,Input VAT +product.product_std-ahu-amair_1293,PNL ASSY 50MM 0305 GI/GI 0B,362-2AS0305GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,303,Output VAT,Input VAT +product.product_std-ahu-amair_1294,PNL ASSY 50MM 0306 CL/CL 0B,362-2AS0306CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,373,Output VAT,Input VAT +product.product_std-ahu-amair_1295,PNL ASSY 50MM 0306 CL/GI 0B,362-2AS0306CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,369,Output VAT,Input VAT +product.product_std-ahu-amair_1296,PNL ASSY 50MM 0306 GI/GI 0B,362-2AS0306GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,363,Output VAT,Input VAT +product.product_std-ahu-amair_1297,PNL ASSY 50MM 0306 CL/SS 0B,362-2AS0306CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,896,Output VAT,Input VAT +product.product_std-ahu-amair_1298,PNL ASSY 50MM 0307 CL/CL 0B,362-2AS0307CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,436,Output VAT,Input VAT +product.product_std-ahu-amair_1299,PNL ASSY 50MM 0307 CL/GI 0B,362-2AS0307CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,430,Output VAT,Input VAT +product.product_std-ahu-amair_1300,PNL ASSY 50MM 0307 GI/GI 0B,362-2AS0307GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,426,Output VAT,Input VAT +product.product_std-ahu-amair_1301,PNL ASSY 50MM 0308 CL/CL 0B,362-2AS0308CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,500,Output VAT,Input VAT +product.product_std-ahu-amair_1302,PNL ASSY 50MM 0308 CL/GI 0B,362-2AS0308CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,494,Output VAT,Input VAT +product.product_std-ahu-amair_1303,PNL ASSY 50MM 0308 GI/GI 0B,362-2AS0308GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,486,Output VAT,Input VAT +product.product_std-ahu-amair_1304,PNL ASSY 50MM 0308 CL/SS 0B,362-2AS0308CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1209,Output VAT,Input VAT +product.product_std-ahu-amair_1305,PNL ASSY 50MM 0309 CL/CL 0B,362-2AS0309CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,562,Output VAT,Input VAT +product.product_std-ahu-amair_1306,PNL ASSY 50MM 0309 CL/GI 0B,362-2AS0309CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,555,Output VAT,Input VAT +product.product_std-ahu-amair_1307,PNL ASSY 50MM 0309 GI/GI 0B,362-2AS0309GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,547,Output VAT,Input VAT +product.product_std-ahu-amair_1308,PNL ASSY 50MM 0310 CL/CL 0B,362-2AS0310CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,625,Output VAT,Input VAT +product.product_std-ahu-amair_1309,PNL ASSY 50MM 0310 CL/GI 0B,362-2AS0310CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,617,Output VAT,Input VAT +product.product_std-ahu-amair_1310,PNL ASSY 50MM 0310 GI/GI 0B,362-2AS0310GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,608,Output VAT,Input VAT +product.product_std-ahu-amair_1311,PNL ASSY 50MM 0310 CL/SS 0B,362-2AS0310CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1508,Output VAT,Input VAT +product.product_std-ahu-amair_1312,PNL ASSY 50MM 0311 CL/CL 0B,362-2AS0311CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,686,Output VAT,Input VAT +product.product_std-ahu-amair_1313,PNL ASSY 50MM 0311 CL/GI 0B,362-2AS0311CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,678,Output VAT,Input VAT +product.product_std-ahu-amair_1314,PNL ASSY 50MM 0311 GI/GI 0B,362-2AS0311GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,670,Output VAT,Input VAT +product.product_std-ahu-amair_1315,PNL ASSY 50MM 0312 CL/CL 0B,362-2AS0312CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,751,Output VAT,Input VAT +product.product_std-ahu-amair_1316,PNL ASSY 50MM 0312 CL/GI 0B,362-2AS0312CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,739,Output VAT,Input VAT +product.product_std-ahu-amair_1317,PNL ASSY 50MM 0312 GI/GI 0B,362-2AS0312GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,731,Output VAT,Input VAT +product.product_std-ahu-amair_1318,PNL ASSY 50MM 0313 CL/CL 0B,362-2AS0313CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,812,Output VAT,Input VAT +product.product_std-ahu-amair_1319,PNL ASSY 50MM 0313 CL/GI 0B,362-2AS0313CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,802,Output VAT,Input VAT +product.product_std-ahu-amair_1320,PNL ASSY 50MM 0313 GI/GI 0B,362-2AS0313GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,792,Output VAT,Input VAT +product.product_std-ahu-amair_1321,PNL ASSY 50MM 0314 CL/CL 0B,362-2AS0314CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,874,Output VAT,Input VAT +product.product_std-ahu-amair_1322,PNL ASSY 50MM 0314 CL/GI 0B,362-2AS0314CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,863,Output VAT,Input VAT +product.product_std-ahu-amair_1323,PNL ASSY 50MM 0314 GI/GI 0B,362-2AS0314GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,851,Output VAT,Input VAT +product.product_std-ahu-amair_1324,PNL ASSY 50MM 0404 CL/CL 0B,362-2AS0404CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,333,Output VAT,Input VAT +product.product_std-ahu-amair_1325,PNL ASSY 50MM 0404 CL/GI 0B,362-2AS0404CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,328,Output VAT,Input VAT +product.product_std-ahu-amair_1326,PNL ASSY 50MM 0404 GI/GI 0B,362-2AS0404GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,325,Output VAT,Input VAT +product.product_std-ahu-amair_1327,PNL ASSY 50MM 0404 CL/SS 0B,362-2AS0404CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,805,Output VAT,Input VAT +product.product_std-ahu-amair_1328,PNL ASSY 50MM 0405 CL/CL 0B,362-2AS0405CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,417,Output VAT,Input VAT +product.product_std-ahu-amair_1329,PNL ASSY 50MM 0405 CL/GI 0B,362-2AS0405CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,411,Output VAT,Input VAT +product.product_std-ahu-amair_1330,PNL ASSY 50MM 0405 GI/GI 0B,362-2AS0405GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,405,Output VAT,Input VAT +product.product_std-ahu-amair_1331,PNL ASSY 50MM 0405 CL/SS 0B,362-2AS0405CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1001,Output VAT,Input VAT +product.product_std-ahu-amair_1332,PNL ASSY 50MM 0406 CL/CL 0B,362-2AS0406CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,629,Output VAT,Input VAT +product.product_std-ahu-amair_1333,PNL ASSY 50MM 0406 CL/GI 0B,362-2AS0406CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,495,Output VAT,Input VAT +product.product_std-ahu-amair_1334,PNL ASSY 50MM 0406 GI/GI 0B,362-2AS0406GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,487,Output VAT,Input VAT +product.product_std-ahu-amair_1335,PNL ASSY 50MM 0407 CL/CL 0B,362-2AS0407CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,584,Output VAT,Input VAT +product.product_std-ahu-amair_1336,PNL ASSY 50MM 0407 CL/GI 0B,362-2AS0407CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,577,Output VAT,Input VAT +product.product_std-ahu-amair_1337,PNL ASSY 50MM 0407 GI/GI 0B,362-2AS0407GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,568,Output VAT,Input VAT +product.product_std-ahu-amair_1338,PNL ASSY 50MM 0408 CL/CL 0B,362-2AS0408CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,668,Output VAT,Input VAT +product.product_std-ahu-amair_1339,PNL ASSY 50MM 0408 CL/GI 0B,362-2AS0408CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,659,Output VAT,Input VAT +product.product_std-ahu-amair_1340,PNL ASSY 50MM 0408 GI/GI 0B,362-2AS0408GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,651,Output VAT,Input VAT +product.product_std-ahu-amair_1341,PNL ASSY 50MM 0408 CL/SS 0B,362-2AS0408CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1613,Output VAT,Input VAT +product.product_std-ahu-amair_1342,PNL ASSY 50MM 0409 CL/CL 0B,362-2AS0409CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,753,Output VAT,Input VAT +product.product_std-ahu-amair_1343,PNL ASSY 50MM 0409 CL/GI 0B,362-2AS0409CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,740,Output VAT,Input VAT +product.product_std-ahu-amair_1344,PNL ASSY 50MM 0409 GI/GI 0B,362-2AS0409GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,732,Output VAT,Input VAT +product.product_std-ahu-amair_1345,PNL ASSY 50MM 0410 CL/CL 0B,362-2AS0410CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,835,Output VAT,Input VAT +product.product_std-ahu-amair_1346,PNL ASSY 50MM 0410 CL/GI 0B,362-2AS0410CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,826,Output VAT,Input VAT +product.product_std-ahu-amair_1347,PNL ASSY 50MM 0410 GI/GI 0B,362-2AS0410GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,813,Output VAT,Input VAT +product.product_std-ahu-amair_1348,PNL ASSY 50MM 0410 CL/SS 0B,362-2AS0410CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2019,Output VAT,Input VAT +product.product_std-ahu-amair_1349,PNL ASSY 50MM 0411 CL/CL 0B,362-2AS0411CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,919,Output VAT,Input VAT +product.product_std-ahu-amair_1350,PNL ASSY 50MM 0411 CL/GI 0B,362-2AS0411CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,907,Output VAT,Input VAT +product.product_std-ahu-amair_1351,PNL ASSY 50MM 0411 GI/GI 0B,362-2AS0411GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,894,Output VAT,Input VAT +product.product_std-ahu-amair_1352,PNL ASSY 50MM 0412 CL/CL 0B,362-2AS0412CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1003,Output VAT,Input VAT +product.product_std-ahu-amair_1353,PNL ASSY 50MM 0412 CL/GI 0B,362-2AS0412CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,990,Output VAT,Input VAT +product.product_std-ahu-amair_1354,PNL ASSY 50MM 0412 GI/GI 0B,362-2AS0412GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,977,Output VAT,Input VAT +product.product_std-ahu-amair_1355,PNL ASSY 50MM 0412 CL/SS 0B,362-2AS0412CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2421,Output VAT,Input VAT +product.product_std-ahu-amair_1356,PNL ASSY 50MM 0413 CL/CL 0B,362-2AS0413CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1086,Output VAT,Input VAT +product.product_std-ahu-amair_1357,PNL ASSY 50MM 0413 CL/GI 0B,362-2AS0413CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1072,Output VAT,Input VAT +product.product_std-ahu-amair_1358,PNL ASSY 50MM 0413 GI/GI 0B,362-2AS0413GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1059,Output VAT,Input VAT +product.product_std-ahu-amair_1359,PNL ASSY 50MM 0414 CL/CL 0B,362-2AS0414CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1171,Output VAT,Input VAT +product.product_std-ahu-amair_1360,PNL ASSY 50MM 0414 CL/GI 0B,362-2AS0414CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1156,Output VAT,Input VAT +product.product_std-ahu-amair_1361,PNL ASSY 50MM 0414 GI/GI 0B,362-2AS0414GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1139,Output VAT,Input VAT +product.product_std-ahu-amair_1362,PNL ASSY 50MM 0416 CL/GI 0B,362-2AS0416CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1375,Output VAT,Input VAT +product.product_std-ahu-amair_1363,PNL ASSY 50MM 0505 CL/CL 0B,362-2AS0505CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,522,Output VAT,Input VAT +product.product_std-ahu-amair_1364,PNL ASSY 50MM 0505 CL/GI 0B,362-2AS0505CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,513,Output VAT,Input VAT +product.product_std-ahu-amair_1365,PNL ASSY 50MM 0505 GI/GI 0B,362-2AS0505GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,507,Output VAT,Input VAT +product.product_std-ahu-amair_1366,PNL ASSY 50MM 0506 CL/CL 0B,362-2AS0506CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,627,Output VAT,Input VAT +product.product_std-ahu-amair_1367,PNL ASSY 50MM 0506 CL/GI 0B,362-2AS0506CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,618,Output VAT,Input VAT +product.product_std-ahu-amair_1368,PNL ASSY 50MM 0506 GI/GI 0B,362-2AS0506GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,609,Output VAT,Input VAT +product.product_std-ahu-amair_1369,PNL ASSY 50MM 0506 CL/SS 0B,362-2AS0506CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1509,Output VAT,Input VAT +product.product_std-ahu-amair_1370,PNL ASSY 50MM 0507 CL/CL 0B,362-2AS0507CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,731,Output VAT,Input VAT +product.product_std-ahu-amair_1371,PNL ASSY 50MM 0507 CL/GI 0B,362-2AS0507CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,720,Output VAT,Input VAT +product.product_std-ahu-amair_1372,PNL ASSY 50MM 0507 GI/GI 0B,362-2AS0507GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,712,Output VAT,Input VAT +product.product_std-ahu-amair_1373,PNL ASSY 50MM 0508 CL/CL 0B,362-2AS0508CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,836,Output VAT,Input VAT +product.product_std-ahu-amair_1374,PNL ASSY 50MM 0508 CL/GI 0B,362-2AS0508CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,826,Output VAT,Input VAT +product.product_std-ahu-amair_1375,PNL ASSY 50MM 0508 GI/GI 0B,362-2AS0508GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,813,Output VAT,Input VAT +product.product_std-ahu-amair_1376,PNL ASSY 50MM 0508 CL/SS 0B,362-2AS0508CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2019,Output VAT,Input VAT +product.product_std-ahu-amair_1377,PNL ASSY 50MM 0509 CL/CL 0B,362-2AS0509CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,941,Output VAT,Input VAT +product.product_std-ahu-amair_1378,PNL ASSY 50MM 0509 CL/GI 0B,362-2AS0509CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,928,Output VAT,Input VAT +product.product_std-ahu-amair_1379,PNL ASSY 50MM 0509 GI/GI 0B,362-2AS0509GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,916,Output VAT,Input VAT +product.product_std-ahu-amair_1380,PNL ASSY 50MM 0510 CL/CL 0B,362-2AS0510CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1046,Output VAT,Input VAT +product.product_std-ahu-amair_1381,PNL ASSY 50MM 0510 CL/GI 0B,362-2AS0510CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1031,Output VAT,Input VAT +product.product_std-ahu-amair_1382,PNL ASSY 50MM 0510 GI/GI 0B,362-2AS0510GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1019,Output VAT,Input VAT +product.product_std-ahu-amair_1383,PNL ASSY 50MM 0510 CL/SS 0B,362-2AS0510CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2525,Output VAT,Input VAT +product.product_std-ahu-amair_1384,PNL ASSY 50MM 0511 CL/CL 0B,362-2AS0511CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1152,Output VAT,Input VAT +product.product_std-ahu-amair_1385,PNL ASSY 50MM 0511 CL/GI 0B,362-2AS0511CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1136,Output VAT,Input VAT +product.product_std-ahu-amair_1386,PNL ASSY 50MM 0511 GI/GI 0B,362-2AS0511GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1121,Output VAT,Input VAT +product.product_std-ahu-amair_1387,PNL ASSY 50MM 0512 CL/CL 0B,362-2AS0512CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1256,Output VAT,Input VAT +product.product_std-ahu-amair_1388,PNL ASSY 50MM 0512 CL/GI 0B,362-2AS0512CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1238,Output VAT,Input VAT +product.product_std-ahu-amair_1389,PNL ASSY 50MM 0512 GI/GI 0B,362-2AS0512GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1223,Output VAT,Input VAT +product.product_std-ahu-amair_1390,PNL ASSY 50MM 0513 CL/CL 0B,362-2AS0513CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1361,Output VAT,Input VAT +product.product_std-ahu-amair_1391,PNL ASSY 50MM 0513 CL/GI 0B,362-2AS0513CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1343,Output VAT,Input VAT +product.product_std-ahu-amair_1392,PNL ASSY 50MM 0513 GI/GI 0B,362-2AS0513GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1326,Output VAT,Input VAT +product.product_std-ahu-amair_1393,PNL ASSY 50MM 0514 CL/CL 0B,362-2AS0514CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1464,Output VAT,Input VAT +product.product_std-ahu-amair_1394,PNL ASSY 50MM 0514 CL/GI 0B,362-2AS0514CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1447,Output VAT,Input VAT +product.product_std-ahu-amair_1395,PNL ASSY 50MM 0514 GI/GI 0B,362-2AS0514GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1428,Output VAT,Input VAT +product.product_std-ahu-amair_1396,PNL ASSY 50MM 0516 CL/GI 0B,362-2AS0516CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1810,Output VAT,Input VAT +product.product_std-ahu-amair_1397,PNL ASSY 50MM 0606 CL/CL 0B,362-2AS0606CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,943,Output VAT,Input VAT +product.product_std-ahu-amair_1398,PNL ASSY 50MM 0606 CL/GI 0B,362-2AS0606CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,742,Output VAT,Input VAT +product.product_std-ahu-amair_1399,PNL ASSY 50MM 0606 GI/GI 0B,362-2AS0606GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,733,Output VAT,Input VAT +product.product_std-ahu-amair_1400,PNL ASSY 50MM 0606 CL/SS 0B,362-2AS0606CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1810,Output VAT,Input VAT +product.product_std-ahu-amair_1401,PNL ASSY 50MM 0607 CL/CL 0B,362-2AS0607CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,878,Output VAT,Input VAT +product.product_std-ahu-amair_1402,PNL ASSY 50MM 0607 CL/GI 0B,362-2AS0607CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,867,Output VAT,Input VAT +product.product_std-ahu-amair_1403,PNL ASSY 50MM 0607 GI/GI 0B,362-2AS0607GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,854,Output VAT,Input VAT +product.product_std-ahu-amair_1404,PNL ASSY 50MM 0607 CL/SS 0B,362-2AS0607CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2123,Output VAT,Input VAT +product.product_std-ahu-amair_1405,PNL ASSY 50MM 0608 CL/CL 0B,362-2AS0608CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1004,Output VAT,Input VAT +product.product_std-ahu-amair_1406,PNL ASSY 50MM 0608 CL/GI 0B,362-2AS0608CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,992,Output VAT,Input VAT +product.product_std-ahu-amair_1407,PNL ASSY 50MM 0608 GI/GI 0B,362-2AS0608GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,979,Output VAT,Input VAT +product.product_std-ahu-amair_1408,PNL ASSY 50MM 0608 CL/SS 0B,362-2AS0608CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2423,Output VAT,Input VAT +product.product_std-ahu-amair_1409,PNL ASSY 50MM 0609 CL/CL 0B,362-2AS0609CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1131,Output VAT,Input VAT +product.product_std-ahu-amair_1410,PNL ASSY 50MM 0609 CL/GI 0B,362-2AS0609CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1116,Output VAT,Input VAT +product.product_std-ahu-amair_1411,PNL ASSY 50MM 0609 GI/GI 0B,362-2AS0609GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1102,Output VAT,Input VAT +product.product_std-ahu-amair_1412,PNL ASSY 50MM 0609 CL/SS 0B,362-2AS0609CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2723,Output VAT,Input VAT +product.product_std-ahu-amair_1413,PNL ASSY 50MM 0610 CL/CL 0B,362-2AS0610CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1257,Output VAT,Input VAT +product.product_std-ahu-amair_1414,PNL ASSY 50MM 0610 CL/GI 0B,362-2AS0610CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1239,Output VAT,Input VAT +product.product_std-ahu-amair_1415,PNL ASSY 50MM 0610 GI/GI 0B,362-2AS0610GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1223,Output VAT,Input VAT +product.product_std-ahu-amair_1416,PNL ASSY 50MM 0610 CL/SS 0B,362-2AS0610CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3035,Output VAT,Input VAT +product.product_std-ahu-amair_1417,PNL ASSY 50MM 0611 CL/CL 0B,362-2AS0611CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1518,Output VAT,Input VAT +product.product_std-ahu-amair_1418,PNL ASSY 50MM 0611 CL/GI 0B,362-2AS0611CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1365,Output VAT,Input VAT +product.product_std-ahu-amair_1419,PNL ASSY 50MM 0611 GI/GI 0B,362-2AS0611GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1346,Output VAT,Input VAT +product.product_std-ahu-amair_1420,PNL ASSY 50MM 0612 CL/CL 0B,362-2AS0612CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1509,Output VAT,Input VAT +product.product_std-ahu-amair_1421,PNL ASSY 50MM 0612 CL/GI 0B,362-2AS0612CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1488,Output VAT,Input VAT +product.product_std-ahu-amair_1422,PNL ASSY 50MM 0612 GI/GI 0B,362-2AS0612GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1469,Output VAT,Input VAT +product.product_std-ahu-amair_1423,PNL ASSY 50MM 0612 CL/SS 0B,362-2AS0612CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3635,Output VAT,Input VAT +product.product_std-ahu-amair_1424,PNL ASSY 50MM 0613 CL/CL 0B,362-2AS0613CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1634,Output VAT,Input VAT +product.product_std-ahu-amair_1425,PNL ASSY 50MM 0613 CL/GI 0B,362-2AS0613CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1613,Output VAT,Input VAT +product.product_std-ahu-amair_1426,PNL ASSY 50MM 0613 GI/GI 0B,362-2AS0613GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1592,Output VAT,Input VAT +product.product_std-ahu-amair_1427,PNL ASSY 50MM 0614 CL/CL 0B,362-2AS0614CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1762,Output VAT,Input VAT +product.product_std-ahu-amair_1428,PNL ASSY 50MM 0614 CL/GI 0B,362-2AS0614CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1738,Output VAT,Input VAT +product.product_std-ahu-amair_1429,PNL ASSY 50MM 0614 GI/GI 0B,362-2AS0614GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1714,Output VAT,Input VAT +product.product_std-ahu-amair_1430,PNL ASSY 50MM 0707 CL/CL 0B,362-2AS0707CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1152,Output VAT,Input VAT +product.product_std-ahu-amair_1431,PNL ASSY 50MM 0707 CL/GI 0B,362-2AS0707CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1012,Output VAT,Input VAT +product.product_std-ahu-amair_1432,PNL ASSY 50MM 0707 GI/GI 0B,362-2AS0707GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,999,Output VAT,Input VAT +product.product_std-ahu-amair_1433,PNL ASSY 50MM 0708 CL/CL 0B,362-2AS0708CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1174,Output VAT,Input VAT +product.product_std-ahu-amair_1434,PNL ASSY 50MM 0708 CL/GI 0B,362-2AS0708CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1157,Output VAT,Input VAT +product.product_std-ahu-amair_1435,PNL ASSY 50MM 0708 GI/GI 0B,362-2AS0708GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1143,Output VAT,Input VAT +product.product_std-ahu-amair_1436,PNL ASSY 50MM 0708 CL/SS 0B,362-2AS0708CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2827,Output VAT,Input VAT +product.product_std-ahu-amair_1437,PNL ASSY 50MM 0709 CL/CL 0B,362-2AS0709CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1455,Output VAT,Input VAT +product.product_std-ahu-amair_1438,PNL ASSY 50MM 0709 CL/GI 0B,362-2AS0709CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1303,Output VAT,Input VAT +product.product_std-ahu-amair_1439,PNL ASSY 50MM 0709 GI/GI 0B,362-2AS0709GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1286,Output VAT,Input VAT +product.product_std-ahu-amair_1440,PNL ASSY 50MM 0710 CL/CL 0B,362-2AS0710CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1466,Output VAT,Input VAT +product.product_std-ahu-amair_1441,PNL ASSY 50MM 0710 CL/GI 0B,362-2AS0710CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1448,Output VAT,Input VAT +product.product_std-ahu-amair_1442,PNL ASSY 50MM 0710 GI/GI 0B,362-2AS0710GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1429,Output VAT,Input VAT +product.product_std-ahu-amair_1443,PNL ASSY 50MM 0710 CL/SS 0B,362-2AS0710CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3545,Output VAT,Input VAT +product.product_std-ahu-amair_1444,PNL ASSY 50MM 0711 CL/CL 0B,362-2AS0711CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1614,Output VAT,Input VAT +product.product_std-ahu-amair_1445,PNL ASSY 50MM 0711 CL/GI 0B,362-2AS0711CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1593,Output VAT,Input VAT +product.product_std-ahu-amair_1446,PNL ASSY 50MM 0711 GI/GI 0B,362-2AS0711GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1573,Output VAT,Input VAT +product.product_std-ahu-amair_1447,PNL ASSY 50MM 0712 CL/CL 0B,362-2AS0712CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1762,Output VAT,Input VAT +product.product_std-ahu-amair_1448,PNL ASSY 50MM 0712 CL/GI 0B,362-2AS0712CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1738,Output VAT,Input VAT +product.product_std-ahu-amair_1449,PNL ASSY 50MM 0712 GI/GI 0B,362-2AS0712GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1715,Output VAT,Input VAT +product.product_std-ahu-amair_1450,PNL ASSY 50MM 0712 CL/SS 0B,362-2AS0712CLSS0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,4250,Output VAT,Input VAT +product.product_std-ahu-amair_1451,PNL ASSY 50MM 0713 CL/CL 0B,362-2AS0713CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1909,Output VAT,Input VAT +product.product_std-ahu-amair_1452,PNL ASSY 50MM 0713 CL/GI 0B,362-2AS0713CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1883,Output VAT,Input VAT +product.product_std-ahu-amair_1453,PNL ASSY 50MM 0713 GI/GI 0B,362-2AS0713GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1859,Output VAT,Input VAT +product.product_std-ahu-amair_1454,PNL ASSY 50MM 0714 CL/CL 0B,362-2AS0714CLCL0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2056,Output VAT,Input VAT +product.product_std-ahu-amair_1455,PNL ASSY 50MM 0714 CL/GI 0B,362-2AS0714CLGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2029,Output VAT,Input VAT +product.product_std-ahu-amair_1456,PNL ASSY 50MM 0714 GI/GI 0B,362-2AS0714GIGI0B,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2003,Output VAT,Input VAT +product.product_std-ahu-amair_1457,HINGE DOOR ASSY 25MM 0306 CL/CL 00,362-1AH0306CLCL00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2460,Output VAT,Input VAT +product.product_std-ahu-amair_1458,HINGE DOOR ASSY 25MM 0404 CL/CL 00,362-1AH0404CLCL00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1857,Output VAT,Input VAT +product.product_std-ahu-amair_1459,HINGE DOOR ASSY 25MM 0404 CL/GI 00,362-1AH0404CLGI00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1752,Output VAT,Input VAT +product.product_std-ahu-amair_1460,HINGE DOOR ASSY 25MM 0404 CL/SS 00,362-1AH0404CLSS00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2229,Output VAT,Input VAT +product.product_std-ahu-amair_1461,HINGE DOOR ASSY 25MM 0405 CL/CL 00,362-1AH0405CLCL00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2280,Output VAT,Input VAT +product.product_std-ahu-amair_1462,HINGE DOOR ASSY 25MM 0406 CL/CL 00,362-1AH0406CLCL00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2326,Output VAT,Input VAT +product.product_std-ahu-amair_1463,HINGE DOOR ASSY 25MM 0406 CL/GI 00,362-1AH0406CLGI00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2169,Output VAT,Input VAT +product.product_std-ahu-amair_1464,HINGE DOOR ASSY 25MM 0406 CL/SS 00,362-1AH0406CLSS00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2884,Output VAT,Input VAT +product.product_std-ahu-amair_1465,HINGE DOOR ASSY 25MM 0506 CL/CL 00,362-1AH0506CLCL00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3284,Output VAT,Input VAT +product.product_std-ahu-amair_1466,HINGE DOOR ASSY 25MM 0506 CL/GI 00,362-1AH0506CLGI00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3023,Output VAT,Input VAT +product.product_std-ahu-amair_1467,HINGE DOOR ASSY 25MM 0606 CL/CL 00,362-1AH0606CLCL00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3730,Output VAT,Input VAT +product.product_std-ahu-amair_1468,HINGE DOOR ASSY 25MM 0606 CL/GI 00,362-1AH0606CLGI00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3416,Output VAT,Input VAT +product.product_std-ahu-amair_1469,HINGE DOOR ASSY 50MM 0404 CL/CL 00,362-2AH0404CLCL00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2160,Output VAT,Input VAT +product.product_std-ahu-amair_1470,HINGE DOOR ASSY 50MM 0404 CL/GI 00,362-2AH0404CLGI00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2056,Output VAT,Input VAT +product.product_std-ahu-amair_1471,HINGE DOOR ASSY 50MM 0405 CL/CL 00,362-2AH0405CLCL00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2419,Output VAT,Input VAT +product.product_std-ahu-amair_1472,HINGE DOOR ASSY 50MM 0406 CL/CL 00,362-2AH0406CLCL00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2677,Output VAT,Input VAT +product.product_std-ahu-amair_1473,HINGE DOOR ASSY 50MM 0406 CL/GI 00,362-2AH0406CLGI00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2520,Output VAT,Input VAT +product.product_std-ahu-amair_1474,HINGE DOOR ASSY 50MM 0406 CL/SS 00,362-2AH0406CLSS00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3236,Output VAT,Input VAT +product.product_std-ahu-amair_1475,HINGE DOOR ASSY 50MM 0506 CL/CL 00,362-2AH0506CLCL00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3335,Output VAT,Input VAT +product.product_std-ahu-amair_1476,HINGE DOOR ASSY 50MM 0506 CL/GI 00,362-2AH0506CLGI00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3074,Output VAT,Input VAT +product.product_std-ahu-amair_1477,HINGE DOOR ASSY 50MM 0506 CL/SS 00,362-2AH0506CLSS00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3965,Output VAT,Input VAT +product.product_std-ahu-amair_1478,HINGE DOOR ASSY 50MM 0606 CL/CL 00,362-2AH0606CLCL00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3760,Output VAT,Input VAT +product.product_std-ahu-amair_1479,HINGE DOOR ASSY 50MM 0606 CL/GI 00,362-2AH0606CLGI00,Standard AHU,"Amair Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,3446,Output VAT,Input VAT diff --git a/sqp_config/master/product/std_ahu_bgrim/product.product.csv b/sqp_config/master/product/std_ahu_bgrim/product.product.csv new file mode 100755 index 0000000..c97ba59 --- /dev/null +++ b/sqp_config/master/product/std_ahu_bgrim/product.product.csv @@ -0,0 +1,641 @@ +id,name,default_code,categ_id,partner_id,tag_ids,sale_ok,purchase_ok,is_one_time_use,type,procure_method,supply_method,cost_method,uom_id,uom_po_id,valuation,standard_price,list_price,taxes_id,supplier_taxes_id +product.product_std-ahu-bgrim_1,39GAP02-05 ACCESS DOOR 013007,463P0001,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,109,Output VAT,Input VAT +product.product_std-ahu-bgrim_2,39GAP02-06 ACCESS DOOR 013008,463P0002,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,131,Output VAT,Input VAT +product.product_std-ahu-bgrim_3,39GAP02-07 ACCESS DOOR 013009,463P0003,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,153,Output VAT,Input VAT +product.product_std-ahu-bgrim_4,39GAP02-08 ACCESS DOOR 013010,463P0004,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,174,Output VAT,Input VAT +product.product_std-ahu-bgrim_5,39GAP02-09 ACCESS DOOR 013011,463P0005,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,196,Output VAT,Input VAT +product.product_std-ahu-bgrim_6,39GAP02-10 ACCESS DOOR 013012,463P0006,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,218,Output VAT,Input VAT +product.product_std-ahu-bgrim_7,39GAP02-11 ACCESS DOOR 013013,463P0007,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,240,Output VAT,Input VAT +product.product_std-ahu-bgrim_8,39GAP02-12 ACCESS DOOR 013014,463P0008,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,261,Output VAT,Input VAT +product.product_std-ahu-bgrim_9,39GAP02-13 ACCESS DOOR 013015,463P0009,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,283,Output VAT,Input VAT +product.product_std-ahu-bgrim_10,39GAP02-14 ACCESS DOOR 013016,463P0010,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,305,Output VAT,Input VAT +product.product_std-ahu-bgrim_11,39GAP02-15 ACCESS DOOR 013017,463P0011,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,327,Output VAT,Input VAT +product.product_std-ahu-bgrim_12,39GAP02-16 ACCESS DOOR 013018,463P0012,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,349,Output VAT,Input VAT +product.product_std-ahu-bgrim_13,39GAP02-17 ACCESS DOOR 013019,463P0013,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,370,Output VAT,Input VAT +product.product_std-ahu-bgrim_14,39GAP02-18 ACCESS DOOR 013020,463P0014,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,392,Output VAT,Input VAT +product.product_std-ahu-bgrim_15,39GAP02-19 ACCESS DOOR 013021,463P0015,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,414,Output VAT,Input VAT +product.product_std-ahu-bgrim_16,39GAP02-20 ACCESS DOOR 013022,463P0016,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,436,Output VAT,Input VAT +product.product_std-ahu-bgrim_17,39GAP02-21 ACCESS DOOR 013023,463P0017,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,457,Output VAT,Input VAT +product.product_std-ahu-bgrim_18,39GAP02-22 ACCESS DOOR 013024,463P0018,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,479,Output VAT,Input VAT +product.product_std-ahu-bgrim_19,39GAP02-23 ACCESS DOOR 013025,463P0019,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,501,Output VAT,Input VAT +product.product_std-ahu-bgrim_20,39GAP02-24 ACCESS DOOR 013026,463P0020,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,523,Output VAT,Input VAT +product.product_std-ahu-bgrim_21,39GAP02-25 ACCESS DOOR 013027,463P0021,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,545,Output VAT,Input VAT +product.product_std-ahu-bgrim_22,39GAP02-26 ACCESS DOOR 013028,463P0022,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,566,Output VAT,Input VAT +product.product_std-ahu-bgrim_23,39GAP03-05 ACCESS DOOR 013029,463P0023,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,164,Output VAT,Input VAT +product.product_std-ahu-bgrim_24,39GAP03-06 ACCESS DOOR 013030,463P0024,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,197,Output VAT,Input VAT +product.product_std-ahu-bgrim_25,39GAP03-07 ACCESS DOOR 013031,463P0025,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,229,Output VAT,Input VAT +product.product_std-ahu-bgrim_26,39GAP03-08 ACCESS DOOR 013032,463P0026,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,262,Output VAT,Input VAT +product.product_std-ahu-bgrim_27,39GAP03-09 ACCESS DOOR 013033,463P0027,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,295,Output VAT,Input VAT +product.product_std-ahu-bgrim_28,39GAP03-10 ACCESS DOOR 013034,463P0028,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,328,Output VAT,Input VAT +product.product_std-ahu-bgrim_29,39GAP03-11 ACCESS DOOR 013035,463P0029,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,360,Output VAT,Input VAT +product.product_std-ahu-bgrim_30,39GAP03-12 ACCESS DOOR 013036,463P0030,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,393,Output VAT,Input VAT +product.product_std-ahu-bgrim_31,39GAP03-13 ACCESS DOOR 013037,463P0031,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,426,Output VAT,Input VAT +product.product_std-ahu-bgrim_32,39GAP03-14 ACCESS DOOR 013038,463P0032,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,459,Output VAT,Input VAT +product.product_std-ahu-bgrim_33,39GAP03-15 ACCESS DOOR 013039,463P0033,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,492,Output VAT,Input VAT +product.product_std-ahu-bgrim_34,39GAP03-16 ACCESS DOOR 013040,463P0034,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,524,Output VAT,Input VAT +product.product_std-ahu-bgrim_35,39GAP03-17 ACCESS DOOR 013041,463P0035,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,557,Output VAT,Input VAT +product.product_std-ahu-bgrim_36,39GAP03-18 ACCESS DOOR 013042,463P0036,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,590,Output VAT,Input VAT +product.product_std-ahu-bgrim_37,39GAP03-19 ACCESS DOOR 013043,463P0037,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,623,Output VAT,Input VAT +product.product_std-ahu-bgrim_38,39GAP03-20 ACCESS DOOR 013044,463P0038,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,655,Output VAT,Input VAT +product.product_std-ahu-bgrim_39,39GAP03-21 ACCESS DOOR 013045,463P0039,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,688,Output VAT,Input VAT +product.product_std-ahu-bgrim_40,39GAP03-22 ACCESS DOOR 013046,463P0040,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,721,Output VAT,Input VAT +product.product_std-ahu-bgrim_41,39GAP03-23 ACCESS DOOR 013047,463P0041,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,754,Output VAT,Input VAT +product.product_std-ahu-bgrim_42,39GAP03-24 ACCESS DOOR 013048,463P0042,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,787,Output VAT,Input VAT +product.product_std-ahu-bgrim_43,39GAP03-25 ACCESS DOOR 013049,463P0043,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,819,Output VAT,Input VAT +product.product_std-ahu-bgrim_44,39GAP03-26 ACCESS DOOR 013050,463P0044,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,852,Output VAT,Input VAT +product.product_std-ahu-bgrim_45,39GAP05-05 ACCESS DOOR 013051,463P0045,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,273,Output VAT,Input VAT +product.product_std-ahu-bgrim_46,39GAP05-06 ACCESS DOOR 013052,463P0046,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,328,Output VAT,Input VAT +product.product_std-ahu-bgrim_47,39GAP05-07 ACCESS DOOR 013053,463P0047,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,383,Output VAT,Input VAT +product.product_std-ahu-bgrim_48,39GAP05-08 ACCESS DOOR 013054,463P0048,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,438,Output VAT,Input VAT +product.product_std-ahu-bgrim_49,39GAP05-09 ACCESS DOOR 013055,463P0049,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,492,Output VAT,Input VAT +product.product_std-ahu-bgrim_50,39GAP05-10 ACCESS DOOR 013056,463P0050,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,547,Output VAT,Input VAT +product.product_std-ahu-bgrim_51,39GAP05-11 ACCESS DOOR 013057,463P0051,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,602,Output VAT,Input VAT +product.product_std-ahu-bgrim_52,39GAP05-12 ACCESS DOOR 013058,463P0052,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,657,Output VAT,Input VAT +product.product_std-ahu-bgrim_53,39GAP05-13 ACCESS DOOR 013059,463P0053,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,712,Output VAT,Input VAT +product.product_std-ahu-bgrim_54,39GAP05-14 ACCESS DOOR 013060,463P0054,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,766,Output VAT,Input VAT +product.product_std-ahu-bgrim_55,39GAP05-15 ACCESS DOOR 013061,463P0055,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,821,Output VAT,Input VAT +product.product_std-ahu-bgrim_56,39GAP05-16 ACCESS DOOR 013062,463P0056,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,876,Output VAT,Input VAT +product.product_std-ahu-bgrim_57,39GAP05-17 ACCESS DOOR 013063,463P0057,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,931,Output VAT,Input VAT +product.product_std-ahu-bgrim_58,39GAP05-18 ACCESS DOOR 013064,463P0058,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,985,Output VAT,Input VAT +product.product_std-ahu-bgrim_59,39GAP05-19 ACCESS DOOR 013065,463P0059,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1040,Output VAT,Input VAT +product.product_std-ahu-bgrim_60,39GAP05-20 ACCESS DOOR 013066,463P0060,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1095,Output VAT,Input VAT +product.product_std-ahu-bgrim_61,39GAP05-21 ACCESS DOOR 013067,463P0061,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1150,Output VAT,Input VAT +product.product_std-ahu-bgrim_62,39GAP05-22 ACCESS DOOR 013068,463P0062,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1205,Output VAT,Input VAT +product.product_std-ahu-bgrim_63,39GAP05-23 ACCESS DOOR 013069,463P0063,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1259,Output VAT,Input VAT +product.product_std-ahu-bgrim_64,39GAP05-24 ACCESS DOOR 013070,463P0064,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1314,Output VAT,Input VAT +product.product_std-ahu-bgrim_65,39GAP05-25 ACCESS DOOR 013071,463P0065,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1369,Output VAT,Input VAT +product.product_std-ahu-bgrim_66,39GAP05-26 ACCESS DOOR 013072,463P0066,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1424,Output VAT,Input VAT +product.product_std-ahu-bgrim_67,39GAP06-05 ACCESS DOOR 013073,463P0067,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,328,Output VAT,Input VAT +product.product_std-ahu-bgrim_68,39GAP06-06 ACCESS DOOR 013074,463P0068,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,394,Output VAT,Input VAT +product.product_std-ahu-bgrim_69,39GAP06-07 ACCESS DOOR 013075,463P0069,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,460,Output VAT,Input VAT +product.product_std-ahu-bgrim_70,39GAP06-08 ACCESS DOOR 013076,463P0070,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,525,Output VAT,Input VAT +product.product_std-ahu-bgrim_71,39GAP06-09 ACCESS DOOR 013077,463P0071,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,591,Output VAT,Input VAT +product.product_std-ahu-bgrim_72,39GAP06-10 ACCESS DOOR 013078,463P0072,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,657,Output VAT,Input VAT +product.product_std-ahu-bgrim_73,39GAP06-11 ACCESS DOOR 013079,463P0073,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,723,Output VAT,Input VAT +product.product_std-ahu-bgrim_74,39GAP06-12 ACCESS DOOR 013080,463P0074,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,789,Output VAT,Input VAT +product.product_std-ahu-bgrim_75,39GAP06-13 ACCESS DOOR 013081,463P0075,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,854,Output VAT,Input VAT +product.product_std-ahu-bgrim_76,39GAP06-14 ACCESS DOOR 013082,463P0076,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,920,Output VAT,Input VAT +product.product_std-ahu-bgrim_77,39GAP06-15 ACCESS DOOR 013083,463P0077,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,986,Output VAT,Input VAT +product.product_std-ahu-bgrim_78,39GAP06-16 ACCESS DOOR 013084,463P0078,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1052,Output VAT,Input VAT +product.product_std-ahu-bgrim_79,39GAP06-17 ACCESS DOOR 013085,463P0079,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1117,Output VAT,Input VAT +product.product_std-ahu-bgrim_80,39GAP06-18 ACCESS DOOR 013086,463P0080,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1183,Output VAT,Input VAT +product.product_std-ahu-bgrim_81,39GAP06-19 ACCESS DOOR 013087,463P0081,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1249,Output VAT,Input VAT +product.product_std-ahu-bgrim_82,39GAP06-20 ACCESS DOOR 013088,463P0082,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1315,Output VAT,Input VAT +product.product_std-ahu-bgrim_83,39GAP06-21 ACCESS DOOR 013089,463P0083,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1381,Output VAT,Input VAT +product.product_std-ahu-bgrim_84,39GAP06-22 ACCESS DOOR 013090,463P0084,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1446,Output VAT,Input VAT +product.product_std-ahu-bgrim_85,39GAP06-23 ACCESS DOOR 013091,463P0085,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1512,Output VAT,Input VAT +product.product_std-ahu-bgrim_86,39GAP06-24 ACCESS DOOR 013092,463P0086,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1578,Output VAT,Input VAT +product.product_std-ahu-bgrim_87,39GAP06-25 ACCESS DOOR 013093,463P0087,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1644,Output VAT,Input VAT +product.product_std-ahu-bgrim_88,39GAP06-26 ACCESS DOOR 013094,463P0088,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1709,Output VAT,Input VAT +product.product_std-ahu-bgrim_89,39GAP07-05 ACCESS DOOR 013095,463P0089,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,383,Output VAT,Input VAT +product.product_std-ahu-bgrim_90,39GAP07-06 ACCESS DOOR 013096,463P0090,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,460,Output VAT,Input VAT +product.product_std-ahu-bgrim_91,39GAP07-07 ACCESS DOOR 013097,463P0091,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,536,Output VAT,Input VAT +product.product_std-ahu-bgrim_92,39GAP07-08 ACCESS DOOR 013098,463P0092,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,613,Output VAT,Input VAT +product.product_std-ahu-bgrim_93,39GAP07-09 ACCESS DOOR 013099,463P0093,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,690,Output VAT,Input VAT +product.product_std-ahu-bgrim_94,39GAP07-10 ACCESS DOOR 013100,463P0094,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,767,Output VAT,Input VAT +product.product_std-ahu-bgrim_95,39GAP07-11 ACCESS DOOR 013101,463P0095,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,844,Output VAT,Input VAT +product.product_std-ahu-bgrim_96,39GAP07-12 ACCESS DOOR 013102,463P0096,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,920,Output VAT,Input VAT +product.product_std-ahu-bgrim_97,39GAP07-13 ACCESS DOOR 013103,463P0097,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,997,Output VAT,Input VAT +product.product_std-ahu-bgrim_98,39GAP07-14 ACCESS DOOR 013104,463P0098,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1074,Output VAT,Input VAT +product.product_std-ahu-bgrim_99,39GAP07-15 ACCESS DOOR 013105,463P0099,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1151,Output VAT,Input VAT +product.product_std-ahu-bgrim_100,39GAP07-16 ACCESS DOOR 013106,463P0100,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1227,Output VAT,Input VAT +product.product_std-ahu-bgrim_101,39GAP07-17 ACCESS DOOR 013107,463P0101,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1304,Output VAT,Input VAT +product.product_std-ahu-bgrim_102,39GAP07-18 ACCESS DOOR 013108,463P0102,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1381,Output VAT,Input VAT +product.product_std-ahu-bgrim_103,39GAP07-19 ACCESS DOOR 013109,463P0103,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1458,Output VAT,Input VAT +product.product_std-ahu-bgrim_104,39GAP07-20 ACCESS DOOR 013110,463P0104,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1535,Output VAT,Input VAT +product.product_std-ahu-bgrim_105,39GAP07-21 ACCESS DOOR 013111,463P0105,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1611,Output VAT,Input VAT +product.product_std-ahu-bgrim_106,39GAP07-22 ACCESS DOOR 013112,463P0106,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1688,Output VAT,Input VAT +product.product_std-ahu-bgrim_107,39GAP07-23 ACCESS DOOR 013113,463P0107,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1765,Output VAT,Input VAT +product.product_std-ahu-bgrim_108,39GAP07-24 ACCESS DOOR 013114,463P0108,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1842,Output VAT,Input VAT +product.product_std-ahu-bgrim_109,39GAP07-25 ACCESS DOOR 013115,463P0109,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1918,Output VAT,Input VAT +product.product_std-ahu-bgrim_110,39GAP07-26 ACCESS DOOR 013116,463P0110,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1995,Output VAT,Input VAT +product.product_std-ahu-bgrim_111,39GPN01-05 PANEL 013117,463P0111,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,49,Output VAT,Input VAT +product.product_std-ahu-bgrim_112,39GPN01-06 PANEL 013118,463P0112,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,59,Output VAT,Input VAT +product.product_std-ahu-bgrim_113,39GPN01-07 PANEL 013119,463P0113,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,68,Output VAT,Input VAT +product.product_std-ahu-bgrim_114,39GPN01-08 PANEL 013120,463P0114,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,78,Output VAT,Input VAT +product.product_std-ahu-bgrim_115,39GPN01-09 PANEL 013121,463P0115,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,88,Output VAT,Input VAT +product.product_std-ahu-bgrim_116,39GPN01-10 PANEL 013122,463P0116,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,97,Output VAT,Input VAT +product.product_std-ahu-bgrim_117,39GPN01-11 PANEL 013123,463P0117,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,107,Output VAT,Input VAT +product.product_std-ahu-bgrim_118,39GPN01-12 PANEL 013124,463P0118,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,117,Output VAT,Input VAT +product.product_std-ahu-bgrim_119,39GPN01-13 PANEL 013125,463P0119,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,126,Output VAT,Input VAT +product.product_std-ahu-bgrim_120,39GPN01-14 PANEL 013126,463P0120,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,136,Output VAT,Input VAT +product.product_std-ahu-bgrim_121,39GPN01-15 PANEL 013127,463P0121,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,146,Output VAT,Input VAT +product.product_std-ahu-bgrim_122,39GPN01-16 PANEL 013128,463P0122,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,156,Output VAT,Input VAT +product.product_std-ahu-bgrim_123,39GPN01-17 PANEL 013129,463P0123,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,165,Output VAT,Input VAT +product.product_std-ahu-bgrim_124,39GPN01-18 PANEL 013130,463P0124,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,175,Output VAT,Input VAT +product.product_std-ahu-bgrim_125,39GPN01-19 PANEL 013131,463P0125,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,185,Output VAT,Input VAT +product.product_std-ahu-bgrim_126,39GPN01-20 PANEL 013132,463P0126,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,194,Output VAT,Input VAT +product.product_std-ahu-bgrim_127,39GPN01-21 PANEL 013133,463P0127,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,204,Output VAT,Input VAT +product.product_std-ahu-bgrim_128,39GPN01-22 PANEL 013134,463P0128,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,214,Output VAT,Input VAT +product.product_std-ahu-bgrim_129,39GPN01-23 PANEL 013135,463P0129,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,223,Output VAT,Input VAT +product.product_std-ahu-bgrim_130,39GPN01-24 PANEL 013136,463P0130,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,233,Output VAT,Input VAT +product.product_std-ahu-bgrim_131,39GPN01-25 PANEL 013137,463P0131,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,243,Output VAT,Input VAT +product.product_std-ahu-bgrim_132,39GPN01-26 PANEL 013138,463P0132,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,253,Output VAT,Input VAT +product.product_std-ahu-bgrim_133,39GPN02-05 PANEL 013139,463P0133,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,87,Output VAT,Input VAT +product.product_std-ahu-bgrim_134,39GPN02-06 PANEL 013140,463P0134,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,105,Output VAT,Input VAT +product.product_std-ahu-bgrim_135,39GPN02-07 PANEL 013141,463P0135,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,122,Output VAT,Input VAT +product.product_std-ahu-bgrim_136,39GPN02-08 PANEL 013142,463P0136,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,140,Output VAT,Input VAT +product.product_std-ahu-bgrim_137,39GPN02-09 PANEL 013143,463P0137,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,157,Output VAT,Input VAT +product.product_std-ahu-bgrim_138,39GPN02-10 PANEL 013144,463P0138,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,174,Output VAT,Input VAT +product.product_std-ahu-bgrim_139,39GPN02-11 PANEL 013145,463P0139,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,192,Output VAT,Input VAT +product.product_std-ahu-bgrim_140,39GPN02-12 PANEL 013146,463P0140,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,209,Output VAT,Input VAT +product.product_std-ahu-bgrim_141,39GPN02-13 PANEL 013147,463P0141,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,227,Output VAT,Input VAT +product.product_std-ahu-bgrim_142,39GPN02-14 PANEL 013148,463P0142,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,244,Output VAT,Input VAT +product.product_std-ahu-bgrim_143,39GPN02-15 PANEL 013149,463P0143,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,262,Output VAT,Input VAT +product.product_std-ahu-bgrim_144,39GPN02-16 PANEL 013150,463P0144,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,279,Output VAT,Input VAT +product.product_std-ahu-bgrim_145,39GPN02-17 PANEL 013151,463P0145,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,296,Output VAT,Input VAT +product.product_std-ahu-bgrim_146,39GPN02-18 PANEL 013152,463P0146,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,314,Output VAT,Input VAT +product.product_std-ahu-bgrim_147,39GPN02-19 PANEL 013153,463P0147,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,331,Output VAT,Input VAT +product.product_std-ahu-bgrim_148,39GPN02-20 PANEL 013154,463P0148,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,349,Output VAT,Input VAT +product.product_std-ahu-bgrim_149,39GPN02-21 PANEL 013155,463P0149,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,366,Output VAT,Input VAT +product.product_std-ahu-bgrim_150,39GPN02-22 PANEL 013156,463P0150,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,383,Output VAT,Input VAT +product.product_std-ahu-bgrim_151,39GPN02-23 PANEL 013157,463P0151,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,401,Output VAT,Input VAT +product.product_std-ahu-bgrim_152,39GPN02-24 PANEL 013158,463P0152,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,418,Output VAT,Input VAT +product.product_std-ahu-bgrim_153,39GPN02-25 PANEL 013159,463P0153,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,436,Output VAT,Input VAT +product.product_std-ahu-bgrim_154,39GPN02-26 PANEL 013160,463P0154,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,453,Output VAT,Input VAT +product.product_std-ahu-bgrim_155,39GPN03-05 PANEL 013161,463P0155,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,131,Output VAT,Input VAT +product.product_std-ahu-bgrim_156,39GPN03-06 PANEL 013162,463P0156,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,157,Output VAT,Input VAT +product.product_std-ahu-bgrim_157,39GPN03-07 PANEL 013163,463P0157,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,184,Output VAT,Input VAT +product.product_std-ahu-bgrim_158,39GPN03-08 PANEL 013164,463P0158,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,210,Output VAT,Input VAT +product.product_std-ahu-bgrim_159,39GPN03-09 PANEL 013165,463P0159,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,236,Output VAT,Input VAT +product.product_std-ahu-bgrim_160,39GPN03-10 PANEL 013166,463P0160,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,262,Output VAT,Input VAT +product.product_std-ahu-bgrim_161,39GPN03-11 PANEL 013167,463P0161,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,288,Output VAT,Input VAT +product.product_std-ahu-bgrim_162,39GPN03-12 PANEL 013168,463P0162,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,315,Output VAT,Input VAT +product.product_std-ahu-bgrim_163,39GPN03-13 PANEL 013169,463P0163,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,341,Output VAT,Input VAT +product.product_std-ahu-bgrim_164,39GPN03-14 PANEL 013170,463P0164,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,367,Output VAT,Input VAT +product.product_std-ahu-bgrim_165,39GPN03-15 PANEL 013171,463P0165,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,393,Output VAT,Input VAT +product.product_std-ahu-bgrim_166,39GPN03-16 PANEL 013172,463P0166,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,420,Output VAT,Input VAT +product.product_std-ahu-bgrim_167,39GPN03-17 PANEL 013173,463P0167,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,446,Output VAT,Input VAT +product.product_std-ahu-bgrim_168,39GPN03-18 PANEL 013174,463P0168,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,472,Output VAT,Input VAT +product.product_std-ahu-bgrim_169,39GPN03-19 PANEL 013175,463P0169,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,498,Output VAT,Input VAT +product.product_std-ahu-bgrim_170,39GPN03-20 PANEL 013176,463P0170,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,524,Output VAT,Input VAT +product.product_std-ahu-bgrim_171,39GPN03-21 PANEL 013177,463P0171,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,551,Output VAT,Input VAT +product.product_std-ahu-bgrim_172,39GPN03-22 PANEL 013178,463P0172,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,577,Output VAT,Input VAT +product.product_std-ahu-bgrim_173,39GPN03-23 PANEL 013179,463P0173,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,603,Output VAT,Input VAT +product.product_std-ahu-bgrim_174,39GPN03-24 PANEL 013180,463P0174,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,629,Output VAT,Input VAT +product.product_std-ahu-bgrim_175,39GPN03-25 PANEL 013181,463P0175,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,656,Output VAT,Input VAT +product.product_std-ahu-bgrim_176,39GPN03-26 PANEL 013182,463P0176,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,682,Output VAT,Input VAT +product.product_std-ahu-bgrim_177,39GPN04-05 PANEL 013183,463P0177,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,175,Output VAT,Input VAT +product.product_std-ahu-bgrim_178,39GPN04-06 PANEL 013184,463P0178,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,210,Output VAT,Input VAT +product.product_std-ahu-bgrim_179,39GPN04-07 PANEL 013185,463P0179,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,245,Output VAT,Input VAT +product.product_std-ahu-bgrim_180,39GPN04-08 PANEL 013186,463P0180,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,280,Output VAT,Input VAT +product.product_std-ahu-bgrim_181,39GPN04-09 PANEL 013187,463P0181,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,315,Output VAT,Input VAT +product.product_std-ahu-bgrim_182,39GPN04-10 PANEL 013188,463P0182,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,350,Output VAT,Input VAT +product.product_std-ahu-bgrim_183,39GPN04-11 PANEL 013189,463P0183,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,385,Output VAT,Input VAT +product.product_std-ahu-bgrim_184,39GPN04-12 PANEL 013190,463P0184,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,420,Output VAT,Input VAT +product.product_std-ahu-bgrim_185,39GPN04-13 PANEL 013191,463P0185,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,455,Output VAT,Input VAT +product.product_std-ahu-bgrim_186,39GPN04-14 PANEL 013192,463P0186,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,490,Output VAT,Input VAT +product.product_std-ahu-bgrim_187,39GPN04-15 PANEL 013193,463P0187,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,525,Output VAT,Input VAT +product.product_std-ahu-bgrim_188,39GPN04-16 PANEL 013194,463P0188,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,560,Output VAT,Input VAT +product.product_std-ahu-bgrim_189,39GPN04-17 PANEL 013195,463P0189,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,595,Output VAT,Input VAT +product.product_std-ahu-bgrim_190,39GPN04-18 PANEL 013196,463P0190,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,630,Output VAT,Input VAT +product.product_std-ahu-bgrim_191,39GPN04-19 PANEL 013197,463P0191,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,665,Output VAT,Input VAT +product.product_std-ahu-bgrim_192,39GPN04-20 PANEL 013198,463P0192,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,700,Output VAT,Input VAT +product.product_std-ahu-bgrim_193,39GPN04-21 PANEL 013199,463P0193,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,735,Output VAT,Input VAT +product.product_std-ahu-bgrim_194,39GPN04-22 PANEL 013200,463P0194,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,770,Output VAT,Input VAT +product.product_std-ahu-bgrim_195,39GPN04-23 PANEL 013201,463P0195,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,805,Output VAT,Input VAT +product.product_std-ahu-bgrim_196,39GPN04-24 PANEL 013202,463P0196,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,840,Output VAT,Input VAT +product.product_std-ahu-bgrim_197,39GPN04-25 PANEL 013203,463P0197,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,875,Output VAT,Input VAT +product.product_std-ahu-bgrim_198,39GPN04-26 PANEL 013204,463P0198,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,910,Output VAT,Input VAT +product.product_std-ahu-bgrim_199,39GPN05-05 PANEL 013205,463P0199,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,219,Output VAT,Input VAT +product.product_std-ahu-bgrim_200,39GPN05-06 PANEL 013206,463P0200,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,263,Output VAT,Input VAT +product.product_std-ahu-bgrim_201,39GPN05-07 PANEL 013207,463P0201,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,306,Output VAT,Input VAT +product.product_std-ahu-bgrim_202,39GPN05-08 PANEL 013208,463P0202,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,350,Output VAT,Input VAT +product.product_std-ahu-bgrim_203,39GPN05-09 PANEL 013209,463P0203,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,394,Output VAT,Input VAT +product.product_std-ahu-bgrim_204,39GPN05-10 PANEL 013210,463P0204,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,438,Output VAT,Input VAT +product.product_std-ahu-bgrim_205,39GPN05-11 PANEL 013211,463P0205,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,482,Output VAT,Input VAT +product.product_std-ahu-bgrim_206,39GPN05-12 PANEL 013212,463P0206,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,526,Output VAT,Input VAT +product.product_std-ahu-bgrim_207,39GPN05-13 PANEL 013213,463P0207,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,569,Output VAT,Input VAT +product.product_std-ahu-bgrim_208,39GPN05-14 PANEL 013214,463P0208,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,613,Output VAT,Input VAT +product.product_std-ahu-bgrim_209,39GPN05-15 PANEL 013215,463P0209,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,657,Output VAT,Input VAT +product.product_std-ahu-bgrim_210,39GPN05-16 PANEL 013216,463P0210,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,701,Output VAT,Input VAT +product.product_std-ahu-bgrim_211,39GPN05-17 PANEL 013217,463P0211,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,745,Output VAT,Input VAT +product.product_std-ahu-bgrim_212,39GPN05-18 PANEL 013218,463P0212,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,788,Output VAT,Input VAT +product.product_std-ahu-bgrim_213,39GPN05-19 PANEL 013219,463P0213,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,832,Output VAT,Input VAT +product.product_std-ahu-bgrim_214,39GPN05-20 PANEL 013220,463P0214,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,876,Output VAT,Input VAT +product.product_std-ahu-bgrim_215,39GPN05-21 PANEL 013221,463P0215,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,920,Output VAT,Input VAT +product.product_std-ahu-bgrim_216,39GPN05-22 PANEL 013222,463P0216,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,964,Output VAT,Input VAT +product.product_std-ahu-bgrim_217,39GPN05-23 PANEL 013223,463P0217,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1008,Output VAT,Input VAT +product.product_std-ahu-bgrim_218,39GPN05-24 PANEL 013224,463P0218,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1051,Output VAT,Input VAT +product.product_std-ahu-bgrim_219,39GPN05-25 PANEL 013225,463P0219,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1095,Output VAT,Input VAT +product.product_std-ahu-bgrim_220,39GPN05-26 PANEL 013226,463P0220,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1139,Output VAT,Input VAT +product.product_std-ahu-bgrim_221,39GPN06-05 PANEL 013227,463P0221,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,263,Output VAT,Input VAT +product.product_std-ahu-bgrim_222,39GPN06-06 PANEL 013228,463P0222,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,315,Output VAT,Input VAT +product.product_std-ahu-bgrim_223,39GPN06-07 PANEL 013229,463P0223,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,368,Output VAT,Input VAT +product.product_std-ahu-bgrim_224,39GPN06-08 PANEL 013230,463P0224,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,420,Output VAT,Input VAT +product.product_std-ahu-bgrim_225,39GPN06-09 PANEL 013231,463P0225,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,473,Output VAT,Input VAT +product.product_std-ahu-bgrim_226,39GPN06-10 PANEL 013232,463P0226,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,526,Output VAT,Input VAT +product.product_std-ahu-bgrim_227,39GPN06-11 PANEL 013233,463P0227,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,578,Output VAT,Input VAT +product.product_std-ahu-bgrim_228,39GPN06-12 PANEL 013234,463P0228,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,631,Output VAT,Input VAT +product.product_std-ahu-bgrim_229,39GPN06-13 PANEL 013235,463P0229,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,684,Output VAT,Input VAT +product.product_std-ahu-bgrim_230,39GPN06-14 PANEL 013236,463P0230,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,736,Output VAT,Input VAT +product.product_std-ahu-bgrim_231,39GPN06-15 PANEL 013237,463P0231,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,789,Output VAT,Input VAT +product.product_std-ahu-bgrim_232,39GPN06-16 PANEL 013238,463P0232,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,841,Output VAT,Input VAT +product.product_std-ahu-bgrim_233,39GPN06-17 PANEL 013239,463P0233,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,894,Output VAT,Input VAT +product.product_std-ahu-bgrim_234,39GPN06-18 PANEL 013240,463P0234,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,947,Output VAT,Input VAT +product.product_std-ahu-bgrim_235,39GPN06-19 PANEL 013241,463P0235,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,999,Output VAT,Input VAT +product.product_std-ahu-bgrim_236,39GPN06-20 PANEL 013242,463P0236,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1052,Output VAT,Input VAT +product.product_std-ahu-bgrim_237,39GPN06-21 PANEL 013243,463P0237,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1105,Output VAT,Input VAT +product.product_std-ahu-bgrim_238,39GPN06-22 PANEL 013244,463P0238,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1157,Output VAT,Input VAT +product.product_std-ahu-bgrim_239,39GPN06-23 PANEL 013245,463P0239,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1210,Output VAT,Input VAT +product.product_std-ahu-bgrim_240,39GPN06-24 PANEL 013246,463P0240,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1262,Output VAT,Input VAT +product.product_std-ahu-bgrim_241,39GPN06-25 PANEL 013247,463P0241,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1315,Output VAT,Input VAT +product.product_std-ahu-bgrim_242,39GPN06-26 PANEL 013248,463P0242,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1368,Output VAT,Input VAT +product.product_std-ahu-bgrim_243,39GPN07-05 PANEL 013249,463P0243,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,306,Output VAT,Input VAT +product.product_std-ahu-bgrim_244,39GPN07-06 PANEL 013250,463P0244,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,368,Output VAT,Input VAT +product.product_std-ahu-bgrim_245,39GPN07-07 PANEL 013251,463P0245,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,429,Output VAT,Input VAT +product.product_std-ahu-bgrim_246,39GPN07-08 PANEL 013252,463P0246,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,491,Output VAT,Input VAT +product.product_std-ahu-bgrim_247,39GPN07-09 PANEL 013253,463P0247,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,552,Output VAT,Input VAT +product.product_std-ahu-bgrim_248,39GPN07-10 PANEL 013254,463P0248,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,614,Output VAT,Input VAT +product.product_std-ahu-bgrim_249,39GPN07-11 PANEL 013255,463P0249,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,675,Output VAT,Input VAT +product.product_std-ahu-bgrim_250,39GPN07-12 PANEL 013256,463P0250,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,736,Output VAT,Input VAT +product.product_std-ahu-bgrim_251,39GPN07-13 PANEL 013257,463P0251,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,798,Output VAT,Input VAT +product.product_std-ahu-bgrim_252,39GPN07-14 PANEL 013258,463P0252,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,859,Output VAT,Input VAT +product.product_std-ahu-bgrim_253,39GPN07-15 PANEL 013259,463P0253,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,921,Output VAT,Input VAT +product.product_std-ahu-bgrim_254,39GPN07-16 PANEL 013260,463P0254,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,982,Output VAT,Input VAT +product.product_std-ahu-bgrim_255,39GPN07-17 PANEL 013261,463P0255,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1043,Output VAT,Input VAT +product.product_std-ahu-bgrim_256,39GPN07-18 PANEL 013262,463P0256,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1105,Output VAT,Input VAT +product.product_std-ahu-bgrim_257,39GPN07-19 PANEL 013263,463P0257,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1166,Output VAT,Input VAT +product.product_std-ahu-bgrim_258,39GPN07-20 PANEL 013264,463P0258,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1228,Output VAT,Input VAT +product.product_std-ahu-bgrim_259,39GPN07-21 PANEL 013265,463P0259,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1289,Output VAT,Input VAT +product.product_std-ahu-bgrim_260,39GPN07-22 PANEL 013266,463P0260,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1351,Output VAT,Input VAT +product.product_std-ahu-bgrim_261,39GPN07-23 PANEL 013267,463P0261,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1412,Output VAT,Input VAT +product.product_std-ahu-bgrim_262,39GPN07-24 PANEL 013268,463P0262,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1473,Output VAT,Input VAT +product.product_std-ahu-bgrim_263,39GPN07-25 PANEL 013269,463P0263,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1535,Output VAT,Input VAT +product.product_std-ahu-bgrim_264,39GPN07-26 PANEL 013270,463P0264,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1596,Output VAT,Input VAT +product.product_std-ahu-bgrim_265,39GPN08-05 PANEL 013271,463P0265,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,350,Output VAT,Input VAT +product.product_std-ahu-bgrim_266,39GPN08-06 PANEL 013272,463P0266,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,420,Output VAT,Input VAT +product.product_std-ahu-bgrim_267,39GPN08-07 PANEL 013273,463P0267,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,491,Output VAT,Input VAT +product.product_std-ahu-bgrim_268,39GPN08-08 PANEL 013274,463P0268,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,561,Output VAT,Input VAT +product.product_std-ahu-bgrim_269,39GPN08-09 PANEL 013275,463P0269,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,631,Output VAT,Input VAT +product.product_std-ahu-bgrim_270,39GPN08-10 PANEL 013276,463P0270,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,701,Output VAT,Input VAT +product.product_std-ahu-bgrim_271,39GPN08-11 PANEL 013277,463P0271,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,772,Output VAT,Input VAT +product.product_std-ahu-bgrim_272,39GPN08-12 PANEL 013278,463P0272,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,842,Output VAT,Input VAT +product.product_std-ahu-bgrim_273,39GPN08-13 PANEL 013279,463P0273,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,912,Output VAT,Input VAT +product.product_std-ahu-bgrim_274,39GPN08-14 PANEL 013280,463P0274,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,982,Output VAT,Input VAT +product.product_std-ahu-bgrim_275,39GPN08-15 PANEL 013281,463P0275,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1052,Output VAT,Input VAT +product.product_std-ahu-bgrim_276,39GPN08-16 PANEL 013282,463P0276,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1123,Output VAT,Input VAT +product.product_std-ahu-bgrim_277,39GPN08-17 PANEL 013283,463P0277,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1193,Output VAT,Input VAT +product.product_std-ahu-bgrim_278,39GPN08-18 PANEL 013284,463P0278,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1263,Output VAT,Input VAT +product.product_std-ahu-bgrim_279,39GPN08-19 PANEL 013285,463P0279,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1333,Output VAT,Input VAT +product.product_std-ahu-bgrim_280,39GPN08-20 PANEL 013286,463P0280,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1404,Output VAT,Input VAT +product.product_std-ahu-bgrim_281,39GPN08-21 PANEL 013287,463P0281,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1474,Output VAT,Input VAT +product.product_std-ahu-bgrim_282,39GPN08-22 PANEL 013288,463P0282,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1544,Output VAT,Input VAT +product.product_std-ahu-bgrim_283,39GPN08-23 PANEL 013289,463P0283,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1614,Output VAT,Input VAT +product.product_std-ahu-bgrim_284,39GPN08-24 PANEL 013290,463P0284,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1684,Output VAT,Input VAT +product.product_std-ahu-bgrim_285,39GPN08-25 PANEL 013291,463P0285,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1755,Output VAT,Input VAT +product.product_std-ahu-bgrim_286,39GPN08-26 PANEL 013292,463P0286,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1825,Output VAT,Input VAT +product.product_std-ahu-bgrim_287,39GPN09-05 PANEL 013293,463P0287,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,394,Output VAT,Input VAT +product.product_std-ahu-bgrim_288,39GPN09-06 PANEL 013294,463P0288,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,473,Output VAT,Input VAT +product.product_std-ahu-bgrim_289,39GPN09-07 PANEL 013295,463P0289,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,552,Output VAT,Input VAT +product.product_std-ahu-bgrim_290,39GPN09-08 PANEL 013296,463P0290,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,631,Output VAT,Input VAT +product.product_std-ahu-bgrim_291,39GPN09-09 PANEL 013297,463P0291,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,710,Output VAT,Input VAT +product.product_std-ahu-bgrim_292,39GPN09-10 PANEL 013298,463P0292,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,789,Output VAT,Input VAT +product.product_std-ahu-bgrim_293,39GPN09-11 PANEL 013299,463P0293,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,868,Output VAT,Input VAT +product.product_std-ahu-bgrim_294,39GPN09-12 PANEL 013300,463P0294,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,947,Output VAT,Input VAT +product.product_std-ahu-bgrim_295,39GPN09-13 PANEL 013301,463P0295,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1026,Output VAT,Input VAT +product.product_std-ahu-bgrim_296,39GPN09-14 PANEL 013302,463P0296,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1105,Output VAT,Input VAT +product.product_std-ahu-bgrim_297,39GPN09-15 PANEL 013303,463P0297,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1184,Output VAT,Input VAT +product.product_std-ahu-bgrim_298,39GPN09-16 PANEL 013304,463P0298,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1263,Output VAT,Input VAT +product.product_std-ahu-bgrim_299,39GPN09-17 PANEL 013305,463P0299,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1342,Output VAT,Input VAT +product.product_std-ahu-bgrim_300,39GPN09-18 PANEL 013306,463P0300,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1421,Output VAT,Input VAT +product.product_std-ahu-bgrim_301,39GPN09-19 PANEL 013307,463P0301,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1500,Output VAT,Input VAT +product.product_std-ahu-bgrim_302,39GPN09-20 PANEL 013308,463P0302,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1579,Output VAT,Input VAT +product.product_std-ahu-bgrim_303,39GPN09-21 PANEL 013309,463P0303,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1658,Output VAT,Input VAT +product.product_std-ahu-bgrim_304,39GPN09-22 PANEL 013310,463P0304,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1737,Output VAT,Input VAT +product.product_std-ahu-bgrim_305,39GPN09-23 PANEL 013311,463P0305,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1816,Output VAT,Input VAT +product.product_std-ahu-bgrim_306,39GPN09-24 PANEL 013312,463P0306,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1895,Output VAT,Input VAT +product.product_std-ahu-bgrim_307,39GPN09-25 PANEL 013313,463P0307,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1975,Output VAT,Input VAT +product.product_std-ahu-bgrim_308,39GPN09-26 PANEL 013314,463P0308,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2054,Output VAT,Input VAT +product.product_std-ahu-bgrim_309,39GPN10-05 PANEL 013315,463P0309,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,438,Output VAT,Input VAT +product.product_std-ahu-bgrim_310,39GPN10-06 PANEL 013316,463P0310,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,526,Output VAT,Input VAT +product.product_std-ahu-bgrim_311,39GPN10-07 PANEL 013317,463P0311,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,614,Output VAT,Input VAT +product.product_std-ahu-bgrim_312,39GPN10-08 PANEL 013318,463P0312,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,701,Output VAT,Input VAT +product.product_std-ahu-bgrim_313,39GPN10-09 PANEL 013319,463P0313,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,789,Output VAT,Input VAT +product.product_std-ahu-bgrim_314,39GPN10-10 PANEL 013320,463P0314,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,877,Output VAT,Input VAT +product.product_std-ahu-bgrim_315,39GPN10-11 PANEL 013321,463P0315,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,965,Output VAT,Input VAT +product.product_std-ahu-bgrim_316,39GPN10-12 PANEL 013322,463P0316,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1053,Output VAT,Input VAT +product.product_std-ahu-bgrim_317,39GPN10-13 PANEL 013323,463P0317,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1140,Output VAT,Input VAT +product.product_std-ahu-bgrim_318,39GPN10-14 PANEL 013324,463P0318,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1228,Output VAT,Input VAT +product.product_std-ahu-bgrim_319,39GPN10-15 PANEL 013325,463P0319,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1316,Output VAT,Input VAT +product.product_std-ahu-bgrim_320,39GPN10-16 PANEL 013326,463P0320,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1404,Output VAT,Input VAT +product.product_std-ahu-bgrim_321,39GPN10-17 PANEL 013327,463P0321,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1492,Output VAT,Input VAT +product.product_std-ahu-bgrim_322,39GPN10-18 PANEL 013328,463P0322,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1580,Output VAT,Input VAT +product.product_std-ahu-bgrim_323,39GPN10-19 PANEL 013329,463P0323,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1667,Output VAT,Input VAT +product.product_std-ahu-bgrim_324,39GPN10-20 PANEL 013330,463P0324,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1755,Output VAT,Input VAT +product.product_std-ahu-bgrim_325,39GPN10-21 PANEL 013331,463P0325,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1843,Output VAT,Input VAT +product.product_std-ahu-bgrim_326,39GPN10-22 PANEL 013332,463P0326,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1931,Output VAT,Input VAT +product.product_std-ahu-bgrim_327,39GPN10-23 PANEL 013333,463P0327,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2019,Output VAT,Input VAT +product.product_std-ahu-bgrim_328,39GPN10-24 PANEL 013334,463P0328,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2107,Output VAT,Input VAT +product.product_std-ahu-bgrim_329,39GPN10-25 PANEL 013335,463P0329,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2194,Output VAT,Input VAT +product.product_std-ahu-bgrim_330,39GPN10-26 PANEL 013336,463P0330,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2282,Output VAT,Input VAT +product.product_std-ahu-bgrim_331,39GPN11-05 PANEL 013337,463P0331,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,482,Output VAT,Input VAT +product.product_std-ahu-bgrim_332,39GPN11-06 PANEL 013338,463P0332,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,578,Output VAT,Input VAT +product.product_std-ahu-bgrim_333,39GPN11-07 PANEL 013339,463P0333,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,675,Output VAT,Input VAT +product.product_std-ahu-bgrim_334,39GPN11-08 PANEL 013340,463P0334,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,772,Output VAT,Input VAT +product.product_std-ahu-bgrim_335,39GPN11-09 PANEL 013341,463P0335,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,868,Output VAT,Input VAT +product.product_std-ahu-bgrim_336,39GPN11-10 PANEL 013342,463P0336,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,965,Output VAT,Input VAT +product.product_std-ahu-bgrim_337,39GPN11-11 PANEL 013343,463P0337,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1061,Output VAT,Input VAT +product.product_std-ahu-bgrim_338,39GPN11-12 PANEL 013344,463P0338,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1158,Output VAT,Input VAT +product.product_std-ahu-bgrim_339,39GPN11-13 PANEL 013345,463P0339,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1255,Output VAT,Input VAT +product.product_std-ahu-bgrim_340,39GPN11-14 PANEL 013346,463P0340,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1351,Output VAT,Input VAT +product.product_std-ahu-bgrim_341,39GPN11-15 PANEL 013347,463P0341,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1448,Output VAT,Input VAT +product.product_std-ahu-bgrim_342,39GPN11-16 PANEL 013348,463P0342,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1545,Output VAT,Input VAT +product.product_std-ahu-bgrim_343,39GPN11-17 PANEL 013349,463P0343,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1641,Output VAT,Input VAT +product.product_std-ahu-bgrim_344,39GPN11-18 PANEL 013350,463P0344,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1738,Output VAT,Input VAT +product.product_std-ahu-bgrim_345,39GPN11-19 PANEL 013351,463P0345,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1834,Output VAT,Input VAT +product.product_std-ahu-bgrim_346,39GPN11-20 PANEL 013352,463P0346,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1931,Output VAT,Input VAT +product.product_std-ahu-bgrim_347,39GPN11-21 PANEL 013353,463P0347,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2028,Output VAT,Input VAT +product.product_std-ahu-bgrim_348,39GPN11-22 PANEL 013354,463P0348,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2124,Output VAT,Input VAT +product.product_std-ahu-bgrim_349,39GPN11-23 PANEL 013355,463P0349,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2221,Output VAT,Input VAT +product.product_std-ahu-bgrim_350,39GPN11-24 PANEL 013356,463P0350,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2318,Output VAT,Input VAT +product.product_std-ahu-bgrim_351,39GPN11-25 PANEL 013357,463P0351,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2414,Output VAT,Input VAT +product.product_std-ahu-bgrim_352,39GPN11-26 PANEL 013358,463P0352,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2511,Output VAT,Input VAT +product.product_std-ahu-bgrim_353,39GPF01-05 PANEL 013359,463P0353,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,49,Output VAT,Input VAT +product.product_std-ahu-bgrim_354,39GPF01-06 PANEL 013360,463P0354,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,59,Output VAT,Input VAT +product.product_std-ahu-bgrim_355,39GPF01-07 PANEL 013361,463P0355,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,68,Output VAT,Input VAT +product.product_std-ahu-bgrim_356,39GPF01-08 PANEL 013362,463P0356,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,78,Output VAT,Input VAT +product.product_std-ahu-bgrim_357,39GPF01-09 PANEL 013363,463P0357,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,88,Output VAT,Input VAT +product.product_std-ahu-bgrim_358,39GPF01-10 PANEL 013364,463P0358,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,97,Output VAT,Input VAT +product.product_std-ahu-bgrim_359,39GPF01-11 PANEL 013365,463P0359,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,107,Output VAT,Input VAT +product.product_std-ahu-bgrim_360,39GPF01-12 PANEL 013366,463P0360,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,117,Output VAT,Input VAT +product.product_std-ahu-bgrim_361,39GPF01-13 PANEL 013367,463P0361,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,126,Output VAT,Input VAT +product.product_std-ahu-bgrim_362,39GPF01-14 PANEL 013368,463P0362,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,136,Output VAT,Input VAT +product.product_std-ahu-bgrim_363,39GPF01-15 PANEL 013369,463P0363,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,146,Output VAT,Input VAT +product.product_std-ahu-bgrim_364,39GPF01-16 PANEL 013370,463P0364,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,156,Output VAT,Input VAT +product.product_std-ahu-bgrim_365,39GPF01-17 PANEL 013371,463P0365,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,165,Output VAT,Input VAT +product.product_std-ahu-bgrim_366,39GPF01-18 PANEL 013372,463P0366,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,175,Output VAT,Input VAT +product.product_std-ahu-bgrim_367,39GPF01-19 PANEL 013373,463P0367,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,185,Output VAT,Input VAT +product.product_std-ahu-bgrim_368,39GPF01-20 PANEL 013374,463P0368,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,194,Output VAT,Input VAT +product.product_std-ahu-bgrim_369,39GPF01-21 PANEL 013375,463P0369,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,204,Output VAT,Input VAT +product.product_std-ahu-bgrim_370,39GPF01-22 PANEL 013376,463P0370,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,214,Output VAT,Input VAT +product.product_std-ahu-bgrim_371,39GPF01-23 PANEL 013377,463P0371,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,223,Output VAT,Input VAT +product.product_std-ahu-bgrim_372,39GPF01-24 PANEL 013378,463P0372,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,233,Output VAT,Input VAT +product.product_std-ahu-bgrim_373,39GPF01-25 PANEL 013379,463P0373,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,243,Output VAT,Input VAT +product.product_std-ahu-bgrim_374,39GPF01-26 PANEL 013380,463P0374,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,253,Output VAT,Input VAT +product.product_std-ahu-bgrim_375,39GPF02-05 PANEL 013381,463P0375,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,87,Output VAT,Input VAT +product.product_std-ahu-bgrim_376,39GPF02-06 PANEL 013382,463P0376,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,105,Output VAT,Input VAT +product.product_std-ahu-bgrim_377,39GPF02-07 PANEL 013383,463P0377,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,122,Output VAT,Input VAT +product.product_std-ahu-bgrim_378,39GPF02-08 PANEL 013384,463P0378,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,140,Output VAT,Input VAT +product.product_std-ahu-bgrim_379,39GPF02-09 PANEL 013385,463P0379,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,157,Output VAT,Input VAT +product.product_std-ahu-bgrim_380,39GPF02-10 PANEL 013386,463P0380,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,174,Output VAT,Input VAT +product.product_std-ahu-bgrim_381,39GPF02-11 PANEL 013387,463P0381,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,192,Output VAT,Input VAT +product.product_std-ahu-bgrim_382,39GPF02-12 PANEL 013388,463P0382,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,209,Output VAT,Input VAT +product.product_std-ahu-bgrim_383,39GPF02-13 PANEL 013389,463P0383,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,227,Output VAT,Input VAT +product.product_std-ahu-bgrim_384,39GPF02-14 PANEL 013390,463P0384,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,244,Output VAT,Input VAT +product.product_std-ahu-bgrim_385,39GPF02-15 PANEL 013391,463P0385,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,262,Output VAT,Input VAT +product.product_std-ahu-bgrim_386,39GPF02-16 PANEL 013392,463P0386,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,279,Output VAT,Input VAT +product.product_std-ahu-bgrim_387,39GPF02-17 PANEL 013393,463P0387,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,296,Output VAT,Input VAT +product.product_std-ahu-bgrim_388,39GPF02-18 PANEL 013394,463P0388,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,314,Output VAT,Input VAT +product.product_std-ahu-bgrim_389,39GPF02-19 PANEL 013395,463P0389,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,331,Output VAT,Input VAT +product.product_std-ahu-bgrim_390,39GPF02-20 PANEL 013396,463P0390,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,349,Output VAT,Input VAT +product.product_std-ahu-bgrim_391,39GPF02-21 PANEL 013397,463P0391,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,366,Output VAT,Input VAT +product.product_std-ahu-bgrim_392,39GPF02-22 PANEL 013398,463P0392,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,383,Output VAT,Input VAT +product.product_std-ahu-bgrim_393,39GPF02-23 PANEL 013399,463P0393,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,401,Output VAT,Input VAT +product.product_std-ahu-bgrim_394,39GPF02-24 PANEL 013400,463P0394,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,418,Output VAT,Input VAT +product.product_std-ahu-bgrim_395,39GPF02-25 PANEL 013401,463P0395,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,436,Output VAT,Input VAT +product.product_std-ahu-bgrim_396,39GPF02-26 PANEL 013402,463P0396,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,453,Output VAT,Input VAT +product.product_std-ahu-bgrim_397,39GPF03-05 PANEL 013403,463P0397,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,131,Output VAT,Input VAT +product.product_std-ahu-bgrim_398,39GPF03-06 PANEL 013404,463P0398,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,157,Output VAT,Input VAT +product.product_std-ahu-bgrim_399,39GPF03-07 PANEL 013405,463P0399,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,184,Output VAT,Input VAT +product.product_std-ahu-bgrim_400,39GPF03-08 PANEL 013406,463P0400,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,210,Output VAT,Input VAT +product.product_std-ahu-bgrim_401,39GPF03-09 PANEL 013407,463P0401,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,236,Output VAT,Input VAT +product.product_std-ahu-bgrim_402,39GPF03-10 PANEL 013408,463P0402,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,262,Output VAT,Input VAT +product.product_std-ahu-bgrim_403,39GPF03-11 PANEL 013409,463P0403,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,288,Output VAT,Input VAT +product.product_std-ahu-bgrim_404,39GPF03-12 PANEL 013410,463P0404,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,315,Output VAT,Input VAT +product.product_std-ahu-bgrim_405,39GPF03-13 PANEL 013411,463P0405,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,341,Output VAT,Input VAT +product.product_std-ahu-bgrim_406,39GPF03-14 PANEL 013412,463P0406,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,367,Output VAT,Input VAT +product.product_std-ahu-bgrim_407,39GPF03-15 PANEL 013413,463P0407,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,393,Output VAT,Input VAT +product.product_std-ahu-bgrim_408,39GPF03-16 PANEL 013414,463P0408,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,420,Output VAT,Input VAT +product.product_std-ahu-bgrim_409,39GPF03-17 PANEL 013415,463P0409,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,446,Output VAT,Input VAT +product.product_std-ahu-bgrim_410,39GPF03-18 PANEL 013416,463P0410,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,472,Output VAT,Input VAT +product.product_std-ahu-bgrim_411,39GPF03-19 PANEL 013417,463P0411,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,498,Output VAT,Input VAT +product.product_std-ahu-bgrim_412,39GPF03-20 PANEL 013418,463P0412,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,524,Output VAT,Input VAT +product.product_std-ahu-bgrim_413,39GPF03-21 PANEL 013419,463P0413,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,551,Output VAT,Input VAT +product.product_std-ahu-bgrim_414,39GPF03-22 PANEL 013420,463P0414,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,577,Output VAT,Input VAT +product.product_std-ahu-bgrim_415,39GPF03-23 PANEL 013421,463P0415,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,603,Output VAT,Input VAT +product.product_std-ahu-bgrim_416,39GPF03-24 PANEL 013422,463P0416,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,629,Output VAT,Input VAT +product.product_std-ahu-bgrim_417,39GPF03-25 PANEL 013423,463P0417,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,656,Output VAT,Input VAT +product.product_std-ahu-bgrim_418,39GPF03-26 PANEL 013424,463P0418,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,682,Output VAT,Input VAT +product.product_std-ahu-bgrim_419,39GPF04-05 PANEL 013425,463P0419,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,175,Output VAT,Input VAT +product.product_std-ahu-bgrim_420,39GPF04-06 PANEL 013426,463P0420,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,210,Output VAT,Input VAT +product.product_std-ahu-bgrim_421,39GPF04-07 PANEL 013427,463P0421,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,245,Output VAT,Input VAT +product.product_std-ahu-bgrim_422,39GPF04-08 PANEL 013428,463P0422,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,280,Output VAT,Input VAT +product.product_std-ahu-bgrim_423,39GPF04-09 PANEL 013429,463P0423,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,315,Output VAT,Input VAT +product.product_std-ahu-bgrim_424,39GPF04-10 PANEL 013430,463P0424,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,350,Output VAT,Input VAT +product.product_std-ahu-bgrim_425,39GPF04-11 PANEL 013431,463P0425,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,385,Output VAT,Input VAT +product.product_std-ahu-bgrim_426,39GPF04-12 PANEL 013432,463P0426,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,420,Output VAT,Input VAT +product.product_std-ahu-bgrim_427,39GPF04-13 PANEL 013433,463P0427,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,455,Output VAT,Input VAT +product.product_std-ahu-bgrim_428,39GPF04-14 PANEL 013434,463P0428,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,490,Output VAT,Input VAT +product.product_std-ahu-bgrim_429,39GPF04-15 PANEL 013435,463P0429,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,525,Output VAT,Input VAT +product.product_std-ahu-bgrim_430,39GPF04-16 PANEL 013436,463P0430,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,560,Output VAT,Input VAT +product.product_std-ahu-bgrim_431,39GPF04-17 PANEL 013437,463P0431,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,595,Output VAT,Input VAT +product.product_std-ahu-bgrim_432,39GPF04-18 PANEL 013438,463P0432,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,630,Output VAT,Input VAT +product.product_std-ahu-bgrim_433,39GPF04-19 PANEL 013439,463P0433,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,665,Output VAT,Input VAT +product.product_std-ahu-bgrim_434,39GPF04-20 PANEL 013440,463P0434,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,700,Output VAT,Input VAT +product.product_std-ahu-bgrim_435,39GPF04-21 PANEL 013441,463P0435,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,735,Output VAT,Input VAT +product.product_std-ahu-bgrim_436,39GPF04-22 PANEL 013442,463P0436,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,770,Output VAT,Input VAT +product.product_std-ahu-bgrim_437,39GPF04-23 PANEL 013443,463P0437,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,805,Output VAT,Input VAT +product.product_std-ahu-bgrim_438,39GPF04-24 PANEL 013444,463P0438,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,840,Output VAT,Input VAT +product.product_std-ahu-bgrim_439,39GPF04-25 PANEL 013445,463P0439,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,875,Output VAT,Input VAT +product.product_std-ahu-bgrim_440,39GPF04-26 PANEL 013446,463P0440,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,910,Output VAT,Input VAT +product.product_std-ahu-bgrim_441,39GPF05-05 PANEL 013447,463P0441,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,219,Output VAT,Input VAT +product.product_std-ahu-bgrim_442,39GPF05-06 PANEL 013448,463P0442,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,263,Output VAT,Input VAT +product.product_std-ahu-bgrim_443,39GPF05-07 PANEL 013449,463P0443,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,306,Output VAT,Input VAT +product.product_std-ahu-bgrim_444,39GPF05-08 PANEL 013450,463P0444,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,350,Output VAT,Input VAT +product.product_std-ahu-bgrim_445,39GPF05-09 PANEL 013451,463P0445,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,394,Output VAT,Input VAT +product.product_std-ahu-bgrim_446,39GPF05-10 PANEL 013452,463P0446,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,438,Output VAT,Input VAT +product.product_std-ahu-bgrim_447,39GPF05-11 PANEL 013453,463P0447,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,482,Output VAT,Input VAT +product.product_std-ahu-bgrim_448,39GPF05-12 PANEL 013454,463P0448,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,526,Output VAT,Input VAT +product.product_std-ahu-bgrim_449,39GPF05-13 PANEL 013455,463P0449,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,569,Output VAT,Input VAT +product.product_std-ahu-bgrim_450,39GPF05-14 PANEL 013456,463P0450,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,613,Output VAT,Input VAT +product.product_std-ahu-bgrim_451,39GPF05-15 PANEL 013457,463P0451,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,657,Output VAT,Input VAT +product.product_std-ahu-bgrim_452,39GPF05-16 PANEL 013458,463P0452,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,701,Output VAT,Input VAT +product.product_std-ahu-bgrim_453,39GPF05-17 PANEL 013459,463P0453,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,745,Output VAT,Input VAT +product.product_std-ahu-bgrim_454,39GPF05-18 PANEL 013460,463P0454,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,788,Output VAT,Input VAT +product.product_std-ahu-bgrim_455,39GPF05-19 PANEL 013461,463P0455,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,832,Output VAT,Input VAT +product.product_std-ahu-bgrim_456,39GPF05-20 PANEL 013462,463P0456,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,876,Output VAT,Input VAT +product.product_std-ahu-bgrim_457,39GPF05-21 PANEL 013463,463P0457,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,920,Output VAT,Input VAT +product.product_std-ahu-bgrim_458,39GPF05-22 PANEL 013464,463P0458,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,964,Output VAT,Input VAT +product.product_std-ahu-bgrim_459,39GPF05-23 PANEL 013465,463P0459,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1008,Output VAT,Input VAT +product.product_std-ahu-bgrim_460,39GPF05-24 PANEL 013466,463P0460,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1051,Output VAT,Input VAT +product.product_std-ahu-bgrim_461,39GPF05-25 PANEL 013467,463P0461,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1095,Output VAT,Input VAT +product.product_std-ahu-bgrim_462,39GPF05-26 PANEL 013468,463P0462,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1139,Output VAT,Input VAT +product.product_std-ahu-bgrim_463,39GPF06-05 PANEL 013469,463P0463,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,263,Output VAT,Input VAT +product.product_std-ahu-bgrim_464,39GPF06-06 PANEL 013470,463P0464,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,315,Output VAT,Input VAT +product.product_std-ahu-bgrim_465,39GPF06-07 PANEL 013471,463P0465,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,368,Output VAT,Input VAT +product.product_std-ahu-bgrim_466,39GPF06-08 PANEL 013472,463P0466,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,420,Output VAT,Input VAT +product.product_std-ahu-bgrim_467,39GPF06-09 PANEL 013473,463P0467,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,473,Output VAT,Input VAT +product.product_std-ahu-bgrim_468,39GPF06-10 PANEL 013474,463P0468,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,526,Output VAT,Input VAT +product.product_std-ahu-bgrim_469,39GPF06-11 PANEL 013475,463P0469,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,578,Output VAT,Input VAT +product.product_std-ahu-bgrim_470,39GPF06-12 PANEL 013476,463P0470,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,631,Output VAT,Input VAT +product.product_std-ahu-bgrim_471,39GPF06-13 PANEL 013477,463P0471,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,684,Output VAT,Input VAT +product.product_std-ahu-bgrim_472,39GPF06-14 PANEL 013478,463P0472,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,736,Output VAT,Input VAT +product.product_std-ahu-bgrim_473,39GPF06-15 PANEL 013479,463P0473,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,789,Output VAT,Input VAT +product.product_std-ahu-bgrim_474,39GPF06-16 PANEL 013480,463P0474,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,841,Output VAT,Input VAT +product.product_std-ahu-bgrim_475,39GPF06-17 PANEL 013481,463P0475,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,894,Output VAT,Input VAT +product.product_std-ahu-bgrim_476,39GPF06-18 PANEL 013482,463P0476,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,947,Output VAT,Input VAT +product.product_std-ahu-bgrim_477,39GPF06-19 PANEL 013483,463P0477,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,999,Output VAT,Input VAT +product.product_std-ahu-bgrim_478,39GPF06-20 PANEL 013484,463P0478,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1052,Output VAT,Input VAT +product.product_std-ahu-bgrim_479,39GPF06-21 PANEL 013485,463P0479,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1105,Output VAT,Input VAT +product.product_std-ahu-bgrim_480,39GPF06-22 PANEL 013486,463P0480,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1157,Output VAT,Input VAT +product.product_std-ahu-bgrim_481,39GPF06-23 PANEL 013487,463P0481,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1210,Output VAT,Input VAT +product.product_std-ahu-bgrim_482,39GPF06-24 PANEL 013488,463P0482,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1262,Output VAT,Input VAT +product.product_std-ahu-bgrim_483,39GPF06-25 PANEL 013489,463P0483,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1315,Output VAT,Input VAT +product.product_std-ahu-bgrim_484,39GPF06-26 PANEL 013490,463P0484,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1368,Output VAT,Input VAT +product.product_std-ahu-bgrim_485,39GPF07-05 PANEL 013491,463P0485,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,306,Output VAT,Input VAT +product.product_std-ahu-bgrim_486,39GPF07-06 PANEL 013492,463P0486,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,368,Output VAT,Input VAT +product.product_std-ahu-bgrim_487,39GPF07-07 PANEL 013493,463P0487,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,429,Output VAT,Input VAT +product.product_std-ahu-bgrim_488,39GPF07-08 PANEL 013494,463P0488,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,491,Output VAT,Input VAT +product.product_std-ahu-bgrim_489,39GPF07-09 PANEL 013495,463P0489,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,552,Output VAT,Input VAT +product.product_std-ahu-bgrim_490,39GPF07-10 PANEL 013496,463P0490,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,614,Output VAT,Input VAT +product.product_std-ahu-bgrim_491,39GPF07-11 PANEL 013497,463P0491,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,675,Output VAT,Input VAT +product.product_std-ahu-bgrim_492,39GPF07-12 PANEL 013498,463P0492,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,736,Output VAT,Input VAT +product.product_std-ahu-bgrim_493,39GPF07-13 PANEL 013499,463P0493,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,798,Output VAT,Input VAT +product.product_std-ahu-bgrim_494,39GPF07-14 PANEL 013500,463P0494,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,859,Output VAT,Input VAT +product.product_std-ahu-bgrim_495,39GPF07-15 PANEL 013501,463P0495,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,921,Output VAT,Input VAT +product.product_std-ahu-bgrim_496,39GPF07-16 PANEL 013502,463P0496,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,982,Output VAT,Input VAT +product.product_std-ahu-bgrim_497,39GPF07-17 PANEL 013503,463P0497,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1043,Output VAT,Input VAT +product.product_std-ahu-bgrim_498,39GPF07-18 PANEL 013504,463P0498,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1105,Output VAT,Input VAT +product.product_std-ahu-bgrim_499,39GPF07-19 PANEL 013505,463P0499,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1166,Output VAT,Input VAT +product.product_std-ahu-bgrim_500,39GPF07-20 PANEL 013506,463P0500,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1228,Output VAT,Input VAT +product.product_std-ahu-bgrim_501,39GPF07-21 PANEL 013507,463P0501,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1289,Output VAT,Input VAT +product.product_std-ahu-bgrim_502,39GPF07-22 PANEL 013508,463P0502,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1351,Output VAT,Input VAT +product.product_std-ahu-bgrim_503,39GPF07-23 PANEL 013509,463P0503,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1412,Output VAT,Input VAT +product.product_std-ahu-bgrim_504,39GPF07-24 PANEL 013510,463P0504,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1473,Output VAT,Input VAT +product.product_std-ahu-bgrim_505,39GPF07-25 PANEL 013511,463P0505,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1535,Output VAT,Input VAT +product.product_std-ahu-bgrim_506,39GPF07-26 PANEL 013512,463P0506,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1596,Output VAT,Input VAT +product.product_std-ahu-bgrim_507,39GPF08-05 PANEL 013513,463P0507,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,350,Output VAT,Input VAT +product.product_std-ahu-bgrim_508,39GPF08-06 PANEL 013514,463P0508,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,420,Output VAT,Input VAT +product.product_std-ahu-bgrim_509,39GPF08-07 PANEL 013515,463P0509,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,491,Output VAT,Input VAT +product.product_std-ahu-bgrim_510,39GPF08-08 PANEL 013516,463P0510,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,561,Output VAT,Input VAT +product.product_std-ahu-bgrim_511,39GPF08-09 PANEL 013517,463P0511,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,631,Output VAT,Input VAT +product.product_std-ahu-bgrim_512,39GPF08-10 PANEL 013518,463P0512,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,701,Output VAT,Input VAT +product.product_std-ahu-bgrim_513,39GPF08-11 PANEL 013519,463P0513,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,772,Output VAT,Input VAT +product.product_std-ahu-bgrim_514,39GPF08-12 PANEL 013520,463P0514,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,842,Output VAT,Input VAT +product.product_std-ahu-bgrim_515,39GPF08-13 PANEL 013521,463P0515,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,912,Output VAT,Input VAT +product.product_std-ahu-bgrim_516,39GPF08-14 PANEL 013522,463P0516,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,982,Output VAT,Input VAT +product.product_std-ahu-bgrim_517,39GPF08-15 PANEL 013523,463P0517,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1052,Output VAT,Input VAT +product.product_std-ahu-bgrim_518,39GPF08-16 PANEL 013524,463P0518,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1123,Output VAT,Input VAT +product.product_std-ahu-bgrim_519,39GPF08-17 PANEL 013525,463P0519,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1193,Output VAT,Input VAT +product.product_std-ahu-bgrim_520,39GPF08-18 PANEL 013526,463P0520,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1263,Output VAT,Input VAT +product.product_std-ahu-bgrim_521,39GPF08-19 PANEL 013527,463P0521,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1333,Output VAT,Input VAT +product.product_std-ahu-bgrim_522,39GPF08-20 PANEL 013528,463P0522,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1404,Output VAT,Input VAT +product.product_std-ahu-bgrim_523,39GPF08-21 PANEL 013529,463P0523,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1474,Output VAT,Input VAT +product.product_std-ahu-bgrim_524,39GPF08-22 PANEL 013530,463P0524,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1544,Output VAT,Input VAT +product.product_std-ahu-bgrim_525,39GPF08-23 PANEL 013531,463P0525,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1614,Output VAT,Input VAT +product.product_std-ahu-bgrim_526,39GPF08-24 PANEL 013532,463P0526,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1684,Output VAT,Input VAT +product.product_std-ahu-bgrim_527,39GPF08-25 PANEL 013533,463P0527,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1755,Output VAT,Input VAT +product.product_std-ahu-bgrim_528,39GPF08-26 PANEL 013534,463P0528,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1825,Output VAT,Input VAT +product.product_std-ahu-bgrim_529,39GPF09-05 PANEL 013535,463P0529,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,394,Output VAT,Input VAT +product.product_std-ahu-bgrim_530,39GPF09-06 PANEL 013536,463P0530,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,473,Output VAT,Input VAT +product.product_std-ahu-bgrim_531,39GPF09-07 PANEL 013537,463P0531,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,552,Output VAT,Input VAT +product.product_std-ahu-bgrim_532,39GPF09-08 PANEL 013538,463P0532,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,631,Output VAT,Input VAT +product.product_std-ahu-bgrim_533,39GPF09-09 PANEL 013539,463P0533,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,710,Output VAT,Input VAT +product.product_std-ahu-bgrim_534,39GPF09-10 PANEL 013540,463P0534,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,789,Output VAT,Input VAT +product.product_std-ahu-bgrim_535,39GPF09-11 PANEL 013541,463P0535,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,868,Output VAT,Input VAT +product.product_std-ahu-bgrim_536,39GPF09-12 PANEL 013542,463P0536,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,947,Output VAT,Input VAT +product.product_std-ahu-bgrim_537,39GPF09-13 PANEL 013543,463P0537,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1026,Output VAT,Input VAT +product.product_std-ahu-bgrim_538,39GPF09-14 PANEL 013544,463P0538,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1105,Output VAT,Input VAT +product.product_std-ahu-bgrim_539,39GPF09-15 PANEL 013545,463P0539,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1184,Output VAT,Input VAT +product.product_std-ahu-bgrim_540,39GPF09-16 PANEL 013546,463P0540,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1263,Output VAT,Input VAT +product.product_std-ahu-bgrim_541,39GPF09-17 PANEL 013547,463P0541,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1342,Output VAT,Input VAT +product.product_std-ahu-bgrim_542,39GPF09-18 PANEL 013548,463P0542,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1421,Output VAT,Input VAT +product.product_std-ahu-bgrim_543,39GPF09-19 PANEL 013549,463P0543,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1500,Output VAT,Input VAT +product.product_std-ahu-bgrim_544,39GPF09-20 PANEL 013550,463P0544,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1579,Output VAT,Input VAT +product.product_std-ahu-bgrim_545,39GPF09-21 PANEL 013551,463P0545,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1658,Output VAT,Input VAT +product.product_std-ahu-bgrim_546,39GPF09-22 PANEL 013552,463P0546,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1737,Output VAT,Input VAT +product.product_std-ahu-bgrim_547,39GPF09-23 PANEL 013553,463P0547,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1816,Output VAT,Input VAT +product.product_std-ahu-bgrim_548,39GPF09-24 PANEL 013554,463P0548,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1895,Output VAT,Input VAT +product.product_std-ahu-bgrim_549,39GPF09-25 PANEL 013555,463P0549,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1975,Output VAT,Input VAT +product.product_std-ahu-bgrim_550,39GPF09-26 PANEL 013556,463P0550,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2054,Output VAT,Input VAT +product.product_std-ahu-bgrim_551,39GPF10-05 PANEL 013557,463P0551,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,438,Output VAT,Input VAT +product.product_std-ahu-bgrim_552,39GPF10-06 PANEL 013558,463P0552,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,526,Output VAT,Input VAT +product.product_std-ahu-bgrim_553,39GPF10-07 PANEL 013559,463P0553,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,614,Output VAT,Input VAT +product.product_std-ahu-bgrim_554,39GPF10-08 PANEL 013560,463P0554,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,701,Output VAT,Input VAT +product.product_std-ahu-bgrim_555,39GPF10-09 PANEL 013561,463P0555,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,789,Output VAT,Input VAT +product.product_std-ahu-bgrim_556,39GPF10-10 PANEL 013562,463P0556,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,877,Output VAT,Input VAT +product.product_std-ahu-bgrim_557,39GPF10-11 PANEL 013563,463P0557,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,965,Output VAT,Input VAT +product.product_std-ahu-bgrim_558,39GPF10-12 PANEL 013564,463P0558,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1053,Output VAT,Input VAT +product.product_std-ahu-bgrim_559,39GPF10-13 PANEL 013565,463P0559,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1140,Output VAT,Input VAT +product.product_std-ahu-bgrim_560,39GPF10-14 PANEL 013566,463P0560,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1228,Output VAT,Input VAT +product.product_std-ahu-bgrim_561,39GPF10-15 PANEL 013567,463P0561,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1316,Output VAT,Input VAT +product.product_std-ahu-bgrim_562,39GPF10-16 PANEL 013568,463P0562,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1404,Output VAT,Input VAT +product.product_std-ahu-bgrim_563,39GPF10-17 PANEL 013569,463P0563,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1492,Output VAT,Input VAT +product.product_std-ahu-bgrim_564,39GPF10-18 PANEL 013570,463P0564,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1580,Output VAT,Input VAT +product.product_std-ahu-bgrim_565,39GPF10-19 PANEL 013571,463P0565,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1667,Output VAT,Input VAT +product.product_std-ahu-bgrim_566,39GPF10-20 PANEL 013572,463P0566,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1755,Output VAT,Input VAT +product.product_std-ahu-bgrim_567,39GPF10-21 PANEL 013573,463P0567,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1843,Output VAT,Input VAT +product.product_std-ahu-bgrim_568,39GPF10-22 PANEL 013574,463P0568,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1931,Output VAT,Input VAT +product.product_std-ahu-bgrim_569,39GPF10-23 PANEL 013575,463P0569,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2019,Output VAT,Input VAT +product.product_std-ahu-bgrim_570,39GPF10-24 PANEL 013576,463P0570,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2107,Output VAT,Input VAT +product.product_std-ahu-bgrim_571,39GPF10-25 PANEL 013577,463P0571,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2194,Output VAT,Input VAT +product.product_std-ahu-bgrim_572,39GPF10-26 PANEL 013578,463P0572,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2282,Output VAT,Input VAT +product.product_std-ahu-bgrim_573,39GPF11-05 PANEL 013579,463P0573,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,482,Output VAT,Input VAT +product.product_std-ahu-bgrim_574,39GPF11-06 PANEL 013580,463P0574,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,578,Output VAT,Input VAT +product.product_std-ahu-bgrim_575,39GPF11-07 PANEL 013581,463P0575,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,675,Output VAT,Input VAT +product.product_std-ahu-bgrim_576,39GPF11-08 PANEL 013582,463P0576,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,772,Output VAT,Input VAT +product.product_std-ahu-bgrim_577,39GPF11-09 PANEL 013583,463P0577,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,868,Output VAT,Input VAT +product.product_std-ahu-bgrim_578,39GPF11-10 PANEL 013584,463P0578,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,965,Output VAT,Input VAT +product.product_std-ahu-bgrim_579,39GPF11-11 PANEL 013585,463P0579,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1061,Output VAT,Input VAT +product.product_std-ahu-bgrim_580,39GPF11-12 PANEL 013586,463P0580,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1158,Output VAT,Input VAT +product.product_std-ahu-bgrim_581,39GPF11-13 PANEL 013587,463P0581,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1255,Output VAT,Input VAT +product.product_std-ahu-bgrim_582,39GPF11-14 PANEL 013588,463P0582,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1351,Output VAT,Input VAT +product.product_std-ahu-bgrim_583,39GPF11-15 PANEL 013589,463P0583,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1448,Output VAT,Input VAT +product.product_std-ahu-bgrim_584,39GPF11-16 PANEL 013590,463P0584,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1545,Output VAT,Input VAT +product.product_std-ahu-bgrim_585,39GPF11-17 PANEL 013591,463P0585,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1641,Output VAT,Input VAT +product.product_std-ahu-bgrim_586,39GPF11-18 PANEL 013592,463P0586,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1738,Output VAT,Input VAT +product.product_std-ahu-bgrim_587,39GPF11-19 PANEL 013593,463P0587,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1834,Output VAT,Input VAT +product.product_std-ahu-bgrim_588,39GPF11-20 PANEL 013594,463P0588,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1931,Output VAT,Input VAT +product.product_std-ahu-bgrim_589,39GPF11-21 PANEL 013595,463P0589,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2028,Output VAT,Input VAT +product.product_std-ahu-bgrim_590,39GPF11-22 PANEL 013596,463P0590,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2124,Output VAT,Input VAT +product.product_std-ahu-bgrim_591,39GPF11-23 PANEL 013597,463P0591,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2221,Output VAT,Input VAT +product.product_std-ahu-bgrim_592,39GPF11-24 PANEL 013598,463P0592,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2318,Output VAT,Input VAT +product.product_std-ahu-bgrim_593,39GPF11-25 PANEL 013599,463P0593,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2414,Output VAT,Input VAT +product.product_std-ahu-bgrim_594,39GPF11-26 PANEL 013600,463P0594,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2511,Output VAT,Input VAT +product.product_std-ahu-bgrim_595,39GPF12-05 PANEL 013635,463P0595,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,526,Output VAT,Input VAT +product.product_std-ahu-bgrim_596,39GPF12-06 PANEL 013636,463P0596,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,631,Output VAT,Input VAT +product.product_std-ahu-bgrim_597,39GPF12-07 PANEL 013637,463P0597,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,736,Output VAT,Input VAT +product.product_std-ahu-bgrim_598,39GPF12-08 PANEL 013638,463P0598,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,842,Output VAT,Input VAT +product.product_std-ahu-bgrim_599,39GPF12-09 PANEL 013639,463P0599,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,947,Output VAT,Input VAT +product.product_std-ahu-bgrim_600,39GPF12-10 PANEL 013640,463P0600,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1053,Output VAT,Input VAT +product.product_std-ahu-bgrim_601,39GPF12-11 PANEL 013641,463P0601,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1158,Output VAT,Input VAT +product.product_std-ahu-bgrim_602,39GPF12-12 PANEL 013642,463P0602,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1263,Output VAT,Input VAT +product.product_std-ahu-bgrim_603,39GPF12-13 PANEL 013643,463P0603,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1369,Output VAT,Input VAT +product.product_std-ahu-bgrim_604,39GPF12-14 PANEL 013644,463P0604,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1474,Output VAT,Input VAT +product.product_std-ahu-bgrim_605,39GPF12-15 PANEL 013645,463P0605,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1580,Output VAT,Input VAT +product.product_std-ahu-bgrim_606,39GPF12-16 PANEL 013646,463P0606,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1685,Output VAT,Input VAT +product.product_std-ahu-bgrim_607,39GPF12-17 PANEL 013647,463P0607,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1791,Output VAT,Input VAT +product.product_std-ahu-bgrim_608,39GPF12-18 PANEL 013648,463P0608,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1896,Output VAT,Input VAT +product.product_std-ahu-bgrim_609,39GPF12-19 PANEL 013649,463P0609,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2001,Output VAT,Input VAT +product.product_std-ahu-bgrim_610,39GPF12-20 PANEL 013650,463P0610,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2107,Output VAT,Input VAT +product.product_std-ahu-bgrim_611,39GPF12-21 PANEL 013651,463P0611,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2212,Output VAT,Input VAT +product.product_std-ahu-bgrim_612,39GPF12-22 PANEL 013652,463P0612,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2318,Output VAT,Input VAT +product.product_std-ahu-bgrim_613,39GPF12-23 PANEL 013653,463P0613,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2423,Output VAT,Input VAT +product.product_std-ahu-bgrim_614,39GPF12-24 PANEL 013654,463P0614,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2529,Output VAT,Input VAT +product.product_std-ahu-bgrim_615,39GPF12-25 PANEL 013655,463P0615,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2634,Output VAT,Input VAT +product.product_std-ahu-bgrim_616,39GPF12-26 PANEL 013656,463P0616,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2739,Output VAT,Input VAT +product.product_std-ahu-bgrim_617,39GPN12-05 PANEL 014721,463P0617,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,526,Output VAT,Input VAT +product.product_std-ahu-bgrim_618,39GPN12-06 PANEL 014722,463P0618,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,631,Output VAT,Input VAT +product.product_std-ahu-bgrim_619,39GPN12-07 PANEL 014723,463P0619,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,736,Output VAT,Input VAT +product.product_std-ahu-bgrim_620,39GPN12-08 PANEL 014724,463P0620,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,842,Output VAT,Input VAT +product.product_std-ahu-bgrim_621,39GPN12-09 PANEL 014725,463P0621,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,947,Output VAT,Input VAT +product.product_std-ahu-bgrim_622,39GPN12-10 PANEL 014726,463P0622,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1053,Output VAT,Input VAT +product.product_std-ahu-bgrim_623,39GPN12-11 PANEL 014727,463P0623,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1158,Output VAT,Input VAT +product.product_std-ahu-bgrim_624,39GPN12-12 PANEL 014728,463P0624,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1263,Output VAT,Input VAT +product.product_std-ahu-bgrim_625,39GPN12-13 PANEL 014729,463P0625,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1369,Output VAT,Input VAT +product.product_std-ahu-bgrim_626,39GPN12-14 PANEL 014730,463P0626,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1474,Output VAT,Input VAT +product.product_std-ahu-bgrim_627,39GPN12-15 PANEL 014731,463P0627,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1580,Output VAT,Input VAT +product.product_std-ahu-bgrim_628,39GPN12-16 PANEL 014732,463P0628,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1685,Output VAT,Input VAT +product.product_std-ahu-bgrim_629,39GPN12-17 PANEL 014733,463P0629,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1791,Output VAT,Input VAT +product.product_std-ahu-bgrim_630,39GPN12-18 PANEL 014734,463P0630,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,1896,Output VAT,Input VAT +product.product_std-ahu-bgrim_631,39GPN12-19 PANEL 014735,463P0631,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2001,Output VAT,Input VAT +product.product_std-ahu-bgrim_632,39GPN12-20 PANEL 014736,463P0632,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2107,Output VAT,Input VAT +product.product_std-ahu-bgrim_633,39GPN12-21 PANEL 014737,463P0633,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2212,Output VAT,Input VAT +product.product_std-ahu-bgrim_634,39GPN12-22 PANEL 014738,463P0634,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2318,Output VAT,Input VAT +product.product_std-ahu-bgrim_635,39GPN12-23 PANEL 014739,463P0635,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2423,Output VAT,Input VAT +product.product_std-ahu-bgrim_636,39GPN12-24 PANEL 014740,463P0636,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2529,Output VAT,Input VAT +product.product_std-ahu-bgrim_637,39GPN12-25 PANEL 014741,463P0637,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2634,Output VAT,Input VAT +product.product_std-ahu-bgrim_638,39GPN12-26 PANEL 014742,463P0638,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,2739,Output VAT,Input VAT +product.product_std-ahu-bgrim_639,39GAP04-15 ACCESS DOOR 016473,463P0639,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,477,Output VAT,Input VAT +product.product_std-ahu-bgrim_640,39GAP09-09 ACCESS DOOR 016577,463P0640,Standard AHU,"B.Grimm Airconditioning Co.,Ltd.",Standard AHU,TRUE,FALSE,FALSE,Stockable Product,Make to Order,Manufacture,Standard Price,EA,EA,Real Time (automated),0,600,Output VAT,Input VAT diff --git a/sqp_config/master/product_reorder/product.product.csv b/sqp_config/master/product_reorder/product.product.csv new file mode 100755 index 0000000..e9dc212 --- /dev/null +++ b/sqp_config/master/product_reorder/product.product.csv @@ -0,0 +1,762 @@ +"id","loc_rack","loc_row","loc_case" +"product.product_part_1","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_2","01-07",,"โกดังอะลูมิเนียม" +"product.product_part_3",,,"โกดังอะลูมิเนียม" +"product.product_part_4","01-23",,"โกดังอะลูมิเนียม" +"product.product_part_5","01-01",,"โกดังอะลูมิเนียม" +"product.product_part_6","01-15",,"โกดังอะลูมิเนียม" +"product.product_part_7","01-22",,"โกดังอะลูมิเนียม" +"product.product_part_8","01-23",,"โกดังอะลูมิเนียม" +"product.product_part_9","01-07",,"โกดังอะลูมิเนียม" +"product.product_part_10","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_11",,,"โกดังอะลูมิเนียม" +"product.product_part_12","01-15",,"โกดังอะลูมิเนียม" +"product.product_part_13","01-07",,"โกดังอะลูมิเนียม" +"product.product_part_14","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_15","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_16","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_17","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_18","01-16",,"โกดังอะลูมิเนียม" +"product.product_part_19","01-16",,"โกดังอะลูมิเนียม" +"product.product_part_20","01-02",,"โกดังอะลูมิเนียม" +"product.product_part_21","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_22","01-19",,"โกดังอะลูมิเนียม" +"product.product_part_23","01-19",,"โกดังอะลูมิเนียม" +"product.product_part_24","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_25","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_26","01-19",,"โกดังอะลูมิเนียม" +"product.product_part_27","01-19",,"โกดังอะลูมิเนียม" +"product.product_part_28","01-09",,"โกดังอะลูมิเนียม" +"product.product_part_29",,,"โกดังอะลูมิเนียม" +"product.product_part_30","01-11",,"โกดังอะลูมิเนียม" +"product.product_part_31","01-11",,"โกดังอะลูมิเนียม" +"product.product_part_32","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_33",,,"โกดังอะลูมิเนียม" +"product.product_part_34","01-11",,"โกดังอะลูมิเนียม" +"product.product_part_35","01-11",,"โกดังอะลูมิเนียม" +"product.product_part_36",,,"โกดังอะลูมิเนียม" +"product.product_part_37","01-04",,"โกดังอะลูมิเนียม" +"product.product_part_38","01-05",,"โกดังอะลูมิเนียม" +"product.product_part_39","01-05",,"โกดังอะลูมิเนียม" +"product.product_part_40","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_41","01-17",,"โกดังอะลูมิเนียม" +"product.product_part_42",,,"โกดังอะลูมิเนียม" +"product.product_part_43","01-20",,"โกดังอะลูมิเนียม" +"product.product_part_44",,,"โกดังอะลูมิเนียม" +"product.product_part_45",,,"โกดังอะลูมิเนียม" +"product.product_part_46","01-04",,"โกดังอะลูมิเนียม" +"product.product_part_47","01-04",,"โกดังอะลูมิเนียม" +"product.product_part_47-1","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_48","01-07",,"โกดังอะลูมิเนียม" +"product.product_part_49",,,"โกดังอะลูมิเนียม" +"product.product_part_50","01-07",,"โกดังอะลูมิเนียม" +"product.product_part_51",,,"โกดังอะลูมิเนียม" +"product.product_part_52","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_53",,,"โกดังอะลูมิเนียม" +"product.product_part_54",,,"โกดังอะลูมิเนียม" +"product.product_part_55",,,"โกดังอะลูมิเนียม" +"product.product_part_56","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_57",,,"โกดังอะลูมิเนียม" +"product.product_part_58","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_59",,,"โกดังอะลูมิเนียม" +"product.product_part_60","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_61",,,"โกดังอะลูมิเนียม" +"product.product_part_62","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_63","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_64","01-02",,"โกดังอะลูมิเนียม" +"product.product_part_65","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_66","01-09",,"โกดังอะลูมิเนียม" +"product.product_part_67","01-09",,"โกดังอะลูมิเนียม" +"product.product_part_68","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_69","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_70","01-04",,"โกดังอะลูมิเนียม" +"product.product_part_71","01-04",,"โกดังอะลูมิเนียม" +"product.product_part_72","01-01",,"โกดังอะลูมิเนียม" +"product.product_part_73",,,"โกดังอะลูมิเนียม" +"product.product_part_74","01-01",,"โกดังอะลูมิเนียม" +"product.product_part_75",,,"โกดังอะลูมิเนียม" +"product.product_part_76","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_77","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_78","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_79","01-09",,"โกดังอะลูมิเนียม" +"product.product_part_80","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_81","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_82","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_83","01-02",,"โกดังอะลูมิเนียม" +"product.product_part_84",,,"โกดังอะลูมิเนียม" +"product.product_part_85","01-22",,"โกดังอะลูมิเนียม" +"product.product_part_86","01-22",,"โกดังอะลูมิเนียม" +"product.product_part_87",,,"โกดังอะลูมิเนียม" +"product.product_part_88","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_89","01-04",,"โกดังอะลูมิเนียม" +"product.product_part_90","01-04",,"โกดังอะลูมิเนียม" +"product.product_part_91",,,"โกดังอะลูมิเนียม" +"product.product_part_92","01-17",,"โกดังอะลูมิเนียม" +"product.product_part_93","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_94","01-14",,"โกดังอะลูมิเนียม" +"product.product_part_95","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_96","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_97",,,"โกดังอะลูมิเนียม" +"product.product_part_98","01-01",,"โกดังอะลูมิเนียม" +"product.product_part_99",,,"โกดังอะลูมิเนียม" +"product.product_part_100","01-05",,"โกดังอะลูมิเนียม" +"product.product_part_101","01-22",,"โกดังอะลูมิเนียม" +"product.product_part_102","01-22",,"โกดังอะลูมิเนียม" +"product.product_part_103","01-11",,"โกดังอะลูมิเนียม" +"product.product_part_104","01-02",,"โกดังอะลูมิเนียม" +"product.product_part_105","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_106","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_107","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_108",,,"โกดังอะลูมิเนียม" +"product.product_part_109","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_110","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_111",,,"โกดังอะลูมิเนียม" +"product.product_part_112",,,"โกดังอะลูมิเนียม" +"product.product_part_113","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_114",,,"โกดังอะลูมิเนียม" +"product.product_part_115","01-01",,"โกดังอะลูมิเนียม" +"product.product_part_116",,,"โกดังอะลูมิเนียม" +"product.product_part_117","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_118","01-21",,"โกดังอะลูมิเนียม" +"product.product_part_119","01-21",,"โกดังอะลูมิเนียม" +"product.product_part_120","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_121","01-02",,"โกดังอะลูมิเนียม" +"product.product_part_122","01-22",,"โกดังอะลูมิเนียม" +"product.product_part_123","01-23",,"โกดังอะลูมิเนียม" +"product.product_part_124","01-05",,"โกดังอะลูมิเนียม" +"product.product_part_125","01-04",,"โกดังอะลูมิเนียม" +"product.product_part_126","01-01",,"โกดังอะลูมิเนียม" +"product.product_part_127","01-02",,"โกดังอะลูมิเนียม" +"product.product_part_128","01-02",,"โกดังอะลูมิเนียม" +"product.product_part_129",,,"โกดังอะลูมิเนียม" +"product.product_part_130","01-05",,"โกดังอะลูมิเนียม" +"product.product_part_131","01-09",,"โกดังอะลูมิเนียม" +"product.product_part_132","01-20",,"โกดังอะลูมิเนียม" +"product.product_part_133","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_134",,,"โกดังอะลูมิเนียม" +"product.product_part_135",,,"โกดังอะลูมิเนียม" +"product.product_part_136","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_137",,,"โกดังอะลูมิเนียม" +"product.product_part_138",,,"โกดังอะลูมิเนียม" +"product.product_part_139",,,"โกดังอะลูมิเนียม" +"product.product_part_140","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_141",,,"โกดังอะลูมิเนียม" +"product.product_part_142","01-05",,"โกดังอะลูมิเนียม" +"product.product_part_143","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_144","01-05",,"โกดังอะลูมิเนียม" +"product.product_part_145","01-05",,"โกดังอะลูมิเนียม" +"product.product_part_146","01-18",,"โกดังอะลูมิเนียม" +"product.product_part_147",,,"โกดังอะลูมิเนียม" +"product.product_part_148",,,"โกดังอะลูมิเนียม" +"product.product_part_149","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_150",,,"โกดังอะลูมิเนียม" +"product.product_part_151",,,"โกดังอะลูมิเนียม" +"product.product_part_152",,,"โกดังอะลูมิเนียม" +"product.product_part_153","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_154",,,"โกดังอะลูมิเนียม" +"product.product_part_155","01-02",,"โกดังอะลูมิเนียม" +"product.product_part_156","01-05",,"โกดังอะลูมิเนียม" +"product.product_part_157","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_158","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_159",,,"โกดังอะลูมิเนียม" +"product.product_part_160",,,"โกดังอะลูมิเนียม" +"product.product_part_161","01-11",,"โกดังอะลูมิเนียม" +"product.product_part_162",,,"โกดังอะลูมิเนียม" +"product.product_part_163","01-11",,"โกดังอะลูมิเนียม" +"product.product_part_164","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_165","01-07",,"โกดังอะลูมิเนียม" +"product.product_part_166",,,"โกดังอะลูมิเนียม" +"product.product_part_167","01-15",,"โกดังอะลูมิเนียม" +"product.product_part_168","01-15",,"โกดังอะลูมิเนียม" +"product.product_part_169","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_170",,,"โกดังอะลูมิเนียม" +"product.product_part_171","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_172","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_173",,,"โกดังอะลูมิเนียม" +"product.product_part_174","01-01",,"โกดังอะลูมิเนียม" +"product.product_part_175",,,"โกดังอะลูมิเนียม" +"product.product_part_176",,,"โกดังอะลูมิเนียม" +"product.product_part_177","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_178","01-07",,"โกดังอะลูมิเนียม" +"product.product_part_179","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_180","01-16",,"โกดังอะลูมิเนียม" +"product.product_part_181",,,"โกดังอะลูมิเนียม" +"product.product_part_182","01-20",,"โกดังอะลูมิเนียม" +"product.product_part_183","01-09",,"โกดังอะลูมิเนียม" +"product.product_part_184","01-04",,"โกดังอะลูมิเนียม" +"product.product_part_185","01-19",,"โกดังอะลูมิเนียม" +"product.product_part_186","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_187","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_188","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_189",,,"โกดังอะลูมิเนียม" +"product.product_part_190","01-07",,"โกดังอะลูมิเนียม" +"product.product_part_191",,,"โกดังอะลูมิเนียม" +"product.product_part_192",,,"โกดังอะลูมิเนียม" +"product.product_part_193","01-20",,"โกดังอะลูมิเนียม" +"product.product_part_194",,,"โกดังอะลูมิเนียม" +"product.product_part_195",,,"โกดังอะลูมิเนียม" +"product.product_part_196","01-18",,"โกดังอะลูมิเนียม" +"product.product_part_197","01-22",,"โกดังอะลูมิเนียม" +"product.product_part_198","01-02",,"โกดังอะลูมิเนียม" +"product.product_part_199","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_200","01-23",,"โกดังอะลูมิเนียม" +"product.product_part_201","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_202","01-09",,"โกดังอะลูมิเนียม" +"product.product_part_203",,,"โกดังอะลูมิเนียม" +"product.product_part_204",,,"โกดังอะลูมิเนียม" +"product.product_part_205","01-17",,"โกดังอะลูมิเนียม" +"product.product_part_206","01-20",,"โกดังอะลูมิเนียม" +"product.product_part_207","01-18",,"โกดังอะลูมิเนียม" +"product.product_part_208","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_209","01-15",,"โกดังอะลูมิเนียม" +"product.product_part_210",,,"โกดังอะลูมิเนียม" +"product.product_part_211","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_212","01-04",,"โกดังอะลูมิเนียม" +"product.product_part_213",,,"โกดังอะลูมิเนียม" +"product.product_part_214","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_215","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_216",,,"โกดังอะลูมิเนียม" +"product.product_part_217","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_218",,,"โกดังอะลูมิเนียม" +"product.product_part_219",,,"โกดังอะลูมิเนียม" +"product.product_part_220",,,"โกดังอะลูมิเนียม" +"product.product_part_221",,,"โกดังอะลูมิเนียม" +"product.product_part_222",,,"โกดังอะลูมิเนียม" +"product.product_part_223",,,"โกดังอะลูมิเนียม" +"product.product_part_224","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_225",,,"โกดังอะลูมิเนียม" +"product.product_part_226",,,"โกดังอะลูมิเนียม" +"product.product_part_227","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_228","01-17",,"โกดังอะลูมิเนียม" +"product.product_part_229",,,"โกดังอะลูมิเนียม" +"product.product_part_230","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_231","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_232",,,"โกดังอะลูมิเนียม" +"product.product_part_233",,,"โกดังอะลูมิเนียม" +"product.product_part_234",,,"โกดังอะลูมิเนียม" +"product.product_part_235",,,"โกดังอะลูมิเนียม" +"product.product_part_236","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_237","01-23",,"โกดังอะลูมิเนียม" +"product.product_part_238",,,"โกดังอะลูมิเนียม" +"product.product_part_239","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_240","01-23",,"โกดังอะลูมิเนียม" +"product.product_part_241",,,"โกดังอะลูมิเนียม" +"product.product_part_242","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_243","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_244",,,"โกดังอะลูมิเนียม" +"product.product_part_245","01-19",,"โกดังอะลูมิเนียม" +"product.product_part_246","01-15",,"โกดังอะลูมิเนียม" +"product.product_part_247",,,"โกดังอะลูมิเนียม" +"product.product_part_248","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_249","01-07",,"โกดังอะลูมิเนียม" +"product.product_part_250","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_251","01-20",,"โกดังอะลูมิเนียม" +"product.product_part_252","01-19",,"โกดังอะลูมิเนียม" +"product.product_part_253",,,"โกดังอะลูมิเนียม" +"product.product_part_254","01-07",,"โกดังอะลูมิเนียม" +"product.product_part_255","01-23",,"โกดังอะลูมิเนียม" +"product.product_part_256",,,"โกดังอะลูมิเนียม" +"product.product_part_257","01-17",,"โกดังอะลูมิเนียม" +"product.product_part_258",,,"โกดังอะลูมิเนียม" +"product.product_part_259",,,"โกดังอะลูมิเนียม" +"product.product_part_260","01-19",,"โกดังอะลูมิเนียม" +"product.product_part_261","01-18",,"โกดังอะลูมิเนียม" +"product.product_part_262","01-19",,"โกดังอะลูมิเนียม" +"product.product_part_263","01-20",,"โกดังอะลูมิเนียม" +"product.product_part_264",,,"โกดังอะลูมิเนียม" +"product.product_part_265","01-19",,"โกดังอะลูมิเนียม" +"product.product_part_266",,,"โกดังอะลูมิเนียม" +"product.product_part_267",,,"โกดังอะลูมิเนียม" +"product.product_part_268",,,"โกดังอะลูมิเนียม" +"product.product_part_269",,,"โกดังอะลูมิเนียม" +"product.product_part_270",,,"โกดังอะลูมิเนียม" +"product.product_part_271",,,"โกดังอะลูมิเนียม" +"product.product_part_272",,,"โกดังอะลูมิเนียม" +"product.product_part_273",,,"โกดังอะลูมิเนียม" +"product.product_part_274",,,"โกดังอะลูมิเนียม" +"product.product_part_275",,,"โกดังอะลูมิเนียม" +"product.product_part_276",,,"โกดังอะลูมิเนียม" +"product.product_part_277",,,"โกดังอะลูมิเนียม" +"product.product_part_278",,,"โกดังอะลูมิเนียม" +"product.product_part_279","Palete",,"Store ชั้น 2" +"product.product_part_280","Palete",,"Store ชั้น 2" +"product.product_part_281","Palete",,"Store ชั้น 2" +"product.product_part_282","02-02",,"Store ชั้น 2" +"product.product_part_283","02-02",,"Store ชั้น 2" +"product.product_part_284","02-02",,"Store ชั้น 2" +"product.product_part_285","Palete",,"Store ชั้น 2 New" +"product.product_part_286","Palete",,"Store ชั้น 2" +"product.product_part_287","02-01",,"Store ชั้น 2" +"product.product_part_288","02-01",,"Store ชั้น 2" +"product.product_part_289","02-01",,"Store ชั้น 2" +"product.product_part_290","02-01",,"Store ชั้น 2" +"product.product_part_291","Palete",,"Store ชั้น 2" +"product.product_part_292","02-01",,"Store ชั้น 2" +"product.product_part_293","02-01",,"Store ชั้น 2" +"product.product_part_294","Palete",,"ด้านล่าง" +"product.product_part_295","Palete",,"Store ชั้น 2" +"product.product_part_296","Palete",,"Store ชั้น 2" +"product.product_part_297","ซิลิโคน",,"ห้องเคมี" +"product.product_part_298","02-02",,"Store ชั้น 2" +"product.product_part_299","02-02",,"Store ชั้น 2" +"product.product_part_300","ซิลิโคน",,"ห้องเคมี" +"product.product_part_301","Palete",,"Store ชั้น 2" +"product.product_part_302","Palete",,"Store ชั้น 2 New" +"product.product_part_303","Palete",,"Store ชั้น 2" +"product.product_part_304","02-02",,"Store ชั้น 2" +"product.product_part_305","02-02",,"Store ชั้น 2" +"product.product_part_306","02-02",,"Store ชั้น 2" +"product.product_part_307","02-03",,"Store ชั้น 2" +"product.product_part_308","Palete",,"Store ชั้น 2 New" +"product.product_part_309","02-09",,"Store ชั้น 2" +"product.product_part_310","02-03",,"Store ชั้น 2" +"product.product_part_311","02-08",,"Store ชั้น 2" +"product.product_part_312","02-03",,"Store ชั้น 2" +"product.product_part_313","Palete",,"Store ชั้น 2" +"product.product_part_314","02-03",,"Store ชั้น 2" +"product.product_part_315","Palete",,"Store ชั้น 2 New" +"product.product_part_316","Palete",,"Store ชั้น 2 New" +"product.product_part_317","02-03",,"Store ชั้น 2" +"product.product_part_318","02-03",,"Store ชั้น 2" +"product.product_part_319","02-03",,"Store ชั้น 2" +"product.product_part_320","02-03",,"Store ชั้น 2" +"product.product_part_321","02-03",,"Store ชั้น 2" +"product.product_part_322","02-03",,"Store ชั้น 2" +"product.product_part_323","02-03",,"Store ชั้น 2" +"product.product_part_324",,,"ไม่มีของ" +"product.product_part_325","02-03",,"Store ชั้น 2" +"product.product_part_326","02-03",,"Store ชั้น 2" +"product.product_part_327","02-03",,"Store ชั้น 2" +"product.product_part_328","02-03",,"Store ชั้น 2" +"product.product_part_329","02-03",,"Store ชั้น 2" +"product.product_part_330",,,"ไม่มีของ" +"product.product_part_331","ซิลิโคน",,"ห้องเคมี" +"product.product_part_332","ซิลิโคน",,"ห้องเคมี" +"product.product_part_333","02-09",,"Store ชั้น 2" +"product.product_part_334","02-03",,"Store ชั้น 2" +"product.product_part_335","02-03",,"Store ชั้น 2" +"product.product_part_336","02-03",,"Store ชั้น 2" +"product.product_part_337","02-03",,"Store ชั้น 2" +"product.product_part_338","02-03",,"Store ชั้น 2" +"product.product_part_339","02-04",,"Store ชั้น 2" +"product.product_part_340","กระจก",,"โกดังคอยล์" +"product.product_part_341","02-04",,"Store ชั้น 2" +"product.product_part_342","ซิลิโคน",,"ห้องเคมี" +"product.product_part_343","02-04",,"Store ชั้น 2" +"product.product_part_344","02-04",,"Store ชั้น 2" +"product.product_part_345","02-04",,"Store ชั้น 2" +"product.product_part_346","02-04",,"Store ชั้น 2" +"product.product_part_347","02-04",,"Store ชั้น 2" +"product.product_part_348","02-04",,"Store ชั้น 2" +"product.product_part_349","Palete",,"Store ชั้น 2 New" +"product.product_part_350","02-04",,"Store ชั้น 2" +"product.product_part_351","02-04",,"Store ชั้น 2" +"product.product_part_352","02-04",,"Store ชั้น 2" +"product.product_part_353",,,"Store ชั้น 2" +"product.product_part_354","02-04",,"Store ชั้น 2" +"product.product_part_355","02-04",,"Store ชั้น 2" +"product.product_part_356","02-05",,"Store ชั้น 2" +"product.product_part_357","02-05",,"Store ชั้น 2" +"product.product_part_358","02-05",,"Store ชั้น 2" +"product.product_part_359","02-05",,"Store ชั้น 2" +"product.product_part_360","02-05",,"Store ชั้น 2" +"product.product_part_361","02-05",,"Store ชั้น 2" +"product.product_part_362","02-05",,"Store ชั้น 2" +"product.product_part_363","02-05",,"Store ชั้น 2" +"product.product_part_364","02-05",,"Store ชั้น 2" +"product.product_part_365","02-05",,"Store ชั้น 2" +"product.product_part_366","02-05",,"Store ชั้น 2" +"product.product_part_367","02-05",,"Store ชั้น 2" +"product.product_part_368","02-05",,"Store ชั้น 2" +"product.product_part_369","02-12",,"Store ชั้น 2" +"product.product_part_370",,,"Store ชั้น 2" +"product.product_part_371",,,"ไม่มีของ" +"product.product_part_372","02-05",,"Store ชั้น 2" +"product.product_part_373","02-06",,"Store ชั้น 2" +"product.product_part_374","02-06",,"Store ชั้น 2" +"product.product_part_375","02-05",,"Store ชั้น 2" +"product.product_part_376","02-06",,"Store ชั้น 2" +"product.product_part_377","02-06",,"Store ชั้น 2" +"product.product_part_378","02-06",,"Store ชั้น 2" +"product.product_part_379","02-06",,"Store ชั้น 2" +"product.product_part_380","ซิลิโคน",,"ห้องเคมี" +"product.product_part_381","02-06",,"Store ชั้น 2" +"product.product_part_382","02-06",,"Store ชั้น 2" +"product.product_part_383","02-09",,"Store ชั้น 2" +"product.product_part_384","02-06",,"Store ชั้น 2" +"product.product_part_385","02-06",,"Store ชั้น 2" +"product.product_part_386","02-06",,"Store ชั้น 2" +"product.product_part_387","02-06",,"Store ชั้น 2" +"product.product_part_388","02-07",,"Store ชั้น 2" +"product.product_part_389","ซิลิโคน",,"ห้องเคมี" +"product.product_part_390","Palete",,"Store ชั้น 2" +"product.product_part_391","02-10",,"Store ชั้น 2" +"product.product_part_392","02-07",,"Store ชั้น 2" +"product.product_part_393","02-11",,"Store ชั้น 2" +"product.product_part_394","Palete",,"ด้านล่าง" +"product.product_part_395","Palete",,"Store ชั้น 2 New" +"product.product_part_396","Palete",,"Store ชั้น 2 New" +"product.product_part_397","Palete",,"Store ชั้น 2 New" +"product.product_part_398","Palete",,"Store ชั้น 2 New" +"product.product_part_399","02-07",,"Store ชั้น 2" +"product.product_part_400",,,"ไม่มีของ" +"product.product_part_401",,,"ไม่มีของ" +"product.product_part_402","กระจก",,"โกดังคอยล์" +"product.product_part_403","02-07",,"Store ชั้น 2" +"product.product_part_404","02-12",,"Store ชั้น 2" +"product.product_part_405","02-07",,"Store ชั้น 2" +"product.product_part_406","02-07",,"Store ชั้น 2" +"product.product_part_407",,,"ไม่มีของ" +"product.product_part_408","02-07",,"Store ชั้น 2" +"product.product_part_409","02-01",,"Store ชั้น 2" +"product.product_part_410","กระจก",,"โกดังคอยล์" +"product.product_part_411","02-09",,"Store ชั้น 2" +"product.product_part_412","02-08",,"Store ชั้น 2" +"product.product_part_413","04-09",,"ออฟฟิสสโตร์" +"product.product_part_414","04-09",,"ออฟฟิสสโตร์" +"product.product_part_415","04-09",,"ออฟฟิสสโตร์" +"product.product_part_416","ข้างห้องเคมี",,"ด้านล่าง" +"product.product_part_417","02-08",,"Store ชั้น 2" +"product.product_part_418","02-09",,"Store ชั้น 2" +"product.product_part_419","02-08",,"Store ชั้น 2" +"product.product_part_420","02-08",,"Store ชั้น 2" +"product.product_part_421","02-08",,"Store ชั้น 2" +"product.product_part_422",,,"ไม่มีของ" +"product.product_part_423","Palete",,"Store ชั้น 2 New" +"product.product_part_424","Palete",,"Store ชั้น 2 New" +"product.product_part_425","02-09",,"Store ชั้น 2" +"product.product_part_426","02-09",,"Store ชั้น 2" +"product.product_part_427",,,"ไม่มีของ" +"product.product_part_428","02-07",,"Store ชั้น 2" +"product.product_part_429","Palete",,"Store ชั้น 2 New" +"product.product_part_430","Palete",,"Store ชั้น 2" +"product.product_part_431","Palete",,"Store ชั้น 2" +"product.product_part_432","Palete",,"Store ชั้น 2 New" +"product.product_part_433","02-10",,"Store ชั้น 2" +"product.product_part_434","02-10",,"Store ชั้น 2" +"product.product_part_435","02-11",,"Store ชั้น 2" +"product.product_part_436","02-09",,"Store ชั้น 2" +"product.product_part_437","02-09",,"Store ชั้น 2" +"product.product_part_438","02-10",,"Store ชั้น 2" +"product.product_part_439","02-10",,"Store ชั้น 2" +"product.product_part_440","02-11",,"Store ชั้น 2" +"product.product_part_441","02-12",,"Store ชั้น 2" +"product.product_part_442","02-12",,"Store ชั้น 2" +"product.product_part_443","02-10",,"Store ชั้น 2" +"product.product_part_444","02-10",,"Store ชั้น 2" +"product.product_part_445","Palete",, +"product.product_part_446","02-09",,"Store ชั้น 2" +"product.product_part_447",,,"ไม่มีของ" +"product.product_part_448","02-11",,"Store ชั้น 2" +"product.product_part_449","02-11",,"Store ชั้น 2" +"product.product_part_450","02-11",,"Store ชั้น 2" +"product.product_part_451","02-11",,"Store ชั้น 2" +"product.product_part_452","02-11",,"Store ชั้น 2" +"product.product_part_453","02-11",,"Store ชั้น 2" +"product.product_part_454","02-11",,"Store ชั้น 2" +"product.product_part_455","02-11",,"Store ชั้น 2" +"product.product_part_456","02-11",,"Store ชั้น 2" +"product.product_part_457","02-11",,"Store ชั้น 2" +"product.product_part_458","02-11",,"Store ชั้น 2" +"product.product_part_459","02-11",,"Store ชั้น 2" +"product.product_part_460","02-11",,"Store ชั้น 2" +"product.product_part_461","02-11",,"Store ชั้น 2" +"product.product_part_461-1","02-11",,"Store ชั้น 2" +"product.product_part_462","Palete",,"Store ชั้น 2" +"product.product_part_463","Palete",,"Store ชั้น 2" +"product.product_part_464","03-01",,"Store ชั้น 2" +"product.product_part_465","03-01",,"Store ชั้น 2" +"product.product_part_466","03-06",,"Store ชั้น 2" +"product.product_part_467",,,"โกดังคอยล์" +"product.product_part_468",,,"โกดังคอยล์" +"product.product_part_469","Palete",,"Store ชั้น 2" +"product.product_part_470","Palete",,"Store ชั้น 2" +"product.product_part_471","03-01",,"Store ชั้น 2" +"product.product_part_472","03-05",,"Store ชั้น 2" +"product.product_part_473","Palete",,"ด้านล่าง" +"product.product_part_474","03-05",,"Store ชั้น 2" +"product.product_part_475","03-01",,"Store ชั้น 2" +"product.product_part_476","03-06",,"Store ชั้น 2" +"product.product_part_477","Palete",,"Store ชั้น 2 New" +"product.product_part_478","03-01",,"Store ชั้น 2" +"product.product_part_479","Palete",,"Store ชั้น 2" +"product.product_part_480","03-01",,"Store ชั้น 2" +"product.product_part_481","Palete",,"Store ชั้น 2" +"product.product_part_482","ซิลิโคน",,"ห้องเคมี" +"product.product_part_483","ซิลิโคน",,"ห้องเคมี" +"product.product_part_484","03-06",,"Store ชั้น 2" +"product.product_part_485","03-06",,"Store ชั้น 2" +"product.product_part_486","03-06",,"Store ชั้น 2" +"product.product_part_487","03-06",,"Store ชั้น 2" +"product.product_part_488","03-06",,"Store ชั้น 2" +"product.product_part_489","03-06",,"Store ชั้น 2" +"product.product_part_490","03-06",,"Store ชั้น 2" +"product.product_part_491","03-06",,"Store ชั้น 2" +"product.product_part_492","03-01",,"Store ชั้น 2" +"product.product_part_493","03-03",,"Store ชั้น 2" +"product.product_part_494","Palete",,"Store ชั้น 2 New" +"product.product_part_495","03-06",,"Store ชั้น 2" +"product.product_part_496","03-06",,"Store ชั้น 2" +"product.product_part_497","03-06",,"Store ชั้น 2" +"product.product_part_498","03-02",,"Store ชั้น 2" +"product.product_part_499","03-02",,"Store ชั้น 2" +"product.product_part_500","03-02",,"Store ชั้น 2" +"product.product_part_501","03-02",,"Store ชั้น 2" +"product.product_part_502",,,"โกดังคอยล์" +"product.product_part_503",,,"ไม่มีของ" +"product.product_part_504","Palete",,"Store ชั้น 2" +"product.product_part_505","03-02",,"Store ชั้น 2" +"product.product_part_506","03-06",,"Store ชั้น 2" +"product.product_part_507","03-02",,"Store ชั้น 2" +"product.product_part_508","03-02",,"Store ชั้น 2" +"product.product_part_509","03-02",,"Store ชั้น 2" +"product.product_part_510","03-02",,"Store ชั้น 2" +"product.product_part_511","03-02",,"Store ชั้น 2" +"product.product_part_512","03-02",,"Store ชั้น 2" +"product.product_part_513","03-02",,"Store ชั้น 2" +"product.product_part_514","03-02",,"Store ชั้น 2" +"product.product_part_515","03-02",,"Store ชั้น 2" +"product.product_part_516","03-02",,"Store ชั้น 2" +"product.product_part_517","03-02",,"Store ชั้น 2" +"product.product_part_518","03-02",,"Store ชั้น 2" +"product.product_part_519","03-02",,"Store ชั้น 2" +"product.product_part_520","03-02",,"Store ชั้น 2" +"product.product_part_521","03-02",,"Store ชั้น 2" +"product.product_part_522","03-02",,"Store ชั้น 2" +"product.product_part_523","03-02",,"Store ชั้น 2" +"product.product_part_524","03-02",,"Store ชั้น 2" +"product.product_part_525","03-02",,"Store ชั้น 2" +"product.product_part_526","03-02",,"Store ชั้น 2" +"product.product_part_527","03-02",,"Store ชั้น 2" +"product.product_part_528","03-02",,"Store ชั้น 2" +"product.product_part_529","03-02",,"Store ชั้น 2" +"product.product_part_530","03-02",,"Store ชั้น 2" +"product.product_part_531","03-03",,"Store ชั้น 2" +"product.product_part_532","03-03",,"Store ชั้น 2" +"product.product_part_533","03-03",,"Store ชั้น 2" +"product.product_part_534","03-03",,"Store ชั้น 2" +"product.product_part_535","03-03",,"Store ชั้น 2" +"product.product_part_536","03-03",,"Store ชั้น 2" +"product.product_part_537","03-03",,"Store ชั้น 2" +"product.product_part_538","03-03",,"Store ชั้น 2" +"product.product_part_539","03-03",,"Store ชั้น 2" +"product.product_part_540","03-03",,"Store ชั้น 2" +"product.product_part_541","03-03",,"Store ชั้น 2" +"product.product_part_542",,, +"product.product_part_543","03-03",,"Store ชั้น 2" +"product.product_part_544","03-03",,"Store ชั้น 2" +"product.product_part_545","03-03",,"Store ชั้น 2" +"product.product_part_546","03-03",,"Store ชั้น 2" +"product.product_part_547","03-03",,"Store ชั้น 2" +"product.product_part_548","03-03",,"Store ชั้น 2" +"product.product_part_549","03-03",,"Store ชั้น 2" +"product.product_part_550","03-03",,"Store ชั้น 2" +"product.product_part_551",,,"ไม่มีของ" +"product.product_part_552",,,"ไม่มีของ" +"product.product_part_553","สีฝุ่น",,"ห้องเคมี" +"product.product_part_554","Palete",,"Store ชั้น 2 New" +"product.product_part_555","สีฝุ่น",,"ห้องเคมี" +"product.product_part_556","03-03",,"Store ชั้น 2" +"product.product_part_557","03-04",,"Store ชั้น 2" +"product.product_part_558","03-04",,"Store ชั้น 2" +"product.product_part_559",,,"ไม่มีของ" +"product.product_part_560",,,"ไม่มีของ" +"product.product_part_561","Palete",,"Store ชั้น 2 New" +"product.product_part_562",,,"โกดังอะลูมิเนียม" +"product.product_part_563","สีฝุ่น",,"ห้องเคมี" +"product.product_part_564","Palete",,"Store ชั้น 2" +"product.product_part_565",,,"Store ชั้น 2" +"product.product_part_566","03-04",,"Store ชั้น 2" +"product.product_part_567","03-04",,"Store ชั้น 2" +"product.product_part_568","03-04",,"Store ชั้น 2" +"product.product_part_569","03-04",,"Store ชั้น 2" +"product.product_part_570","03-04",,"Store ชั้น 2" +"product.product_part_571","03-04",,"Store ชั้น 2" +"product.product_part_572","ซิลิโคน",,"ห้องเคมี" +"product.product_part_573","03-04",,"Store ชั้น 2" +"product.product_part_574","03-04",,"Store ชั้น 2" +"product.product_part_575","03-04",,"Store ชั้น 2" +"product.product_part_576","03-05",,"Store ชั้น 2" +"product.product_part_577","03-04",,"Store ชั้น 2" +"product.product_part_578","สีฝุ่น",,"ห้องเคมี" +"product.product_part_579","สีฝุ่น",,"ห้องเคมี" +"product.product_part_580","สีฝุ่น",,"ห้องเคมี" +"product.product_part_581","Palete",,"Store ชั้น 2 New" +"product.product_part_582","03-04",,"Store ชั้น 2" +"product.product_part_583","สีฝุ่น",,"ห้องเคมี" +"product.product_part_584","สีฝุ่น",,"ห้องเคมี" +"product.product_part_585","สีฝุ่น",,"ห้องเคมี" +"product.product_part_586","Palete",,"ด้านล่าง" +"product.product_part_587","Palete",,"Store ชั้น 2" +"product.product_part_588","03-04",,"Store ชั้น 2" +"product.product_part_589","03-04",,"Store ชั้น 2" +"product.product_part_590","Palete",,"Store ชั้น 2" +"product.product_part_591","Palete",,"Store ชั้น 2" +"product.product_part_592","03-06",,"Store ชั้น 2" +"product.product_part_593","03-05",,"Store ชั้น 2" +"product.product_part_594","03-05",,"Store ชั้น 2" +"product.product_part_595","03-05",,"Store ชั้น 2" +"product.product_part_596","Palete",,"Store ชั้น 2 New" +"product.product_part_597","03-06",,"Store ชั้น 2" +"product.product_part_598","03-06",,"Store ชั้น 2" +"product.product_part_599","04-10",,"Store ชั้น 2" +"product.product_part_600","04-10",,"Store ชั้น 2" +"product.product_part_601","04-10",,"Store ชั้น 2" +"product.product_part_602","04-10",,"Store ชั้น 2" +"product.product_part_603","04-10",,"Store ชั้น 2" +"product.product_part_604","04-03",,"โกดังเก็บพีวีซี" +"product.product_part_605","04-10",,"โกดังเก็บพีวีซี" +"product.product_part_606","04-08",,"โกดังเก็บพีวีซี" +"product.product_part_607","04-20",,"โกดังเก็บพีวีซี" +"product.product_part_608","04-20",,"โกดังเก็บพีวีซี" +"product.product_part_609","04-04",,"โกดังเก็บพีวีซี" +"product.product_part_610","04-01",,"โกดังเก็บพีวีซี" +"product.product_part_611","04-01",,"โกดังเก็บพีวีซี" +"product.product_part_612","04-08",,"โกดังเก็บพีวีซี" +"product.product_part_613","04-19",,"โกดังเก็บพีวีซี" +"product.product_part_614","Palete",,"Store ชั้น 2 New" +"product.product_part_615","04-16",,"โกดังเก็บพีวีซี" +"product.product_part_616","Palete",,"Store ชั้น 2" +"product.product_part_617","Palete",,"Store ชั้น 2" +"product.product_part_618","Palete",,"Store ชั้น 2 New" +"product.product_part_619","Palete",,"Store ชั้น 2 New" +"product.product_part_620","Palete",,"Store ชั้น 2 New" +"product.product_part_621","Palete",,"Store ชั้น 2 New" +"product.product_part_622","04-04",,"Store ชั้น 2" +"product.product_part_623","04-14",,"โกดังเก็บพีวีซี" +"product.product_part_624","04-07",,"โกดังเก็บพีวีซี" +"product.product_part_625","04-03",,"โกดังเก็บพีวีซี" +"product.product_part_626","04-22",,"โกดังเก็บพีวีซี" +"product.product_part_627","04-05",,"โกดังเก็บพีวีซี" +"product.product_part_628","04-14",,"โกดังเก็บพีวีซี" +"product.product_part_629","04-07",,"โกดังเก็บพีวีซี" +"product.product_part_630","04-14",,"โกดังเก็บพีวีซี" +"product.product_part_631","04-04",,"Store ชั้น 2" +"product.product_part_632","04-07",,"โกดังเก็บพีวีซี" +"product.product_part_633","04-07",,"โกดังเก็บพีวีซี" +"product.product_part_634","04-02",,"โกดังเก็บพีวีซี" +"product.product_part_635","04-06",,"โกดังเก็บพีวีซี" +"product.product_part_636",,,"โกดังเก็บพีวีซี" +"product.product_part_637","04-01",,"Store ชั้น 2" +"product.product_part_638","04-01",,"Store ชั้น 2" +"product.product_part_639","04-01",,"Store ชั้น 2" +"product.product_part_640","04-07",,"Store ชั้น 2" +"product.product_part_641","04-02",,"Store ชั้น 2" +"product.product_part_642","04-02",,"Store ชั้น 2" +"product.product_part_643","04-02",,"Store ชั้น 2" +"product.product_part_644","04-08",,"Store ชั้น 2" +"product.product_part_645",,,"โกดังเก็บพีวีซี" +"product.product_part_646","04-01",,"โกดังเก็บพีวีซี" +"product.product_part_647","04-01",,"โกดังเก็บพีวีซี" +"product.product_part_648","04-05",,"โกดังเก็บพีวีซี" +"product.product_part_649","04-04",,"Store ชั้น 2" +"product.product_part_650","04-04",,"Store ชั้น 2" +"product.product_part_651","หน้าห้องเคมี",,"โกดังเก็บพีวีซี" +"product.product_part_652","04-04",,"Store ชั้น 2" +"product.product_part_653",,,"ไม่มีของ" +"product.product_part_654","04-03",,"Store ชั้น 2" +"product.product_part_655","04-03",,"Store ชั้น 2" +"product.product_part_656","04-01",,"โกดังเก็บพีวีซี" +"product.product_part_657","04-06",,"โกดังเก็บพีวีซี" +"product.product_part_658","04-07",,"Store ชั้น 2" +"product.product_part_659","04-05",,"Store ชั้น 2" +"product.product_part_660","04-05",,"Store ชั้น 2" +"product.product_part_661","04-05",,"Store ชั้น 2" +"product.product_part_662","04-05",,"Store ชั้น 2" +"product.product_part_663",,,"โกดังเก็บพีวีซี" +"product.product_part_664",,,"โกดังเก็บพีวีซี" +"product.product_part_665","04-05",,"Store ชั้น 2" +"product.product_part_666","04-03",,"โกดังเก็บพีวีซี" +"product.product_part_667","04-08",,"Store ชั้น 2" +"product.product_part_668","04-08",,"Store ชั้น 2" +"product.product_part_669","04-21",,"โกดังเก็บพีวีซี" +"product.product_part_670","04-08",,"Store ชั้น 2" +"product.product_part_671","04-06",,"Store ชั้น 2" +"product.product_part_672","04-08",,"โกดังเก็บพีวีซี" +"product.product_part_673","04-02",,"โกดังเก็บพีวีซี" +"product.product_part_674","04-05",,"โกดังเก็บพีวีซี" +"product.product_part_675","04-06",,"Store ชั้น 2" +"product.product_part_676","04-06",,"Store ชั้น 2" +"product.product_part_677","04-06",,"Store ชั้น 2" +"product.product_part_678","04-09",,"โกดังเก็บพีวีซี" +"product.product_part_679","04-10",,"โกดังเก็บพีวีซี" +"product.product_part_680","04-06",,"Store ชั้น 2" +"product.product_part_681","Palete",,"Store ชั้น 2 New" +"product.product_part_682","Palete",,"Store ชั้น 2 New" +"product.product_part_683","Palete",,"Store ชั้น 2 New" +"product.product_part_684","Palete",,"Store ชั้น 2 New" +"product.product_part_685","Palete",,"Store ชั้น 2 New" +"product.product_part_686","Palete",,"Store ชั้น 2 New" +"product.product_part_687","น้ำยาโฟม",,"ห้องเคมี" +"product.product_part_688","น้ำยาโฟม",,"ตู้คอนเทรนเนอร์" +"product.product_part_689","น้ำยาโฟม",,"ตู้คอนเทรนเนอร์" +"product.product_part_690","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_691","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_692","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_693","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_694","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_695","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_696","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_697","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_698","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_699","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_700","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_701","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_702","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_703","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_704","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_705","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_706","เหล็ก",,"โกดังเก็บคอยล์" +"product.product_part_707","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_708",,,"โกดังอะลูมิเนียม" +"product.product_part_710","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_711","01-20",,"โกดังอะลูมิเนียม" +"product.product_part_712","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_713","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_714",,,"โกดังอะลูมิเนียม" +"product.product_part_715","01-08",,"โกดังอะลูมิเนียม" +"product.product_part_716","01-21",,"โกดังอะลูมิเนียม" +"product.product_part_717","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_718",,,"โกดังอะลูมิเนียม" +"product.product_part_719","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_720","01-16",,"โกดังอะลูมิเนียม" +"product.product_part_721",,,"โกดังอะลูมิเนียม" +"product.product_part_722","01-02",,"โกดังอะลูมิเนียม" +"product.product_part_723","01-11",,"โกดังอะลูมิเนียม" +"product.product_part_724","01-02",,"โกดังอะลูมิเนียม" +"product.product_part_725","01-10",,"โกดังอะลูมิเนียม" +"product.product_part_726","01-07",,"โกดังอะลูมิเนียม" +"product.product_part_727","01-14",,"โกดังอะลูมิเนียม" +"product.product_part_728","01-19",,"โกดังอะลูมิเนียม" +"product.product_part_729",,,"โกดังอะลูมิเนียม" +"product.product_part_730","01-02",,"โกดังอะลูมิเนียม" +"product.product_part_731","01-22",,"โกดังอะลูมิเนียม" +"product.product_part_732","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_733",,,"โกดังอะลูมิเนียม" +"product.product_part_734","01-06",,"โกดังอะลูมิเนียม" +"product.product_part_735","01-03",,"โกดังอะลูมิเนียม" +"product.product_part_736","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_737","01-14",,"โกดังอะลูมิเนียม" +"product.product_part_738",,,"โกดังอะลูมิเนียม" +"product.product_part_739","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_740","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_742","01-05",,"โกดังอะลูมิเนียม" +"product.product_part_743","01-05",,"โกดังอะลูมิเนียม" +"product.product_part_744","01-12",,"โกดังอะลูมิเนียม" +"product.product_part_745",,,"โกดังอะลูมิเนียม" +"product.product_part_746","01-04",,"โกดังอะลูมิเนียม" +"product.product_part_747","01-22",,"โกดังอะลูมิเนียม" +"product.product_part_748",,,"โกดังอะลูมิเนียม" +"product.product_part_749","01-13",,"โกดังอะลูมิเนียม" +"product.product_part_750","01-18",,"โกดังอะลูมิเนียม" +"product.product_part_751",,,"โกดังอะลูมิเนียม" +"product.product_part_752","02-06",,"Store ชั้น 2" +"product.product_part_753",,, +"product.product_part_754",,, +"product.product_part_755",,, +"product.product_part_756",,, +"product.product_part_757",,, +"product.product_part_758",,, +"product.product_part_759",,, +"product.product_part_760",,, +"product.product_part_761",,, diff --git a/sqp_config/master/product_reorder/stock.warehouse.orderpoint.csv b/sqp_config/master/product_reorder/stock.warehouse.orderpoint.csv new file mode 100755 index 0000000..d635166 --- /dev/null +++ b/sqp_config/master/product_reorder/stock.warehouse.orderpoint.csv @@ -0,0 +1,780 @@ +"id","warehouse_id/id","location_id/id","product_id/id","product_max_qty","product_min_qty","product_uom/id" +"stock_reorder_part_1","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_1","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_2","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_2","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_3","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_3","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_4","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_4","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_5","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_5","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_6","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_6","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_7","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_7","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_8","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_8","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_9","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_9","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_10","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_10","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_11","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_11","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_12","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_12","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_13","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_13","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_14","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_14","50.0","20.0","product.product_uom_pcs" +"stock_reorder_part_15","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_15","30.0","15.0","product.product_uom_pcs" +"stock_reorder_part_16","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_16","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_17","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_17","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_18","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_18","50.0","25.0","product.product_uom_pcs" +"stock_reorder_part_19","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_19","20.0","10.0","product.product_uom_pcs" +"stock_reorder_part_20","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_20","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_21","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_21","50.0","20.0","product.product_uom_pcs" +"stock_reorder_part_22","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_22","50.0","25.0","product.product_uom_pcs" +"stock_reorder_part_23","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_23","30.0","15.0","product.product_uom_pcs" +"stock_reorder_part_24","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_24","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_25","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_25","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_26","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_26","50.0","25.0","product.product_uom_pcs" +"stock_reorder_part_27","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_27","30.0","15.0","product.product_uom_pcs" +"stock_reorder_part_28","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_28","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_29","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_29",,,"product.product_uom_pcs" +"stock_reorder_part_30","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_30","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_31","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_31","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_32","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_32","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_33","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_33",,,"product.product_uom_pcs" +"stock_reorder_part_34","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_34","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_35","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_35","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_36","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_36",,,"product.product_uom_pcs" +"stock_reorder_part_37","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_37",,,"product.product_uom_pcs" +"stock_reorder_part_38","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_38",,,"product.product_uom_pcs" +"stock_reorder_part_39","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_39",,,"product.product_uom_pcs" +"stock_reorder_part_40","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_40","400.0","200.0","product.product_uom_pcs" +"stock_reorder_part_41","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_41","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_42","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_42","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_43","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_43","60.0","30.0","product.product_uom_pcs" +"stock_reorder_part_44","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_44",,,"product.product_uom_pcs" +"stock_reorder_part_45","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_45",,,"product.product_uom_pcs" +"stock_reorder_part_46","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_46",,,"product.product_uom_pcs" +"stock_reorder_part_47","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_47",,,"product.product_uom_pcs" +"stock_reorder_part_48","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_47","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_49","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_707","50.0","25.0","product.product_uom_pcs" +"stock_reorder_part_50","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_708",,,"product.product_uom_pcs" +"stock_reorder_part_51","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_47-1","20.0","10.0","product.product_uom_pcs" +"stock_reorder_part_52","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_710","10.0","5.0","product.product_uom_pcs" +"stock_reorder_part_53","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_48","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_54","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_49",,,"product.product_uom_pcs" +"stock_reorder_part_55","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_50","50.0","25.0","product.product_uom_pcs" +"stock_reorder_part_56","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_51","10.0","5.0","product.product_uom_pcs" +"stock_reorder_part_57","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_52","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_58","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_53",,,"product.product_uom_pcs" +"stock_reorder_part_59","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_54","20.0","10.0","product.product_uom_pcs" +"stock_reorder_part_60","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_55","10.0","5.0","product.product_uom_pcs" +"stock_reorder_part_61","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_56","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_62","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_57",,,"product.product_uom_pcs" +"stock_reorder_part_63","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_58","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_64","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_59","50.0","25.0","product.product_uom_pcs" +"stock_reorder_part_65","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_60","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_66","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_61",,,"product.product_uom_pcs" +"stock_reorder_part_67","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_62","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_68","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_63","60.0","30.0","product.product_uom_pcs" +"stock_reorder_part_69","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_64","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_70","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_65","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_71","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_66","100.0",,"product.product_uom_pcs" +"stock_reorder_part_72","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_67","60.0","30.0","product.product_uom_pcs" +"stock_reorder_part_73","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_68","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_74","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_69","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_75","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_70","100.0",,"product.product_uom_pcs" +"stock_reorder_part_76","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_71","100.0",,"product.product_uom_pcs" +"stock_reorder_part_77","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_72","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_78","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_73","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_79","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_74","100.0",,"product.product_uom_pcs" +"stock_reorder_part_80","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_75","100.0",,"product.product_uom_pcs" +"stock_reorder_part_81","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_76","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_82","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_77","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_83","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_78","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_84","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_79","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_85","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_80","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_86","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_81","100.0",,"product.product_uom_pcs" +"stock_reorder_part_87","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_82","100.0",,"product.product_uom_pcs" +"stock_reorder_part_88","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_83","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_89","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_84","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_90","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_85","100.0",,"product.product_uom_pcs" +"stock_reorder_part_91","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_86","100.0",,"product.product_uom_pcs" +"stock_reorder_part_92","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_711","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_93","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_712","100.0",,"product.product_uom_pcs" +"stock_reorder_part_94","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_713","100.0",,"product.product_uom_pcs" +"stock_reorder_part_95","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_87","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_96","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_88","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_97","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_89","100.0",,"product.product_uom_pcs" +"stock_reorder_part_98","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_90","100.0",,"product.product_uom_pcs" +"stock_reorder_part_99","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_91","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_100","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_92","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_101","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_93","100.0",,"product.product_uom_pcs" +"stock_reorder_part_102","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_94","100.0",,"product.product_uom_pcs" +"stock_reorder_part_103","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_714","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_104","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_715","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_105","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_716","100.0",,"product.product_uom_pcs" +"stock_reorder_part_106","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_717","100.0",,"product.product_uom_pcs" +"stock_reorder_part_107","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_95","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_108","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_96","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_109","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_97","100.0",,"product.product_uom_pcs" +"stock_reorder_part_110","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_98","100.0",,"product.product_uom_pcs" +"stock_reorder_part_111","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_99","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_112","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_100","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_113","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_101","100.0",,"product.product_uom_pcs" +"stock_reorder_part_114","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_102","100.0",,"product.product_uom_pcs" +"stock_reorder_part_115","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_103","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_116","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_104","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_117","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_105","100.0",,"product.product_uom_pcs" +"stock_reorder_part_118","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_106","100.0",,"product.product_uom_pcs" +"stock_reorder_part_119","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_107","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_120","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_108","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_121","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_109","100.0",,"product.product_uom_pcs" +"stock_reorder_part_122","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_110","100.0",,"product.product_uom_pcs" +"stock_reorder_part_123","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_718","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_124","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_719","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_125","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_720","100.0",,"product.product_uom_pcs" +"stock_reorder_part_126","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_721","100.0",,"product.product_uom_pcs" +"stock_reorder_part_127","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_111","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_128","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_112","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_129","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_113","100.0",,"product.product_uom_pcs" +"stock_reorder_part_130","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_114","100.0",,"product.product_uom_pcs" +"stock_reorder_part_131","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_722","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_132","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_723","100.0",,"product.product_uom_pcs" +"stock_reorder_part_133","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_724","100.0",,"product.product_uom_pcs" +"stock_reorder_part_134","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_115","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_135","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_725","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_136","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_726","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_137","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_727","100.0",,"product.product_uom_pcs" +"stock_reorder_part_138","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_728","100.0",,"product.product_uom_pcs" +"stock_reorder_part_139","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_729","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_140","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_730","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_141","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_731","100.0",,"product.product_uom_pcs" +"stock_reorder_part_142","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_732","100.0",,"product.product_uom_pcs" +"stock_reorder_part_143","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_116","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_144","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_117","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_145","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_118","100.0",,"product.product_uom_pcs" +"stock_reorder_part_146","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_119","100.0",,"product.product_uom_pcs" +"stock_reorder_part_147","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_120","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_148","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_121","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_149","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_122","100.0",,"product.product_uom_pcs" +"stock_reorder_part_150","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_123","100.0",,"product.product_uom_pcs" +"stock_reorder_part_151","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_124","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_152","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_125","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_153","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_126","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_154","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_127","100.0",,"product.product_uom_pcs" +"stock_reorder_part_155","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_128","100.0",,"product.product_uom_pcs" +"stock_reorder_part_156","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_129","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_157","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_130","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_158","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_131","100.0",,"product.product_uom_pcs" +"stock_reorder_part_159","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_132","100.0",,"product.product_uom_pcs" +"stock_reorder_part_160","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_133","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_161","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_134","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_162","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_135","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_163","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_136","100.0",,"product.product_uom_pcs" +"stock_reorder_part_164","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_137","100.0",,"product.product_uom_pcs" +"stock_reorder_part_165","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_138","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_166","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_139","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_167","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_140","100.0",,"product.product_uom_pcs" +"stock_reorder_part_168","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_141","100.0",,"product.product_uom_pcs" +"stock_reorder_part_169","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_733","300.0",,"product.product_uom_pcs" +"stock_reorder_part_170","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_734","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_171","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_735","100.0",,"product.product_uom_pcs" +"stock_reorder_part_172","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_736","100.0",,"product.product_uom_pcs" +"stock_reorder_part_173","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_142","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_174","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_143","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_175","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_144","100.0",,"product.product_uom_pcs" +"stock_reorder_part_176","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_145","100.0",,"product.product_uom_pcs" +"stock_reorder_part_177","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_146","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_178","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_147","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_179","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_148","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_180","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_149","100.0",,"product.product_uom_pcs" +"stock_reorder_part_181","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_150","100.0",,"product.product_uom_pcs" +"stock_reorder_part_182","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_151","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_183","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_152","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_184","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_153","100.0",,"product.product_uom_pcs" +"stock_reorder_part_185","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_154","100.0",,"product.product_uom_pcs" +"stock_reorder_part_186","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_155",,,"product.product_uom_pcs" +"stock_reorder_part_187","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_156","100.0",,"product.product_uom_pcs" +"stock_reorder_part_188","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_157",,,"product.product_uom_pcs" +"stock_reorder_part_189","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_158","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_190","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_159","100.0",,"product.product_uom_pcs" +"stock_reorder_part_191","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_160",,,"product.product_uom_pcs" +"stock_reorder_part_192","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_161","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_193","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_162","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_194","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_163","100.0",,"product.product_uom_pcs" +"stock_reorder_part_195","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_164","100.0",,"product.product_uom_pcs" +"stock_reorder_part_196","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_165","50.0","25.0","product.product_uom_pcs" +"stock_reorder_part_197","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_166","50.0","25.0","product.product_uom_pcs" +"stock_reorder_part_198","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_167","50.0",,"product.product_uom_pcs" +"stock_reorder_part_199","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_168","50.0",,"product.product_uom_pcs" +"stock_reorder_part_200","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_169","50.0","25.0","product.product_uom_pcs" +"stock_reorder_part_201","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_170","50.0","25.0","product.product_uom_pcs" +"stock_reorder_part_202","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_171","50.0",,"product.product_uom_pcs" +"stock_reorder_part_203","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_172","50.0",,"product.product_uom_pcs" +"stock_reorder_part_204","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_173",,,"product.product_uom_pcs" +"stock_reorder_part_205","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_174","50.0","25.0","product.product_uom_pcs" +"stock_reorder_part_206","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_175","50.0",,"product.product_uom_pcs" +"stock_reorder_part_207","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_176","50.0",,"product.product_uom_pcs" +"stock_reorder_part_208","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_177","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_209","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_178","100.0",,"product.product_uom_pcs" +"stock_reorder_part_210","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_179","100.0",,"product.product_uom_pcs" +"stock_reorder_part_211","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_180","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_212","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_181","100.0",,"product.product_uom_pcs" +"stock_reorder_part_213","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_182","100.0",,"product.product_uom_pcs" +"stock_reorder_part_214","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_183","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_215","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_184","100.0",,"product.product_uom_pcs" +"stock_reorder_part_216","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_185","100.0",,"product.product_uom_pcs" +"stock_reorder_part_217","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_186","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_218","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_187","100.0",,"product.product_uom_pcs" +"stock_reorder_part_219","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_188","100.0",,"product.product_uom_pcs" +"stock_reorder_part_220","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_189",,,"product.product_uom_pcs" +"stock_reorder_part_221","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_190","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_222","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_191","100.0",,"product.product_uom_pcs" +"stock_reorder_part_223","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_192","100.0",,"product.product_uom_pcs" +"stock_reorder_part_224","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_193","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_225","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_194","100.0",,"product.product_uom_pcs" +"stock_reorder_part_226","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_195","100.0",,"product.product_uom_pcs" +"stock_reorder_part_227","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_196","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_228","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_197","100.0",,"product.product_uom_pcs" +"stock_reorder_part_229","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_737","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_230","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_738",,,"product.product_uom_pcs" +"stock_reorder_part_231","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_739","100.0",,"product.product_uom_pcs" +"stock_reorder_part_232","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_740","100.0",,"product.product_uom_pcs" +"stock_reorder_part_233","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_198","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_234","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_199","100.0",,"product.product_uom_pcs" +"stock_reorder_part_235","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_200","100.0",,"product.product_uom_pcs" +"stock_reorder_part_236","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_201","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_237","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_202","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_238","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_203","100.0",,"product.product_uom_pcs" +"stock_reorder_part_239","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_204","100.0",,"product.product_uom_pcs" +"stock_reorder_part_240","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_205","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_241","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_206","100.0",,"product.product_uom_pcs" +"stock_reorder_part_242","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_207","100.0",,"product.product_uom_pcs" +"stock_reorder_part_243","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_742","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_244","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_743","500.0","250.0","product.product_uom_pcs" +"stock_reorder_part_245","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_744","100.0",,"product.product_uom_pcs" +"stock_reorder_part_246","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_745","100.0",,"product.product_uom_pcs" +"stock_reorder_part_247","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_746","250.0","100.0","product.product_uom_pcs" +"stock_reorder_part_248","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_747","250.0",,"product.product_uom_pcs" +"stock_reorder_part_249","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_748","150.0",,"product.product_uom_pcs" +"stock_reorder_part_250","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_208","250.0","150.0","product.product_uom_pcs" +"stock_reorder_part_251","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_209","250.0",,"product.product_uom_pcs" +"stock_reorder_part_252","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_210","150.0",,"product.product_uom_pcs" +"stock_reorder_part_253","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_211","250.0","150.0","product.product_uom_pcs" +"stock_reorder_part_254","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_212","250.0",,"product.product_uom_pcs" +"stock_reorder_part_255","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_213","150.0",,"product.product_uom_pcs" +"stock_reorder_part_256","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_214","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_257","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_215","100.0",,"product.product_uom_pcs" +"stock_reorder_part_258","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_216","100.0",,"product.product_uom_pcs" +"stock_reorder_part_259","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_217","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_260","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_218","100.0",,"product.product_uom_pcs" +"stock_reorder_part_261","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_219","100.0",,"product.product_uom_pcs" +"stock_reorder_part_262","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_220",,,"product.product_uom_pcs" +"stock_reorder_part_263","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_221","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_264","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_222","50.0",,"product.product_uom_pcs" +"stock_reorder_part_265","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_223","50.0",,"product.product_uom_pcs" +"stock_reorder_part_266","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_224","250.0","150.0","product.product_uom_pcs" +"stock_reorder_part_267","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_225","100.0",,"product.product_uom_pcs" +"stock_reorder_part_268","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_226","100.0",,"product.product_uom_pcs" +"stock_reorder_part_269","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_227","250.0","150.0","product.product_uom_pcs" +"stock_reorder_part_270","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_228","100.0",,"product.product_uom_pcs" +"stock_reorder_part_271","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_229","100.0",,"product.product_uom_pcs" +"stock_reorder_part_272","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_230","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_273","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_231","100.0",,"product.product_uom_pcs" +"stock_reorder_part_274","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_232","100.0",,"product.product_uom_pcs" +"stock_reorder_part_275","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_233","300.0","250.0","product.product_uom_pcs" +"stock_reorder_part_276","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_234","200.0",,"product.product_uom_pcs" +"stock_reorder_part_277","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_235","100.0",,"product.product_uom_pcs" +"stock_reorder_part_278","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_236","200.0","150.0","product.product_uom_pcs" +"stock_reorder_part_279","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_237",,,"product.product_uom_pcs" +"stock_reorder_part_280","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_238",,,"product.product_uom_pcs" +"stock_reorder_part_281","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_239","200.0","150.0","product.product_uom_pcs" +"stock_reorder_part_282","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_240",,,"product.product_uom_pcs" +"stock_reorder_part_283","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_241",,,"product.product_uom_pcs" +"stock_reorder_part_284","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_749","200.0","150.0","product.product_uom_pcs" +"stock_reorder_part_285","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_750",,,"product.product_uom_pcs" +"stock_reorder_part_286","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_751",,,"product.product_uom_pcs" +"stock_reorder_part_287","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_242",,,"product.product_uom_pcs" +"stock_reorder_part_288","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_243",,,"product.product_uom_pcs" +"stock_reorder_part_289","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_244",,,"product.product_uom_pcs" +"stock_reorder_part_290","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_245","200.0","150.0","product.product_uom_pcs" +"stock_reorder_part_291","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_246",,,"product.product_uom_pcs" +"stock_reorder_part_292","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_247",,,"product.product_uom_pcs" +"stock_reorder_part_293","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_248",,,"product.product_uom_pcs" +"stock_reorder_part_294","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_249","200.0","150.0","product.product_uom_pcs" +"stock_reorder_part_295","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_250","350.0","250.0","product.product_uom_pcs" +"stock_reorder_part_296","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_251","200.0","150.0","product.product_uom_pcs" +"stock_reorder_part_297","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_252",,,"product.product_uom_pcs" +"stock_reorder_part_298","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_253",,,"product.product_uom_pcs" +"stock_reorder_part_299","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_254","200.0","150.0","product.product_uom_pcs" +"stock_reorder_part_300","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_255",,,"product.product_uom_pcs" +"stock_reorder_part_301","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_256",,,"product.product_uom_pcs" +"stock_reorder_part_302","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_257","200.0","150.0","product.product_uom_pcs" +"stock_reorder_part_303","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_258",,,"product.product_uom_pcs" +"stock_reorder_part_304","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_259",,,"product.product_uom_pcs" +"stock_reorder_part_305","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_260","350.0","250.0","product.product_uom_pcs" +"stock_reorder_part_306","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_261","350.0","250.0","product.product_uom_pcs" +"stock_reorder_part_307","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_262","200.0","150.0","product.product_uom_pcs" +"stock_reorder_part_308","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_263","200.0","150.0","product.product_uom_pcs" +"stock_reorder_part_309","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_264","200.0","150.0","product.product_uom_pcs" +"stock_reorder_part_310","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_265","300.0","250.0","product.product_uom_pcs" +"stock_reorder_part_311","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_266",,,"product.product_uom_pcs" +"stock_reorder_part_312","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_267",,,"product.product_uom_pcs" +"stock_reorder_part_313","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_268",,,"product.product_uom_pcs" +"stock_reorder_part_314","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_269",,,"product.product_uom_pcs" +"stock_reorder_part_315","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_270",,,"product.product_uom_pcs" +"stock_reorder_part_316","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_271",,,"product.product_uom_pcs" +"stock_reorder_part_317","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_272",,,"product.product_uom_pcs" +"stock_reorder_part_318","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_273",,,"product.product_uom_pcs" +"stock_reorder_part_319","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_274",,,"product.product_uom_pcs" +"stock_reorder_part_320","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_275",,,"product.product_uom_pcs" +"stock_reorder_part_321","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_276","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_322","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_277","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_323","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_279","5000.0","2000.0","product.product_uom_pcs" +"stock_reorder_part_324","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_280","5000.0","2000.0","product.product_uom_pcs" +"stock_reorder_part_325","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_281","5000.0","2000.0","product.product_uom_pcs" +"stock_reorder_part_326","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_282","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_327","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_283","5000.0","2000.0","product.product_uom_pcs" +"stock_reorder_part_328","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_284","5000.0","2000.0","product.product_uom_pcs" +"stock_reorder_part_329","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_285","20.0","10.0","product.product_uom_set" +"stock_reorder_part_330","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_286","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_331","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_287","100000.0","20000.0","product.product_uom_pcs" +"stock_reorder_part_332","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_288","100000.0","20000.0","product.product_uom_pcs" +"stock_reorder_part_333","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_289","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_334","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_290","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_335","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_291","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_336","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_292","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_337","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_293","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_338","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_294","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_339","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_295","3000.0","1500.0","product.product_uom_pcs" +"stock_reorder_part_340","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_296","1000.0","500.0","product.product_uom_meter" +"stock_reorder_part_341","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_297","300.0","100.0","product.product_uom_tube" +"stock_reorder_part_342","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_297","100.0","50.0","product.product_uom_tube" +"stock_reorder_part_343","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_298","380.0","190.0","product.product_uom_meter" +"stock_reorder_part_344","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_298","760.0","380.0","product.product_uom_meter" +"stock_reorder_part_345","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_298","760.0","380.0","product.product_uom_meter" +"stock_reorder_part_346","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_299","380.0","190.0","product.product_uom_meter" +"stock_reorder_part_347","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_299","760.0","380.0","product.product_uom_meter" +"stock_reorder_part_348","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_299","760.0","380.0","product.product_uom_meter" +"stock_reorder_part_349","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_300","180.0","54.0","product.product_uom_kgm" +"stock_reorder_part_350","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_301","50.0","25.0","product.product_uom_rolls" +"stock_reorder_part_351","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_302","500.0","200.0","product.product_uom_meter" +"stock_reorder_part_352","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_303","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_353","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_304","50.0","20.0","product.product_uom_set" +"stock_reorder_part_354","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_305","100.0","40.0","product.product_uom_set" +"stock_reorder_part_355","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_306","20.0","10.0","product.product_uom_set" +"stock_reorder_part_356","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_307","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_357","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_308","300.0","150.0","product.product_uom_pcs" +"stock_reorder_part_358","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_309","20.0","5.0","product.product_uom_set" +"stock_reorder_part_359","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_310","50.0","20.0","product.product_uom_set" +"stock_reorder_part_360","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_311",,"5.0","product.product_uom_set" +"stock_reorder_part_361","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_312","20.0","5.0","product.product_uom_set" +"stock_reorder_part_362","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_313","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_363","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_314","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_364","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_315","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_365","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_316","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_366","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_317","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_367","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_318","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_368","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_319","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_369","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_320","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_370","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_321","50.0","20.0","product.product_uom_set" +"stock_reorder_part_371","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_322","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_372","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_323","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_373","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_324",,,"product.product_uom_pcs" +"stock_reorder_part_374","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_325","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_375","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_326","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_376","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_327","600.0","200.0","product.product_uom_meter" +"stock_reorder_part_377","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_328","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_378","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_329","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_379","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_330",,,"product.product_uom_pcs" +"stock_reorder_part_380","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_331","300.0","150.0","product.product_uom_tube" +"stock_reorder_part_381","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_332","1000.0",,"product.product_uom_pcs" +"stock_reorder_part_382","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_333","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_383","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_334","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_384","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_335","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_385","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_336","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_386","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_337","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_387","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_338","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_388","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_339","300.0","100.0","product.product_uom_meter" +"stock_reorder_part_389","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_340","400.0","200.0","product.product_uom_pcs" +"stock_reorder_part_390","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_341","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_391","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_342","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_392","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_343","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_393","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_344","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_394","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_345","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_395","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_346","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_396","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_347","10.0","5.0","product.product_uom_set" +"stock_reorder_part_397","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_348","20.0","5.0","product.product_uom_pcs" +"stock_reorder_part_398","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_348","20.0","5.0","product.product_uom_pcs" +"stock_reorder_part_399","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_349","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_400","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_350","20.0","15.0","product.product_uom_pcs" +"stock_reorder_part_401","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_351","20.0","20.0","product.product_uom_pcs" +"stock_reorder_part_402","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_352","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_403","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_353","50.0",,"product.product_uom_pcs" +"stock_reorder_part_404","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_354","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_405","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_355","30.0","10.0","product.product_uom_pcs" +"stock_reorder_part_406","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_356","30.0","15.0","product.product_uom_pcs" +"stock_reorder_part_407","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_357","30.0","15.0","product.product_uom_pcs" +"stock_reorder_part_408","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_358","30.0","15.0","product.product_uom_pcs" +"stock_reorder_part_409","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_359","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_410","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_360","30.0","10.0","product.product_uom_pcs" +"stock_reorder_part_411","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_361","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_412","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_362","200.0","100.0","product.product_uom_set" +"stock_reorder_part_413","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_363","100.0",,"product.product_uom_pcs" +"stock_reorder_part_414","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_364","100.0",,"product.product_uom_meter" +"stock_reorder_part_415","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_365","1000.0",,"product.product_uom_pcs" +"stock_reorder_part_416","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_366","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_417","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_367","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_418","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_368","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_419","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_369","100.0","40.0","product.product_uom_pcs" +"stock_reorder_part_420","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_370","20.0",,"product.product_uom_pcs" +"stock_reorder_part_421","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_371","500.0",,"product.product_uom_pcs" +"stock_reorder_part_422","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_372","100.0","50.0","product.product_uom_rolls" +"stock_reorder_part_423","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_373","30.0","15.0","product.product_uom_pcs" +"stock_reorder_part_424","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_374","200.0","50.0","product.product_uom_pcs" +"stock_reorder_part_425","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_375","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_426","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_376","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_427","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_377","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_428","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_378","20000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_429","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_379","20000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_430","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_380","180.0","60.0","product.product_uom_pcs" +"stock_reorder_part_431","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_380",,,"product.product_uom_pcs" +"stock_reorder_part_432","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_381","10.0","4.0","product.product_uom_set" +"stock_reorder_part_433","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_382","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_434","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_383","50.0","20.0","product.product_uom_rolls" +"stock_reorder_part_435","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_383",,"20.0","product.product_uom_rolls" +"stock_reorder_part_436","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_384","500.0","100.0","product.product_uom_pcs" +"stock_reorder_part_437","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_385","50.0","20.0","product.product_uom_pcs" +"stock_reorder_part_438","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_386","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_439","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_387","50.0","20.0","product.product_uom_pcs" +"stock_reorder_part_440","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_388","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_441","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_389","2000.0","1000.0","product.product_uom_tube" +"stock_reorder_part_442","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_389","20.0",,"product.product_uom_tube" +"stock_reorder_part_443","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_390","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_444","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_390","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_445","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_391","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_446","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_392","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_447","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_393","20.0","10.0","product.product_uom_pcs" +"stock_reorder_part_448","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_394","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_449","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_395","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_450","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_396","500.0","200.0","product.product_uom_set" +"stock_reorder_part_451","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_397","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_452","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_398","3000.0","1000.0","product.product_uom_meter" +"stock_reorder_part_453","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_399","100.0",,"product.product_uom_set" +"stock_reorder_part_454","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_400","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_455","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_401","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_456","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_402","400.0","200.0","product.product_uom_pcs" +"stock_reorder_part_457","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_403","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_458","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_404","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_459","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_405","500.0","200.0","product.product_uom_set" +"stock_reorder_part_460","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_406","500.0","200.0","product.product_uom_set" +"stock_reorder_part_461","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_407",,,"product.product_uom_pcs" +"stock_reorder_part_462","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_408","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_463","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_409","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_464","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_410","400.0","200.0","product.product_uom_pcs" +"stock_reorder_part_465","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_411",,,"product.product_uom_pcs" +"stock_reorder_part_466","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_412","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_467","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_413","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_468","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_414","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_469","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_415","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_470","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_416","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_471","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_417","1000.0","300.0","product.product_uom_pcs" +"stock_reorder_part_472","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_418","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_473","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_419","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_474","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_420","100.0",,"product.product_uom_set" +"stock_reorder_part_475","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_421","100.0",,"product.product_uom_set" +"stock_reorder_part_476","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_422","500.0",,"product.product_uom_pcs" +"stock_reorder_part_477","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_423","2000.0","500.0","product.product_uom_meter" +"stock_reorder_part_478","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_424","2000.0","500.0","product.product_uom_meter" +"stock_reorder_part_479","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_425","1000.0","300.0","product.product_uom_pcs" +"stock_reorder_part_480","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_426","10000.0","3000.0","product.product_uom_pcs" +"stock_reorder_part_481","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_427",,,"product.product_uom_meter" +"stock_reorder_part_482","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_428","1000.0","300.0","product.product_uom_pcs" +"stock_reorder_part_483","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_429","1000.0","500.0","product.product_uom_meter" +"stock_reorder_part_484","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_430","1000.0","500.0","product.product_uom_set" +"stock_reorder_part_485","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_431","1000.0","500.0","product.product_uom_set" +"stock_reorder_part_486","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_432","500.0","300.0","product.product_uom_set" +"stock_reorder_part_487","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_433","100.0","80.0","product.product_uom_pcs" +"stock_reorder_part_488","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_434","100.0","36.0","product.product_uom_pcs" +"stock_reorder_part_489","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_435","500.0","150.0","product.product_uom_pcs" +"stock_reorder_part_490","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_436","500.0","150.0","product.product_uom_pcs" +"stock_reorder_part_491","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_437","500.0","150.0","product.product_uom_pcs" +"stock_reorder_part_492","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_438","500.0","150.0","product.product_uom_pcs" +"stock_reorder_part_493","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_439","500.0","150.0","product.product_uom_pcs" +"stock_reorder_part_494","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_440","500.0","150.0","product.product_uom_pcs" +"stock_reorder_part_495","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_441","500.0","150.0","product.product_uom_pcs" +"stock_reorder_part_496","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_442","500.0","100.0","product.product_uom_pcs" +"stock_reorder_part_497","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_443","10.0","10.0","product.product_uom_rolls" +"stock_reorder_part_498","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_444","150.0","50.0","product.product_uom_set" +"stock_reorder_part_499","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_445","150.0","50.0","product.product_uom_pcs" +"stock_reorder_part_500","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_446","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_501","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_447","500.0","5.0","product.product_uom_pcs" +"stock_reorder_part_502","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_448","20.0","12.0","product.product_uom_gal" +"stock_reorder_part_503","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_449","200.0","100.0","product.product_uom_set" +"stock_reorder_part_504","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_450","300.0","200.0","product.product_uom_set" +"stock_reorder_part_505","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_451","50000.0","10000.0","product.product_uom_pcs" +"stock_reorder_part_506","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_452","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_507","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_453","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_508","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_454","5000.0","2000.0","product.product_uom_pcs" +"stock_reorder_part_509","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_455","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_510","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_456","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_511","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_457","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_512","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_458","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_513","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_459","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_514","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_460","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_515","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_461","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_516","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_462","300.0","150.0","product.product_uom_rolls" +"stock_reorder_part_517","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_463","300.0","150.0","product.product_uom_rolls" +"stock_reorder_part_518","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_464","30.0","10.0","product.product_uom_rolls" +"stock_reorder_part_519","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_465","200.0","100.0","product.product_uom_set" +"stock_reorder_part_520","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_466","30.0","15.0","product.product_uom_pcs" +"stock_reorder_part_521","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_467","500.0","250.0","product.product_uom_rolls" +"stock_reorder_part_522","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_468","100.0","40.0","product.product_uom_rolls" +"stock_reorder_part_523","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_469","20.0","10.0","product.product_uom_gal" +"stock_reorder_part_524","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_470","20.0","10.0","product.product_uom_gal" +"stock_reorder_part_525","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_471","1500.0","800.0","product.product_uom_set" +"stock_reorder_part_526","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_472",,,"product.product_uom_pcs" +"stock_reorder_part_527","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_473","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_528","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_474","1000.0","300.0","product.product_uom_pcs" +"stock_reorder_part_529","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_475","100.0","50.0","product.product_uom_set" +"stock_reorder_part_530","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_476","30.0","20.0","product.product_uom_pcs" +"stock_reorder_part_531","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_477","100.0","70.0","product.product_uom_rolls" +"stock_reorder_part_532","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_478","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_533","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_479","20.0","10.0","product.product_uom_kgm" +"stock_reorder_part_534","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_480","100.0","50.0","product.product_uom_rolls" +"stock_reorder_part_535","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_481","300.0","250.0","product.product_uom_rolls" +"stock_reorder_part_536","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_482","6.0","3.0","product.product_uom_kgm" +"stock_reorder_part_537","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_483","10000.0","6000.0","product.product_uom_pcs" +"stock_reorder_part_538","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_483","10000.0","6000.0","product.product_uom_pcs" +"stock_reorder_part_539","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_484","80.0","20.0","product.product_uom_rolls" +"stock_reorder_part_540","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_484",,"20.0","product.product_uom_rolls" +"stock_reorder_part_541","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_485","1000.0","300.0","product.product_uom_meter" +"stock_reorder_part_542","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_486","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_543","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_487","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_544","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_488","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_545","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_489","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_546","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_490","300.0","120.0","product.product_uom_meter" +"stock_reorder_part_547","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_491","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_548","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_492","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_549","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_493","100.0","20.0","product.product_uom_pcs" +"stock_reorder_part_550","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_494","7000.0","1000.0","product.product_uom_pcs" +"stock_reorder_part_551","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_495","500.0","100.0","product.product_uom_pcs" +"stock_reorder_part_552","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_496","300.0","80.0","product.product_uom_meter" +"stock_reorder_part_553","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_497",,,"product.product_uom_pcs" +"stock_reorder_part_554","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_498","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_555","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_499","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_556","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_500","3000.0","1000.0","product.product_uom_pcs" +"stock_reorder_part_557","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_501","50.0","50.0","product.product_uom_pcs" +"stock_reorder_part_558","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_502","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_559","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_503","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_560","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_504","300.0","200.0","product.product_uom_kgm" +"stock_reorder_part_561","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_505","50.0","20.0","product.product_uom_pcs" +"stock_reorder_part_562","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_506","10.0","4.0","product.product_uom_pcs" +"stock_reorder_part_563","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_507","150.0","80.0","product.product_uom_pcs" +"stock_reorder_part_564","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_508","150.0","80.0","product.product_uom_pcs" +"stock_reorder_part_565","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_509","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_566","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_510","150.0","80.0","product.product_uom_pcs" +"stock_reorder_part_567","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_511","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_568","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_512","40.0","24.0","product.product_uom_pcs" +"stock_reorder_part_569","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_513","40.0","24.0","product.product_uom_pcs" +"stock_reorder_part_570","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_514","50.0","24.0","product.product_uom_pcs" +"stock_reorder_part_571","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_515","50.0","24.0","product.product_uom_pcs" +"stock_reorder_part_572","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_516","50.0","24.0","product.product_uom_pcs" +"stock_reorder_part_573","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_517","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_574","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_518","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_575","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_519","100.0","80.0","product.product_uom_pcs" +"stock_reorder_part_576","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_520","100.0","40.0","product.product_uom_pcs" +"stock_reorder_part_577","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_521","10.0",,"product.product_uom_pcs" +"stock_reorder_part_578","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_522","10.0","2.0","product.product_uom_pcs" +"stock_reorder_part_579","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_523","10.0","2.0","product.product_uom_pcs" +"stock_reorder_part_580","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_524","50.0","20.0","product.product_uom_pcs" +"stock_reorder_part_581","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_525","50.0","20.0","product.product_uom_pcs" +"stock_reorder_part_582","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_526","50.0","20.0","product.product_uom_pcs" +"stock_reorder_part_583","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_527","50.0","20.0","product.product_uom_pcs" +"stock_reorder_part_584","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_528","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_585","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_529","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_586","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_530","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_587","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_531","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_588","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_532","40.0",,"product.product_uom_pcs" +"stock_reorder_part_589","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_533","40.0",,"product.product_uom_pcs" +"stock_reorder_part_590","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_534","60.0","40.0","product.product_uom_pcs" +"stock_reorder_part_591","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_535","40.0","20.0","product.product_uom_pcs" +"stock_reorder_part_592","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_536","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_593","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_537","5000.0","2000.0","product.product_uom_pcs" +"stock_reorder_part_594","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_538","30.0","12.0","product.product_uom_pcs" +"stock_reorder_part_595","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_539","30.0","12.0","product.product_uom_pcs" +"stock_reorder_part_596","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_540","5.0","2.0","product.product_uom_pcs" +"stock_reorder_part_597","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_541","5.0","2.0","product.product_uom_pcs" +"stock_reorder_part_598","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_542",,,"product.product_uom_pcs" +"stock_reorder_part_599","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_543","3000.0","1000.0","product.product_uom_pcs" +"stock_reorder_part_600","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_544","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_601","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_545","30.0","12.0","product.product_uom_pcs" +"stock_reorder_part_602","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_546","30.0","12.0","product.product_uom_pcs" +"stock_reorder_part_603","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_547","100.0","5.0","product.product_uom_pcs" +"stock_reorder_part_604","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_753",,,"product.product_uom_pcs" +"stock_reorder_part_605","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_754",,,"product.product_uom_pcs" +"stock_reorder_part_606","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_755",,,"product.product_uom_pcs" +"stock_reorder_part_607","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_756",,,"product.product_uom_pcs" +"stock_reorder_part_608","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_757",,,"product.product_uom_pcs" +"stock_reorder_part_609","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_758",,,"product.product_uom_pcs" +"stock_reorder_part_610","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_759",,,"product.product_uom_pcs" +"stock_reorder_part_611","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_760",,,"product.product_uom_pcs" +"stock_reorder_part_612","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_761",,,"product.product_uom_pcs" +"stock_reorder_part_613","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_548","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_614","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_549","20.0","8.0","product.product_uom_pcs" +"stock_reorder_part_615","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_550","60.0","24.0","product.product_uom_pcs" +"stock_reorder_part_616","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_551","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_617","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_552","60.0","24.0","product.product_uom_pcs" +"stock_reorder_part_618","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_553","100.0","20.0","product.product_uom_kgm" +"stock_reorder_part_619","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_554","1000.0","600.0","product.product_uom_pcs" +"stock_reorder_part_620","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_555","100.0","20.0","product.product_uom_kgm" +"stock_reorder_part_621","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_555","100.0","20.0","product.product_uom_kgm" +"stock_reorder_part_622","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_556","500.0","200.0","product.product_uom_pcs" +"stock_reorder_part_623","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_557",,,"product.product_uom_pcs" +"stock_reorder_part_624","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_558",,,"product.product_uom_pcs" +"stock_reorder_part_625","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_559","10.0","5.0","product.product_uom_pcs" +"stock_reorder_part_626","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_559","10.0","5.0","product.product_uom_pcs" +"stock_reorder_part_627","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_560","10.0","5.0","product.product_uom_pcs" +"stock_reorder_part_628","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_561","300.0","150.0","product.product_uom_meter" +"stock_reorder_part_629","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_562",,,"product.product_uom_pcs" +"stock_reorder_part_630","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_562",,,"product.product_uom_pcs" +"stock_reorder_part_631","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_562",,,"product.product_uom_pcs" +"stock_reorder_part_632","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_562","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_633","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_563","5.0","2.0","product.product_uom_kgm" +"stock_reorder_part_634","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_564","5.0","5.0","product.product_uom_gal" +"stock_reorder_part_635","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_565",,,"product.product_uom_pcs" +"stock_reorder_part_636","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_566","150.0","80.0","product.product_uom_pcs" +"stock_reorder_part_637","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_567","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_638","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_568","100.0","50.0","product.product_uom_pcs" +"stock_reorder_part_639","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_569","10.0","5.0","product.product_uom_pcs" +"stock_reorder_part_640","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_570","10.0","5.0","product.product_uom_pcs" +"stock_reorder_part_641","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_571","2.0","1.0","product.product_uom_pcs" +"stock_reorder_part_642","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_572","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_643","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_573","120.0","60.0","product.product_uom_pcs" +"stock_reorder_part_644","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_574","120.0","60.0","product.product_uom_pcs" +"stock_reorder_part_645","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_575","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_646","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_576","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_647","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_577","300.0","100.0","product.product_uom_set" +"stock_reorder_part_648","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_578","100.0","20.0","product.product_uom_kgm" +"stock_reorder_part_649","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_578","100.0","20.0","product.product_uom_kgm" +"stock_reorder_part_650","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_579","300.0",,"product.product_uom_kgm" +"stock_reorder_part_651","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_580","100.0","20.0","product.product_uom_kgm" +"stock_reorder_part_652","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_581","20.0","8.0","product.product_uom_rolls" +"stock_reorder_part_653","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_582","300.0","20.0","product.product_uom_pcs" +"stock_reorder_part_654","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_583","200.0","100.0","product.product_uom_kgm" +"stock_reorder_part_655","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_583","200.0","100.0","product.product_uom_kgm" +"stock_reorder_part_656","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_584","500.0","300.0","product.product_uom_kgm" +"stock_reorder_part_657","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_585",,,"product.product_uom_kgm" +"stock_reorder_part_658","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_586","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_659","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_587",,,"product.product_uom_pcs" +"stock_reorder_part_660","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_588",,,"product.product_uom_pcs" +"stock_reorder_part_661","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_589","10.0",,"product.product_uom_kgm" +"stock_reorder_part_662","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_590","10.0","5.0","product.product_uom_kgm" +"stock_reorder_part_663","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_591","10.0","5.0","product.product_uom_kgm" +"stock_reorder_part_664","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_592",,,"product.product_uom_pcs" +"stock_reorder_part_665","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_593","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_666","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_594","50.0","30.0","product.product_uom_pcs" +"stock_reorder_part_667","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_595","200.0","50.0","product.product_uom_set" +"stock_reorder_part_668","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_596","200.0","50.0","product.product_uom_set" +"stock_reorder_part_669","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_597","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_670","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_597","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_671","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_598","1000.0","300.0","product.product_uom_pcs" +"stock_reorder_part_672","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_598","1000.0","300.0","product.product_uom_pcs" +"stock_reorder_part_673","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_598","1000.0","300.0","product.product_uom_pcs" +"stock_reorder_part_674","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_599","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_675","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_600","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_676","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_601","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_677","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_602","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_678","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_603","80.0","20.0","product.product_uom_kgm" +"stock_reorder_part_679","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_604","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_680","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_605","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_681","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_606","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_682","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_607","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_683","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_607","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_684","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_608","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_685","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_608","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_686","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_609","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_687","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_609","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_688","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_610","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_689","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_611","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_690","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_611","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_691","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_612","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_692","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_613","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_693","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_614","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_694","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_615","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_695","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_616","30000.0","20000.0","product.product_uom_pcs" +"stock_reorder_part_696","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_617","30000.0","20000.0","product.product_uom_pcs" +"stock_reorder_part_697","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_618","50000.0","10000.0","product.product_uom_pcs" +"stock_reorder_part_698","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_619","50000.0","10000.0","product.product_uom_pcs" +"stock_reorder_part_699","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_620","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_700","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_621","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_701","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_622","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_702","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_623",,,"product.product_uom_pcs" +"stock_reorder_part_703","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_624","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_704","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_624",,,"product.product_uom_pcs" +"stock_reorder_part_705","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_624",,,"product.product_uom_pcs" +"stock_reorder_part_706","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_624",,,"product.product_uom_pcs" +"stock_reorder_part_707","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_624",,,"product.product_uom_pcs" +"stock_reorder_part_708","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_625","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_709","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_626","3000.0","1000.0","product.product_uom_pcs" +"stock_reorder_part_710","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_627","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_711","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_628","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_712","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_629","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_713","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_630","200.0",,"product.product_uom_pcs" +"stock_reorder_part_714","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_631","300.0","100.0","product.product_uom_pcs" +"stock_reorder_part_715","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_632","1000.0","300.0","product.product_uom_pcs" +"stock_reorder_part_716","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_633","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_717","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_633","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_718","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_634","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_719","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_634","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_720","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_635","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_721","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_635","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_722","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_636",,,"product.product_uom_pcs" +"stock_reorder_part_723","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_637","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_724","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_638","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_725","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_639","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_726","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_640","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_727","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_641","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_728","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_642","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_729","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_643","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_730","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_644","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_731","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_645","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_732","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_646","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_733","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_647","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_734","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_647","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_735","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_648","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_736","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_649","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_737","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_650","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_738","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_651","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_739","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_652","1000.0","500.0","product.product_uom_set" +"stock_reorder_part_740","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_653","2000.0",,"product.product_uom_set" +"stock_reorder_part_741","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_654","1000.0","500.0","product.product_uom_set" +"stock_reorder_part_742","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_655","500.0","300.0","product.product_uom_set" +"stock_reorder_part_743","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_656","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_744","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_657","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_745","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_658","2000.0","1000.0","product.product_uom_pcs" +"stock_reorder_part_746","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_659","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_747","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_660","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_748","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_661","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_749","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_662","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_750","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_663","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_751","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_664","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_752","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_665","2000.0","1000.0","product.product_uom_pcs" +"stock_reorder_part_753","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_666","1000.0","300.0","product.product_uom_pcs" +"stock_reorder_part_754","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_667","2000.0","1000.0","product.product_uom_pcs" +"stock_reorder_part_755","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_668","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_756","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_669","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_757","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_669","500.0","300.0","product.product_uom_pcs" +"stock_reorder_part_758","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_670","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_759","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_671","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_760","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_671","10000.0","5000.0","product.product_uom_pcs" +"stock_reorder_part_761","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_672","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_762","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_673","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_763","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_674","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_764","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_675","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_765","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_676","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_766","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_677","200.0","100.0","product.product_uom_set" +"stock_reorder_part_767","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_678","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_768","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_679","300.0","200.0","product.product_uom_pcs" +"stock_reorder_part_769","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_680","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_770","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_681","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_771","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_681","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_772","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_682","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_773","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_683","1000.0","500.0","product.product_uom_pcs" +"stock_reorder_part_774","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_684","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_775","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_685","200.0","100.0","product.product_uom_pcs" +"stock_reorder_part_776","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_687","30.0","30.0","product.product_uom_kgm" +"stock_reorder_part_777","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_687",,,"product.product_uom_kgm" +"stock_reorder_part_778","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_687",,,"product.product_uom_kgm" +"stock_reorder_part_779","sqp_config_2.warehouse_factory_rm","sqp_config_2.stock_location_factory_rm","product.product_part_688","50.0","30.0","product.product_uom_kgm" diff --git "a/sqp_config/master/product_reorder/\340\270\243\340\270\262\340\270\242\340\270\207\340\270\262\340\270\231 Storage location.xls" "b/sqp_config/master/product_reorder/\340\270\243\340\270\262\340\270\242\340\270\207\340\270\262\340\270\231 Storage location.xls" new file mode 100755 index 0000000..87d6427 Binary files /dev/null and "b/sqp_config/master/product_reorder/\340\270\243\340\270\262\340\270\242\340\270\207\340\270\262\340\270\231 Storage location.xls" differ diff --git "a/sqp_config/master/product_reorder/\340\270\243\340\270\262\340\270\242\340\270\207\340\270\262\340\270\231 safe stock.xls" "b/sqp_config/master/product_reorder/\340\270\243\340\270\262\340\270\242\340\270\207\340\270\262\340\270\231 safe stock.xls" new file mode 100755 index 0000000..16c611a Binary files /dev/null and "b/sqp_config/master/product_reorder/\340\270\243\340\270\262\340\270\242\340\270\207\340\270\262\340\270\231 safe stock.xls" differ diff --git a/sqp_config/master/sales_person_user_data.xml b/sqp_config/master/sales_person_user_data.xml new file mode 100755 index 0000000..b3a02ce --- /dev/null +++ b/sqp_config/master/sales_person_user_data.xml @@ -0,0 +1,147 @@ + + + + + + + Chairat S. + + + 0-2744-6300-2 + 081-497-3284 + chairat@squarepanel.com + + + + chairat + chairat + -- +Mr Chairat S. + + + + + + + + Chatchai T. + + + 0-2744-6300-2 + 081-554-4097 + chatchai@squarepanel.com + + + + chatchai + chatchai + -- +Mr Chatchai T. + + + + + + + + Dusit T. + + + 0-2744-6300-2 + 081-424-1488 + dusit@squarepanel.com + + + + dusit + dusit + -- +Mr Dusit T. + + + + + + + + + Somboon T. + + + 0-2744-6300-2 + 081-840-1389 + somboon@squarepanel.com + + + + somboon + somboon + -- +Mr Somboon T. + + + + + + + + Surasak S. + + + 0-2744-6300-2 + 089-773-8744 + surasak@squarepanel.com + + + + surasak + surasak + -- +Mr Surasak S. + + + + + + + + Visak T. + + + 0-2744-6300-2 + 081-8486793 + visak@squarepanel.com + + + + visak + visak + -- +Mr Visak T. + + + + + + + + Weeranuwat S. + + + 0-2744-6300- + 089-780-7891 + weeranuwat@squarepanel.com + + + + weeranuwat + weeranuwat + -- +Mr Weeranuwat S. + + + + + + + diff --git a/sqp_config/master/supplier/res.partner.csv b/sqp_config/master/supplier/res.partner.csv new file mode 100755 index 0000000..03179f1 --- /dev/null +++ b/sqp_config/master/supplier/res.partner.csv @@ -0,0 +1,1025 @@ +"id","name","ref","is_company","customer","supplier","parent_id_NOT_USE","parent_id/id","type","use_parent_address","street","street2","zip","city","country_id","phone","mobile","fax","email","category_id","website","comment","property_supplier_payment_term","LEAD_TIME","vat","branch" +"res_partner_aluminum_1","บริษัท เค.ซี.(กระทุ่มแบน) อุตสาหกรรม จำกัด","SP01S001","TRUE","FALSE","TRUE",,,"Default","FALSE","107 หมู่ 10","ต.คลองมะเดือ อ.กระทุ่มแบน",,"สมุทรสาคร","Thailand","0-2878-0432-6",,"0-2468-3728",,"ALUMINIUM",,"Aluminium","Cash",21,, +"res_partner_aluminum_2","บริษัท ซิมเมอร์ เมตัล สแตนดาร์ด จำกัด","SP01S002","TRUE","FALSE","TRUE",,,"Default","FALSE","1/4 ม.7","ต.บ้านแถว อ.เสนา",13110,"พระนครศรีอยุธยา","Thailand","02-6176025-6 /081-6856926",,"02-2721546, 2720877",,"ALUMINIUM",,"Aluminium","45 Days",21,, +"res_partner_aluminum_3","ปราวีณา / จิน",,"FALSE","FALSE","TRUE","บริษัท ซิมเมอร์ เมตัล สแตนดาร์ด จำกัด","res_partner_aluminum_2","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_aluminum_4","บริษัท ไทยเม็ททอล จำกัด","SP01S003","TRUE","FALSE","TRUE",,,"Default","FALSE","205 ม.2 ถ.บางปิ้ง-แพรกษา (พุทธรักษา)","ต.ท้ายบ้าน อ.เมือง",10280,"สมุทรปราการ","Thailand","02-7029787-91",,"02-7028559",,"ALUMINIUM",,"Aluminium","60 Days",21,, +"res_partner_aluminum_5","คุณกชพร",,"FALSE","FALSE","TRUE","บริษัท ไทยเม็ททอล จำกัด","res_partner_aluminum_4","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_aluminum_6","บริษัท พรนครินทร์ อลูมินั่ม จำกัด","SP01S004","TRUE","FALSE","TRUE",,,"Default","FALSE","407/25-27 ม.5 ถนนศรีนครินทร์","ตำบลสำโรงเหนือ อำเภอเมือง",10270,"สมุทรปราการ","Thailand","02-3857871, 02-7587372",,"02-3857871, 02-7587372",,"ALUMINIUM",,"Aluminium ( สำเร็จรูป , PART ขายตามท้องตลาด)","15 Days",7,, +"res_partner_aluminum_7","คุณอัมพร",,"FALSE","FALSE","TRUE","บริษัท พรนครินทร์ อลูมินั่ม จำกัด","res_partner_aluminum_6","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_aluminum_8","บริษัท รัตนดำรงค์ จำกัด","SP01S005","TRUE","FALSE","TRUE",,,"Default","FALSE","258 หมู่ 4 ซอย ว.ป.อ. 11 ( พิเศษ) ถ.เศรษฐกิจ 1","ต.ท่าไม้ อ.กระทุ่มแบน",,"สมุทรสาคร","Thailand","02 - 810 0179-80 ,02-429 1929",,"02 - 4291929 ",,"ALUMINIUM",,"Aluminium","45 Days",21,, +"res_partner_aluminum_9","คุณสะรากรณ์",,"FALSE","FALSE","TRUE","บริษัท รัตนดำรงค์ จำกัด","res_partner_aluminum_8","Contact","TRUE",,,,,"Thailand",,"0-81 331 1687 ",,,,,,,,, +"res_partner_aluminum_10","บริษัท แอลเมทไทย จำกัด","SP01S006","TRUE","FALSE","TRUE",,,"Default","FALSE","235 ม.7 ถ.สุขุมวิท กม35","ต.บางปูใหม่ อ.เมือง",,"สมุทรปราการ","Thailand","02 - 323 2635 - 40 , 02 - 709 5608 -11",,"02-709 5607",,"ALUMINIUM",,"Aluminium","30 Days",21,, +"res_partner_aluminum_11","คุณพิสิต",,"FALSE","FALSE","TRUE","บริษัท แอลเมทไทย จำกัด","res_partner_aluminum_10","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_aluminum_12","ร้านสมานมิตร","SP01S007","TRUE","FALSE","TRUE",,,"Default","FALSE","802 หมู่ 1","ต.พนมสารคาม อ.พนมสารคาม",,"ฉะเชิงเทรา","Thailand"," (038)883 9191",," (038)883 9191",,"ALUMINIUM",,"Aluminium ( สำเร็จรูป , PART ขายตามท้องตลาด)","Cash",3,, +"res_partner_aluminum_13","คุณไพรวัลย์",,"FALSE","FALSE","TRUE","ร้านสมานมิตร","res_partner_aluminum_12","Contact","TRUE",,,,,"Thailand",,"089-964 0222",,,,,,,,, +"res_partner_pvc_1","KRUNGTEP UNION MFG. CO.,LTD.","SP04S001","TRUE","FALSE","TRUE",,,"Default","FALSE","47 หมู่ 2 ถ.สุวินทวงศ์","ลำผักชี หนองจอก",10530,"กรุงเทพฯ","Thailand","02-989 7791-4",,"02-989 7878",,"PVC ",,"PVC , ยาง ",,,, +"res_partner_pvc_2","คุณสุนีย์รัตน์",,"FALSE","FALSE","TRUE","KRUNGTEP UNION MFG. CO.,LTD.","res_partner_pvc_1","Contact","TRUE",,,,,"Thailand",,"081 - 1701490",,,,,,,,, +"res_partner_pvc_3","บริษัท เอส. จี สยาม จำกัด","SP04S002","TRUE","FALSE","TRUE",,,"Default","FALSE","11/272-272 ม.10 ถ.เอกชัย","แขวงบางบอน เขตบางบอน",10150,"กรุงเทพฯ","Thailand","02 - 895 0545 -6 ",,"02 - 895 3029 ",,"PVC ",,"PVC , ยาง ","Cash",,, +"res_partner_pvc_4","คุณหน่อย",,"FALSE","FALSE","TRUE","บริษัท เอส. จี สยาม จำกัด","res_partner_pvc_3","Contact","TRUE",,,,,"Thailand",,"089-4949485",,,,,,,,, +"res_partner_pvc_5","บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด","SP04S003","TRUE","FALSE","TRUE",,,"Default","FALSE","4/7 ม.9","ต.นาดี อ.เมืองสมุทรสาคร",74000,"สมุทรสาคร","Thailand","034-466011-6",,"034-466017-8",,"PVC ",,"PVC , ยาง ","30 Days",,, +"res_partner_pvc_6","คุณทักษิณ",,"FALSE","FALSE","TRUE","บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด","res_partner_pvc_5","Contact","TRUE",,,,,"Thailand",,"01-9099456",,,,,,,,, +"res_partner_pvc_7","คุณเสริมศักดิ์",,"FALSE","FALSE","TRUE","บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด","res_partner_pvc_5","Contact","TRUE",,,,,"Thailand",,"081-6301569",,,,,,,,, +"res_partner_pvc_8","คุณบี",,"FALSE","FALSE","TRUE","บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด","res_partner_pvc_5","Contact","TRUE",,,,,"Thailand",,"06-3247323",,,,,,,,, +"res_partner_pvc_9","คุณศิริรัตน์-CN",,"FALSE","FALSE","TRUE","บริษัท อินเตอร์ไพรส์ บุษราคัม โปรพลาส จำกัด","res_partner_pvc_5","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_pvc_10","บริษัท ซิลเวอร์โกลด์ พลาสติก จำกัด","SP04S004","TRUE","FALSE","TRUE",,,"Default","FALSE","81/70-72 ม.20 (ไทรอัมพ์ เซ็นเตอร์) ถ.เทพารักษ์ กม.12","ต.บางพลีใหญ่ อ.บางพลี",10540,"สมุทรปราการ","Thailand","01-3183339 / 02-3129720-22",,"02-3129723",,"PVC ",,"PVC , ยาง ","30 Days",,, +"res_partner_pvc_11","คุณคฑาวุธ",,"FALSE","FALSE","TRUE","บริษัท ซิลเวอร์โกลด์ พลาสติก จำกัด","res_partner_pvc_10","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_1","บริษัท เซ้าท์ ซิตี้ ปิโตรเคม จำกัด","SP04S001","TRUE","FALSE","TRUE",,,"Default","FALSE","99/1 ม.8 ถ.ทางหลวงหมายเลข 3191","ต.มาบข่า กิ่ง อ.นิคมพัฒนา",21180,"ระยอง","Thailand","0-2717-1730-48 : 324","01-8899240","0-2717-1750",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX (DOP น้ำยาล้างเครื่องฉีดโฟม)",,"-",, +"res_partner_rawmat_2","กาญจนา เลิศอัมพรวิทย์",,"FALSE","FALSE","TRUE","บริษัท เซ้าท์ ซิตี้ ปิโตรเคม จำกัด","res_partner_rawmat_1","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_3","บริษัท พรีซีสชั่น เอนยีเนียริ่ง จำกัด","SP04S002","TRUE","FALSE","TRUE",,,"Default","FALSE","153/13 ซ.รองเมือง 3 ถ.รองเมือง","แขวงรองเมือง เขตปทุมวัน",10330,"กรุงเทพฯ","Thailand","04-1457049, 02-2164762, 2165858",,"02-2170214",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX",,"-",, +"res_partner_rawmat_4","คุณเอกรัฐ",,"FALSE","FALSE","TRUE","บริษัท พรีซีสชั่น เอนยีเนียริ่ง จำกัด","res_partner_rawmat_3","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_5","คุณนวลทิพย์",,"FALSE","FALSE","TRUE","บริษัท พรีซีสชั่น เอนยีเนียริ่ง จำกัด","res_partner_rawmat_3","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_6","บริษัท เชลล์แห่งประเทศไทย จำกัด ( Flintkote No.5 )","SP04S003","TRUE","FALSE","TRUE",,,"Default","FALSE","10 ถนนสุนทรโกษา","แขวงคลองเตย เขตคลองเตย",10110,"กรุงเทพฯ","Thailand","0-2249-0491, 0-2262-6341","06-977 5614","0-2249-8334",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX","Cash",7,, +"res_partner_rawmat_7","กิ่งแก้ว สุภูตะโยธิน",,"FALSE","FALSE","TRUE","บริษัท เชลล์แห่งประเทศไทย จำกัด ( Flintkote No.5 )","res_partner_rawmat_6","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_8","บริษัท พรีเทรนเคมี จำกัด ( Methylene Chloride น้ำยาล้างโฟม)","SP04S004","TRUE","FALSE","TRUE",,,"Default","FALSE","127/217 หมู่บ้านสวนทองวิลล่า ถ.รามอินทรา","แขวงคลองกุ่ม เขตบึงกุ่ม",10230,"กรุงเทพฯ","Thailand","09-4990990, 02-9445450-2",,"02-9445454",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX",,"-",, +"res_partner_rawmat_9","คุณจารุวัฒน์",,"FALSE","FALSE","TRUE","บริษัท พรีเทรนเคมี จำกัด ( Methylene Chloride น้ำยาล้างโฟม)","res_partner_rawmat_8","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_10","ห้างหุ้นส่วนจำกัด ฟิแลนโทรป","SP04S005","TRUE","FALSE","TRUE",,,"Default","FALSE","256 ถ.สีลม แขวงสุริยวงศ์ เขตบางรัก กรุงเทพ ฯ 10500","256 ถ.สีลม แขวงสุริยวงศ์ เขตบางรัก",10500,"กรุงเทพฯ","Thailand"," 0-2234-1288, 233-0306 ",,"0-2233-7496",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX","30 Days",5,, +"res_partner_rawmat_11","คุณสุรพงษ์",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ฟิแลนโทรป","res_partner_rawmat_10","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_12","บริษัท เคมเอ็กซ์ จำกัด","SP04S006","TRUE","FALSE","TRUE",,,"Default","FALSE","77/249 อาคารราชเทวีทาวเวอร์ ชั้น 19 ถนนพยาไทย กรุงเทพ ฯ / 1296/4 ถ.ประชาราษฏร์ แขวงบางซื่อ กรุงเทพฯ 10800","77/249 อาคารราชเทวีทาวเวอร์ ชั้น 19 ถนนพยาไทย กรุงเทพ ฯ / 1296/4 ถ.ประชาราษฏร์ แขวงบางซื่อ กรุงเทพฯ 10800",,,"Thailand","0-225 7599,252 9897 ",,"0-2254 4182",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX","30 Days",3,, +"res_partner_rawmat_13","คุณพงษ์เทพ",,"FALSE","FALSE","TRUE","บริษัท เคมเอ็กซ์ จำกัด","res_partner_rawmat_12","Contact","TRUE",,,,,"Thailand"," ","086- 688 5775",,,,,,,,, +"res_partner_rawmat_14","บริษัท แม็คฮิลล์ กรุ๊ป จำกัด","SP04S007","TRUE","FALSE","TRUE",,,"Default","FALSE","69/108 หมู่ที่ 5 ซอยอำนวยโชค ถนนเลียบคลองทวีวัฒนา +บรรทัด :บริษัท แม็คฮิลล์ กรุ๊ป จำกัด","แขวงทวีวัฒนา เขตทวีวัฒนา +บรรทัด :บริษัท แม็คฮิลล์ กรุ๊ป จำกัด",10170,"กรุงเทพฯ","Thailand","0-2814-0291-4 (01-6943256)",,"0-2814-0290",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX ( น้ำยา Wax )",,"-",, +"res_partner_rawmat_15","คุณวิชาย แซ่ลี้",,"FALSE","FALSE","TRUE","บริษัท แม็คฮิลล์ กรุ๊ป จำกัด","res_partner_rawmat_14","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_16","บริษัท อัลติม่า โพลีเมอร์ จำกัด","SP04S008","TRUE","FALSE","TRUE",,,"Default","FALSE","44/5 ม.4 ถ.พหลโยธิน-ลำลูกกา","ต.ลำลูกกา อ.ลำลูกกา",12150,"ปทุมธานี","Thailand","0-2987-1157-9, 01-9259236",,"0-2968-3713",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX ( น้ำยา Wax )",,"-",, +"res_partner_rawmat_17","ณัฐกฤตย์",,"FALSE","FALSE","TRUE","บริษัท อัลติม่า โพลีเมอร์ จำกัด","res_partner_rawmat_16","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_18","ตุ๊กตา",,"FALSE","FALSE","TRUE","บริษัท อัลติม่า โพลีเมอร์ จำกัด","res_partner_rawmat_16","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_19","เตย",,"FALSE","FALSE","TRUE","บริษัท อัลติม่า โพลีเมอร์ จำกัด","res_partner_rawmat_16","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_20","CB MARKETING","SP04S009","TRUE","FALSE","TRUE",,,"Default","FALSE","90 Soi Sangngoen Sukhumvit 55 Rd.","Wattana Bangkok",10110,"กรุงเทพฯ","Thailand"," 02 - 185 0747 ,02 - 185 0749 ",,"02-712 6438",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX ( MC ) ","30 Days",5,, +"res_partner_rawmat_21","คุณปอ",,"FALSE","FALSE","TRUE","CB MARKETING","res_partner_rawmat_20","Contact","TRUE",,,,,"Thailand",,"089-816 3100",,,,,,,,, +"res_partner_rawmat_22","บริษัท โมเดอนเคมีเคิล จำกัด","SP04S010","TRUE","FALSE","TRUE",,,"Default","FALSE","59/5-6 ซ.สุขุมวิท 42 ถ.สุขุมวิท","แขวงพระโขนง เขตคลองเตย กรุงเทพฯ 10110",10110,"กรุงเทพฯ","Thailand","02-7120405-9 /0-1920-9800",,"02-3911571",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX ( MC ) ","60 Days",5,, +"res_partner_rawmat_23","พรทวี",,"FALSE","FALSE","TRUE","บริษัท โมเดอนเคมีเคิล จำกัด","res_partner_rawmat_22","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_24","ห้างหุ้นส่วนจำกัด ดีมาร์ค อาร์ซี.","SP04S011","TRUE","FALSE","TRUE",,,"Default","FALSE","59/742, 744 ม.4 ถ.นิมิตรใหม่","แขวงสามวาตะวันออก เขตคลองสามวา",10510,"กรุงเทพฯ","Thailand","02-9156727, 9157016",,"02-9156970",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX ( กาวขาว กาวดำ ) ","30 Days",3,, +"res_partner_rawmat_25","พงษ์เทพ",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ดีมาร์ค อาร์ซี.","res_partner_rawmat_24","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_26","กรองทิพย์",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ดีมาร์ค อาร์ซี.","res_partner_rawmat_24","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_27","BAYER THAI CO.,LTD.","SP04S012","TRUE","FALSE","TRUE",,,"Default","FALSE","130/1 North Sathon Rd. Silom","Bangrak",10500,"กรุงเทพฯ","Thailand",,,,,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX ( ISO , POLY )","60 Days","ตามข้อตกลง",, +"res_partner_rawmat_28","K.Thanitnun",,"FALSE","FALSE","TRUE","BAYER THAI CO.,LTD.","res_partner_rawmat_27","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_29","บริษัท บัลมอรัล จำกัด","SP04S013","TRUE","FALSE","TRUE",,,"Default","FALSE","46 ซอยรามคำแหง 192","แขวงมีนบุรี เขตมีนบุรี",10510,"กรุงเทพฯ","Thailand","0-2919-4162-3, 9194077",,"0-2919-4163",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX ( ISO , POLY )",,"-",, +"res_partner_rawmat_30","คุณจันคำ กูนวงศ์",,"FALSE","FALSE","TRUE","บริษัท บัลมอรัล จำกัด","res_partner_rawmat_29","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_31","บริษัท บางกอก อินทิเกรเท็ด เทรดดิ้ง จำกัด","SP04S014","TRUE","FALSE","TRUE",,,"Default","FALSE","255 หมู่บ้านทาวน์อินทาวน์ ซ.94 ถ.ลาดพร้าว","แขวง/เขตวังทองหลาง",10310,"กรุงเทพฯ","Thailand","02-5303811-2",,"02-5303846",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX ( ISO , POLY )","90 Days","-",, +"res_partner_rawmat_32","รัตน์",,"FALSE","FALSE","TRUE","บริษัท บางกอก อินทิเกรเท็ด เทรดดิ้ง จำกัด","res_partner_rawmat_31","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_33","สมชาย",,"FALSE","FALSE","TRUE","บริษัท บางกอก อินทิเกรเท็ด เทรดดิ้ง จำกัด","res_partner_rawmat_31","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_34","บริษัท พี. เมทัลเคม เทรดดิ้ง จำกัด","SP04S015","TRUE","FALSE","TRUE",,,"Default","FALSE","129/ 157 หมู่ 2 ถนนบางบอน 3","แขวงหลักสอง เขตบางแค",10160,"กรุงเทพฯ","Thailand","0-2806 5083-4 , 02- 476 6582",,"0-2460 0112",,"วัตถุดิบ",,"น้ำยา / สารเคมี / WAX (น้ำยาล้างไข Aluminium )","30 Days",5,, +"res_partner_rawmat_35","คุณธวัชชัย มงคลอุดมรัตน์",,"FALSE","FALSE","TRUE","บริษัท พี. เมทัลเคม เทรดดิ้ง จำกัด","res_partner_rawmat_34","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_36","บริษัท ซีเอสอาร์ อินซูเลชั่น (ประเทศไทย) จำกัด","SP04S016","TRUE","FALSE","TRUE",,,"Default","FALSE","52/160 ซอยประชาร่วมใจ กรุงเทพ-กรีฑา + +","แขวงหัวหมาก เขตบางกะปิ + +",10250,"กรุงเทพฯ","Thailand","Tel :02 - 7360924,02 - 7360564,02 - 7360845 ",,"02 - 736 0934",,"วัตถุดิบ",,"ROCK WOOLS","30 Days",15,, +"res_partner_rawmat_37","บริษัท เอเซีย วี.เอส.ซี. คอร์ปอเรชั่น จำกัด","SP04S017","TRUE","FALSE","TRUE",,,"Default","FALSE","8/2 ซ.สามแยกบายพาส ถ.สุขุมวิท","อ.เมืองระยอง",21150,"ระยอง","Thailand","038-688589-92",,"038-688591",,"วัตถุดิบ",,"ROCK WOOLS","30 Days",15,, +"res_partner_rawmat_38","คุณตุ่น (ขาย)",,"FALSE","FALSE","TRUE","บริษัท เอเซีย วี.เอส.ซี. คอร์ปอเรชั่น จำกัด","res_partner_rawmat_37","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_39","คุณya (บัญชี))",,"FALSE","FALSE","TRUE","บริษัท เอเซีย วี.เอส.ซี. คอร์ปอเรชั่น จำกัด","res_partner_rawmat_37","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_40","บริษัท ร็อควูล (ประเทศไทย) จำกัด","SP04S018","TRUE","FALSE","TRUE",,,"Default","FALSE","52/160 ม.13 ซ.ประชาร่วมใจ ถ.กรุงเทพ-กรีฑา","แขวงสะพานสูง เขตสะพานสูง",10250,"กรุงเทพฯ","Thailand","02- 0 2736 0924 "," ","0 2736 0934",,"วัตถุดิบ",,"ROCKWOOL ","30 Days",15,, +"res_partner_rawmat_41","K. ศิรินทิพย์",,"FALSE","FALSE","TRUE","บริษัท ร็อควูล (ประเทศไทย) จำกัด","res_partner_rawmat_40","Contact","TRUE",,,,,"Thailand",,"089 - 893 6007",,,,,,,,, +"res_partner_rawmat_42","National Starch And Chemical (Thailand) Limited","SP04S019","TRUE","FALSE","TRUE",,,"Default","FALSE","216/5 L.P.N.Tower 7th Floor, Nanglinchee Road","Chongnonsee, Yannawa,",10120,"Bangkok","Thailand","0-2517-0045-9 ",,"0-2906-0680",,"วัตถุดิบ",,"กาว ROCKWOOL ","60 Days","-",, +"res_partner_rawmat_43","คุณสุวรี",,"FALSE","FALSE","TRUE","National Starch And Chemical (Thailand) Limited","res_partner_rawmat_42","Contact","TRUE",,,,,"Thailand",,"081 - 647 3273 ",,,,,,,,, +"res_partner_rawmat_44","Henkel (Thailand) Ltd.","SP04S020","TRUE","FALSE","TRUE",,,"Default","FALSE","At Centralworld , 35th floor , 999/9 Rama 1 Rd.","Kwang Patumwan , Ket Patumwan,",10330,"Bangkok","Thailand","02-209-8000",,"02-209-8108 , 02-209-8109",,"วัตถุดิบ",,"กาว ROCKWOOL ","30 Days",3,, +"res_partner_rawmat_45","K.Suvalee Peugsupa",,"FALSE","FALSE","TRUE","Henkel (Thailand) Ltd.","res_partner_rawmat_44","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_46","คุณทิพมนต์",,"FALSE","FALSE","TRUE","Henkel (Thailand) Ltd.","res_partner_rawmat_44","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_47","บริษัท ฮันทส์แมน (ประเทศไทย) จำกัด","SP04S021","TRUE","FALSE","TRUE",,,"Default","FALSE","899 หมู่ 4 นิคมอุตสาหกรรมบางปู ซอย 6 ถ.สุขุมวิท","แพรกษา เมือง",10540,"สมุทรปราการ","Thailand"," 0-2709-4466 /",," 0-2709-4360",,"วัตถุดิบ",,"กาว ROCKWOOL ","60 Days",5,, +"res_partner_rawmat_48","คุณอ้อ # 404",,"FALSE","FALSE","TRUE","บริษัท ฮันทส์แมน (ประเทศไทย) จำกัด","res_partner_rawmat_47","Contact","TRUE",,,,,"Thailand",,404,,,,,,,,, +"res_partner_rawmat_49","บริษัท นิปปอน พาเนล (ไทยแลนด์) จำกัด","SP04S022","TRUE","FALSE","TRUE",,,"Default","FALSE","99/11 ม.3 ซ.วัดบัวโรย ถ.บางนา-ตราด","ต.บางเสาธง กิ่งอ.บางเสาธง",10540,"สมุทรปราการ","Thailand","02-3979153-6",,"02-3979157",,"วัตถุดิบ",,"ห้อง Clean Room . Cold Room",,"-",, +"res_partner_rawmat_50","อารียา",,"FALSE","FALSE","TRUE","บริษัท นิปปอน พาเนล (ไทยแลนด์) จำกัด","res_partner_rawmat_49","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_51","บริษัท ซี.เอส. สตีลเทค จำกัด","SP04S023","TRUE","FALSE","TRUE",,,"Default","FALSE","29/376 ม.11 ถ.บางบอน 5","แขวงบางบอน เขตบางบอน",10150,"กรุงเทพฯ","Thailand","02-8068604 / 01-4001033",,"02-8068616",,"วัตถุดิบ",,"เหล็ก , สังกะสี ","30 Days","ตามข้อตกลง",, +"res_partner_rawmat_52","ชวลิต",,"FALSE","FALSE","TRUE","บริษัท ซี.เอส. สตีลเทค จำกัด","res_partner_rawmat_51","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_53","บริษัท เอส.เอ. สตีล เซ็นเตอร์ จำกัด","SP04S024","TRUE","FALSE","TRUE",,,"Default","FALSE","2842-2844 ถ.พระราม 4","แขวงคลองเตย เขตคลองเตย",10110,"กรุงเทพฯ","Thailand","0-2240-1669-70, 240-1847 ",,"0-2240-1849",,"วัตถุดิบ",,"เหล็ก , สังกะสี ","30 Days","ตามข้อตกลง",, +"res_partner_rawmat_54","สมศรี",,"FALSE","FALSE","TRUE","บริษัท เอส.เอ. สตีล เซ็นเตอร์ จำกัด","res_partner_rawmat_53","Contact","TRUE",,,,,"Thailand",,"01-9845070",,,,,,,,, +"res_partner_rawmat_55","บริษัท บลูสโคป สตีล (ประเทศไทย ) จำกัด","SP04S025","TRUE","FALSE","TRUE",,,"Default","FALSE","108 อาคารบางกอกไทย ชั้น 7 ถนนรางน้ำ","แขวงพญาไท เขตราชเทวี",10400,"กรุงเทพฯ","Thailand","0-2642-7155",,"0-2642-7156",,"วัตถุดิบ",,"เหล็ก , สังกะสี ","30 Days","ตามข้อตกลง",, +"res_partner_rawmat_56","คุณกุสุมา ( โอ๋ )",,"FALSE","FALSE","TRUE","บริษัท บลูสโคป สตีล (ประเทศไทย ) จำกัด","res_partner_rawmat_55","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_57","บริษัท ไทยเอ็นวาเทค จำกัด","SP04S026","TRUE","FALSE","TRUE",,,"Default","FALSE","195 หมู่ 4 ซอยเอนกถาวร + +","ตำบลพยอม อำเภอวังน้อย + +",13170,"พระนครศรีอยุธยา","Thailand","035 - 744501-3",,35744504035744500,,"วัตถุดิบ",,"เหล็ก , สังกะสี ","30 Days","ตามข้อตกลง",, +"res_partner_rawmat_58","บริษัท เพิ่มสินสตีลเวิร์ค จำกัด (มหาชน)","SP04S027","TRUE","FALSE","TRUE",,,"Default","FALSE","เลขที่ 4, 95-96 หมู่ที่ 6 ถนนพระราม 2","ตำบลโคกขาม อำเภอเมืองสมุทรสาคร",74000,"สมุทรสาคร","Thailand","034-825 090-100",,"034-825 081, 034-825 078-9",,"วัตถุดิบ",,"เหล็ก , สังกะสี ","30 Days","ตามข้อตกลง",, +"res_partner_rawmat_59","คุณสมพงษ์",,"FALSE","FALSE","TRUE","บริษัท เพิ่มสินสตีลเวิร์ค จำกัด (มหาชน)","res_partner_rawmat_58","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_60","SK NETWORKS CO.,LTD.","SP04S028","TRUE","FALSE","TRUE",,,"Default","FALSE","SK BLDG.119-15 EULIIRO-ZGA ,","JUNG-GU SEOUL 110-192",,,"Thailand",,,,,"วัตถุดิบ",,"เหล็ก , สังกะสี ",,45,, +"res_partner_rawmat_61","ALUTHAI METALS CO.,LTD.","SP04S029","TRUE","FALSE","TRUE",,,"Default","FALSE","104/3 Moo 12 Bangpla Dist","Tumbol Bang Pla Amphoe Bang Phli",10540,"Samut Prakan","Thailand","02- 1746015-6",,"02 - 1746014 ",,"วัตถุดิบ",,"เหล็ก , สังกะสี ","Cash","ตามข้อตกลง",, +"res_partner_rawmat_62","คุณนิตยา",,"FALSE","FALSE","TRUE","ALUTHAI METALS CO.,LTD.","res_partner_rawmat_61","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_63","บริษัท วิบูลย์ชัยเกียรติพงษ์ จำกัด ( อลูมิเนียมรวมลาย )","SP04S030","TRUE","FALSE","TRUE",,,"Default","FALSE",765,"แขวงสี่พระยา เขตบางรัก",10500,"กรุงเทพฯ","Thailand","02-2351922-3, 2374822-3",,"02-2363407",,"วัตถุดิบ",,"เหล็ก , สังกะสี ",,"-",, +"res_partner_rawmat_64","ภคนันท์",,"FALSE","FALSE","TRUE","บริษัท วิบูลย์ชัยเกียรติพงษ์ จำกัด ( อลูมิเนียมรวมลาย )","res_partner_rawmat_63","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_65","บริษัท วี.อาร์. เม็ททอล จำกัด","SP04S031","TRUE","FALSE","TRUE",,,"Default","FALSE","30/17 ม.12","ท่าอิฐ อ.ปากเกร็ด",11120,"นนทบุรี","Thailand","02- 924 6136 -7 , 02 - 926 1756 - 7",,"02 - 594 3943",,"วัตถุดิบ",,"เหล็ก , สังกะสี ,สแตนเลส",,"-",, +"res_partner_rawmat_66","คุณวีระนันท์",,"FALSE","FALSE","TRUE","บริษัท วี.อาร์. เม็ททอล จำกัด","res_partner_rawmat_65","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_67","บริษัท ศรีราชพฤกษ์ จำกัด","SP04S032","TRUE","FALSE","TRUE",,,"Default","FALSE","745,747 พระราม 3","แขวงบางโพงพาง เขตยานนาวา",10120,"กรุงเทพฯ","Thailand","02-2948974-7",,"02-2945069",,"วัตถุดิบ",,"เหล็ก , สังกะสี ,สแตนเลส","30 Days","ตามข้อตกลง",, +"res_partner_rawmat_68","สุวณี",,"FALSE","FALSE","TRUE","บริษัท ศรีราชพฤกษ์ จำกัด","res_partner_rawmat_67","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_69","บริษัท ชลบุรีศรีเจริญโลหะ จำกัด","SP04S033","TRUE","FALSE","TRUE",,,"Default","FALSE","39/39,39/40 ม.4 ถนนบายพลาส","ต.หนองไม้แดงอ.เมืองชลบุรี",20000,"ชลบุรี","Thailand","038-458737-41",,"038-458742",,"วัตถุดิบ",,"เหล็ก , สังกะสี ,สแตนเลส","Cash","ตามข้อตกลง",, +"res_partner_rawmat_70","จิตรา",,"FALSE","FALSE","TRUE","บริษัท ชลบุรีศรีเจริญโลหะ จำกัด","res_partner_rawmat_69","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_71","บริษัท ไทยยูนีคอยล์เซ็นเตอร์ จำกัด (มหาชน )","SP04S034","TRUE","FALSE","TRUE",,,"Default","FALSE","809 ซอย 14 ถ.พัฒนา 1","ต.แพรกษา อ.เมืองสมุทรปราการ จ.สมุทรปราการ 10280",10280,"สมุทรปราการ","Thailand","0-2709 3034-6 ,02-709 3984-9 / 085- 810 1639 ",,"0-2709 3037-8,02 - 709 3988",,"วัตถุดิบ",,"สแตนเลส, สังกะสี , เหล็กแผ่นลาย ","45 Days","ตามข้อตกลง",, +"res_partner_rawmat_72","คุณทิวา",,"FALSE","FALSE","TRUE","บริษัท ไทยยูนีคอยล์เซ็นเตอร์ จำกัด (มหาชน )","res_partner_rawmat_71","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_73","บริษัท สินสยามเม็ททอลเซ็นเตอร์ (1984) จำกัด","SP04S035","TRUE","FALSE","TRUE",,,"Default","FALSE","136 ถนนกรุงธนบุรี","แขวงบางลำภูล่าง เขตคลองสาน กรุงเทพมหานคร 10600",10600,"กรุงเทพฯ","Thailand","0-2860-9119, 0-2860-9191",,"0-2860-9500-1",,"วัตถุดิบ",,"สแตนเลส, สังกะสี , เหล็กแผ่นลาย ","45 Days","ตามข้อตกลง",, +"res_partner_rawmat_74","คุณวีรพงษ์",,"FALSE","FALSE","TRUE","บริษัท สินสยามเม็ททอลเซ็นเตอร์ (1984) จำกัด","res_partner_rawmat_73","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_rawmat_75","บริษัท โตชิน อินเตอร์เนชั่นแนล คอร์ปอเรชั่น จำกัด","SP04S036","TRUE","FALSE","TRUE",,,"Default","FALSE","246 นิคมอุตสาหรรม ลาดกระบัง ( Phase 3) ถ. ฉลองกรุง","แหลมประทิว เขตลาดกระบัง กรุงเทพ ฯ 10520",10520,"กรุงเทพฯ","Thailand","01-7346556 / 02-7384800",,"02-7384801, 4808",,"วัตถุดิบ",,"สแตนเลส, สังกะสี , เหล็กแผ่นลาย ","30 Days","ตามข้อตกลง",, +"res_partner_rawmat_76","วิชัย",,"FALSE","FALSE","TRUE","บริษัท โตชิน อินเตอร์เนชั่นแนล คอร์ปอเรชั่น จำกัด","res_partner_rawmat_75","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_1","บริษัท โอปนายิกุล จำกัด","SP02S001","TRUE","FALSE","TRUE",,,"Default","FALSE","410/24-30 ถนน รัชดาภิเษก แขวงสามเสนนอก เขตห้วยขวาง กรุงเทพฯ 10310","แขวงสามเสนนอก เขตห้วยขวาง",10310,"กรุงเทพฯ","Thailand","02-5415320-7",,"02-5415329",,"INSTALLATION ",,"PVC , ยาง ","30 Days",14,, +"res_partner_installation_2","คุณกิตติ",,"FALSE","FALSE","TRUE","บริษัท โอปนายิกุล จำกัด","res_partner_installation_1","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_3","ASIAN MODULAR SYSTEMS (THAILAND) CO.,LTD.","SP02S002","TRUE","FALSE","TRUE",,,"Default","FALSE","410 ซอยพระยาสุเรนทร์ 30 ถนนรามอินทรา (109)","แขวงบางชัน เขตคลองสามวา",10510,"กรุงเทพฯ","Thailand","0-2540 6871",,"0-2918 6954",,"INSTALLATION ",,"อุปกรณ์ประตู","30 Days",7,, +"res_partner_installation_4","คุณวิไล",,"FALSE","FALSE","TRUE","ASIAN MODULAR SYSTEMS (THAILAND) CO.,LTD.","res_partner_installation_3","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_5","คุณไกรกฤษ",,"FALSE","FALSE","TRUE","ASIAN MODULAR SYSTEMS (THAILAND) CO.,LTD.","res_partner_installation_3","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_6","CAC PACIFIC LIMITED","SP02S003","TRUE","FALSE","TRUE",,,"Default","FALSE","89 Chalermprakiat Soi 34","Nongbon Pravet",10250,"Bangkok","Thailand","02-328-1984( 10 Lines)",,"02 - 328 1985 ",,"INSTALLATION ",,"อุปกรณ์ประตู / ตัวแทน DORMA ","60 Days",7,, +"res_partner_installation_7","คุณพลสิทธิ์",,"FALSE","FALSE","TRUE","CAC PACIFIC LIMITED","res_partner_installation_6","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_8","คุณพิมกมล",,"FALSE","FALSE","TRUE","CAC PACIFIC LIMITED","res_partner_installation_6","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_9","CAMFIL FARR ( THAILAND ) LIMITED","SP02S004","TRUE","FALSE","TRUE",,,"Default","FALSE","202 Le Concorde Tower Room A305, Ratchadapisek Rd.,","Hual Khwang, Hual Khwang ,",10310,"Bangkok","Thailand","02 - 694 1480-4",,"02-964 1464",,"INSTALLATION ",,"FILTER ","30 Days",7,, +"res_partner_installation_10","คุณพิมพิชา",,"FALSE","FALSE","TRUE","CAMFIL FARR ( THAILAND ) LIMITED","res_partner_installation_9","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_11","Daiowa (Thailand) Co.,Ltd.","SP02S005","TRUE","FALSE","TRUE",,,"Default","FALSE","865 /7 ซ.อุดมสุข 42 ถนนสุขุมวิท 103","เขตบางนา",10260,"กรุงเทพฯ","Thailand","02-979 4941-2",,"02-979 4943",,"INSTALLATION ",,"FILTER ","30 Days",7,, +"res_partner_installation_12","คุณก้อง",,"FALSE","FALSE","TRUE","Daiowa (Thailand) Co.,Ltd.","res_partner_installation_11","Contact","TRUE",,,,,"Thailand",,"087 - 070 3758",,,,,,,,, +"res_partner_installation_13","Delier Int'L (H.K.) Company Limited ID174 Panel Joints for Cold Room (Camlock)","SP02S006","TRUE","FALSE","TRUE",,,"Default","FALSE","No.12 Floor, Tower B,","Yuquan S Jinan, Shandong, 250063",,,"China","[86] (531) 86012834",,"[86] (531) 86012734 ",,"INSTALLATION ",,"อุปกรณ์ประตู",,"Within 45 Days",, +"res_partner_installation_14","Door Seals of Australia","SP02S007","TRUE","FALSE","TRUE",,,"Default","FALSE","Unit 13/81 Bishop Street,","KELVIN GROVE QLD 4059,",,,"Australia","61 7 3856 6660",,"61 7 3352 7488",,"INSTALLATION ",,"อุปกรณ์ประตู",,"Within 45 Days",, +"res_partner_installation_15","Mr. Joe Buttafuoco",,"FALSE","FALSE","TRUE","Door Seals of Australia","res_partner_installation_14","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_16","GUANGDONG KIN LONG HARDWARE PRODUCT CO.,LTD.","SP02S008","TRUE","FALSE","TRUE",,,"Default","FALSE","No.1 Xizibian Rd,Daping Industrial Zone,","Tangxia Town,DongGuan City,GuangDong Province, +",,,"China","0086-769-87943133",,"0086-769-87942388 0086-769-87943188",,"INSTALLATION ",,"อุปกรณ์ประตู",,45,, +"res_partner_installation_17","HAFALE ( THAILAND ) LIMITED","SP02S009","TRUE","FALSE","TRUE",,,"Default","FALSE","57 ซอย สุขุมวิท 64 ถนนสุขุมวิท","บางจาก",,"กรุงเทพฯ","Thailand","0-2741-7171",,"0-2741-7272",,"INSTALLATION ",,"อุปกรณ์ประตู","45 Days",7,, +"res_partner_installation_18","คุณประจวบ",,"FALSE","FALSE","TRUE","HAFALE ( THAILAND ) LIMITED","res_partner_installation_17","Contact","TRUE",,,,,"Thailand",,"081-8340984",,,,,,,,, +"res_partner_installation_19","HEBEI JUSHANG COMMERCIAL TRADE CO.,LTD.","SP02S010","TRUE","FALSE","TRUE",,,"Default","FALSE","No. 94 Xida Street ,","Shijiazhuang 050081 , Hebei ,",,,"China","Tel. : +86-311 + 86668681 ",,"Fax : 86 - 311 - 86668681 ",,"INSTALLATION ",,"อุปกรณ์ประตู",,"Within 45 Days",, +"res_partner_installation_20","ICELANDIC CO.,LTD.","SP02S011","TRUE","FALSE","TRUE",,,"Default","FALSE","99 Moo 2 , Bangna-Trad KM.15 Rd.,","Bangchalong , Bangplee ,",10540,"Samutprakan","Thailand","02-750-9444 ",,"02-752-6139",,"INSTALLATION ",,"แม่เหล็ก ","30 Days",15,, +"res_partner_installation_21","คุณดาม",,"FALSE","FALSE","TRUE","ICELANDIC CO.,LTD.","res_partner_installation_20","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_22","คุณแนน",,"FALSE","FALSE","TRUE","ICELANDIC CO.,LTD.","res_partner_installation_20","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_23","JINAN LIXIA SOFTWARE DEVELOPMENT CENTER","SP02S012","TRUE","FALSE","TRUE",,,"Default","FALSE","Dongguan Street 3, Lixia,","Jinan 250013 Shandong,",,,"China","86-531-8601-2834",,"86-531-8601-2734",,"INSTALLATION ",,"อุปกรณ์ประตู",,"Within 45 Days",, +"res_partner_installation_24","Micron Clean Limited.","SP02S013","TRUE","FALSE","TRUE",,,"Default","FALSE","1246 Moo 13, Phahol Yothin Rd.,","T. Klong Nung , A. Klong Luang ,",12120,"Pathumthanee","Thailand","02-908-8200 ",,"02-908-8211",,"INSTALLATION ",,"Pass Box ","30 Days","ตามตกลง",, +"res_partner_installation_25","คุณปรีชา",,"FALSE","FALSE","TRUE","Micron Clean Limited.","res_partner_installation_24","Contact","TRUE",,,,,"Thailand",,"081-205-9330",,,,,,,,, +"res_partner_installation_26","คุณเกวลิน",,"FALSE","FALSE","TRUE","Micron Clean Limited.","res_partner_installation_24","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_27","OMERIN ASIA Pte. Ltd.","SP02S014","TRUE","FALSE","TRUE",,,"Default","FALSE","10, Rue des Frères Lumière Z.A. du Bois rond 69720","AINT BONNET DE MURE",,,"France","Tél. +33 (0)4 72 48 30 90 +",," +Fax +33 (0)4 78 40 82 81 +",,"INSTALLATION ",,"อุปกรณ์ประตู",,45,, +"res_partner_installation_28","SUPER VAC CO.,LTD.","SP02S015","TRUE","FALSE","TRUE",,,"Default","FALSE","22/33-40 SOI.16 PHACHA-UTHID RD.","RATBURANA",10140,"BANGKOK","Thailand","(662) 870-9595 ",," (662) 427-8045,870-9595 # 314",,"INSTALLATION ",,"แว๊กซ์ ","Cash","-",, +"res_partner_installation_29","คุณพรชัย",,"FALSE","FALSE","TRUE","SUPER VAC CO.,LTD.","res_partner_installation_28","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_30","คุณวิ",,"FALSE","FALSE","TRUE","SUPER VAC CO.,LTD.","res_partner_installation_28","Contact","TRUE",,,,,"Thailand",," ",,,,,,,,, +"res_partner_installation_31","YONG DA REFRIGERATION PRODUCTS CO.,LTD.","SP02S016","TRUE","FALSE","TRUE",,,"Default","FALSE","Xinhe County, Wanjiang District,","Dongguan City,Guangdong Province , P.R.C.",,,"Thailand"," +86-769-2701625",," +86-769-2701629",,"INSTALLATION ",,"อุปกรณ์ประตู",,45,, +"res_partner_installation_32","คุงเจริญโลหะกิจ","SP02S017","TRUE","FALSE","TRUE",,,"Default","FALSE","154/10-11 ม.4 ต.เมืองเก่า","อ.พนมสารคาม",24120,"ฉะเชิงเทรา","Thailand","038-836749",,,,"INSTALLATION ",,"เหล็กรูปพรรณ","Cash",3,, +"res_partner_installation_33","บริษัท 555 ซีพีเอส มาร์เก็ตติ้ง จำกัด","SP02S018","TRUE","FALSE","TRUE",,,"Default","FALSE","74/5-6 สุขสวัสดิ์ + +","แขวงราษฎร์บูรณะ เขตราษฎร์บูรณะ + +",10140,"กรุงเทพฯ","Thailand","0-2877-0510 ",,"0- 2477-3022",,"INSTALLATION ",,"อุปกรณ์ประตู ","Cash",7,, +"res_partner_installation_34","คุณเกตุ",,"FALSE","FALSE","TRUE","บริษัท 555 ซีพีเอส มาร์เก็ตติ้ง จำกัด","res_partner_installation_33","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_35","บริษัท กิ้มหยูเส็งค้ากระจก จำกัด","SP02S019","TRUE","FALSE","TRUE",,,"Default","FALSE","41/8 ซ.59 ถ.พระราม 3","แขวงช่องนนทรี เขตยานนาวา",10120,"กรุงเทพฯ","Thailand","02-2946291-8",,"02-2941780",,"INSTALLATION ",,"กระจก ","30 Days",7,, +"res_partner_installation_36","หยก",,"FALSE","FALSE","TRUE","บริษัท กิ้มหยูเส็งค้ากระจก จำกัด","res_partner_installation_35","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_37","อรุโณทัย",,"FALSE","FALSE","TRUE","บริษัท กิ้มหยูเส็งค้ากระจก จำกัด","res_partner_installation_35","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_38","บริษัท แกรนด์ โฟร์ซี จำกัด","SP02S020","TRUE","FALSE","TRUE",,,"Default","FALSE","19/224 หมู่ 10 พระราม 2","แขวงบางมด เขตจอมทอง",10150,"กรุงเทพฯ","Thailand","02-898-3104-5",,"02-898-4852",,"INSTALLATION ",,"ซิลิกา-เจล","Cash","Within 15 Days",, +"res_partner_installation_39","คุณจุฬาภรณ์",,"FALSE","FALSE","TRUE","บริษัท แกรนด์ โฟร์ซี จำกัด","res_partner_installation_38","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_40","บริษัท โกลด์เวสท์ เทรดดิ้ง (ประเทศไทย) จำกัด","SP02S021","TRUE","FALSE","TRUE",,,"Default","FALSE","69/60 หมู่ 6 ซอยกิ่งแก้ว 54 + +","ตำบลราชาเทวะ อำเภอบางพลี + +",10540,"สมุทรปราการ","Thailand","02-7384930-39",,"02-7384928-9",,"INSTALLATION ",,"อุปกรณ์ประตู",,"-",, +"res_partner_installation_41","ประภัสสร",,"FALSE","FALSE","TRUE","บริษัท โกลด์เวสท์ เทรดดิ้ง (ประเทศไทย) จำกัด","res_partner_installation_40","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_42","บริษัท คอมพลีท ไลน์ จำกัด","SP02S022","TRUE","FALSE","TRUE",,,"Default","FALSE","220 ซ.อ่อนนุช 35 ถ.สุขุมวิท 77","แขวง/เขตสวนหลวง",10250,"กรุงเทพฯ","Thailand","02-3201427-8 / 01-4444573",,"02-7215290",,"INSTALLATION ",,"ชุดประตูอัตโนมัติ","30 Days",7,, +"res_partner_installation_43","อนันต์",,"FALSE","FALSE","TRUE","บริษัท คอมพลีท ไลน์ จำกัด","res_partner_installation_42","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_44","บริษัท คอมฟอร์ตโฟลว์ เอส.อี. จำกัด","SP02S023","TRUE","FALSE","TRUE",,,"Default","FALSE","367 ถนนอ่อนนุช","แขวงประเวศ,กรุงเทพฯ",10250,"กรุงเทพฯ","Thailand","02-321-2511 ,321-4124,321-4154 ",," 02-321-5204",,"INSTALLATION ",,"GRILL ","30 Days","Within 15 Days",, +"res_partner_installation_45","คุณสรนันท์ เตชอัครกุล",,"FALSE","FALSE","TRUE","บริษัท คอมฟอร์ตโฟลว์ เอส.อี. จำกัด","res_partner_installation_44","Contact","TRUE",,,,,"Thailand",,"084-639 9990",,,,,,,,, +"res_partner_installation_46","บริษัท คิดเซลล์ (เอเชีย ) จำกัด","SP02S024","TRUE","FALSE","TRUE",,,"Default","FALSE","2893ม 2895 ถนนพัฒนาการ","แขวงสวนหลวง เขต สวนหลวง",10250,"กรุงเทพฯ","Thailand","02-321 3078, 02-722 0245 , ",,"02-320 2520 ",,"INSTALLATION ",,"เครื่องลดความชื้น ","60 Days",3,, +"res_partner_installation_47","คุณกมลวรรณ",,"FALSE","FALSE","TRUE","บริษัท คิดเซลล์ (เอเชีย ) จำกัด","res_partner_installation_46","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_48","บริษัท จิรันธนิน จำกัด","SP02S025","TRUE","FALSE","TRUE",,,"Default","FALSE","1350/130-131 ชั้น 10 อาคารไทยรงค์ ถ.พัฒนาการ 36 + + +","แขวงสวนหลวง เขตสวนหลวง + + +",10250,"กรุงเทพฯ","Thailand","0-2713-7707-8",,"0-2713-7706",,"INSTALLATION ",,"งานสั่งทำ ,งานเจาะรูตะแกรง","Cash",7,, +"res_partner_installation_49","คุณพัทธนันท์",,"FALSE","FALSE","TRUE","บริษัท จิรันธนิน จำกัด","res_partner_installation_48","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_50","บริษัท จีคอนส์ (ประเทศไทย) จำกัด","SP02S026","TRUE","FALSE","TRUE",,,"Default","FALSE","1093/33 อาคารเซ็นทรัลซิตี้ ทาวเวอร์ 1. ถนนบางนา - ตราด กม.3 หมู่ 12","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","02-7457181-7",,"02-7457188",,"INSTALLATION ",,"ซิลิโคน","30 Days",7,, +"res_partner_installation_51","วิโรจน์",,"FALSE","FALSE","TRUE","บริษัท จีคอนส์ (ประเทศไทย) จำกัด","res_partner_installation_50","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_52","บริษัท เจริญวิทย์ ซัพพลาย จำกัด","SP02S027","TRUE","FALSE","TRUE",,,"Default","FALSE","268 ซอยทินกร ดินแดง + +","แขวงดินแดง เขตดินแดง + +",10400,"กรุงเทพฯ","Thailand","02 - 6433502,026433153-4,02 - 6434412",,"02 - 2453327",,"INSTALLATION ",,"อุปกรณ์ประตู ","Cash",7,, +"res_partner_installation_53","บริษัท ชาญอินทร์ อินสทรูเม้นท์ จำกัด","SP02S028","TRUE","FALSE","TRUE",,,"Default","FALSE","81 ถ.เยาวราช 00","แขวงสัมพันธวงศ์ เขตสัมพันธวงศ์",10100,"กรุงเทพฯ","Thailand","02-2221582, 2227563, 2251969",,"02-2251970",,"INSTALLATION ",,"อุปกรณ์ประตู","Cash",7,, +"res_partner_installation_54","ใหญ่",,"FALSE","FALSE","TRUE","บริษัท ชาญอินทร์ อินสทรูเม้นท์ จำกัด","res_partner_installation_53","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_55","บริษัท ซันซูเลท (ไทยแลนด์) จำกัด","SP02S029","TRUE","FALSE","TRUE",,,"Default","FALSE","2/3 ซอย 109 รามอินทรา + +","แขวงมีนบุรี เขตมีนบุรี + +",10510,"กรุงเทพฯ","Thailand","02- 5174560,025173579,02 - 5403244-6,02 - 5174085",,"02 - 5178527",,"INSTALLATION ",,"FILTER ","Cash","ตามตกลง",, +"res_partner_installation_56","บริษัท ซิก้า (ประเทศไทย) จำกัด","SP02S030","TRUE","FALSE","TRUE",,,"Default","FALSE","700/37 หมู่ที่ 5 นิคมอุตสาหกรรมบางปะกง เฟส 2 กม. 57 ถ. บางนา-ตราด +กม. 57 ถ. บางนา-ตราด","ต. คลองตำหรุ อ. เมือง + +อ. เมือง จ. ชลบุรี 20000 +",20000,"ชลบุรี","Thailand","038 21 4270-85",,"038 21 4286",,"INSTALLATION ",,"ซิลิ โคน","30 Days",5,, +"res_partner_installation_57","บริษัท ซิตี้พาร์คสตีล อิมพอร์ต (2002) จำกัด","SP02S031","TRUE","FALSE","TRUE",,,"Default","FALSE","830 หมู่ที่1 ถ. เทพารักษ์","ต.บางเสาธง อ.บางเสาธง",10540,"สมุทรปราการ","Thailand"," 02 - 313 1313 ",,"02 - 313 1555 ( ฝ่ายขาย ) 02 - 706 1177 (บัญชี)",,"INSTALLATION ",,"เหล็กรูปพรรณ","30 Days",7,, +"res_partner_installation_58","คุณดวงชีวัน ( คุณดวง)",,"FALSE","FALSE","TRUE","บริษัท ซิตี้พาร์คสตีล อิมพอร์ต (2002) จำกัด","res_partner_installation_57","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_59","บริษัท ซิลเวอร์ดรากอน (ไทย) จำกัด","SP02S032","TRUE","FALSE","TRUE",,,"Default","FALSE","263 ถนนพระราม 4","แขวงรองเมือง เขตประทุมวัน",10330,"กรุงเทพฯ","Thailand","0-2214-0241 , 0-2215-2116",,"0-2214-0241 , 0-2215-2116",,"INSTALLATION ",,"อุปกรณ์ประตู","30 Days",7,, +"res_partner_installation_60","คุณสมเกียรติ , คุณผึ้ง",,"FALSE","FALSE","TRUE","บริษัท ซิลเวอร์ดรากอน (ไทย) จำกัด","res_partner_installation_59","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_61","คุณผึ้ง",,"FALSE","FALSE","TRUE","บริษัท ซิลเวอร์ดรากอน (ไทย) จำกัด","res_partner_installation_59","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_62","บริษัท ดิคเซลล์ (เอเชีย) จำกัด","SP02S033","TRUE","FALSE","TRUE",,,"Default","FALSE","2893 , 2895 ถ.พัฒนาการ","แขวงสวนหลวง เขตสวนหลวง",10250,"กรุงเทพฯ","Thailand","02 - 321 - 3078 , 02 - 722 - 0245 ",,"02 - 722 - 0250 , 02 - 320 - 2520",,"INSTALLATION ",,"อุปกรณ์ประตู","30 Days",7,, +"res_partner_installation_63","คุณกมลวรรณ ( ป่าน )",,"FALSE","FALSE","TRUE","บริษัท ดิคเซลล์ (เอเชีย) จำกัด","res_partner_installation_62","Contact","TRUE",,,,,"Thailand",,"081-6291708 ",,,,,,,,, +"res_partner_installation_64","บริษัท ติยะไพบูลย์ จำกัด","SP02S034","TRUE","FALSE","TRUE",,,"Default","FALSE","57 ซอยศูนย์วิจัย 14","ห้วยขวาง",10320,"กรุงเทพฯ","Thailand","02-3185320",,,,"INSTALLATION ",,"อุปกรณ์ไฟฟ้า ","Cash",7,, +"res_partner_installation_65","คุณอาทิตย์",,"FALSE","FALSE","TRUE","บริษัท ติยะไพบูลย์ จำกัด","res_partner_installation_64","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_66","คุณแอ๊ว",,"FALSE","FALSE","TRUE","บริษัท ติยะไพบูลย์ จำกัด","res_partner_installation_64","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_67","บริษัท ไตตันโค อินเตอร์เนชั่นแนล จำกัด","SP02S035","TRUE","FALSE","TRUE",,,"Default","FALSE","2 ซอยเจริญใจ ถนนสุขุมวิท 63","แขวงคลองตันเหนือ เขตวัฒนา",10110,"กรุงเทพฯ","Thailand","02-3902081-7 , 02-392 9197",,"02-381 1734",,"INSTALLATION ",,"อุปกรณ์ประตู","30 Days",7,, +"res_partner_installation_68","คุณโสมาภา",,"FALSE","FALSE","TRUE","บริษัท ไตตันโค อินเตอร์เนชั่นแนล จำกัด","res_partner_installation_67","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_69","บริษัท ทรู เซิร์ฟ จำกัด","SP02S036","TRUE","FALSE","TRUE",,,"Default","FALSE","129/63 ม. 7 ถ.บางกรวย - จงถนอม","ต.มหาสวัสดิ์ อ.บางกรวย",11130,"นนทบุรี","Thailand","02 - 489 4022 ",,"02 - 489 4022 ",,"INSTALLATION ",,"ซิลิโคน","60 Days",7,, +"res_partner_installation_70","คุณธงชัย",,"FALSE","FALSE","TRUE","บริษัท ทรู เซิร์ฟ จำกัด","res_partner_installation_69","Contact","TRUE",,,,,"Thailand",,"085 - 1124291 ",,,,,,,,, +"res_partner_installation_71","บริษัท ทูเดย์ สไตล์ 2100 จำกัด","SP02S037","TRUE","FALSE","TRUE",,,"Default","FALSE","10/2 ซ.สุขุมวิท 40 แขวงพระโขนง","เขตคลองเตย",10110,"กรุงเทพฯ","Thailand","02-7121872-4",,"02-7121876-7",,"INSTALLATION ",,"อุปกรณ์ประตู","30 Days",7,, +"res_partner_installation_72","คุณสามารถ",,"FALSE","FALSE","TRUE","บริษัท ทูเดย์ สไตล์ 2100 จำกัด","res_partner_installation_71","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_73","บริษัท ไทยพอลลูเทค แมชชีนเนอรี่ จำกัด","SP02S038","TRUE","FALSE","TRUE",,,"Default","FALSE","865/7 ซอยอุมสุข 42 ถนนบางนา-ตราด","เขตบางนา",10260,"กรุงเทพฯ","Thailand"," 02 - 979 - 5175 - 8 ",," 02 -979 4172",,"INSTALLATION ",,"FILTER ","30 Days","Within 15 Days",, +"res_partner_installation_74","คุณก้อง",,"FALSE","FALSE","TRUE","บริษัท ไทยพอลลูเทค แมชชีนเนอรี่ จำกัด","res_partner_installation_73","Contact","TRUE",,,,,"Thailand",,"087-070 3758",,,,,,,,, +"res_partner_installation_75","คุณธงชัย",,"FALSE","FALSE","TRUE","บริษัท ไทยพอลลูเทค แมชชีนเนอรี่ จำกัด","res_partner_installation_73","Contact","TRUE",,,,,"Thailand",,"087-0703758",,,,,,,,, +"res_partner_installation_76","บริษัท ไทยไพศาล สลักภัณฑ์ จำกัด","SP02S039","TRUE","FALSE","TRUE",,,"Default","FALSE","43-45-47 จึ่งเจริญพานิชย์","แขวงป้อมปราบ เขตป้อมปราบศัตรูพ่าย",10100,"กรุงเทพฯ","Thailand","02-622 5194-9 ",,"02 - 225 7817 , 02-2261965",,"INSTALLATION ",,"วัสดุสิ้นเปลือง NUT / SCREW ","30 Days",7,, +"res_partner_installation_77","คุณอุทัย",,"FALSE","FALSE","TRUE","บริษัท ไทยไพศาล สลักภัณฑ์ จำกัด","res_partner_installation_76","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_78","บริษัท ไทยแมคมอร์ จำกัด","SP02S040","TRUE","FALSE","TRUE",,,"Default","FALSE","1529/540 อาคารศุภาลัย ริเวอร์ เพลส ถ.เจริญนคร","แขวงบางลำภู เขตคลองสาน",10600,"กรุงเทพฯ","Thailand","02 - 861 7295",," 02 - 861 7297 ",,"INSTALLATION ",,"FIRE ALARM ","PDC. 30 Days",7,, +"res_partner_installation_79","คุณสุภกาญจน์",,"FALSE","FALSE","TRUE","บริษัท ไทยแมคมอร์ จำกัด","res_partner_installation_78","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_80","คุณวรเทพ",,"FALSE","FALSE","TRUE","บริษัท ไทยแมคมอร์ จำกัด","res_partner_installation_78","Contact","TRUE",,,,,"Thailand",,"081-633 3872",,,,,,,,, +"res_partner_installation_81","บริษัท ไทย-เยอรมัน สเปเชียลตี้ กลาส จำกัด","SP02S041","TRUE","FALSE","TRUE",,,"Default","FALSE","41/8 ถ.พระราม 3 แขวงข่องนนทรี","เขตยานนาวา",10120,"กรุงเทพฯ","Thailand","09-1092744 / 0-2294-6287 : 552",,"0-2294-6286",,"INSTALLATION ",,"กระจก ","30 Days","Within 10 Days",, +"res_partner_installation_82","คุณปราโมทย์",,"FALSE","FALSE","TRUE","บริษัท ไทย-เยอรมัน สเปเชียลตี้ กลาส จำกัด","res_partner_installation_81","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_83","จิตรา",,"FALSE","FALSE","TRUE","บริษัท ไทย-เยอรมัน สเปเชียลตี้ กลาส จำกัด","res_partner_installation_81","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_84","บริษัท ไทยรุ่งโรจน์ไพศาล จำกัด","SP02S042","TRUE","FALSE","TRUE",,,"Default","FALSE","21/587 -589 หมู่ 12 ถนนบางนา-ตราด","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","02-3980159",,"02-3981864",,"INSTALLATION ",,"อุปกรณ์ไฟฟ้า","30 Days",3,, +"res_partner_installation_85","เอ",,"FALSE","FALSE","TRUE","บริษัท ไทยรุ่งโรจน์ไพศาล จำกัด","res_partner_installation_84","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_86","บริษัท ธนาสตีล เวิร์ค จำกัด","SP02S043","TRUE","FALSE","TRUE",,,"Default","FALSE","69 หมู่ 7 ตำบลคลองสี่","อำเภอคลองหลวง",12120,"ปทุมธานี","Thailand","02 - 524 - 0857 - 60 ",,"02 - 524 - 0861 ",,"INSTALLATION ",,"งาน Punch รู ( งานสั่งทำตามแบบ ) ","30 Days","Within 10 Days",, +"res_partner_installation_87","คุณเกสรา",,"FALSE","FALSE","TRUE","บริษัท ธนาสตีล เวิร์ค จำกัด","res_partner_installation_86","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_88","คุณวิสิต",,"FALSE","FALSE","TRUE","บริษัท ธนาสตีล เวิร์ค จำกัด","res_partner_installation_86","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_89","บริษัท น่ำเซ่งฮวด โลหะกิจ จำกัด","SP02S044","TRUE","FALSE","TRUE",,,"Default","FALSE","21/575-577 ม.12 ถ.บางนา-ตราด กม.2","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","02-3930773, 3980823",,"02-3980860",,"INSTALLATION ",,"เหล็กรูปพรรณ","60 Days",7,, +"res_partner_installation_90","สุภรณ์",,"FALSE","FALSE","TRUE","บริษัท น่ำเซ่งฮวด โลหะกิจ จำกัด","res_partner_installation_89","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_91","ไพสิฐ",,"FALSE","FALSE","TRUE","บริษัท น่ำเซ่งฮวด โลหะกิจ จำกัด","res_partner_installation_89","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_92","บริษัท พี.เค. เทคโนโลยี จำกัด","SP02S045","TRUE","FALSE","TRUE",,,"Default","FALSE","781 ม.4 ซ.อภิชาต ถ.สุขุมวิท 115","ต.เทพารักษ์ อ.เมือง",10270,"สมุทรปราการ","Thailand","0-2380-4851, 380-4845-7",,"0-2380-4852",,"INSTALLATION ",,"PVC , ยาง ","30 Days",14,, +"res_partner_installation_93","แป๊ด",,"FALSE","FALSE","TRUE","บริษัท พี.เค. เทคโนโลยี จำกัด","res_partner_installation_92","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_94","ปิยะ",,"FALSE","FALSE","TRUE","บริษัท พี.เค. เทคโนโลยี จำกัด","res_partner_installation_92","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_95","บริษัท พี.โอ. ฟาสเทนเนอร์ จำกัด","SP02S046","TRUE","FALSE","TRUE",,,"Default","FALSE","1995 ซอยกาญจนาภิเษก 008","แขวงบางแค เขตบางแค",10160,"กรุงเทพฯ","Thailand","083-611 6567, 034 -458 137 ",,"034-458 139",,"INSTALLATION ",,"คุณโอ","60 Days",7,, +"res_partner_installation_96","คุณโอ",,"FALSE","FALSE","TRUE","บริษัท พี.โอ. ฟาสเทนเนอร์ จำกัด","res_partner_installation_95","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_97","บริษัท แฟคทอรี่ คอนโทรลเลอร์ จำกัด","SP02S047","TRUE","FALSE","TRUE",,,"Default","FALSE","67/1473 หมู่ที่ 16 ซอย15 ถ. ตลิ่งชัน-สุพรรณบุรี","แขวง บางแม่นาง เขคบางใหญ่",,"นนทบุรี","Thailand",,,,,"INSTALLATION ",,"อุปกรณ์ประตู ระบบ Inter Lock","30 Days",15,, +"res_partner_installation_98","คุณนุ",,"FALSE","FALSE","TRUE","บริษัท แฟคทอรี่ คอนโทรลเลอร์ จำกัด","res_partner_installation_97","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_99","บริษัท แม็กนั่ม สตีล จำกัด","SP02S048","TRUE","FALSE","TRUE",,,"Default","FALSE","29/12 หมู่ 5 ตำบลพันท้ายนรสิงห์","อำเภอเมืองสมุทรสาคร",74000,"สมุทรสาคร","Thailand","034865330-2,034865347-8,034865345",,,,"INSTALLATION ",,"เหล็กรูปพรรณ","30 Days",7,, +"res_partner_installation_100","คุณโอ๋",,"FALSE","FALSE","TRUE","บริษัท แม็กนั่ม สตีล จำกัด","res_partner_installation_99","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_101","บริษัท ยางไทย อุตสาหกรรม จำกัด","SP02S049","TRUE","FALSE","TRUE",,,"Default","FALSE","75 ม.1 ถนนสุคนธวิท","ต.ท่าเสา อ.กระทุ่มแบน",74110,"สมุทรสาคร","Thailand","034-844360 , 034-470529-30",,"034-470531",,"INSTALLATION ",,"PVC , ยาง , EPDM ","30 Days",14,, +"res_partner_installation_102","คุณสุจิดา",,"FALSE","FALSE","TRUE","บริษัท ยางไทย อุตสาหกรรม จำกัด","res_partner_installation_101","Contact","TRUE",,,,,"Thailand",,"081-625-4425",,,,,,,,, +"res_partner_installation_103","บริษัท โรงงานไทยสถาวร จำกัด","SP02S050","TRUE","FALSE","TRUE",,,"Default","FALSE","27 ม.9 ซ.วัดมหาวงษ์","ต.สำโรงกลาง อ.พระประแดง",10130,"สมุทรปราการ","Thailand","02-394 4535,02-183 2131,02-183 2133,02-183 2135",,"02-3943735",,"INSTALLATION ",,"งานสั่งทำเฉพาะ ","30 Days",3,, +"res_partner_installation_104","ทศพร",,"FALSE","FALSE","TRUE","บริษัท โรงงานไทยสถาวร จำกัด","res_partner_installation_103","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_105","บริษัท วิบูลย์วัฒนอุตสาหกรรม จำกัด","SP02S051","TRUE","FALSE","TRUE",,,"Default","FALSE","3/1 ม.15","ต.เกาะขนุน อ.พนมสารคาม",24120,"ฉะเชิงเทรา","Thailand","038-816264",,"038-512419",,"INSTALLATION ",,"วีว่าบอร์ด","7 Days",3,, +"res_partner_installation_106","ไก่",,"FALSE","FALSE","TRUE","บริษัท วิบูลย์วัฒนอุตสาหกรรม จำกัด","res_partner_installation_105","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_107","บริษัท วี.วี.พี. มาร์เก็ตติ้ง จำกัด","SP02S052","TRUE","FALSE","TRUE",,,"Default","FALSE","ฝ่ายขาย 84/49 พระราม 2 แขวงแสมดำ + +","เขตบางขุนเทียน + +",10150,"กรุงเทพฯ","Thailand","0-2894-0020-6",,"0-2894-1008, 415-4743",,"INSTALLATION ",,"อุปกรณ์ประตู",,7,, +"res_partner_installation_108","วิไล ภู่ชาญสิน",,"FALSE","FALSE","TRUE","บริษัท วี.วี.พี. มาร์เก็ตติ้ง จำกัด","res_partner_installation_107","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_109","บริษัท วีทีซี เอ็นเตอร์ไพรส จำกัด","SP02S053","TRUE","FALSE","TRUE",,,"Default","FALSE","65/126-8 อาคารชำนาญเพ็ญชาติ ชั้น 15 ถนน พระราม 9","เขตห้วยขวาง",10320,"กรุงเทพฯ","Thailand","02-245-4834/02-248-4550-1 ",,"02-248-3839",,"INSTALLATION ",,"อุปกรณ์ประตู","30 Days","ตามตกลง",, +"res_partner_installation_110","คุณศุภกร",,"FALSE","FALSE","TRUE","บริษัท วีทีซี เอ็นเตอร์ไพรส จำกัด","res_partner_installation_109","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_111","บริษัท วีเทค อีเล็คตริค เซ็นเตอร์ จำกัด","SP02S054","TRUE","FALSE","TRUE",,,"Default","FALSE","1063 ถ.พระราม 4","แขวงวังใหม่ เขตปทุมวัน",10330,"กรุงเทพฯ","Thailand","02-6117719",,"02-6117721",,"INSTALLATION ",,"อุปกรณ์ไฟฟ้า ","60 Days",5,, +"res_partner_installation_112","สมชาย",,"FALSE","FALSE","TRUE","บริษัท วีเทค อีเล็คตริค เซ็นเตอร์ จำกัด","res_partner_installation_111","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_113","บริษัท เวคเตอร์ไทยเทคโนโลยี จำกัด","SP02S055","TRUE","FALSE","TRUE",,,"Default","FALSE","1157/3 ซ.ลาดพร้าว 101 ถ.ลาดพร้าว","แขวงคลองจั่น เขตบางกะปิ",10240,"กรุงเทพฯ","Thailand","02-5093883-5",,"02-5093878",,"INSTALLATION ",,"ซิลิโคน","30 Days",7,, +"res_partner_installation_114","ธีรุตม์",,"FALSE","FALSE","TRUE","บริษัท เวคเตอร์ไทยเทคโนโลยี จำกัด","res_partner_installation_113","Contact","TRUE",,,,,"Thailand",,"089-968 2868",,,,,,,,, +"res_partner_installation_115","บริษัท สแตนดาร์ด ฟอร์มูล่า จำกัด","SP02S056","TRUE","FALSE","TRUE",,,"Default","FALSE","11/5 ซอยสามเสน 3 ถนนสามพระยา","แขวงวัดสามพระยา เขตพระนคร",,"กรุงเทพฯ","Thailand","02-281-2672 ",,"02-281-2674 ,02-281 3052",,"INSTALLATION ",,"น้ำยา / สารเคมี / WAX ( เซฟโปร )","30 Days",3,, +"res_partner_installation_116","คุณจรรยา",,"FALSE","FALSE","TRUE","บริษัท สแตนดาร์ด ฟอร์มูล่า จำกัด","res_partner_installation_115","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_117","บริษัท สเปเชี่ยล สตีล เซ็นเตอร์ จำกัด","SP02S057","TRUE","FALSE","TRUE",,,"Default","FALSE","495/69 Sathupradit Rd.,","Chongnonsi, Yannawa,",10120,"Bangkok","Thailand","0-2674-2829-30, 0-2674-2992/ 02-8159395",,"02-815 9396",,"INSTALLATION ",,"เหล็กรูปพรรณ","Cash",3,, +"res_partner_installation_118","คุณพีรพล",,"FALSE","FALSE","TRUE","บริษัท สเปเชี่ยล สตีล เซ็นเตอร์ จำกัด","res_partner_installation_117","Contact","TRUE",,,,,"Thailand",,"081-5831818",,,,,,,,, +"res_partner_installation_119","บริษัท สมบูรณ์ แอนด์ เอส.พี. รับเบอร์ จำกัด","SP02S058","TRUE","FALSE","TRUE",,,"Default","FALSE","9/16 ม.2 ถ.รถไฟเก่า","ต.สำโรงใต้ อ.พระประแดง",10130,"สมุทรปราการ","Thailand"," 02 - 183 - 3322 , 02 - 754 - 3994 ",,"02 - 183 - 3323",,"INSTALLATION ",,"PVC , ยาง , EPDM ","30 Days","Within 15 Days",, +"res_partner_installation_120","คุณจิตรา",,"FALSE","FALSE","TRUE","บริษัท สมบูรณ์ แอนด์ เอส.พี. รับเบอร์ จำกัด","res_partner_installation_119","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_121","บริษัท สยามอาร์มสตรองค์ จำกัด","SP02S059","TRUE","FALSE","TRUE",,,"Default","FALSE","103/53 หมู่ 1 สุขาภิบาล 1","แขวงบางแค เขตบางแค",10160,"กรุงเทพฯ","Thailand","0-2454-1137, 802-3511-2, 802-3848-9"," ","0-2454-1623",,"INSTALLATION ",,"PACKING /Double Sides Adhesive Foam","30 Days","ตามตกลง",, +"res_partner_installation_122","สุมิตรา",,"FALSE","FALSE","TRUE","บริษัท สยามอาร์มสตรองค์ จำกัด","res_partner_installation_121","Contact","TRUE",,,,,"Thailand",,"081-8102508",,,,,,,,, +"res_partner_installation_123","บริษัท สหภัณฑ์ พลาสติกโปรดักส์ จำกัด","SP02S060","TRUE","FALSE","TRUE",,,"Default","FALSE","เลขที่ 2131 - 2133 หมู่ 4 ถนนเทพารักษ์ +","ต.เทพารักษ์, เมืองสมุทรปราการ +",10270,"สมุทรปราการ","Thailand","02-3840546, 3842363",,"02-7454967",,"INSTALLATION ",,"แผ่นอะคริลิค",,"-",, +"res_partner_installation_124","บุษ",,"FALSE","FALSE","TRUE","บริษัท สหภัณฑ์ พลาสติกโปรดักส์ จำกัด","res_partner_installation_123","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_125","บริษัท สินประเสริฐ เอ็นจิเนียริ่ง จำกัด","SP02S061","TRUE","FALSE","TRUE",,,"Default","FALSE","1596/273-4 ซอยอภิชาติ สุขุมวิท 115 + +","ตำบลเทพารักษ์ อำเภอเมืองสมุทรปราการ + +",10270,"สมุทรปราการ","Thailand","02-7577358, 7578684, 7579724",,"02-7576431",,"INSTALLATION ",,"อุปกรณ์ทั่วไป - สกรูเกลียว, น็อต","30 Days",7,, +"res_partner_installation_126","แหวว",,"FALSE","FALSE","TRUE","บริษัท สินประเสริฐ เอ็นจิเนียริ่ง จำกัด","res_partner_installation_125","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_127","บริษัท สีมาโลหะภัณฑ์ จำกัด","SP02S062","TRUE","FALSE","TRUE",,,"Default","FALSE","169/1,169/2 หมู่ที่ 3 ถ.เทพารักษ์","ต.บางเพรียง อ.บางบ่อ",10560,"สมุทรปราการ","Thailand","02-754 8527 - 8 ,02-7089001-3",,"02- 7 54852902 - 7089499",,"INSTALLATION ",,"งานเจาะรู มตะแกรง","Cash",7,, +"res_partner_installation_128","บริษัท ห้างกระจกตังน้ำ จำกัด","SP02S063","TRUE","FALSE","TRUE",,,"Default","FALSE","226 ถนนพระรามที่ 2 + + +","แขวงแสมดำ เขตบางขุนเทียน + + +",10150,"กรุงเทพฯ","Thailand","(น้อย/พร 7280900-3 F.3731165) 02-4165678",,"0-2894-0433",,"INSTALLATION ",,"กระจก ","30 Days","Within 10 Days",, +"res_partner_installation_129","อรุณี",,"FALSE","FALSE","TRUE","บริษัท ห้างกระจกตังน้ำ จำกัด","res_partner_installation_128","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_130","รุ่งฟ้า",,"FALSE","FALSE","TRUE","บริษัท ห้างกระจกตังน้ำ จำกัด","res_partner_installation_128","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_131","บริษัท ออนวัลล่า จำกัด","SP02S064","TRUE","FALSE","TRUE",,,"Default","FALSE","50 ม. 20 ต. ลำลูกกา","อ. ลำลูกกา",12150,"ปทุมธานี","Thailand"," 02 - 193 5380- 5 ",,"02-193 5386-7",,"INSTALLATION ",,"อุปกรณ์ประตู / ม่าน PVC ","30 Days",7,, +"res_partner_installation_132","คุณพิมพิยู",,"FALSE","FALSE","TRUE","บริษัท ออนวัลล่า จำกัด","res_partner_installation_131","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_133","บริษัท ออลล่า จำกัด","SP02S065","TRUE","FALSE","TRUE",,,"Default","FALSE","935, 937, 939 ซ.อ่อนนุช 46 ถ.อ่อนนุช","แขวง/เขตสวนหลวง",10250,"กรุงเทพฯ","Thailand","02-3220777, 7215699",,"02-3221892",,"INSTALLATION ",,"อุปกรณ์ประตู / ม่าน PVC ","30 Days",7,, +"res_partner_installation_134","จุฑามาศ",,"FALSE","FALSE","TRUE","บริษัท ออลล่า จำกัด","res_partner_installation_133","Contact","TRUE",,,,,"Thailand",,"085-0420668",,,,,,,,, +"res_partner_installation_135","บริษัท อินซูลคูลลิ่ง เซ็นเตอร์ จำกัด จำกัด","SP02S066","TRUE","FALSE","TRUE",,,"Default","FALSE","130/6 หมู่ที่ 3","ต. รังสิต อ. ธัญบุรี",12110,"ปทุมธานี","Thailand","02-904 4395 - 6 ",," 0-2904 4397 ",,"INSTALLATION ",,"จำหน่ายส่งเครื่องทำความเย็น","30 Days",7,, +"res_partner_installation_136","คุณนัด",,"FALSE","FALSE","TRUE","บริษัท อินซูลคูลลิ่ง เซ็นเตอร์ จำกัด จำกัด","res_partner_installation_135","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_137","คุณเจมส์",,"FALSE","FALSE","TRUE","บริษัท อินซูลคูลลิ่ง เซ็นเตอร์ จำกัด จำกัด","res_partner_installation_135","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_138","บริษัท อินเตอร์ไลท์ ไลท์ติ้ง จำกัด","SP02S067","TRUE","FALSE","TRUE",,,"Default","FALSE","131,133 ซ.ลาซาล 79","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","02-745-8859-62 ",," 02-745-8388",,"INSTALLATION ",,"อุปกรณ์ไฟฟ้า","30 Days",7,, +"res_partner_installation_139","คุณพรรณทิพย์",,"FALSE","FALSE","TRUE","บริษัท อินเตอร์ไลท์ ไลท์ติ้ง จำกัด","res_partner_installation_138","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_140","คุณวราวุธ",,"FALSE","FALSE","TRUE","บริษัท อินเตอร์ไลท์ ไลท์ติ้ง จำกัด","res_partner_installation_138","Contact","TRUE",,,,,"Thailand",,"081-5522508",,,,,,,,, +"res_partner_installation_141","บริษัท เอ็กซ์เซนจ์ อินเตอร์ จำกัด","SP02S068","TRUE","FALSE","TRUE",,,"Default","FALSE","3/365 ซ.รามคำแหง 184 ถ.รามคำแหง","แขวงมีนบุรี เขตมีนบุรี",10510,"กรุงเทพฯ","Thailand","02 - 916 7640 ,080-294 1100",," 02-976 9119",,"INSTALLATION ",,"วัสดุสิ้นเปลือง NUT / SCREW ","60 Days",7,, +"res_partner_installation_142","คุณโอ",,"FALSE","FALSE","TRUE","บริษัท เอ็กซ์เซนจ์ อินเตอร์ จำกัด","res_partner_installation_141","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_143","บริษัท เอเชี่ยน โมดูลาร์ ชิสเต็มส์ (ไทยแลนด์) จำกัด","SP02S069","TRUE","FALSE","TRUE",,,"Default","FALSE","410 ซ.พระยาสุเรนทร์ 30 ถ.รามอินทรา (109)","บางชัน คลองสามวา",10510,"กรุงเทพฯ","Thailand","02 - 540 6871 - 5 ",," 02- 918 6954",,"INSTALLATION ",,"จำหน่ายอุปกรณ์แอร์ อุปกรณ์ตู้เย็น เครื่องทำความเย็นทุกชนิด ","30 Days",7,, +"res_partner_installation_144","คุณป้อม",,"FALSE","FALSE","TRUE","บริษัท เอเชี่ยน โมดูลาร์ ชิสเต็มส์ (ไทยแลนด์) จำกัด","res_partner_installation_143","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_145","บริษัท เอ็น.ซี.อาร์. รับเบอร์อินดัสตรี้ จำกัด","SP02S070","TRUE","FALSE","TRUE",,,"Default","FALSE","6971-73 ถนนบำรุงรัฐ +","แขวงสัมพันธวงศ์ เขตสัมพันธวงศ์ +",10100,"กรุงเทพฯ","Thailand","(662) 225 7656-7, 662 6992-6 +",,"(662) 224 0707, 224 0791 +",,"INSTALLATION ",,"PVC , ยาง , EPDM ","30 Days",30,, +"res_partner_installation_146","บริษัท เอ็ม อาร์ ซันรับเบอร์ จำกัด","SP02S071","TRUE","FALSE","TRUE",,,"Default","FALSE","24/75 ม.6 ซอยวัดยายร่ม","แขวงบางมด เขตจอมทอง",10150,"กรุงเทพฯ","Thailand","02-427 1828 , 02-428 4577",,"02-4284577",,"INSTALLATION ",,"PVC , ยาง ","30 Days","Within 15 Days",, +"res_partner_installation_147","คุณกาหลง",,"FALSE","FALSE","TRUE","บริษัท เอ็ม อาร์ ซันรับเบอร์ จำกัด","res_partner_installation_146","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_148","บริษัท เอ็ม เอ็ม พี ดิสทริบิวเตอร์ จำกัด","SP02S072","TRUE","FALSE","TRUE",,,"Default","FALSE","41 ซอย สุขุมวิท 62","แขวงบางจาก เขตพระโขนง",10260,"กรุงเทพฯ","Thailand","0-2741 4790 , 02-741 4792",,"02 - 741 4791",,"INSTALLATION ",,"วัสดุสิ้นเปลือง NUT / SCREW ","30 Days",7,, +"res_partner_installation_149","คุณวรรณา (แอน)",,"FALSE","FALSE","TRUE","บริษัท เอ็ม เอ็ม พี ดิสทริบิวเตอร์ จำกัด","res_partner_installation_148","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_150","บริษัท เอ็มอาร์จีเอ (ประเทศไทย) จำกัด ซิลิโคน DOW GM กลาส แอนด์ เมทัล (สีขาว)","SP02S073","TRUE","FALSE","TRUE",,,"Default","FALSE","55 หมู่ 2 เฉลิมพระเกียรติ ร9 + +","แขวงดอกไม้ เขตประเวศ + +",10260,"กรุงเทพฯ","Thailand","0-2726-3214, (09-7714473)",,"0-2956-6705 ต่อ 15",,"INSTALLATION ",,"ซิลิโคน",,"-",, +"res_partner_installation_151","นิมิตร (อัฑฒ์) พรัดภู่",,"FALSE","FALSE","TRUE","บริษัท เอ็มอาร์จีเอ (ประเทศไทย) จำกัด ซิลิโคน DOW GM กลาส แอนด์ เมทัล (สีขาว)","res_partner_installation_150","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_152","บริษัท เอส.เจ สกรูไทย จำกัด","SP02S074","TRUE","FALSE","TRUE",,,"Default","FALSE","1347 ซ.จรัญสนิทวงศ์ 75 ถ.จรัญสนิทวงศ์","แขวง/เขตบางพลัด",10700,"กรุงเทพฯ","Thailand","02-8803636-8",,"02-4248110",,"INSTALLATION ",,"วัสดุสิ้นเปลือง NUT / SCREW ","60 Days",7,, +"res_partner_installation_153","อรพงศ์",,"FALSE","FALSE","TRUE","บริษัท เอส.เจ สกรูไทย จำกัด","res_partner_installation_152","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_154","โอ",,"FALSE","FALSE","TRUE","บริษัท เอส.เจ สกรูไทย จำกัด","res_partner_installation_152","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_155","บริษัท แอดฮีซีล จำกัด","SP02S075","TRUE","FALSE","TRUE",,,"Default","FALSE","44 ซ.สมเด็จพระเจ้าตากสิน 27 ถ.สมเด็จพระเจ้าตากสิน","แขวงบุคคโล เขตธนบุรี",10600,"กรุงเทพฯ","Thailand","02-8779935-7/01-6363130",,"02-8779009",,"INSTALLATION ",,"ซิลิโคน","60 Days",7,, +"res_partner_installation_156","ดวงกมล",,"FALSE","FALSE","TRUE","บริษัท แอดฮีซีล จำกัด","res_partner_installation_155","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_157","บริษัท แอบบอน จำกัด","SP02S076","TRUE","FALSE","TRUE",,,"Default","FALSE","403,405,407,409 ถนนสี่พระยา","แขวงสี่พระยา เขตบางรัก",10500,"กรุงเทพฯ","Thailand","02 - 631 4400",," 02 - 631 4264 - 5 , 02 - 268 1692,02 - 6314260",,"INSTALLATION ",,"วัสดุสิ้นเปลือง NUT / SCREW ","30 Days",5,, +"res_partner_installation_158","คุณปริศนา",,"FALSE","FALSE","TRUE","บริษัท แอบบอน จำกัด","res_partner_installation_157","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_159","บริษัท ฮั่วหยงโลหะการ จำกัด","SP02S077","TRUE","FALSE","TRUE",,,"Default","FALSE","848 ม.3 ถ.เทพารักษ์","ต.เทพารักษ์ อ.เมืองสมุทราปราการ",10270,"สมุทรปราการ","Thailand","0-2312-1910-11, 0-23825-216-7",,"0-2312-1959",,"INSTALLATION ",,"งานสั่งทำ ,งานเจาะรูตะแกรง","30 Days",7,, +"res_partner_installation_160","คุณอาทิตย์",,"FALSE","FALSE","TRUE","บริษัท ฮั่วหยงโลหะการ จำกัด","res_partner_installation_159","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_161","คุณเปิ้ล",,"FALSE","FALSE","TRUE","บริษัท ฮั่วหยงโลหะการ จำกัด","res_partner_installation_159","Contact","TRUE",,,,,"Thailand",,"089-6699232",,,,,,,,, +"res_partner_installation_162","สำเร็จการช่าง","SP02S078","TRUE","FALSE","TRUE",,,"Default","FALSE","13/10 หมที่ 6 ซอยลาซาน 42 สุขุมวิท 105","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","02-7486480-2 ",,"02-7486480-2 ",,"INSTALLATION ",,"งานทำตะแกรง","Cash",7,, +"res_partner_installation_163","คุณรัศมี",,"FALSE","FALSE","TRUE","สำเร็จการช่าง","res_partner_installation_162","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_164","ห้างหุ้นส่วนจำกัด กรเทพกระจก อลูมิเนียม","SP02S079","TRUE","FALSE","TRUE",,,"Default","FALSE","418, 418/1-2 ม.5 ถ.ศรีนครินทร์","ต.สำโรงเหนือ อ.เมือง",10270,"สมุทรปราการ","Thailand","02-7486881, 7486884",,"02-7486869",,"INSTALLATION ",,"กระจก","Cash","Within 15 Days",, +"res_partner_installation_165","ห้างหุ้นส่วนจำกัด ซ้งเฮงลิ้ม","SP02S080","TRUE","FALSE","TRUE",,,"Default","FALSE","2/6 ซ.บำเพ็ญกุศล ถ.จันทร์","แขวงทุ่งวัดดอน เขตสาทร",10120,"กรุงเทพฯ","Thailand","0-2867-2488, 896-5162",,"0-2896-5162",,"INSTALLATION ",,"อุปกรณ์ประตู","30 Days",7,, +"res_partner_installation_166","คุณออย",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ซ้งเฮงลิ้ม","res_partner_installation_165","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_167","ห้างหุ้นส่วนจำกัด ธนาชล","SP02S081","TRUE","FALSE","TRUE",,,"Default","FALSE","6/92-93 ม.5 ซ.วัดด่าน ถ.ศรีนครินทร์","ต.สำโรงเหนือ อ.เมือง",10270,"สมุทรปราการ","Thailand","01-8262246 / 02-7571495-6",,"02-7570992",,"INSTALLATION ",,"อุปกรณ์ประตู","30 Days",7,, +"res_partner_installation_168","ธนะ",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ธนาชล","res_partner_installation_167","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_169","ศศิ",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ธนาชล","res_partner_installation_167","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_170","ห้างหุ้นส่วนจำกัด น่ำเซ่งฮวด จารุเมือง","SP02S082","TRUE","FALSE","TRUE",,,"Default","FALSE","528-532 ถ.บางนา-ตราด","แขวงบางนา เขตบางนา",10250,"กรุงเทพฯ","Thailand","0-2398-0823 ",,"0-2398-0860",,"INSTALLATION ",,"เหล็กรูปพรรณ","60 Days",7,, +"res_partner_installation_171","คุณสุภรณ์",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด น่ำเซ่งฮวด จารุเมือง","res_partner_installation_170","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_172","คุณไพศิต",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด น่ำเซ่งฮวด จารุเมือง","res_partner_installation_170","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_173","สุนีย์",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด น่ำเซ่งฮวด จารุเมือง","res_partner_installation_170","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_174","ห้างหุ้นส่วนจำกัด วิชัยพันธ์พาณิชย์","SP02S083","TRUE","FALSE","TRUE",,,"Default","FALSE","81 ถ.เยาวราช","แขวงสัมพันธวงศ์ เขตสัมพันธวงศ์",10100,"กรุงเทพฯ","Thailand","02-2251969 , 02-222 7563",,"02-2251970",,"INSTALLATION ",,"อุปกรณ์ประตู","30 Days",7,, +"res_partner_installation_175","ใหญ่",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด วิชัยพันธ์พาณิชย์","res_partner_installation_174","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_176","ห้างหุ้นส่วนจำกัด อินเตอร์แสตนเลส โปรดักท์","SP02S084","TRUE","FALSE","TRUE",,,"Default","FALSE","2222/12-13 ม.4 ถ.สุขุมวิท","ต.เทพารักษ์ อ.เมืองสมุทราปราการ",10270,"สมุทรปราการ","Thailand","0-2384-7418, 384-3579, 394-6565",,"0-2757-8056",,"INSTALLATION ",,"อุปกรณ์ประตู / มือจับห้องเย็น COLD ROOM HINGE + LATCH ","Cash",7,, +"res_partner_installation_177","อนิวัฒน์",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด อินเตอร์แสตนเลส โปรดักท์","res_partner_installation_176","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_178","สุรัสวดี",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด อินเตอร์แสตนเลส โปรดักท์","res_partner_installation_176","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_179","PVN ENGINEERING CO,.LTD.","SP02S085","TRUE","FALSE","TRUE",,,"Default","FALSE","1532/22-25 Soi Tanuthai, Bangkok-Nonthaburi Road,","Bangsue,",10800,"Bangkok","Thailand","0-2911-4761(auto 10 Lines)",,"0-2911-4760, 0-2587-3655",,"INSTALLATION ",,"Differential Pressure Transmitter",,,, +"res_partner_installation_180","คุณวิไลพร",,"FALSE","FALSE","TRUE","PVN ENGINEERING CO,.LTD.","res_partner_installation_179","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_installation_181","วีระเผ่า # 109",,"FALSE","FALSE","TRUE","PVN ENGINEERING CO,.LTD.","res_partner_installation_179","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_1","บริษัท โกริตา แพคเกจจิ้ง จำกัด","SP03S001","TRUE","FALSE","TRUE",,,"Default","FALSE","2/3 หมู่ 21","แขวงมีนบุรี เขตมีนบุรี",10510,"กรุงเทพฯ","Thailand","0-3745-7067-8",,"0-3745-7073",,"วัสดุสิ้นเปลือง ",,"PACKING / PE FOAM , AIR BUBBLE","30 Days",7,, +"res_partner_expendables_2","คุณตุ๊ก",,"FALSE","FALSE","TRUE","บริษัท โกริตา แพคเกจจิ้ง จำกัด","res_partner_expendables_1","Contact","TRUE",,,,,"Thailand",,"01-7811537",,,,,,,,, +"res_partner_expendables_3","BANGKOK TOOLS CENTER","SP03S002","TRUE","FALSE","TRUE",,,"Default","FALSE","31 ซ.ประชาอุทิศ 79 หมู่ 1 ถ.ประชาอุทิศ","แขวงทุ่งครุ เขตทุ่งครุ",10140,"กรุงเทพฯ","Thailand","02-426 0471 , 02 - 871 7566 ,02 - 426 0933 ",,"02 - 426 0933",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","30 Days",3,, +"res_partner_expendables_4","คุณแสงอรุณ",,"FALSE","FALSE","TRUE","BANGKOK TOOLS CENTER","res_partner_expendables_3","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_5","Cleanstat ( Thailand ) Co.,Ltd","SP03S003","TRUE","FALSE","TRUE",,,"Default","FALSE","207 M.1 Hi-Tech Industrial Estate,","T.Banine , Abangpra-In ,",13160,"Ayutthaya","Thailand","035-350 555",,"035-959 269 - 70",,"วัสดุสิ้นเปลือง ",,"น้ำยา / สารเคมี / WAX ( น้ำยาทำความสะอาด )","30 Days",3,, +"res_partner_expendables_6","คุณนาตยา (คุณเอ๋)",,"FALSE","FALSE","TRUE","Cleanstat ( Thailand ) Co.,Ltd","res_partner_expendables_5","Contact","TRUE",,,,,"Thailand",,"086-316-3172",,,,,,,,, +"res_partner_expendables_7","GENERAL VACUUM & FLOW CO.,LTD.","SP03S004","TRUE","FALSE","TRUE",,,"Default","FALSE","7/8 หมู่ 2","ตำบลท่าอิฐ อ.ปากเกร็ด",11120,"นนทบุรี","Thailand","02 - 924 5770",," 02 - 924 5796 ",,"วัสดุสิ้นเปลือง ",,"วาวล์ แวคคัมปั๊ม นิวเมติก +","Cash","ตามข้อตกลง",, +"res_partner_expendables_8","คุณนิติกร",,"FALSE","FALSE","TRUE","GENERAL VACUUM & FLOW CO.,LTD.","res_partner_expendables_7","Contact","TRUE",,,,,"Thailand",,"081-8230023",,,,,,,,, +"res_partner_expendables_9","NITTO DENKO MATERIAL (THAILAND) CO.,LTD.","SP03S005","TRUE","FALSE","TRUE",,,"Default","FALSE","Rojana Industrial Park, 1/75 Moo5, Rojana Rd.,","T.Kanham, A.U-Thai,",13210,"Pranakornsriayuthaya","Thailand"," 035- 226750 ,02-6790990 ",,"035 - 226 745 ,02-6790997",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้นเปลือง เทปกาว","30 Days",21,, +"res_partner_expendables_10","คุณแนนปนัสญา (แนน)",,"FALSE","FALSE","TRUE","NITTO DENKO MATERIAL (THAILAND) CO.,LTD.","res_partner_expendables_9","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_11","SAIYAKAYA (M) Sdn. Bhd.","SP03S006","TRUE","FALSE","TRUE",,,"Default","FALSE","7, JALAN 11,","TAMAN KEPONG, KEPONG,",52100,"KUALA LUMPUR","Malaysia","603-6272-1668/3227/9778",,"603-6272-1696",,"วัสดุสิ้นเปลือง ",,"Protection Film",,45,, +"res_partner_expendables_12","SIMAC ART & DECOR PAINT CO.,LTD.","SP03S007","TRUE","FALSE","TRUE",,,"Default","FALSE","313 Sirinthorn Road,","Bangbumru,Bangplad,",10700,"Bangkok","Thailand","0-2434-9979",,"0-2434-9979",,"วัสดุสิ้นเปลือง ",,"สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ","Cash",7,, +"res_partner_expendables_13","คุณสินี",,"FALSE","FALSE","TRUE","SIMAC ART & DECOR PAINT CO.,LTD.","res_partner_expendables_12","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_14","บริษัท ก.บุญชัยก่อสร้างและจักรกล จำกัด","SP03S008","TRUE","FALSE","TRUE",,,"Default","FALSE","1193/5 ม.1","ต.พนมสารคาม อ.พนมสารคาม",,"ฉะเชิงเทรา","Thailand","(038) 551 - 104,551 726",,"(038) 553 - 139 , (038) 552-915",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","30 Days",3,, +"res_partner_expendables_15","คุณมด",,"FALSE","FALSE","TRUE","บริษัท ก.บุญชัยก่อสร้างและจักรกล จำกัด","res_partner_expendables_14","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_16","บริษัท เกรียงกมล 2009 จำกัด","SP03S009","TRUE","FALSE","TRUE",,,"Default","FALSE","44,50 เยาวราช + +","แขวงจักรวรรดิ์ เขตสัมพันธวงศ์ + +",10100,"กรุงเทพฯ","Thailand","02 - 2250138,022 - 255297-8",,"02 - 2256027",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","Cash",3,, +"res_partner_expendables_17","คุณปู",,"FALSE","FALSE","TRUE","บริษัท เกรียงกมล 2009 จำกัด","res_partner_expendables_16","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_18","บริษัท โกเวล พาวเวอร์ (2002) จำกัด","SP03S010","TRUE","FALSE","TRUE",,,"Default","FALSE","1815 ถ.ลาซาล","แขวงบางนา เขตบางนา (เริ่ม 9 มิ.ย.2549)",10260,"กรุงเทพฯ","Thailand","02-3494587-8",,"02-3839483",,"วัสดุสิ้นเปลือง ",,"สายพาน, Bearing",,"-",, +"res_partner_expendables_19","ติ๊ก",,"FALSE","FALSE","TRUE","บริษัท โกเวล พาวเวอร์ (2002) จำกัด","res_partner_expendables_18","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_20","พูนสิน",,"FALSE","FALSE","TRUE","บริษัท โกเวล พาวเวอร์ (2002) จำกัด","res_partner_expendables_18","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_21","บริษัท คลีนแอร์ โปรดักท์ จำกัด","SP03S011","TRUE","FALSE","TRUE",,,"Default","FALSE","14/2 ซ. รามคำแหง 21( นวศรี 1 ) ถนน รามคำแหง","แขวงวังทองหลาง เขตวังทองหลาง",10310,"กรุงเทพฯ","Thailand","0-2319 7035-6,02-3193780",,"0-2718 5859",,"วัสดุสิ้นเปลือง ",,"PACKING / PE FOAM , AIR BUBBLE","Cash","-",, +"res_partner_expendables_22","คุณต้อม",,"FALSE","FALSE","TRUE","บริษัท คลีนแอร์ โปรดักท์ จำกัด","res_partner_expendables_21","Contact","TRUE",,,,,"Thailand",,"086-5355567",,,,,,,,, +"res_partner_expendables_23","บริษัท คาร์ โคทติ้งส์ ซิสเต็ม (ประเทศไทย) จำกัด ( สีมิป้า)","SP03S012","TRUE","FALSE","TRUE",,,"Default","FALSE","109/85 ถ.เทพารักษ์ (กม.26)","ต.บางเสาธง อ.บางเสาธง",10540,"สมุทรปราการ","Thailand","02 708 0733, 088 022 0045 ",,"02 - 7087034 ",,"วัสดุสิ้นเปลือง ",,"สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ","Cash",7,, +"res_partner_expendables_24","บริษัท โจตัน พาวเดอร์ โค้ทติ้งส์ ( ประเทศไทย ) จำกัด","SP03S013","TRUE","FALSE","TRUE",,,"Default","FALSE","700/355 ม.6","ต. ดอนหัวพ่อ อ.เมืองชลบุรี",20000,"ชลบุรี","Thailand"," 038 - 468 744 - 5",," 038 - 468 757",,"วัสดุสิ้นเปลือง ",,"สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ","30 Days",15,, +"res_partner_expendables_25","คุณเล็ก",,"FALSE","FALSE","TRUE","บริษัท โจตัน พาวเดอร์ โค้ทติ้งส์ ( ประเทศไทย ) จำกัด","res_partner_expendables_24","Contact","TRUE",,,,,"Thailand",,," ",,,,,,,, +"res_partner_expendables_26","คุณโกมุต",,"FALSE","FALSE","TRUE","บริษัท โจตัน พาวเดอร์ โค้ทติ้งส์ ( ประเทศไทย ) จำกัด","res_partner_expendables_24","Contact","TRUE",,,,,"Thailand",,"081 - 9117427",,,,,,,,, +"res_partner_expendables_27","บริษัท ชินเตอร์โปรดักส์ จำกัด","SP03S014","TRUE","FALSE","TRUE",,,"Default","FALSE","39/80 ม.11","แขวงคลองกุ่ม เขตบึงกุ่ม",10230,"กรุงเทพฯ","Thailand","02-916 1211, 543 9664 , 916 1949 ",," 02-543 9497",,"วัสดุสิ้นเปลือง ",,"PACKING , PE FOAM","Cash",7,, +"res_partner_expendables_28","คุณเมธาพร",,"FALSE","FALSE","TRUE","บริษัท ชินเตอร์โปรดักส์ จำกัด","res_partner_expendables_27","Contact","TRUE",,,,,"Thailand",," ",,,,,,,,, +"res_partner_expendables_29","เม",,"FALSE","FALSE","TRUE","บริษัท ชินเตอร์โปรดักส์ จำกัด","res_partner_expendables_27","Contact","TRUE",,,,,"Thailand",,"081 - 636 7332 ",,,,,,,,, +"res_partner_expendables_30","บริษัท ซัฟฟิเชียนท์ จำกัด (ฟองน้ำ PU FOAM )","SP03S015","TRUE","FALSE","TRUE",,,"Default","FALSE","606/43 ม.2 ถ.พัฒนา","ต.บางปูใหม่ อ.เมืองสมุทรปราการ",10280,"สมุทรปราการ","Thailand","0-2709 9183 - 4",,"02-709 9185",,"วัสดุสิ้นเปลือง ",,"PACKING ","30 Days","-",, +"res_partner_expendables_31","คุณประภัทร",,"FALSE","FALSE","TRUE","บริษัท ซัฟฟิเชียนท์ จำกัด (ฟองน้ำ PU FOAM )","res_partner_expendables_30","Contact","TRUE",,,,,"Thailand",,"081 - 839 3431 ",,,,,,,,, +"res_partner_expendables_32","คุณวิชัย",,"FALSE","FALSE","TRUE","บริษัท ซัฟฟิเชียนท์ จำกัด (ฟองน้ำ PU FOAM )","res_partner_expendables_30","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_33","บริษัท ไซคลอพ แพคเกจจิ้ง (ประเทศไทย) จำกัด","SP03S016","TRUE","FALSE","TRUE",,,"Default","FALSE","114 ซ.อ่อนนุช 13","แขวงสวนหลวง เขตสวนหลวง",10250,"กรุงเทพฯ","Thailand","(06-6631313) 0-2730-0213-6",,"0-2730-0217",,"วัสดุสิ้นเปลือง ",,"PACKING / PE FOAM , AIR BUBBLE",,"-",, +"res_partner_expendables_34","บุษกร",,"FALSE","FALSE","TRUE","บริษัท ไซคลอพ แพคเกจจิ้ง (ประเทศไทย) จำกัด","res_partner_expendables_33","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_35","บริษัท ตะวันออกโพลิเมอร์ จำกัด","SP03S017","TRUE","FALSE","TRUE",,,"Default","FALSE","770 หมู่ 6","ต.เทพารักษ์ อ.เมือง",10270,"สมุทรปราการ","Thailand","02-2493976 # 135 or 75 # 135 ",," FAX : 02 - 249 498",,"วัสดุสิ้นเปลือง ",,"PACKING / PE FOAM , AIR BUBBLE","Cash","-",, +"res_partner_expendables_36","คุณนีรนุช (นุช)",,"FALSE","FALSE","TRUE","บริษัท ตะวันออกโพลิเมอร์ จำกัด","res_partner_expendables_35","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_37","บริษัท ไต้หวัน ฮัอยซท แอนด์ เครน (ประเทศไทย) จำกัด","SP03S018","TRUE","FALSE","TRUE",,,"Default","FALSE","28/2 ซ.45 ถ.พระราม 9","แขวงสวนหลวง เขตสวนหลวง",10250,"กรุงเทพฯ","Thailand","(081-9) / 0-2720-1035-6",,"0-2718-9709",,"วัสดุสิ้นเปลือง ",,"สายเครน, รอก","30 Days",7,, +"res_partner_expendables_38","คุณทวีศักดิ์",,"FALSE","FALSE","TRUE","บริษัท ไต้หวัน ฮัอยซท แอนด์ เครน (ประเทศไทย) จำกัด","res_partner_expendables_37","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_39","บริษัท ท เทียนชัย จำกัด","SP03S019","TRUE","FALSE","TRUE",,,"Default","FALSE","184/2 สายลวด + +","ตำบลปากน้ำ อำเภอเมืองสมุทรปราการ + +",10280,"สมุทรปราการ","Thailand","02-7018014-5, 7016295",,"02-3953552",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","30 Days",3,, +"res_partner_expendables_40","ปรียา",,"FALSE","FALSE","TRUE","บริษัท ท เทียนชัย จำกัด","res_partner_expendables_39","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_41","บริษัท ทวีทรัพย์ไทยเทรดดิ้ง จำกัด","SP03S020","TRUE","FALSE","TRUE",,,"Default","FALSE","516 - 518 ถนนบางนา - ตราด","แขวงบางนา เจตบางนา",10260,"กรุงเทพฯ","Thailand","0-2744 6377-8 ",," FAX : 0-27446379",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","30 Days",3,, +"res_partner_expendables_42","คุณธัญ",,"FALSE","FALSE","TRUE","บริษัท ทวีทรัพย์ไทยเทรดดิ้ง จำกัด","res_partner_expendables_41","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_43","บริษัท ทานากะ เคมีคอล (ประเทศไทย) จำกัด","SP03S021","TRUE","FALSE","TRUE",,,"Default","FALSE","2344 หมู่บ้านโฮมเพลส ถนนพัฒนาการ","แขวงสวนหลวง เขตสวนหลวง",102500,"กรุงเทพฯ","Thailand","02 - 722 7900 - 2 ",," 02 - 722 7887",,"วัสดุสิ้นเปลือง ",,"สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ","30 Days",7,, +"res_partner_expendables_44","คุณผนิดา",,"FALSE","FALSE","TRUE","บริษัท ทานากะ เคมีคอล (ประเทศไทย) จำกัด","res_partner_expendables_43","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_45","คุณสืบพงษ์",,"FALSE","FALSE","TRUE","บริษัท ทานากะ เคมีคอล (ประเทศไทย) จำกัด","res_partner_expendables_43","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_46","บริษัท ที.พี.ซี. (2000) อินเตอร์เนชั่นแนล กรุ๊ป จำกัด","SP03S022","TRUE","FALSE","TRUE",,,"Default","FALSE","34-34/1 ม.7 ถนนศรีนครินทร์","ต.เทพารักษ์ อ.เมืองสมุทรปราการ",10270,"สมุทรปราการ","Thailand","0-2883-0440,883-0330-1",,"02-8830493",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","30 Days",3,, +"res_partner_expendables_47","คุณธนพล",,"FALSE","FALSE","TRUE","บริษัท ที.พี.ซี. (2000) อินเตอร์เนชั่นแนล กรุ๊ป จำกัด","res_partner_expendables_46","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_48","คุณปู",,"FALSE","FALSE","TRUE","บริษัท ที.พี.ซี. (2000) อินเตอร์เนชั่นแนล กรุ๊ป จำกัด","res_partner_expendables_46","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_49","บริษัท เทพเทวา มั่นคง จำกัด","SP03S023","TRUE","FALSE","TRUE",,,"Default","FALSE","64,66,68,70,72,76 ถ.ท่าดินแดง ซ.18","แขวงคลองสาน เขตคลองสาน",10600,"กรุงเทพฯ","Thailand","02 - 439 - 5937 ,02-437 0387 ",,"02-438 9581",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","30 Days",3,, +"res_partner_expendables_50","คุณแอม",,"FALSE","FALSE","TRUE","บริษัท เทพเทวา มั่นคง จำกัด","res_partner_expendables_49","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_51","กระแต",,"FALSE","FALSE","TRUE","บริษัท เทพเทวา มั่นคง จำกัด","res_partner_expendables_49","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_52","บริษัท โทเทิล พลาส แพ็ค จำกัด","SP03S024","TRUE","FALSE","TRUE",,,"Default","FALSE","95/356-358 ซ.พระราม 3 (ซ.52) ถ.พระราม 3","แขวงช่องนนทรี เขตยานนาวา",10120,"กรุงเทพฯ","Thailand","01-6155181 / 0-2681-4920",,"0-2681-4921",,"วัสดุสิ้นเปลือง ",,"ฟิล์มยืด STRETCH FILM",,"-",, +"res_partner_expendables_53","นพงษ์ วิวัฒน์ธนสาร",,"FALSE","FALSE","TRUE","บริษัท โทเทิล พลาส แพ็ค จำกัด","res_partner_expendables_52","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_54","บริษัท ไทย โกลบอล ซัพพลาย จำกัด","SP03S025","TRUE","FALSE","TRUE",,,"Default","FALSE","1098 ศรีนครินทร์ + +","แขวงสวนหลวง เขตสวนหลวง + +",10250,"กรุงเทพฯ","Thailand","023224145-7,027213092,023228970-2",,"02362-4948",,"วัสดุสิ้นเปลือง ",,"อุปกรณ์เซฟตี้",,"-",, +"res_partner_expendables_55","บริษัท ไทยเทคโนเพลท จำกัด","SP03S026","TRUE","FALSE","TRUE",,,"Default","FALSE","12/1 หมู่ 9 ถนนบางคูวัด","อ.เมือง",12000,"ปทุมธานี","Thailand","0-2976-5281-4 (นุช - บัญชี)",,"0-2598-6490",,"วัสดุสิ้นเปลือง ",,"Sticker ","30 Days",15,, +"res_partner_expendables_56","คุณรุ่งทิพย์",,"FALSE","FALSE","TRUE","บริษัท ไทยเทคโนเพลท จำกัด","res_partner_expendables_55","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_57","บริษัท ไทยนครพัฒนา ( 1982 ) จำกัด","SP03S027","TRUE","FALSE","TRUE",,,"Default","FALSE","2242-4 รามคำแหง","แขวงหัวหมาก เขตบางกะปิ",10240,"กรุงเทพฯ","Thailand","0-2377 0737, 02 - 3779488 ",,"0-2377 2812",,"วัสดุสิ้นเปลือง ",,"ร้านขายปลีกสี น้ำมันชักเงา และแลกเกอร์ +","Cash",7,, +"res_partner_expendables_58","คุณเปรี้ยว",,"FALSE","FALSE","TRUE","บริษัท ไทยนครพัฒนา ( 1982 ) จำกัด","res_partner_expendables_57","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_59","บริษัท ไทยพัฒนสิน ( จิ้นเส็ง 2000 ) จำกัด","SP03S028","TRUE","FALSE","TRUE",,,"Default","FALSE","286-288 ถ.สุขุมวิท","ต.มาบตาพุด อ.เมือง",,"ระยอง","Thailand","038-691994-9 ,( Office) 02-886 9506",,"038-692000,0-288 30612",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","30 Days",3,, +"res_partner_expendables_60","คุณรพีพร",,"FALSE","FALSE","TRUE","บริษัท ไทยพัฒนสิน ( จิ้นเส็ง 2000 ) จำกัด","res_partner_expendables_59","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_61","บริษัท ไทยรุ่งเรือง ฟิตติ้ง แอนด์ วาวล์ จำกัด","SP03S029","TRUE","FALSE","TRUE",,,"Default","FALSE","15 ถนนมหานคร","แขวงมหาพฤฒาราม เขตบางรัก",10500,"กรุงเทพฯ","Thailand","0-2233-4320",,"0-2236-2404",,"วัสดุสิ้นเปลือง ",,"วาล์ว ","30 Days",3,, +"res_partner_expendables_62","คุณเอ๋",,"FALSE","FALSE","TRUE","บริษัท ไทยรุ่งเรือง ฟิตติ้ง แอนด์ วาวล์ จำกัด","res_partner_expendables_61","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_63","บริษัท ไทยวัฒนาพลาสติก จำกัด","SP03S030","TRUE","FALSE","TRUE",,,"Default","FALSE","267 หมู่ 4 ถนนเศรษฐกิจ 1","ต.ท่าไม้ อ.กระทุ่มแบน",,"สมุทรสาคร","Thailand","02-8621080-7",,"02-8623204",,"วัสดุสิ้นเปลือง ",,"พลาสติกใส","30 Days",7,, +"res_partner_expendables_64","สุดาณี (บี)",,"FALSE","FALSE","TRUE","บริษัท ไทยวัฒนาพลาสติก จำกัด","res_partner_expendables_63","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_65","บริษัท พรพรหมเพิ่มพัฒนา (2002) จำกัด","SP03S031","TRUE","FALSE","TRUE",,,"Default","FALSE","72 ซอยท่าดินแดง 18 ถนนท่าดินแดงคลองสาน","กรุงเทพมหานคร",10600,"กรุงเทพฯ","Thailand","02-4370387, 4392874",,"02-4372960",,"วัสดุสิ้นเปลือง ",,"ถุงขยะ","30 Days",7,, +"res_partner_expendables_66","วิไล",,"FALSE","FALSE","TRUE","บริษัท พรพรหมเพิ่มพัฒนา (2002) จำกัด","res_partner_expendables_65","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_67","บริษัท เฟอร์โกอุตสาหกรรม จำกัด","SP03S032","TRUE","FALSE","TRUE",,,"Default","FALSE","388 ม.7","ต.บางเสาธง อ.บางเสาธง",10540,"สมุทรปราการ","Thailand","02-708 3745-50",," 02-708 -3722 ",,"วัสดุสิ้นเปลือง ",,"PACKING / โฟมแผ่น","Cash",,, +"res_partner_expendables_68","คุณสมศักดิ์",,"FALSE","FALSE","TRUE","บริษัท เฟอร์โกอุตสาหกรรม จำกัด","res_partner_expendables_67","Contact","TRUE",,,,,"Thailand",,"089-665 5382",,,,,,,,, +"res_partner_expendables_69","บริษัท โฟร์เคม จำกัด ( สีเคลือบกระจก (สีทึบ)","SP03S033","TRUE","FALSE","TRUE",,,"Default","FALSE","116/67 หมู่ 9 ถ.เทพารักษ์","ต.บางปลา อ.บางพลี",10540,"สมุทรปราการ","Thailand"," 02 - 706-3337",," 02 - 706-3337",,"วัสดุสิ้นเปลือง ",,"สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ","Cash",7,, +"res_partner_expendables_70","คุณวรพงศ์",,"FALSE","FALSE","TRUE","บริษัท โฟร์เคม จำกัด ( สีเคลือบกระจก (สีทึบ)","res_partner_expendables_69","Contact","TRUE",,,,,"Thailand",,"089-499 1644",,,,,,,,, +"res_partner_expendables_71","บริษัท มหพงษ์ค้ากระดาษ จำกัด","SP03S034","TRUE","FALSE","TRUE",,,"Default","FALSE","461-3 ถ.ไมตรีจิตต์","ป้อมปราบ ป้อมปราบศัตรูพ่าย",10100,"กรุงเทพฯ","Thailand","0-2222-7307, 0-2225-2212",,"02-2252213",,"วัสดุสิ้นเปลือง ",,"กระดาษสีน้ำตาล","30 Days",15,, +"res_partner_expendables_72","หมี",,"FALSE","FALSE","TRUE","บริษัท มหพงษ์ค้ากระดาษ จำกัด","res_partner_expendables_71","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_73","บริษัท มาสเตอร์ แมค อินดัสทรี จำกัด","SP03S035","TRUE","FALSE","TRUE",,,"Default","FALSE","49/57 ม.12 ถ.กิ่งแก้ว","ต.ราชาเทวะ อ.บางพลี",10540,"สมุทรปราการ","Thailand","0-2750-2901-3/01-5662182",,"0-2750-2909",,"วัสดุสิ้นเปลือง ",,"อุปกรณ์เซฟตี้",,"-",, +"res_partner_expendables_74","คุณกาญจนา",,"FALSE","FALSE","TRUE","บริษัท มาสเตอร์ แมค อินดัสทรี จำกัด","res_partner_expendables_73","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_75","บริษัท ยู.เอส.ซีเนี่ยน จำกัด","SP03S036","TRUE","FALSE","TRUE",,,"Default","FALSE","326-328 ถ.ลาดพร้าว 132","บางกะปิ",10240,"กรุงเทพฯ","Thailand","02-2377 4854,02-3751171",,"02-3752667,5142489",,"วัสดุสิ้นเปลือง ",,"น้ำมัน / น้ำมันอุตสาหรรม ","30 Days",3,, +"res_partner_expendables_76","คุณพรพรรณ",,"FALSE","FALSE","TRUE","บริษัท ยู.เอส.ซีเนี่ยน จำกัด","res_partner_expendables_75","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_77","บริษัท ยูไนเต็ด ดีสทริบิวชั่น จำกัด","SP03S037","TRUE","FALSE","TRUE",,,"Default","FALSE","1367-1369 ถ.สุทธิสารวินิจฉัย","แขวงดินแดง เขตดินแดง",10400,"กรุงเทพฯ","Thailand","02-6938585-90",,"02-6938833",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้นเปลือง เทปกาว","30 Days",3,, +"res_partner_expendables_78","อาม",,"FALSE","FALSE","TRUE","บริษัท ยูไนเต็ด ดีสทริบิวชั่น จำกัด","res_partner_expendables_77","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_79","บริษัท รุ่งพัฒนา อิมปอร์ต เอ็กปอร์ต จำกัด","SP03S038","TRUE","FALSE","TRUE",,,"Default","FALSE","743 ซอย 42","แขวงบางมด เขตจอมทอง",10150,"กรุงเทพฯ","Thailand","028983104-5",,"02-8984852",,"วัสดุสิ้นเปลือง ",,"สารกันชื้น ","Cash",7,, +"res_partner_expendables_80","บริษัท รุ่งศิริ ซัพพลาย จำกัด","SP03S039","TRUE","FALSE","TRUE",,,"Default","FALSE","188/4 ถ.สายลวด","ต.ปากน้ำ อ.เมือง",10280,"สมุทรปราการ","Thailand","0-2701-6500, 701-6400",,"0-2701-7331",,"วัสดุสิ้นเปลือง ",,"น้ำยา / สารเคมี / WAX (กาวพ่นสแตนเลส, กาวยาง, กาพ่นสี )","30 Days",3,, +"res_partner_expendables_81","คุณสุมาลี",,"FALSE","FALSE","TRUE","บริษัท รุ่งศิริ ซัพพลาย จำกัด","res_partner_expendables_80","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_82","บริษัท วานิชย์เจริญ ฮาร์ดแวร์ จำกัด","SP03S040","TRUE","FALSE","TRUE",,,"Default","FALSE","2025/27 ถ.เจริญกรุง","แขวงวัดพระยาไกร เขตบางคอแหลม",10120,"กรุงเทพฯ","Thailand","02 - 727 0664-5,02-7270667-9 ",,"02 - 7270890",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","60 Days",3,, +"res_partner_expendables_83","คุณปนัดดา",,"FALSE","FALSE","TRUE","บริษัท วานิชย์เจริญ ฮาร์ดแวร์ จำกัด","res_partner_expendables_82","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_84","เบียร์",,"FALSE","FALSE","TRUE","บริษัท วานิชย์เจริญ ฮาร์ดแวร์ จำกัด","res_partner_expendables_82","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_85","บริษัท วี-ไนน แพคเกจจิ้ง จำกัด","SP03S041","TRUE","FALSE","TRUE",,,"Default","FALSE","140/39 ถ.นนทรี","แขวงช่องนนทรี เขตยานนาวา",10120,"กรุงเทพฯ","Thailand","0-2681-5840-2 (01-8494160)",,"02-681 5839",,"วัสดุสิ้นเปลือง ",,"ฟิล์มยืด STRETCH FILM","30 Days",3,, +"res_partner_expendables_86","บริษัท สแควร์ คอมเมอร์เชียล จำกัด","SP03S042","TRUE","FALSE","TRUE",,,"Default","FALSE","69-110/4 หมู่ 8","ต.บางกระสอ อ.เมืองนนทบุรี",11000,"นนทบุรี","Thailand","0-2591-9864-6",,"0-2950-3369",,"วัสดุสิ้นเปลือง ",,"น้ำมัน / น้ำมันอุตสาหรรม ","30 Days",3,, +"res_partner_expendables_87","คุณนี",,"FALSE","FALSE","TRUE","บริษัท สแควร์ คอมเมอร์เชียล จำกัด","res_partner_expendables_86","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_88","บริษัท สลิงอ่อน (ประเทศไทย) จำกัด","SP03S043","TRUE","FALSE","TRUE",,,"Default","FALSE","40/32-35 ถ.รามคำแหง","แขวงหัวหมาก เขตบางกะปิ",10240,"กรุงเทพฯ","Thailand","02-3793840, 7316000-2",,"02-3793889",,"วัสดุสิ้นเปลือง ",,"สายสลิง","30 Days",7,, +"res_partner_expendables_89","ทัศนีย์ รอดเกษี",,"FALSE","FALSE","TRUE","บริษัท สลิงอ่อน (ประเทศไทย) จำกัด","res_partner_expendables_88","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_90","บริษัท สีอีซามุไทย จำกัด","SP03S044","TRUE","FALSE","TRUE",,,"Default","FALSE","81ถนน ประดิพัทธ์ ซอย9","สามเสนใน พญาไท",10400,"กรุงเทพฯ","Thailand","02 - 279 9060 ,02 - 618 6938",,"02- 6187188",,"วัสดุสิ้นเปลือง ",,"สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ","Cash",7,, +"res_partner_expendables_91","คุณทิพย์ญาดา",,"FALSE","FALSE","TRUE","บริษัท สีอีซามุไทย จำกัด","res_partner_expendables_90","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_92","บริษัท แสงเจริญวานิช จำกัด","SP03S045","TRUE","FALSE","TRUE",,,"Default","FALSE","1565 ม.6 ถ.สุขุมวิท","ต.สำโรงเหนือ อ.เมือง",10270,"สมทุรปราการ","Thailand","02-398 2598,02-393 8390",,"02-3987749",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","30 Days",3,, +"res_partner_expendables_93","มงคล",,"FALSE","FALSE","TRUE","บริษัท แสงเจริญวานิช จำกัด","res_partner_expendables_92","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_94","สมแก้ว",,"FALSE","FALSE","TRUE","บริษัท แสงเจริญวานิช จำกัด","res_partner_expendables_92","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_95","บริษัท อ.ชัยวัฒน์ แพคเกจจิ้ง ซิสเท็ม จำกัด","SP03S046","TRUE","FALSE","TRUE",,,"Default","FALSE","52/40 หมู่ 9 ซอยเอกชัย 72 + +","เอกชัย แขวงบางบอน เขตบางบอน + +",10150,"กรุงเทพฯ","Thailand","02-8944036, 4161311",,"02-8944107",,"วัสดุสิ้นเปลือง ",,"PACKING / PE FOAM , AIR BUBBLE",,"-",, +"res_partner_expendables_96","ญาณวัฒน์",,"FALSE","FALSE","TRUE","บริษัท อ.ชัยวัฒน์ แพคเกจจิ้ง ซิสเท็ม จำกัด","res_partner_expendables_95","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_97","บริษัท อำนวยการดับเพลิง จำกัด","SP03S047","TRUE","FALSE","TRUE",,,"Default","FALSE","52/1-2 ถนนรามคำแหง 60/4","แขวงหัวหมาก เขตบางกะปิ",10240,"กรุงเทพฯ","Thailand","0-2374 5593, 02-374 8738 ",,"0-2374 5593 ",,"วัสดุสิ้นเปลือง ",,"อุปกรณ์เซฟตี้","30 Days",3,, +"res_partner_expendables_98","คุณบี",,"FALSE","FALSE","TRUE","บริษัท อำนวยการดับเพลิง จำกัด","res_partner_expendables_97","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_99","บริษัท อุตสาหกรรมยูเนี่ยนเปเปอร์ทิ้ว จำกัด","SP03S048","TRUE","FALSE","TRUE",,,"Default","FALSE","522 ม.1 ซ.ปลั่งเปล่ง ถ.พุทธรักษา","ต.ท้ายบ้าน อ.เมือง",10280,"สมทุรปราการ","Thailand","02-3951217, 3952068",,"02-3870679",,"วัสดุสิ้นเปลือง ",,"กระดาษสีน้ำตาล","Cash",7,, +"res_partner_expendables_100","ประกายรัตน์",,"FALSE","FALSE","TRUE","บริษัท อุตสาหกรรมยูเนี่ยนเปเปอร์ทิ้ว จำกัด","res_partner_expendables_99","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_101","คุณน้อย",,"FALSE","FALSE","TRUE","บริษัท อุตสาหกรรมยูเนี่ยนเปเปอร์ทิ้ว จำกัด","res_partner_expendables_99","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_102","บริษัท เอเซียโพลีพลาสติค อินดัสทรี จำกัด","SP03S049","TRUE","FALSE","TRUE",,,"Default","FALSE","230 หมู่ที่ 6 ถนนสุขสวัสดิ์ 78","ตำบลในคลองบางปลากด พระสมุทรเจดีย์",10290,"สมทุรปราการ","Thailand","02-2942166, 2940772, 2942215",,"02-2942216",,"วัสดุสิ้นเปลือง ",,"PACKING / PE FOAM , AIR BUBBLE","30 Days","-",, +"res_partner_expendables_103","ยุกต์ จิระกิจจา",,"FALSE","FALSE","TRUE","บริษัท เอเซียโพลีพลาสติค อินดัสทรี จำกัด","res_partner_expendables_102","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_104","บริษัท เอ็ม พี แอล มาร์เก็ตติ้ง จำกัด","SP03S050","TRUE","FALSE","TRUE",,,"Default","FALSE","112/285-288 ซ.วัจนะ ม.8 ถ.จอมทอง","แขวง/เขตจอมทอง",10150,"กรุงเทพฯ","Thailand","02-4770430-7",,"02-4770439",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้นเปลือง เทปกาว","60 Days",5,, +"res_partner_expendables_105","วันชัย",,"FALSE","FALSE","TRUE","บริษัท เอ็ม พี แอล มาร์เก็ตติ้ง จำกัด","res_partner_expendables_104","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_106","บริษัท เอ็ม เอ็ม พี แพ็คเกจจิ้ง กรุ๊พ จำกัด","SP03S051","TRUE","FALSE","TRUE",,,"Default","FALSE","3075/1-2 ถ.สุขุมวิท","แขวงบางจาก เขตพระโขนง",10260,"กรุงเทพฯ","Thailand","02-7418444",,"02-3320514, 7418425",,"วัสดุสิ้นเปลือง ",,"ฟิล์มยืด M-STRETCH","Cash",3,, +"res_partner_expendables_107","K. สมถวิน",,"FALSE","FALSE","TRUE","บริษัท เอ็ม เอ็ม พี แพ็คเกจจิ้ง กรุ๊พ จำกัด","res_partner_expendables_106","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_108","ร้านจงวิศาล","SP03S052","TRUE","FALSE","TRUE",,,"Default","FALSE","100 ม.8","ต.โคกปีบอ.ศรีมโหสถ",25190,"ปราจีนบุรี","Thailand","037 - 276 - 328 ",,"037 - 276 - 460 , 037 - 276 - 328",,"วัสดุสิ้นเปลือง ",,"ร้านวัสดุก่อสร้าง ","30 Days",7,, +"res_partner_expendables_109","คุณอุไรวรรณ",,"FALSE","FALSE","TRUE","ร้านจงวิศาล","res_partner_expendables_108","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_110","สถานีบริการน้ำมันสหกรณ์การเกษตรโคกปีบ จำกัด","SP03S053","TRUE","FALSE","TRUE",,,"Default","FALSE","224 หมู่ที่ 7","ต.โคกปีบอ.ศรีมโหสถ",25190,"ปราจีนบุรี","Thailand","037 - 276 - 742 , 037 - 276 - 049",," 037 - 276 - 049",,"วัสดุสิ้นเปลือง ",,"น้ำมัน","Cash",3,, +"res_partner_expendables_111","คุณนงเยาว์",,"FALSE","FALSE","TRUE","สถานีบริการน้ำมันสหกรณ์การเกษตรโคกปีบ จำกัด","res_partner_expendables_110","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_112","แสงเจริญรับเบอร์ส (1996)","SP03S054","TRUE","FALSE","TRUE",,,"Default","FALSE","228/8-9 ม.11","ต.บางพลีใหญ่ อ.บางพลี",10540,"สมทุรปราการ","Thailand","02-3121737 (01-3728022)",,"02-7524944",,"วัสดุสิ้นเปลือง ",,"ปะเก็นยาง, ท่อสายใยลวด (สายยางฉีดโฟม)","30 Days",7,, +"res_partner_expendables_113","วี",,"FALSE","FALSE","TRUE","แสงเจริญรับเบอร์ส (1996)","res_partner_expendables_112","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_114","ห้างหุ้นส่วนจำกัด กิจเจริญวัฒนาโลหะภัณฑ์","SP03S055","TRUE","FALSE","TRUE",,,"Default","FALSE","21/230-232 ม.12 ถ.บางนา-ตราด","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","02-7490722-6",,"02-3938046, 7444584",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","30 Days",3,, +"res_partner_expendables_115","พัฒน์",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด กิจเจริญวัฒนาโลหะภัณฑ์","res_partner_expendables_114","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_116","ห้างหุ้นส่วนจำกัด ทูลลิ่ง ซัพพลาย","SP03S056","TRUE","FALSE","TRUE",,,"Default","FALSE","46/90 ซอยนวลจันทร์ 31","แขวงนวลจันท์ เขตบึงกุ่ม",10230,"กรุงเทพฯ","Thailand","02 - 363-7748-51",," 02 - 509-9227",,"วัสดุสิ้นเปลือง ",,"เครื่องต๊าปเกลียว","30 Days",7,, +"res_partner_expendables_117","คุณธีรพล",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ทูลลิ่ง ซัพพลาย","res_partner_expendables_116","Contact","TRUE",,,,,"Thailand",,"081-988 8718",,,,,,,,, +"res_partner_expendables_118","ห้างหุ้นส่วนจำกัด พิพัฒนกิจเทรดดิ้ง","SP03S057","TRUE","FALSE","TRUE",,,"Default","FALSE","113 ถนนเสือป่า","แขวงป้อมปราบ",10100,"กรุงเทพฯ","Thailand","02-623 2434",,"02-623 2433, 02 - 252 455-6 ",,"วัสดุสิ้นเปลือง ",,"พลาสติกใส","Cash",3,, +"res_partner_expendables_119","คุณนิตยา",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด พิพัฒนกิจเทรดดิ้ง","res_partner_expendables_118","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_120","ห้างหุ้นส่วนจำกัด รุ่งพิทักษ์ ปิโตรเลียม","SP03S058","TRUE","FALSE","TRUE",,,"Default","FALSE","123 ม.4","ต.เมืองเก่า อ.พนมสารคาม",,"ฉะเชิงเทรา","Thailand"," 038 - 551 - 219 , 038 - 551 - 650 ",,"038 - 552 - 812 ,038 - 551 - 219",,"วัสดุสิ้นเปลือง ",,"แก๊ส","30 Days","5 - 7",, +"res_partner_expendables_121","คุณปราณี",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด รุ่งพิทักษ์ ปิโตรเลียม","res_partner_expendables_120","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_122","ห้างหุ้นส่วนจำกัด วงศ์วิวัฒน์ฮาร์ดแวร์","SP03S059","TRUE","FALSE","TRUE",,,"Default","FALSE","4509/7-8 ถ.สุขุมวิท","แขวงบางนา เขตบางนา (เริ่ม 9 มิ.ย.2549)",10260,"กรุงเทพฯ","Thailand","0-2398-0916-7, 744-4540-4",,"02-3988963",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","Cash",3,, +"res_partner_expendables_123","คุณแอนนา",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด วงศ์วิวัฒน์ฮาร์ดแวร์","res_partner_expendables_122","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_124","ห้างหุ้นส่วนจำกัด วี.เอ็น.คอมเมอร์เชียล","SP03S060","TRUE","FALSE","TRUE",,,"Default","FALSE","118/134 ซอยบัวทอง 10/4","ตำบลบางรักพัฒนา อำเภอบางบัวทอง",11110,"นทบุรี","Thailand","02 - 5946105",,"02 - 5946106",,"วัสดุสิ้นเปลือง ",,"ถุงขยะ",,"-",, +"res_partner_expendables_125","ห้างหุ้นส่วนจำกัด ศรีวิกรณ์เพ้นท์ ( สีซ่อมผนัง )","SP03S061","TRUE","FALSE","TRUE",,,"Default","FALSE","487/13 หมู่ 6 แพรกษา","อำเภอเมืองสมุทรปราการ",10280,"สมุทรปราการ","Thailand","02- 7037449",," 02 - 7011301",,"วัสดุสิ้นเปลือง ",,"สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ","Cash",7,, +"res_partner_expendables_126","ห้างหุ้นส่วนจำกัด สแตนดาร์ด เทป","SP03S062","TRUE","FALSE","TRUE",,,"Default","FALSE","479/19 วอยวัดปรก 2 ถนนจันทน์","แขวงทุ่งวัดดอน เขตสาทร",10120,"กรุงเทพฯ","Thailand","02 - 675 6969",,"02-6756202",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้นเปลือง เทปกาว","30 Days",3,, +"res_partner_expendables_127","คุณเอกฤทธิ์",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด สแตนดาร์ด เทป","res_partner_expendables_126","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_128","ห้างหุ้นส่วนจำกัด สมชาติฮาร์ดแวร์","SP03S063","TRUE","FALSE","TRUE",,,"Default","FALSE","176 แขวงบุคคโล","เขตธนบุรี",10600,"กรุงเทพฯ","Thailand","02-8760308-9",,"02-4764452",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","30 Days",3,, +"res_partner_expendables_129","สมหญิง",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด สมชาติฮาร์ดแวร์","res_partner_expendables_128","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_130","ห้างหุ้นส่วนจำกัด สีไดโน (สี RUST-OLEUM)","SP03S064","TRUE","FALSE","TRUE",,,"Default","FALSE","69 หมู่ 14 ถนนกิ่งแก้ว","ต.ราชาเทวะ อ.บางพลี",10540,"สมุทรปราการ","Thailand"," 02-175 2577 ,02-738 4111",,"02 - 738 4341",,"วัสดุสิ้นเปลือง ",,"สีอุตสากรรม / สีเพื่องานตกแต่ง / สีสกรีนกระจก ","Cash",7,, +"res_partner_expendables_131","คุณเอ๋",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด สีไดโน (สี RUST-OLEUM)","res_partner_expendables_130","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_132","ห้างหุ้นส่วนจำกัด อนุสรณ์ โปรดักส์","SP03S065","TRUE","FALSE","TRUE",,,"Default","FALSE","92/7 ม.5 ถ.อ่อนนุช","แขวงประเวศ เขตประเวศ",10250,"กรุงเทพฯ","Thailand","02-3219448, 3223360",,"02-3215206, 3214402",,"วัสดุสิ้นเปลือง ",,"อุปกรณ์เซฟตี้","30 Days",3,, +"res_partner_expendables_133","คุณหนิง",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด อนุสรณ์ โปรดักส์","res_partner_expendables_132","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_expendables_134","คุณอั้ม",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด อนุสรณ์ โปรดักส์","res_partner_expendables_132","Contact","TRUE",,,,,"Thailand",,"085-1242709",,,,,,,,, +"res_partner_expendables_135","ห้างหุ้นส่วนจำกัด สำโรงรวมกิจ","SP03S066","TRUE","FALSE","TRUE",,,"Default","FALSE","229,299/1-2 หมู่ 9 ถ.สุขุมวิท","ต.เทพารักษ์ อ.เมืองสมุทรปราการ",10270,"สมุทรปราการ","Thailand"," 02- 756-9980-85",,"02-756-9978-79",,"วัสดุสิ้นเปลือง ",,"วัสดุสิ้จเปลือง / เครื่องมือช่าง / ทั่วไป","Cash",3,, +"res_partner_expendables_136","คุณประชา",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด สำโรงรวมกิจ","res_partner_expendables_135","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_1","บริษัท ควอซาร์ ซิสเท็ม จำกัด","SP06S0001","TRUE","FALSE","TRUE",,,"Default","FALSE","264/7 ซ.ปรีดีพนมยงค์ ถฬสุขุมวิท 71","แขวงพระโขนงเหนือ เขตวัฒนา",10110,"กรุงเทพฯ","Thailand","02-751 2929 ",,"02-751 2988",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days","-",, +"res_partner_office_2","บริษัท มัลติเทค คอมพิวเตอร์ โซลูชั่น จำกัด","SP06S0002","TRUE","FALSE","TRUE",,,"Default","FALSE","38 ม.3","ต.ท้ายบ้าน อ.เมือง",10280,"สมุทรปราการ","Thailand","04-0710364 / 02-7028098, 3892695",,"02-3956129",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","Cash",7,, +"res_partner_office_3","แก้ว / โยธิน",,"FALSE","FALSE","TRUE","บริษัท มัลติเทค คอมพิวเตอร์ โซลูชั่น จำกัด","res_partner_office_2","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_4","บริษัท ออฟฟิต เบส ดอท คอม จำกัด","SP06S0003","TRUE","FALSE","TRUE",,,"Default","FALSE","2371 Petchaburi Rd., 7/F Petchburi Bldg.","Bangkapi Huay - Kwang",10320,"Bangkok","Thailand","0-2718-0818",," 0-2716-5663",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",7,, +"res_partner_office_5","คุณสุนทร",,"FALSE","FALSE","TRUE","บริษัท ออฟฟิต เบส ดอท คอม จำกัด","res_partner_office_4","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_6","NetSys & Computer Co.,Ltd.","SP06S0004","TRUE","FALSE","TRUE",,,"Default","FALSE","842 ถนนประชาอุทิศ","แขวงสามเสนนอก เขตห้วยขวาง",10320,"กรุงเทพฯ","Thailand","66 (0) 2274 2924-6, 66 (0) 2274 4479",,"66 (0) 2274 4614",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days","-",, +"res_partner_office_7","บริษัท แอมโปไมโครซิส จำกัด","SP06S0005","TRUE","FALSE","TRUE",,,"Default","FALSE","99/349 อาคาร ณ นคร หมู่ที่ 2 ถนนแจ้งวัฒนะ","แขวงทุ่งสองห้อง เขตหลักสี่",,"กรุงเทพฯ","Thailand","02-235-3999 ",,"02-235-9939",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",7,, +"res_partner_office_8","คุณวรรณา",,"FALSE","FALSE","TRUE","บริษัท แอมโปไมโครซิส จำกัด","res_partner_office_7","Contact","TRUE",,,,,"Thailand",,"081-3745821, 086-340-9310",,,,,,,,, +"res_partner_office_9","LEO ELECTRONIC CO.,LTD.","SP06S0006","TRUE","FALSE","TRUE",,,"Default","FALSE","27 ,29 Bangna - Trad 34 ,","Bangna , Bangna Bangkok",10260,"Bangkok","Thailand","02-746 9500 ,02-746 8708",,"02 - 746 8712",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","Cash",7,, +"res_partner_office_10","คุณหทัยชนก",,"FALSE","FALSE","TRUE","LEO ELECTRONIC CO.,LTD.","res_partner_office_9","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_11","บริษัท แคนนอน มาร์เก็ตติ้ง (ไทยแลนด์) จำกัด","SP06S0007","TRUE","FALSE","TRUE",,,"Default","FALSE","179/34-35 อาคารบางกอกซิตี้ทาวเวอร์ ชั้น 9-10 ถนนสาทรใต้","แขวงทุ่งมหาเมฆ เขตสาทร",10120,"กรุงเทพฯ","Thailand","0-2344-9999 ext 720-721/ 09-1404997",,"0-2344-9960",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",3,, +"res_partner_office_12","คุณคมกฤษ",,"FALSE","FALSE","TRUE","บริษัท แคนนอน มาร์เก็ตติ้ง (ไทยแลนด์) จำกัด","res_partner_office_11","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_13","ANGEL WATER SYSTEM","SP06S0008","TRUE","FALSE","TRUE",,,"Default","FALSE","999/339 หมู่ที่ 6","แขวงหลักสอง เชตบางแค",10160,"กรุงเทพฯ","Thailand","02 - 404 4001",,"02 - 404 4003",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","60 Days",3,, +"res_partner_office_14","บริษัท ออฟฟิศเมท จำกัด (มหาชน)","SP06S0009","TRUE","FALSE","TRUE",,,"Default","FALSE","24 ซอยอ่อนนุช 66/1","แขวงสวนหลวง เขตสวนหลวง",10250,"กรุงเทพฯ","Thailand","02- 739 5555 #155",,"02-721 1717",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",3,, +"res_partner_office_15","คุณสมฤดี 155",,"FALSE","FALSE","TRUE","บริษัท ออฟฟิศเมท จำกัด (มหาชน)","res_partner_office_14","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_16","บริษัท เอ็ม-พลัส เทค จำกัด","SP06S0010","TRUE","FALSE","TRUE",,,"Default","FALSE","4/6 ซ. รามคำแหง 30","แขวงหัวหมาก เขตบางกะปิ",10240,"กรุงเทพฯ","Thailand","02-7322090",,"02-7329435",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",3,, +"res_partner_office_17","มนต์ชัย",,"FALSE","FALSE","TRUE","บริษัท เอ็ม-พลัส เทค จำกัด","res_partner_office_16","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_18","จิ๊บ",,"FALSE","FALSE","TRUE","บริษัท เอ็ม-พลัส เทค จำกัด","res_partner_office_16","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_19","บริษัท ลีเรคโก ( ประเทศไทย ) จำกัด","SP06S0011","TRUE","FALSE","TRUE",,,"Default","FALSE","41/10-11 หมู่ 6 ถนนบางนาตราด ก.ม.16.5","ตำบลบางโฉลง อำเภอบางพลี",10540,"สมุทรปราการ","Thailand","02 338 0200",,"02 349 6552",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","7 Days",3,, +"res_partner_office_20","บริษัท ไทยฟูจิซีร็อกซ์ จำกัด","SP06S0012","TRUE","FALSE","TRUE",,,"Default","FALSE","123 อาคารซันทาวเวอร์ส เอ ชั้นที่ 23-26 ถนน วิภาวดีรังสิต","แขวงจอมพล เขตจตุจักร",10900,"กรุงเทพฯ","Thailand","02-6796050-68",,"02-6796048-9",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",3,, +"res_partner_office_21","บริษัท เอ็ม-พลัส เทค จำกัด","SP06S0013","TRUE","FALSE","TRUE",,,"Default","FALSE","33/38 ม.10 ถ.เทพารักษ์","ต.บางปลา อ.บางพลี",10540,"สมุทรปราการ","Thailand","0-2750-4852-8","09-1681699","0-2750-7299",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",15,, +"res_partner_office_22","คุณชูศักดิ์ ปู่หล่อ",,"FALSE","FALSE","TRUE","บริษัท เอ็ม-พลัส เทค จำกัด","res_partner_office_21","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_23","บริษัท โปรเจคเตอร์ เวิลค์จำกัด","SP06S0014","TRUE","FALSE","TRUE",,,"Default","FALSE","202 อาคารเลอ คองคอร์ด ชั้น 10 ถนนรัชดาภิเษก","แขวงสามเสนนอก เขตห้วยขวาง",10310,"กรุงเทพฯ","Thailand","02-6942355 ต่อ 1","08-36666546","02-6942369",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","Cash",7,, +"res_partner_office_24","บริษัท ดำรงค์ชัย เซฟแอนด์สตีล เฟอร์นิเจอร์ จำกัด","SP06S0015","TRUE","FALSE","TRUE",,,"Default","FALSE","1945/6-9 ม.1 ถ.สุขุมวิท","ต.สำโรงเหนือ อ.เมืองสมุทรปราการ",,"สมุทรปราการ","Thailand","01-4037315 / 02-755 0955-65",," 0-2755 -0953-4",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",7,, +"res_partner_office_25","พิชชาพร (ออย)",,"FALSE","FALSE","TRUE","บริษัท ดำรงค์ชัย เซฟแอนด์สตีล เฟอร์นิเจอร์ จำกัด","res_partner_office_24","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_26","บริษัท เน็ตซีส แอนด์ คอมพิวเตอร์ จำกัด","SP06S0016","TRUE","FALSE","TRUE",,,"Default","FALSE","842 ถนนประชาอุทิศ","แขวงสามเสนนอก เขตห้วยขวาง",10310,"กรุงเทพฯ","Thailand",,,,,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",7,, +"res_partner_office_27","บริษัท ไมร่า คอมพิวเตอร์ อินเตอร์ เนชั่นแนล จำกัด","SP06S0017","TRUE","FALSE","TRUE",,,"Default","FALSE","509, 511 ถนนรามอินทรา","แขวงคันนายาว เขต/อำเภอ คันนายาว",10230,"กรุงเทพฯ","Thailand"," 0-2943 0180-9 ",,"0-2519 2825",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",7,, +"res_partner_office_28","การะเกษ# 1329",,"FALSE","FALSE","TRUE","บริษัท ไมร่า คอมพิวเตอร์ อินเตอร์ เนชั่นแนล จำกัด","res_partner_office_27","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_29","คุณกรพิกุล",,"FALSE","FALSE","TRUE","บริษัท ไมร่า คอมพิวเตอร์ อินเตอร์ เนชั่นแนล จำกัด",,"Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_30","บริษัท พีแอนด์เจ ฟรีเวย์ เทรดดิ้ง จำกัด (หมึก )","SP06S0018","TRUE","FALSE","TRUE",,,"Default","FALSE","88 ซอยพร้อมพงษ์ ถนนสุขุมวิท 39","แขวงคลองตันเหนือ เขตวัฒนา",10110,"กรุงเทพฯ","Thailand","02-7184110 /02-720 3496-7",,"02-720 3495",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",3,, +"res_partner_office_31","คุณกวาง",,"FALSE","FALSE","TRUE","บริษัท พีแอนด์เจ ฟรีเวย์ เทรดดิ้ง จำกัด (หมึก )","res_partner_office_30","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_32","บริษัท ที เอ็น . แม็คเน็ท เซ็นเตอร์ จำกัด (หมึก )","SP06S0019","TRUE","FALSE","TRUE",,,"Default","FALSE","99/11 ม.6 ซ.พัฒนาชุมชน 1 ถ.ศรีนครินทร์","บางแก้ว อ.บางพลี",,"สมุทรปราการ","Thailand"," 02 - 348 - 2411 , 02 - 348 - 2422 ",,"02 - 348 - 2424 - 5 ",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","60 Days",3,, +"res_partner_office_33","คุณหญิง",,"FALSE","FALSE","TRUE","บริษัท ที เอ็น . แม็คเน็ท เซ็นเตอร์ จำกัด (หมึก )","res_partner_office_32","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_34","บริษัท ไอ.ที.โซลูชั่น คอมพิวเตอร์ (ไทยแลนด์) จำกัด","SP06S0020","TRUE","FALSE","TRUE",,,"Default","FALSE","937 ถนนศรีนครินทร์","แขวงสวนหลวง เขตสวนหลวง",10250,"กรุงเทพฯ","Thailand"," 0-2725-6499 ",,"0-2725-6499",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",3,, +"res_partner_office_35","คุณพัชมณ",,"FALSE","FALSE","TRUE","บริษัท ไอ.ที.โซลูชั่น คอมพิวเตอร์ (ไทยแลนด์) จำกัด","res_partner_office_34","Contact","TRUE",,,,,"Thailand",,"085-143-3067",,,,,,,,, +"res_partner_office_36","ห้างหุ้นส่วนจำกัด วุฒิชัยซัพพลายส์","SP06S0021","TRUE","FALSE","TRUE",,,"Default","FALSE","736 ซ.เทอดไท 33 ถ.เทอดไท","แขวงบุคคโล เขตธนบุรี",10600,"กรุงเทพฯ","Thailand","05-1485133,0-2878-8021, 878-8033",,"0-2878-8022",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",3,, +"res_partner_office_37","วิสูตรวุฒิ",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด วุฒิชัยซัพพลายส์","res_partner_office_36","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_38","คุณโป่ง",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด วุฒิชัยซัพพลายส์","res_partner_office_36","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_39","Point IT Consulting Co., Ltd.","SP06S0022","TRUE","FALSE","TRUE",,,"Default","FALSE","17 Soi On Nut 35,","Kweng Suan Luang, Khet Suan Luang",10250,"Bangkok","Thailand","666-322-8010"," ","662-322-8011",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ",,"-",, +"res_partner_office_40","Mr.Kreangkrai Sangseeda",,"FALSE","FALSE","TRUE","Point IT Consulting Co., Ltd.","res_partner_office_39","Contact","TRUE",,,,,"Thailand",,"087-083-7026",,,,,,,,, +"res_partner_office_41","ThaiBiz Provider Co.,Ltd.","SP06S0023","TRUE","FALSE","TRUE",,,"Default","FALSE","99/23 เขตอุตสาหกรรมซอฟต์แวร์ชั้น 12 ถ.แจ้งวัฒนะ","คลองเกลือ ปากเกร็ด",11120,"นนทบุรี","Thailand","02 - 962 2112 ",,"02 - 962 7320 ",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",7,, +"res_partner_office_42","คุณนันทนา",,"FALSE","FALSE","TRUE","ThaiBiz Provider Co.,Ltd.","res_partner_office_41","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_43","บริษัท เอ เอ เปเปอร์ แอนด์ สเตชั่นเนอรี่ จำกัด","SP06S0024","TRUE","FALSE","TRUE",,,"Default","FALSE","เลขที่ 109/2 หมู่ที่ 3","ต.บางสมัคร อ.บางประกง",24180,"ฉะเชิงเทรา","Thailand"," 02-659-1234 # 4 , 1759 # 4",," 02-659-1399",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",3,, +"res_partner_office_44","คุณบอย",,"FALSE","FALSE","TRUE","บริษัท เอ เอ เปเปอร์ แอนด์ สเตชั่นเนอรี่ จำกัด","res_partner_office_43","Contact","TRUE",,,,,"Thailand",,"085-835 3281",,,,,,,,, +"res_partner_office_45","ห้างหุ้นส่วนจำกัด เปเปอร์เทรดดิ้ง","SP06S0025","TRUE","FALSE","TRUE",,,"Default","FALSE","11/37 ซ.พหลโยธิน 32 ถ.พหลโยธิน","แขวงเสนานิคม เขตจตุจักร",10900,"กรุงเทพฯ","Thailand","02-5612099",,"02-5612120",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",3,, +"res_partner_office_46","อ้วน",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด เปเปอร์เทรดดิ้ง","res_partner_office_45","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_47","บริษัท เค.พี.ไอ. เทรดดิ้ง จำกัด","SP06S0026","TRUE","FALSE","TRUE",,,"Default","FALSE","47/2 หมู่ 1","แขวงพระโขนง เขตคลองเตย",10260,"กรุงเทพฯ","Thailand","02-311 0413-5",,"02-3110413-5 : 128-130",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",3,, +"res_partner_office_48","บอย",,"FALSE","FALSE","TRUE","บริษัท เค.พี.ไอ. เทรดดิ้ง จำกัด","res_partner_office_47","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_49","บริษัท เอ็น พี เค มาสเตอร์แพลน จำกัด","SP06S0027","TRUE","FALSE","TRUE",,,"Default","FALSE","11 - 13 ซอยบางนา-ตราด 12 ถ.บางนา-ตราด","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","0-2749-1282, 749-2183",,"0-2749-2185",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ","30 Days",3,, +"res_partner_office_50","คุณสุกัญญา",,"FALSE","FALSE","TRUE","บริษัท เอ็น พี เค มาสเตอร์แพลน จำกัด","res_partner_office_49","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_51","บริษัท ไทยแอมโน อินเตอร์เนชั่นแนล จำกัด","SP06S0028","TRUE","FALSE","TRUE",,,"Default","FALSE","267/15 ซ.สุขุมวิท 63 ถ.สุขุมวิท","แขวงคลองตันเหนือ เขตวัฒนา",10110,"กรุงเทพฯ","Thailand","02-3821523-5",,"02-3819895",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"เครื่องใช้สำนักงาน ( บัตรตอก, ผ้าหมึก ) ","45 Days",3,, +"res_partner_office_52","เริงศักดิ์",,"FALSE","FALSE","TRUE","บริษัท ไทยแอมโน อินเตอร์เนชั่นแนล จำกัด","res_partner_office_51","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_53","นุช",,"FALSE","FALSE","TRUE","บริษัท ไทยแอมโน อินเตอร์เนชั่นแนล จำกัด","res_partner_office_51","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_54","ตั้ว",,"FALSE","FALSE","TRUE","บริษัท ไทยแอมโน อินเตอร์เนชั่นแนล จำกัด","res_partner_office_51","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_55","บริษัท เทคโนวเลจ คอนซัลติง จำกัด","SP06S0029","TRUE","FALSE","TRUE",,,"Default","FALSE","72 อาคาร PAV ชั้น 2 ซ.ลาดพร้าว 42 ถนนลาดพร้าว","แขวงสามเสนนอก เขตห้วยขวาง",10310,"กรุงเทพฯ","Thailand","0-2513-9416 ",,"0- 2513-9413",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"งานระบบ Hardware , software","30 Days",3,, +"res_partner_office_56","K. Wichet",,"FALSE","FALSE","TRUE","บริษัท เทคโนวเลจ คอนซัลติง จำกัด","res_partner_office_55","Contact","TRUE",,,,,"Thailand",,,"089-031 2540",,,,,,,, +"res_partner_office_57","คุณจักรพงษ์",,"FALSE","FALSE","TRUE","บริษัท เทคโนวเลจ คอนซัลติง จำกัด","res_partner_office_55","Contact","TRUE",,,,,"Thailand",,,"086-5719603,081-3187777",,,,,,,, +"res_partner_office_58","บริษัท มายเซลส์ แอนด์ เซอร์วิส จำกัด","SP06S0030","TRUE","FALSE","TRUE",,,"Default","FALSE","61/251 หมู่ 6 ถ.ลำลูกกา","ต.บึงคำพล้อย อ.ลำลูกกา",12150,"ปทุมธานี","Thailand"," 0-2987-9947 ",," 0-2987-9948",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"ระบบ Telecom ","30 Days",3,, +"res_partner_office_59","คุณศรุต",,"FALSE","FALSE","TRUE","บริษัท มายเซลส์ แอนด์ เซอร์วิส จำกัด","res_partner_office_58","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_60","บริษัท จัสมิน อินเตอร์เนต จำกัด","SP06S0031","TRUE","FALSE","TRUE",,,"Default","FALSE","200 ม.4 อาคาร จัสมิน อินเตอร์เนชั่นแนล","ปากเกร็ด",11120,"นนทบุรี","Thailand","02-502 - 3700-4",,"02-502 3793 ",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"ระบบโทรศัพท์","30 Days",3,, +"res_partner_office_61","คุณนัฐกร",,"FALSE","FALSE","TRUE","บริษัท จัสมิน อินเตอร์เนต จำกัด","res_partner_office_60","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_62","บริษัท ซันไทย กรุ๊ป จำกัด","SP06S0032","TRUE","FALSE","TRUE",,,"Default","FALSE","61/162 ทวีมิตร ซ.5 ถ.พระราม 9","แขวง/เขตห้วยขวาง",10320,"กรุงเทพฯ","Thailand","02-2479991-5, 7468994-5",,"02-2455122, 7468993",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"ระบบโทรศัพท์","30 Days",3,, +"res_partner_office_63","คุณวนิดา",,"FALSE","FALSE","TRUE","บริษัท ซันไทย กรุ๊ป จำกัด","res_partner_office_62","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_64","คุณอดุลย์",,"FALSE","FALSE","TRUE","บริษัท ซันไทย กรุ๊ป จำกัด","res_partner_office_62","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_65","ห้างหุ้นส่วนจำกัด ซี. เอส. คอมมูนิเคชั่น เซอร์วิส","SP06S0033","TRUE","FALSE","TRUE",,,"Default","FALSE","61/235 หมู่ที่ 6 ถ. ลำลูกกา","ต. บึงคำพร้อย อ.ลำลูกกา",12150,"ปทุมธานี","Thailand","02 - 987 9947 ",,"02 - 987 9948",,"อุปกรณ์/เครื่องใช้สำนักงาน",,"ระบบโทรศัพท์","30 Days",3,, +"res_partner_office_66","คุณวิชัย",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ซี. เอส. คอมมูนิเคชั่น เซอร์วิส","res_partner_office_65","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_67","บริษัท โสภณแพคกิ้ง จำกัด","SP07S001","TRUE","FALSE","TRUE",,,"Default","FALSE","96 หมู่ 12","ต.บางพลีใหญ่ อ.บางพลี",10540,"สมุทรปราการ","Thailand","02 - 316 - 9278 - 80 ",,"02- 3169279 02 - 730 7300- 1",,"อื่น ๆ ",,"PACKING / พาเลท ,ลังไม้","30 Days",7,, +"res_partner_office_68","คุณทวี",,"FALSE","FALSE","TRUE","บริษัท โสภณแพคกิ้ง จำกัด","res_partner_office_67","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_69","คุณธนทัตต์",,"FALSE","FALSE","TRUE","บริษัท โสภณแพคกิ้ง จำกัด","res_partner_office_67","Contact","TRUE",,,,,"Thailand",,"089-7714599",,,,,,,,, +"res_partner_office_70","SIAM WOOD INTERTRADE CO.,LTD.","SP07S002","TRUE","FALSE","TRUE",,,"Default","FALSE","38/1 Moo 1 Kingkaew Road,","T. Rachateva , A. Bangplee",10540,"Samuthprakarn","Thailand","0-2750 0647 - 8",,"0-2750 0649 ",,"อื่น ๆ ",,"PACKING / พาเลท ,ลังไม้","30 Days",7,, +"res_partner_office_71","คุณวุฒิชัย",,"FALSE","FALSE","TRUE","SIAM WOOD INTERTRADE CO.,LTD.","res_partner_office_70","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_72","DEUTSCHE FREIGHT LOGISTICE ( THAI) CO.,LTD.","SP07S003","TRUE","FALSE","TRUE",,,"Default","FALSE","138/23 Soi Ladprao 80 (Chantima),","Kwng/Khet Wangthonglang",10310,"Bangkok","Thailand","(66) 2-995-3092-5 ",,"(66) 2-995-3389 , 3391",,"อื่น ๆ ",,"provide services on a worldwide basis",,45,, +"res_partner_office_73","TOZEN (THAILAND ) CO.,LTD.","SP07S004","TRUE","FALSE","TRUE",,,"Default","FALSE","3388/62 อาคารสิริริรรัตน์ พระราม 4","แขวงคลองจัน เขตคลองเตย",10110,"กรุงเทพฯ","Thailand","0-2367-5721-8 ",,"0-2367-5729",,"อื่น ๆ ",,"TCI Texfilm 404/2 "" Fabric Expansion Joint ","30 Days","-",, +"res_partner_office_74","คุณปานจิต",,"FALSE","FALSE","TRUE","TOZEN (THAILAND ) CO.,LTD.","res_partner_office_73","Contact","TRUE",,,,,"Thailand",,," 081-859 2725 ",,,,,,,, +"res_partner_office_75","ณสุบรร",,"FALSE","FALSE","TRUE","TOZEN (THAILAND ) CO.,LTD.","res_partner_office_73","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_76","บริษัท วาลิเทค จำกัด","SP07S005","TRUE","FALSE","TRUE",,,"Default","FALSE","274 อาคารเอ2 ชั้นที่ 1 ซอยศูนย์วิจัย 4 (โรงเรียนญี่ปุ่น) ถนนพระราม 9","แขวงบางกะปิ เขตห้วยขวาง",10320,"กรุงเทพฯ","Thailand","02 - 319 9769",,"02 - 319 9770",,"อื่น ๆ ",,"Test Helpa ","30 Days",7,, +"res_partner_office_77","คุณพนิสรา",,"FALSE","FALSE","TRUE","บริษัท วาลิเทค จำกัด","res_partner_office_76","Contact","TRUE",,,,,"Thailand",,"081-913 8832",,,,,,,,, +"res_partner_office_78","ACT ADVANCE COOL TECHNOLOGY CO.,LTD.","SP07S006","TRUE","FALSE","TRUE",,,"Default","FALSE","55/39 M.9 SOI CHOLLATEB 6.TEPARAK ROAD,","BANGPLEEYAI,BANGPLEE",10540,"SAMUTPLAKARN","Thailand"," 02-3123990-1 ",," 02-3123992",,"อื่น ๆ ",,"WATER CHILLER","Cash",15,, +"res_partner_office_79","คุณมงคล",,"FALSE","FALSE","TRUE","ACT ADVANCE COOL TECHNOLOGY CO.,LTD.","res_partner_office_78","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_80","บริษัท ไพธากอรัส เอส อี เอ จำกัด","SP07S007","TRUE","FALSE","TRUE",,,"Default","FALSE",337,"แขวงประเวศ เขตประเวศ",10250,"กรุงเทพฯ","Thailand","02-7216969",,23202808027217500,,"อื่น ๆ ",,"กล้องเลเซอร์ , คาริเบต","Cash",7,, +"res_partner_office_81","ชลดา",,"FALSE","FALSE","TRUE","บริษัท ไพธากอรัส เอส อี เอ จำกัด","res_partner_office_80","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_82","ติ๊ก",,"FALSE","FALSE","TRUE","บริษัท ไพธากอรัส เอส อี เอ จำกัด","res_partner_office_80","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_83","บริษัท สายทิพย์เอ็นจิเนียริ่ง จำกัด","SP07S008","TRUE","FALSE","TRUE",,,"Default","FALSE",337,"แขวงประเวศ เขตประเวศ",10250,"กรุงเทพฯ","Thailand","02-7216969",,23202808027217500,,"อื่น ๆ ",,"กล้องเลเซอร์ , คาริเบต","Cash",7,, +"res_partner_office_84","ชลดา",,"FALSE","FALSE","TRUE","บริษัท สายทิพย์เอ็นจิเนียริ่ง จำกัด","res_partner_office_83","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_85","ติ๊ก",,"FALSE","FALSE","TRUE","บริษัท สายทิพย์เอ็นจิเนียริ่ง จำกัด","res_partner_office_83","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_86","บริษัท เอส เอส อินเตอร์โปรดักส์ จำกัด","SP07S009","TRUE","FALSE","TRUE",,,"Default","FALSE","21 ซ.ลาซาล 29","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","0-2399-0331, 399-1382-3 (09-8951790)",,"0-2398-5771",,"อื่น ๆ ",,"กาพ่นสี ","30 Days",3,, +"res_partner_office_87","คุณพัฒน์",,"FALSE","FALSE","TRUE","บริษัท เอส เอส อินเตอร์โปรดักส์ จำกัด","res_partner_office_86","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_88","บริษัท เมมเบอร์ คอนโทรล & เซอร์วิส จำกัด","SP07S010","TRUE","FALSE","TRUE",,,"Default","FALSE","233/143-144 ถนนสรรพาวุธ คร + +","แขวงบางนา เขตบางนา + +",10260,"กรุงเทพฯ","Thailand","027453421, 027457874-5 ",,27455322,,"อื่น ๆ ",,"กำจัดปลวก , ปลวก ","Cash",3,, +"res_partner_office_89","บริษัท เทวกิจ จำกัด","SP07S011","TRUE","FALSE","TRUE",,,"Default","FALSE","282/23 การ์เด้นเพลส 1 ถ.รัชดาภิเษก ซ.รุ่งเรือง","แขวงสามเสนนอก เขตห้วยขวาง",10310,"กรุงเทพฯ","Thailand","0-2693-4326-7 / 09-1255336",,"0-2693-4336",,"อื่น ๆ ",,"ควบคุมงานสนามบินสุวรรณภูมิ","30 Days",7,, +"res_partner_office_90","คุณสุรศักดิ์",,"FALSE","FALSE","TRUE","บริษัท เทวกิจ จำกัด","res_partner_office_89","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_91","คุณน้อง",,"FALSE","FALSE","TRUE","บริษัท เทวกิจ จำกัด","res_partner_office_89","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_92","ห้างหุ้นส่วนจำกัด เจ. เอ็ม. คอนกรีตผสมสร็จ ( 1995 )","SP07S012","TRUE","FALSE","TRUE",,,"Default","FALSE","121 หมู่ที่ 2 พนมสารคาม-สนามชัยเขต","เกาะขนุน พนมสารคาม",24120,"ฉะเชิงเทรา","Thailand","038- 551 119 ",,"038-836 536",,"อื่น ๆ ",,"คอนกรีต","30 Days",7,, +"res_partner_office_93","บริษัท แมคกราฟฟิค จำกัด","SP07S013","TRUE","FALSE","TRUE",,,"Default","FALSE","158/9 หมู่ 9","ตำบลบางปลา อำเภอบางพลี",10540,"สมุทรปราการ","Thailand","0-2315-4722, 706-3096-7 (01-5639033)",,"0-2315-4725",,"อื่น ๆ ",,"ค่าแรงไสเหล็ก","Cash",3,, +"res_partner_office_94","คุณอนุชา การสมชิต",,"FALSE","FALSE","TRUE","บริษัท แมคกราฟฟิค จำกัด","res_partner_office_93","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_95","บริษัท ยีไทยอินเตอร์เนชั่นแนล จำกัด","SP07S014","TRUE","FALSE","TRUE",,,"Default","FALSE","45 ถนนเฉลิมพระเกียรติ ร.๙ ซ. 48","แขวงดอกไม้ เขตประเวศ",10250,"กรุงเทพฯ","Thailand","0-2726 7036 ",,"0-2726 3734 ",,"อื่น ๆ ",,"เครื่องกรองน้ำ ","Cash",3,, +"res_partner_office_96","คุณเป้",,"FALSE","FALSE","TRUE","บริษัท ยีไทยอินเตอร์เนชั่นแนล จำกัด","res_partner_office_95","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_97","บริษัท อัทโค จำกัด","SP07S015","TRUE","FALSE","TRUE",,,"Default","FALSE","35/489 หมู่ 3 หมู่บ้านภัสสร 3 ถนนเลียบคลองสาม +","ตำบลคลองสาม อำเภอคลองหลวง จังหวัดปทุมธานี +",,"ปทุมธานี","Thailand","0-2661-4130",,"0-2661-4133",,"อื่น ๆ ",,"เครื่องขัดพื้น","30 Days","-",, +"res_partner_office_98","ขวัญฤทัย เอี่ยมต่อม",,"FALSE","FALSE","TRUE","บริษัท อัทโค จำกัด","res_partner_office_97","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_99","บริษัท ตังไถ่แอคเซสซอรี จำกัด","SP07S016","TRUE","FALSE","TRUE",,,"Default","FALSE","52/72 ซ.พระราม 2 - 59 ม.6 ถ.พระราม 2","แขวงแสมดำ เขตบางขุนเทียน",10150,"กรุงเทพฯ","Thailand","0-2840-1229 / (01-4833963)",,"0-2894-1318",,"อื่น ๆ ",,"เครื่องจักรโรงงาน","30 Days",30,, +"res_partner_office_100","คุณศิริพาพร พิลาชัย",,"FALSE","FALSE","TRUE","บริษัท ตังไถ่แอคเซสซอรี จำกัด","res_partner_office_99","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_101","บริษัท ตงชางเครื่องชั่ง (ประเทศไทย) จำกัด","SP07S017","TRUE","FALSE","TRUE",,,"Default","FALSE","53/14 ม.5 ถ.เทพารักษ์ กม.11","ต.บางพลีใหญ่ อ.บางพลี",10540,"สมุทรปราการ","Thailand","0-2730-4861-3 / 09-7995434",,"0-2730-4864",,"อื่น ๆ ",,"เครื่องชั่ง ","60 Days",3,, +"res_partner_office_102","คุณไพศาล",,"FALSE","FALSE","TRUE","บริษัท ตงชางเครื่องชั่ง (ประเทศไทย) จำกัด","res_partner_office_101","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_103","FLOOR PRO SUMMIT CO.,LTD.","SP07S018","TRUE","FALSE","TRUE",,,"Default","FALSE","42/1 MOO.2","Mabpong , Panthong ,",20160,"Chonburi","Thailand","038-209516",,"038-451894",,"อื่น ๆ ",,"เครื่องชั่ง ","30 Days","-",, +"res_partner_office_104","คุณประสงค์",,"FALSE","FALSE","TRUE","FLOOR PRO SUMMIT CO.,LTD.","res_partner_office_103","Contact","TRUE",,,,,"Thailand",,"086-1110033",,,,,,,,, +"res_partner_office_105","บริษัท ลาฟา เทค จำกัด","SP07S019","TRUE","FALSE","TRUE",,,"Default","FALSE","35 ซอยแสนสุข ประดิพัทธ์","แขวงสามเสนใน เขตพญาไท",10400,"กรุงเทพฯ","Thailand","02 - 6167500-9,022713823 ",,"02 - 2710674 */ 02 - 6167509",,"อื่น ๆ ",,"เครื่องดูดฝุ่น","Cash",7,, +"res_partner_office_106","คุณอุทัยวรรณ",,"FALSE","FALSE","TRUE","บริษัท ลาฟา เทค จำกัด","res_partner_office_105","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_107","บริษัท เอ็มบิส เอเชีย จำกัด","SP07S020","TRUE","FALSE","TRUE",,,"Default","FALSE","65/170 20th Fl., Chamnan Phenjati Bldg.,Rama 9 Rd.,","Huaykwang, Huaykwang,",10310,"Bangkok","Thailand","02-2453334",,"02-6431045",,"อื่น ๆ ",,"เครื่องตะไบเพชร Diamond","Cash",7,, +"res_partner_office_108","บัณฑิต",,"FALSE","FALSE","TRUE","บริษัท เอ็มบิส เอเชีย จำกัด","res_partner_office_107","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_109","บริษัท เวิลด์แมชชีน เซ็นเตอร์ จำกัด","SP07S021","TRUE","FALSE","TRUE",,,"Default","FALSE","99/5 ม.8 ถ.บางนา-ตราด","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","0-2746-9851-5",,"0-2746-9850",,"อื่น ๆ ",,"เครื่องตัดมุม","30 Days",3,, +"res_partner_office_110","ศุภมิตร",,"FALSE","FALSE","TRUE","บริษัท เวิลด์แมชชีน เซ็นเตอร์ จำกัด","res_partner_office_109","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_111","บริษัท วี.เอส.พี. กรุ๊ป จำกัด","SP07S022","TRUE","FALSE","TRUE",,,"Default","FALSE","210 ถ.รัชดาภิเษก","แขวงบุคคโล เขตธนบุรี",10600,"กรุงเทพฯ","Thailand","0-2476-0522, 476-3572",,"0-2476-9723",,"อื่น ๆ ",,"เครื่องทำความเย็น ","30 Days",3,, +"res_partner_office_112","สุรเชษฐ์",,"FALSE","FALSE","TRUE","บริษัท วี.เอส.พี. กรุ๊ป จำกัด","res_partner_office_111","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_113","ห้างหุ้นส่วนจำกัด เทอร์โมวิศวกรรม (โฟมหุ้มท่อ)","SP07S023","TRUE","FALSE","TRUE",,,"Default","FALSE","24/69-71 ม.6 ซ.วัดยายร่ม ถ.พระราม 2","แขวงบางมด เขตจอมทอง",10150,"กรุงเทพฯ","Thailand","02-4279991-2, 8740463-4",,"02-8740844",,"อื่น ๆ ",,"เครื่องทำความเย็น / (โฟมหุ้มท่อ )","Cash",3,, +"res_partner_office_114","บริษัท ไทยนิปปอนแอร์ จำกัด","SP07S024","TRUE","FALSE","TRUE",,,"Default","FALSE","44/141-2 ซอยถนอมมิตร รามอินทรา 65 + +","แขวงท่าแร้ง เขตบางเขน + +",10230,"กรุงเทพฯ","Thailand","02-9459005-7",,"02-9458587",,"อื่น ๆ ",,"เครื่องปรับอากาศ","Cash",3,, +"res_partner_office_115","ส้ม",,"FALSE","FALSE","TRUE","บริษัท ไทยนิปปอนแอร์ จำกัด","res_partner_office_114","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_116","HILTI ( THAILAND ) CO.,LTD","SP07S025","TRUE","FALSE","TRUE",,,"Default","FALSE","1858/31-32 อาคารเนชั่นทาวเวอร์ ชั้น 8 ถนนบางนา-ตราด กม. 4.5 + +","แขวงบางนา เขตบางนา + +",10260,"กรุงเทพฯ","Thailand","+662 714 5300",,"+662 714 5399",,"อื่น ๆ ",,"เครื่องมือช่าง ","60 Days",7,, +"res_partner_office_117","คุณวิชัย",,"FALSE","FALSE","TRUE","HILTI ( THAILAND ) CO.,LTD","res_partner_office_116","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_118","TONAN ASIA AUTOTECH CO.,LTD.","SP07S026","TRUE","FALSE","TRUE",,,"Default","FALSE","160/356 หมู่ 1 ถ.ช่างอากาศอุทิศ","แขวงสีกัน เขตดอนเมือง กรุงเทพฯ",,"กรุงเทพฯ","Thailand","0-2983-5227-8, 0-2983-5231-2 + +",,"0-2983-5229 +",,"อื่น ๆ ",,"เครื่องมือวัด ","Cash",7,, +"res_partner_office_119","คุณพัชรี",,"FALSE","FALSE","TRUE","TONAN ASIA AUTOTECH CO.,LTD.","res_partner_office_118","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_120","บริษัท แสงไทยอินเตอร์เทรด จำกัด","SP07S027","TRUE","FALSE","TRUE",,,"Default","FALSE","330-4 เจริญกรุง + +","แขวงจักรวรรดิ์ เขตสัมพันธวงศ์",10100,"กรุงเทพฯ","Thailand","02-2261232, 2243602, 2226252",,"02-2241888",,"อื่น ๆ ",,"เครื่องเลื่อยสายพาน",,"-",, +"res_partner_office_121","อุดม ตรงมณีธรรม",,"FALSE","FALSE","TRUE","บริษัท แสงไทยอินเตอร์เทรด จำกัด","res_partner_office_120","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_122","บริษัท ดิคเซลล์ ( เอเชีย ) จำกัด","SP07S028","TRUE","FALSE","TRUE",,,"Default","FALSE","2893 , 2895 ถ.พัฒนาการ","แขวงสวนหลวง เขตสวนหลวง",10250,"กรุงเทพฯ","Thailand","0-2321 3078, 722 - 0245 ",,"0-2320 2520",,"อื่น ๆ ",,"เครื่องวัด","30 Days","-",, +"res_partner_office_123","คุณกมลวรรณ ( ป่าน )",,"FALSE","FALSE","TRUE","บริษัท ดิคเซลล์ ( เอเชีย ) จำกัด","res_partner_office_122","Contact","TRUE",,,,,"Thailand",,"081-6291708",,,,,,,,, +"res_partner_office_124","SHENZHEN ZHENXUN SCREEN PRINTING MACHINERY CO.,LTD.","SP07S029","TRUE","FALSE","TRUE",,,"Default","FALSE","No.7 Fengye Road 1, Fenhuang First Industrial Area, Fuyong Town,","Baooan District, Shenzhen",,,"Thailand"," +86 755 27378805 +",," +86 755 27378809 +",,"อื่น ๆ ",,"เครื่องสกรีนกระจก ","Cash",3,, +"res_partner_office_125","บริษัท ไทย พินนะเคิ้ล เอ็นจิเนียริ่ง จำกัด","SP07S030","TRUE","FALSE","TRUE",,,"Default","FALSE","8/1 ซอยเพชรเกษม 77 แยก 3-10 + +","แขวงหนองค้างพลู เขตหนองแขม + +",10160,"กรุงเทพฯ","Thailand","02 - 8098915-8",,"02 - 8098933",,"อื่น ๆ ",,"เครื่องสูบน้ำในบ้านและโรงงานอุตสาหกรรม ",,"-",, +"res_partner_office_126","บริษัท แมชชีนิโอโทรนิค จำกัด","SP07S031","TRUE","FALSE","TRUE",,,"Default","FALSE","17/100 ซอยเพชรเกษม 81 มาเจริญ + +","แขวงหนองค้างพลู เขตหนองแขม + +",10160,"กรุงเทพฯ","Thailand","0-2812-4988 ,0-2812-3381 , 0-2812-1576- 8, 0-2814-6238",,"02-812-4989",,"อื่น ๆ ",,"เครื่องอัดกระดาษ",,"-",, +"res_partner_office_127","คุณนำพล",,"FALSE","FALSE","TRUE","บริษัท แมชชีนิโอโทรนิค จำกัด","res_partner_office_126","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_128","บริษัท ไลท์ติ้ง แอนด์ อีควิปเมนท์ จำกัด (มหาชน)","SP07S032","TRUE","FALSE","TRUE",,,"Default","FALSE","539/2 ชั้น 16-17 อาคารมหานครยิบซั่ม","ถ.ศรีอยุธยา",10400,"กรุงเทพฯ","Thailand","02-2488133, 02-6425092",,"02-6425091, 2488144",,"อื่น ๆ ",,"โคมคลีนรูม","30 Days",3,, +"res_partner_office_129","จุฑา",,"FALSE","FALSE","TRUE","บริษัท ไลท์ติ้ง แอนด์ อีควิปเมนท์ จำกัด (มหาชน)","res_partner_office_128","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_130","Fight Engi - Trade Co.,Ltd.","SP07S033","TRUE","FALSE","TRUE",,,"Default","FALSE","47/7 Moo 6 Phathumthani-Ladlumkaew,","Khu Bangluang, Latlumkaew",12140,"Pathum Thani","Thailand","(66) 2979 4771 to 3",,"(66) 2979 4775 ",,"อื่น ๆ ",,"โครงกระตูบ้าน ","Cash",5,, +"res_partner_office_131","บริษัท ร้อคกรีต ( ประเทศไทย) จำกัด","SP07S034","TRUE","FALSE","TRUE",,,"Default","FALSE","37/4 ซ.จามจุรี ถ.รามอินทรา 39","แขวงท่าแร้ง เขตบางเขน + +",10220,"กรุงเทพฯ","Thailand","02- 973 1796 ",,"02-973 1798",,"อื่น ๆ ",,"งานคอนกรีต","60 Days",3,, +"res_partner_office_132","บริษัท ร๊อค เอเชีย","SP07S035","TRUE","FALSE","TRUE",,,"Default","FALSE","107 หมู่ 2","ตำบลบางสมัคร อำเภอบางปะกง",24180,"ฉะเชิงเทรา","Thailand","038-540241",,"038-538 397",,"อื่น ๆ ",,"งานเจาะรู มตะแกรง",,"-",, +"res_partner_office_133","คุณนุจรี ขันธรูป",,"FALSE","FALSE","TRUE","บริษัท ร๊อค เอเชีย","res_partner_office_132","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_134","บริษัท เค. ซี. ไอ. เอ็นจิเนียริ่ง จำกัด","SP07S036","TRUE","FALSE","TRUE",,,"Default","FALSE","81/9 ม.2","ต.สามโคก อ.สามโคก",12160,"ปทุมธานี","Thailand","0-2979 1400-8 / ",,"02 - 979 13999 , 02-9791678",,"อื่น ๆ ",,"งานซ่อมสลิง / สลิง , รอก","30 Days","-",, +"res_partner_office_135","คุณแอน",,"FALSE","FALSE","TRUE","บริษัท เค. ซี. ไอ. เอ็นจิเนียริ่ง จำกัด","res_partner_office_134","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_136","คุณวัฒนา",,"FALSE","FALSE","TRUE","บริษัท เค. ซี. ไอ. เอ็นจิเนียริ่ง จำกัด","res_partner_office_134","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_137","บริษัท อี.เอ็ม.ทีม จำกัด","SP07S037","TRUE","FALSE","TRUE",,,"Default","FALSE","679/92 ซ.ประชาอุทิศ 45 ม.1 ถ.ประชาอุทิศ","แขวงบางมด เขตทุ่งครุ",10140,"กรุงเทพฯ","Thailand","0-2427-9047, 427-0885, 872-6495",,"0-2872-6496",,"อื่น ๆ ",,"งานต่อเติมโรงงาน",,"-",, +"res_partner_office_138","นัททโชติ",,"FALSE","FALSE","TRUE","บริษัท อี.เอ็ม.ทีม จำกัด","res_partner_office_137","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_139","บริษัท พี.พี.เค. อินดัสตรี้ส์ จำกัด","SP07S038","TRUE","FALSE","TRUE",,,"Default","FALSE","32 ซอยอมรพันธ์ 4 ถ.วิภาวดีรังสิต","แขวงลาดยาว เขต จตุจักร",10900,"กรุงเทพฯ","Thailand","02-561 1309 ,02-5796026,02-941 2653",,"02-941 0239",,"อื่น ๆ ",,"งานตะแกรงห้องเย็น","30 Days","-",, +"res_partner_office_140","บริษัท เอส พลัส ซิสเทมส์ จำกัด","SP07S039","TRUE","FALSE","TRUE",,,"Default","FALSE","4/10 ซ.เทศบาล43 ( เกษม) ถ.สุขุมวิท","ต.ปากน้ำ อ.เมือง",10270,"สมุทรปราการ","Thailand"," 0-2744 1027 - 8 , 0 - 2744 1681",,"0-2744 1680 ",,"อื่น ๆ ",,"งานพ่นสี","Cash","-",, +"res_partner_office_141","คุณชัชวาลย์",,"FALSE","FALSE","TRUE","บริษัท เอส พลัส ซิสเทมส์ จำกัด","res_partner_office_140","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_142","คุณวิรัช",,"FALSE","FALSE","TRUE","บริษัท เอส พลัส ซิสเทมส์ จำกัด","res_partner_office_140","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_143","หจก. ปัญชะยา ครีเอชั่น","SP07S040","TRUE","FALSE","TRUE",,,"Default","FALSE","72 ซอยลาดปลาเค้า 14","แขวงจรเข้บัว เขตลาดพร้าว",10230,"กรุงเทพฯ","Thailand"," 02 - 940 3981, 02- 9403813",,"02 - 940 3981, 02- 9403813 # 6",,"อื่น ๆ ",,"งานพิมพ์","Cash",15,, +"res_partner_office_144","คุณชญาน์",,"FALSE","FALSE","TRUE","หจก. ปัญชะยา ครีเอชั่น","res_partner_office_143","Contact","TRUE",,,,,"Thailand",,"089 - 846 4486",,,,,,,,, +"res_partner_office_145","บริษัท เน็กซ์สเต็ป วิชั่น จำกัด","SP07S041","TRUE","FALSE","TRUE",,,"Default","FALSE","17/93 หมู่ที่ 10 ซอยลาดพร้าว 41 ถนนสุขาภิบาล 1","แขวงลาดพร้าว เขตลาดพร้าว",10230,"กรุงเทพฯ","Thailand","02-5424269, 9328334",,"02-9328334",,"อื่น ๆ ",,"งานพิมพ์","Cash",15,, +"res_partner_office_146","ฐิติกา",,"FALSE","FALSE","TRUE","บริษัท เน็กซ์สเต็ป วิชั่น จำกัด","res_partner_office_145","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_147","MEGAWEB CO.,LTD.","SP07S042","TRUE","FALSE","TRUE",,,"Default","FALSE","748/63 ซ.ริมคลองบางกอกใหญ่ ถ.เพชรเกษม","แขวงวัดท่าพระ เขตบางกอกใหญ่",10600,"กรุงเทพฯ","Thailand","0-2891-7400-1 ",," 0-2891-7019",,"อื่น ๆ ",,"งานระบบ IT ","Cash",15,, +"res_partner_office_148","คุณประทักษ์",,"FALSE","FALSE","TRUE","MEGAWEB CO.,LTD.","res_partner_office_147","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_149","Three Mar Co.,Ltd.","SP07S043","TRUE","FALSE","TRUE",,,"Default","FALSE","99/293 Soi Ladprao 41 ,","Chankasem ,Jatujak ,",10900,"Bangkok","Thailand","02-939 9664-5 ",,"02- 5418296",,"อื่น ๆ ",,"งานพิมพ์ ","15 Days",15,, +"res_partner_office_150","สงวนศักดิ์ การพิมพ์","SP07S044","TRUE","FALSE","TRUE",,,"Default","FALSE","43/35 ม.11 ซ.อ่อนนุช 66 ถ.สุขุมวิท 77","แขวงประเวศ เขตประเวศ",10250,"กรุงเทพฯ","Thailand","02-7211331, 3229234",,"02-7211331",,"อื่น ๆ ",,"งานพิมพ์ ","30 Days",15,, +"res_partner_office_151","คุณสงวนศักดิ์",,"FALSE","FALSE","TRUE","สงวนศักดิ์ การพิมพ์","res_partner_office_150","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_152","บริษัท เอ โมลด์ ( ประเทศไทย ) จำกัด","SP07S045","TRUE","FALSE","TRUE",,,"Default","FALSE","244/2-3 หมู่ที่ 1 +","ตำบลบางเสาธง อำเภอกิ่งอำเภอบางเสาธง +",,"สมุทรปราการ","Thailand","0- 2706 - 2323 ",,"0-2313 1340",,"อื่น ๆ ",,"งานโมลด์ ในโรงงาน ","30 Days","-",, +"res_partner_office_153","คุณไสวิจิตร",,"FALSE","FALSE","TRUE","บริษัท เอ โมลด์ ( ประเทศไทย ) จำกัด","res_partner_office_152","Contact","TRUE",,,,,"Thailand",,"087-9308673",,,,,,,,, +"res_partner_office_154","บริษัท เวอร์ทัส จำกัด","SP07S046","TRUE","FALSE","TRUE",,,"Default","FALSE","120 ซอย สมถวิล ตากสิน 44 ถ.ตากสิน","แขวงบุคคโล เขตธนบุรี",10600,"กรุงเทพฯ","Thailand","02- 876 2727 ,02 - 876 2828 ",,"0 2 - 476 1711",,"อื่น ๆ ",,"จัดจำหน่ายประกับเพลาและอุปกรณ์ส่งกำลัง ","30 Days","-",, +"res_partner_office_155","คุณเสริมศักดิ์",,"FALSE","FALSE","TRUE","บริษัท เวอร์ทัส จำกัด","res_partner_office_154","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_156","บริษัท เซนเทค สเกล แอนด์ อินสตรูเมนท์ จำกัด","SP07S047","TRUE","FALSE","TRUE",,,"Default","FALSE","167/20-2 เทอดไท","แขวงปากคลองภาษีเจริญ เขตภาษีเจริญ + +",10160,"กรุงเทพฯ","Thailand"," 0-2457-3693, 0-2457-4526, 0-2457-1521 ",,"0-2869-2305",,"อื่น ๆ ",,"จำหน่ายเครื่องชั่ง และเครื่องวัดทุกประเภท ","30 Days",3,, +"res_partner_office_157","คุณน้อง",,"FALSE","FALSE","TRUE","บริษัท เซนเทค สเกล แอนด์ อินสตรูเมนท์ จำกัด","res_partner_office_156","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_158","ห้างหุ้นส่วนจำกัด ก. เศรษฐกิจ","SP07S048","TRUE","FALSE","TRUE",,,"Default","FALSE","31 จรัญสนิทวงศ์ + +","แขวงบางบำหรุ เขตบางพลัด + +",10700,"กรุงเทพฯ","Thailand","02 - 8818180-2,02 - 4347754",,"02 - 8818183",,"อื่น ๆ ",,"จำหน่ายปั๊มลม เครื่องพ่น ตู้พ่น วัสดุพ่น สี ทราย ","Cash",3,, +"res_partner_office_159","บริษัท เมโทรซิสเต็มส์คอร์ปอเรชั่น จำกัด (มหาชน)","SP07S049","TRUE","FALSE","TRUE",,,"Default","FALSE","23/3 ม.9 ถ.สุขุมวิท 103","แขวงหนองบอน เขตประเวศ",10250,"กรุงเทพฯ","Thailand","02-7262555, 2828, 7274000",,"02-7262630-1, 5",,"อื่น ๆ ",,"จำหน่ายและติดตั้งอุปกรณ์ฮาร์ดแวร์ คอมพิวเตอร์ ","Cash",3,, +"res_partner_office_160","บริษัท 2 พี. ที. จำกัด","SP07S050","TRUE","FALSE","TRUE",,,"Default","FALSE","26/3 ม.12 สุขุมวิท 103","แวงดอกไม้ เขตประเวศ",10260,"กรุงเทพฯ","Thailand","02 -726 2675-7 ",,"02-726 2674",,"อื่น ๆ ",,"จำหน่ายส่งเครื่องทำความเย็น","30 Days",3,, +"res_partner_office_161","SANGCHAI REFRIGERATION CO.,LTD.","SP07S051","TRUE","FALSE","TRUE",,,"Default","FALSE","283 ถนนหลานหลวง","แขวงโสมนัส เขตป้อมปราบ ฯ",10110,"กรุงเทพฯ","Thailand","02-628 2600 ม 02- 280 3444 ",,"02-628 0484 - 5 , 02- 2280-0352",,"อื่น ๆ ",,"จำหน่ายส่งเครื่องทำความเย็น","60 Days",7,, +"res_partner_office_162","คุณนพดล",,"FALSE","FALSE","TRUE","SANGCHAI REFRIGERATION CO.,LTD.","res_partner_office_161","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_163","คุณศุภชัย",,"FALSE","FALSE","TRUE","SANGCHAI REFRIGERATION CO.,LTD.","res_partner_office_161","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_164","บริษัท ชิลแมทช์ จำกัด","SP07S052","TRUE","FALSE","TRUE",,,"Default","FALSE","19/20-22 ซ.ศูนย์วิจัย ถ.พระราม 9","บางกะปิ ห้วยขวาง",10310,"กรุงเทพฯ","Thailand","0-2203-0357 ต่อ 219, 01-6441437",,"0-2203-0798",,"อื่น ๆ ",,"จำหน่ายส่งเครื่องทำความเย็น","Cash",3,, +"res_partner_office_165","คุณศิริกานต์",,"FALSE","FALSE","TRUE","บริษัท ชิลแมทช์ จำกัด","res_partner_office_164","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_166","บริษัท ดีเอชแอล เอ๊กซ์เพรส (ประเทศไทย) จำกัด","SP07S053","TRUE","FALSE","TRUE",,,"Default","FALSE","175 อาคารสาธรซิตี้ทาวเวอร์ ชั้น 7/1 และ 8/1 ถ.สาทรใต้","แขวงทุ่งมหาเมฆ เขตสาทร",10120,"กรุงเทพฯ","Thailand","02-3455163 / 02-3455111",,"02-2855642, 2855549",,"อื่น ๆ ",,"ชิปปิ้ง","Cash",3,, +"res_partner_office_167","ปนิธิ",,"FALSE","FALSE","TRUE","บริษัท ดีเอชแอล เอ๊กซ์เพรส (ประเทศไทย) จำกัด","res_partner_office_166","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_168","บริษัท นิมเบิล ชิปปิ้ง เซอร์วิส จำกัด","SP07S054","TRUE","FALSE","TRUE",,,"Default","FALSE","79 ซ. เจริญนคร","แขวงบางลำภูล่าง เขตคลองสาน",10600,"กรุงเทพฯ","Thailand","02-8602582, 8601003-4",,"02-4396345 : 18",,"อื่น ๆ ",,"ชิปปิ้ง","30 Days",3,, +"res_partner_office_169","ทิพย์",,"FALSE","FALSE","TRUE","บริษัท นิมเบิล ชิปปิ้ง เซอร์วิส จำกัด","res_partner_office_168","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_170","น้ำ",,"FALSE","FALSE","TRUE","บริษัท นิมเบิล ชิปปิ้ง เซอร์วิส จำกัด","res_partner_office_168","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_171","หมวย(บ/ช)",,"FALSE","FALSE","TRUE","บริษัท นิมเบิล ชิปปิ้ง เซอร์วิส จำกัด","res_partner_office_168","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_172","บริษัท โปรเฟรท อินเตอร์เนชั่นแนล จำกัด","SP07S055","TRUE","FALSE","TRUE",,,"Default","FALSE","87/90-91 อาคารโมเดอร์นทาวน์ (เอกมัย 3) ถ.สุขุมวิท 63","แขวงคลองตันเหนือ เขตวัฒนา",10110,"กรุงเทพฯ","Thailand","02-7116111",,"02-7116112",,"อื่น ๆ ",,"ชิปปิ้ง","30 Days",3,, +"res_partner_office_173","บริษัท ไวส์เฟรทเซอร์วิสเซส (ประเทศไทย) จำกัด","SP07S056","TRUE","FALSE","TRUE",,,"Default","FALSE","1/66 ซ.บุบผาบุรี ถ.นนทรี","แขวงช่องนนทรี เขตยานนาวา",10120,"กรุงเทพฯ","Thailand","0-2681-6181",,"0-2681-6173-5",,"อื่น ๆ ",,"ชิปปิ้ง","60 Days",3,, +"res_partner_office_174","อ้วน",,"FALSE","FALSE","TRUE","บริษัท ไวส์เฟรทเซอร์วิสเซส (ประเทศไทย) จำกัด","res_partner_office_173","Contact","TRUE",,,,,"Thailand",,"081-4504840",,,,,,,,, +"res_partner_office_175","บริษัท อีสต์เอเชีย ชิปปิ้ง (ประเทศไทย) จำกัด","SP07S057","TRUE","FALSE","TRUE",,,"Default","FALSE","109 อาคาร ซี.ซี.ที. ชั้น 10 ถ.สุรวงศ์","แขวงสุริยวงศ์ เขตบางรัก",10500,"กรุงเทพฯ","Thailand","02-2362866,2896,2903,0115,2930",,"02-2380918, 6340373",,"อื่น ๆ ",,"ชิปปิ้ง","Cash",,, +"res_partner_office_176","ศิริชัย",,"FALSE","FALSE","TRUE","บริษัท อีสต์เอเชีย ชิปปิ้ง (ประเทศไทย) จำกัด","res_partner_office_175","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_177","ตุ๊ก",,"FALSE","FALSE","TRUE","บริษัท อีสต์เอเชีย ชิปปิ้ง (ประเทศไทย) จำกัด","res_partner_office_175","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_178","บริษัท พีเอ็ม ออโตเมชั่น (ประเทศไทย) จำกัด","SP07S058","TRUE","FALSE","TRUE",,,"Default","FALSE","96 ลาดพร้าว 115 ถ.ลาดพร้าว","แขวงคลองจั่น เขตบางกะปิ",10240,"กรุงเทพฯ","Thailand","0-704 9104-5",,"0-2377 5036",,"อื่น ๆ ",,"ซ่อมเครื่อง Printer ","60 Days",3,, +"res_partner_office_179","คุณรุ้งลาวัลย์",,"FALSE","FALSE","TRUE","บริษัท พีเอ็ม ออโตเมชั่น (ประเทศไทย) จำกัด","res_partner_office_178","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_180","บริษัท เจ.ซี.เค. สตีล แอนด์ ออโตพาร์ท จำกัด","SP07S059","TRUE","FALSE","TRUE",,,"Default","FALSE","306/254-255 ม.11","ต.บางพลีใหญ่ อ.บางพลี",10540,"สมุทรปราการ","Thailand","(01-8591813) 0-2752-0223, 752-0786",,"0-2752-0622",,"อื่น ๆ ",,"โซ่, สายรัด",,"-",, +"res_partner_office_181","จรรยา พันสาย",,"FALSE","FALSE","TRUE","บริษัท เจ.ซี.เค. สตีล แอนด์ ออโตพาร์ท จำกัด","res_partner_office_180","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_182","บริษัท สยามอินสเป็คชั่น แอนด์ เอ็นจิเนียริ่ง จำกัด","SP07S060","TRUE","FALSE","TRUE",,,"Default","FALSE","201/203 หมู่ 7 บางนา-ตราด กม 24","ตำบลบางเสาธง อำเภอบางเสาธง",10540,"สมุทรปราการ","Thailand","02- 7401726-7,027404661-3",,27401706,,"อื่น ๆ ",,"ตรวจสอบเครน","30 Days","-",, +"res_partner_office_183","บริษัท เอส. เอ็ม. เซ็นเตอร์ แลบ จำกัด","SP07S061","TRUE","FALSE","TRUE",,,"Default","FALSE","251/24 หมู่ 12 ถ. สุขุมวิท","ต. บางพระ อ. ศรีราชา",20110,"ชลบุรี","Thailand","087- 868 3042 ,038-342 024",," 038-342 024 ",,"อื่น ๆ ",,"ตรวจสุขภาพ ",,"-",, +"res_partner_office_184","คุณแหม่ม",,"FALSE","FALSE","TRUE","บริษัท เอส. เอ็ม. เซ็นเตอร์ แลบ จำกัด","res_partner_office_183","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_185","คุณจินดา",,"FALSE","FALSE","TRUE","บริษัท เอส. เอ็ม. เซ็นเตอร์ แลบ จำกัด","res_partner_office_183","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_186","บริษัท พรชัยทัวร์และการท่องเที่ยว จำกัด","SP07S062","TRUE","FALSE","TRUE",,,"Default","FALSE","223/14-15 ม.5 ถ.ศรีนครินทร์","ต.สำโรงเหนือ อ.เมือง",10270,"สมุทรปราการ","Thailand","0-2758-6495/385-7328/385-7383",,"0-2758-6496",,"อื่น ๆ ",,"ตั๋วเครื่องบิน","7 Days",3,, +"res_partner_office_187","คุณปู",,"FALSE","FALSE","TRUE","บริษัท พรชัยทัวร์และการท่องเที่ยว จำกัด","res_partner_office_186","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_188","คุณเป็ด",,"FALSE","FALSE","TRUE","บริษัท พรชัยทัวร์และการท่องเที่ยว จำกัด","res_partner_office_186","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_189","AUTOMATION SERVICE CO.,LTD.","SP07S063","TRUE","FALSE","TRUE",,,"Default","FALSE","4 ซอยชุ่มชื่น ถนนอโศก-ดินแดง","แขวงดินแดง เขตดินแดง กรุงเทพฯ",,"กรุงเทพฯ","Thailand"," 0-2246-0330 , 0-2246-0200 ",,"0-2248-4961,0-2246-0235 ",,"อื่น ๆ ",,"ตัวแทนจำหน่าย ติดตั้ง chino controller recorders ระบบวัด ...","30 Days","-",, +"res_partner_office_190","บริษัท สปริงคูล จำกัด","SP07S064","TRUE","FALSE","TRUE",,,"Default","FALSE","265/395 ซอยทวีวัฒนา สาธุประดิษฐ์ 5","แขวงช่องนนทรี เขตยานนาวา",10120,"กรุงเทพฯ","Thailand","022128360-1,026740565-6,026740563-4",,"02 - 2127126",,"อื่น ๆ ",,"ติดตั้งระบบไฟฟ้า ประปา แอร์ ","30 Days","-",, +"res_partner_office_191","บริษัท เค ทู วิน จำกัด","SP07S065","TRUE","FALSE","TRUE",,,"Default","FALSE","102/3 หมู่ 3 ถ. ปทุมธานี - สามโคก","อ.สามโคก",12160,"ปทุมธานี","Thailand","02- 581 - 7220 -1",,"02 - 581 7220 - 1 # 10",,"อื่น ๆ ",,"ติดตั้งหลังคาดมทัลชีท","30 Days","-",, +"res_partner_office_192","คุณโกญจนาท",,"FALSE","FALSE","TRUE","บริษัท เค ทู วิน จำกัด","res_partner_office_191","Contact","TRUE",,,,,"Thailand",,"081 - 420 7343 ",,,,,,,,, +"res_partner_office_193","บริษัท จีซีเอส กรุ๊ปคอร์ปอเรชั่น จำกัด","SP07S066","TRUE","FALSE","TRUE",,,"Default","FALSE","88/8 หมู่ 1","ต.คลองด่าน อ.บางบ่อ",10550,"สมุทรปราการ","Thailand","02 - 183-8812 – 5 ",,"02 - 183 8817 ",,"อื่น ๆ ",,"ตู้ USED CONTAINER","Cash","-",, +"res_partner_office_194","คุณสุจิตร",,"FALSE","FALSE","TRUE","บริษัท จีซีเอส กรุ๊ปคอร์ปอเรชั่น จำกัด","res_partner_office_193","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_195","คุณอรวรรณ",,"FALSE","FALSE","TRUE","บริษัท จีซีเอส กรุ๊ปคอร์ปอเรชั่น จำกัด","res_partner_office_193","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_196","BANGPLEE CAR HOUSE LITD.,PART","SP07S067","TRUE","FALSE","TRUE",,,"Default","FALSE","79/3 Moo. 3 Theparak Rd.,","Bangpleeyai Bangplee",10540,"Samuthprakarn","Thailand","02- 755 3260 - 1 # 23 ",,"02-312 3064",,"อื่น ๆ ",,"ตู้คอนเทนเนอร์ ","Cash","-",, +"res_partner_office_197","คุณโอ๋",,"FALSE","FALSE","TRUE","BANGPLEE CAR HOUSE LITD.,PART","res_partner_office_196","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_198","บริษัท กิตติ คอนเทนเนอร์ จำกัด","SP07S068","TRUE","FALSE","TRUE",,,"Default","FALSE","4/6 หมู่ 12","ต.บึงคำพร้อย อ.ลำลูกกา",12150,"ปทุมธานี","Thailand","02-9974600-1, 02-9974844-5 ",,"02-9974899, ",,"อื่น ๆ ",,"ตู้คอนเทนเนอร์ ","30 Days","-",, +"res_partner_office_199","คุณอุ๊",,"FALSE","FALSE","TRUE","บริษัท กิตติ คอนเทนเนอร์ จำกัด","res_partner_office_198","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_200","ห้างหุ้นส่วนจำกัด บางพลีคอนเทนเนอร์","SP07S069","TRUE","FALSE","TRUE",,,"Default","FALSE","21/367 หมู่ที่ 18","ต.บางพลีใหญ่ อ.บางพลี",10540,"สมุทรปราการ","Thailand"," 02-3164881-2 / 081-3510203",,"02-752-0438",,"อื่น ๆ ",,"ตู้คอนเทนเนอร์ ","Cash","-",, +"res_partner_office_201","คุณวาสนา คำสวัสดิ์ (โอ๋)",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด บางพลีคอนเทนเนอร์","res_partner_office_200","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_202","บริษัท สยามคูลเลอร์ อินดัสทรี้ จำกัด / บริษัท สยามคูลเลอร์ มาร์ท จำกัด","SP07S070","TRUE","FALSE","TRUE",,,"Default","FALSE","33/1490 หมู่ 10 ซ.โชคชัย 4 แยก 54 ถ.โชคชัย 4","แขวงลาดพร้าว เขตลาดพร้าว",10230,"กรุงเทพฯ","Thailand","0-2539-2630,0-2931-1381 ",,"0-2539-2607",,"อื่น ๆ ",,"ตู้ทำน้ำเย็น","30 Days",3,, +"res_partner_office_203","คุณวัชรพงศ์",,"FALSE","FALSE","TRUE","บริษัท สยามคูลเลอร์ อินดัสทรี้ จำกัด / บริษัท สยามคูลเลอร์ มาร์ท จำกัด","res_partner_office_202","Contact","TRUE",,,,,"Thailand",,"086 - 311 3572",,,,,,,,, +"res_partner_office_204","คุณมนตรี",,"FALSE","FALSE","TRUE","บริษัท สยามคูลเลอร์ อินดัสทรี้ จำกัด / บริษัท สยามคูลเลอร์ มาร์ท จำกัด","res_partner_office_202","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_205","บริษัท มิชชั่น เคมิคอล จำกัด","SP07S071","TRUE","FALSE","TRUE",,,"Default","FALSE","93/48 ม.1","แขวงสายไหม เขตสายไหม",10220,"กรุงเทพฯ","Thailand","(04-7295733) 0-2994-3256",,"0-2994-3256",,"อื่น ๆ ",,"ถังดับเพลิง",,3,, +"res_partner_office_206","วรโชติ",,"FALSE","FALSE","TRUE","บริษัท มิชชั่น เคมิคอล จำกัด","res_partner_office_205","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_207","ห้างหุ้นส่วนจำกัด ไทยแสงฮวด","SP07S072","TRUE","FALSE","TRUE",,,"Default","FALSE","21/207-208 ถ.บางนา-ตราด กม.2","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","02-3930780-1, 749-1364-6",,"02-7491367",,"อื่น ๆ ",,"ถังเหล็ก, ถังสแตนเลส","30 Days",3,, +"res_partner_office_208","คุณลาวัลย์",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ไทยแสงฮวด","res_partner_office_207","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_209","บริษัท สเปซ มีเดีย จำกัด","SP07S073","TRUE","FALSE","TRUE",,,"Default","FALSE","48 หมู่ 2 ถนนสุขุมวิท 103","แขวงดอกไม้ เขตประเวศ",10250,"กรุงเทพฯ","Thailand"," 02-3280888 ",,"02-3280324",,"อื่น ๆ ",,"ทำป้ายโฆษณา","30 Days",3,, +"res_partner_office_210","คุณชนกชนน์",,"FALSE","FALSE","TRUE","บริษัท สเปซ มีเดีย จำกัด","res_partner_office_209","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_211","สยามวิศวกรรมและการพานิช","SP07S074","TRUE","FALSE","TRUE",,,"Default","FALSE","10/2 ซ.สุขสวัสดิ์ 70","ต.บางครุ พระประแดง",10130,"สมุทรปราการ","Thailand","02 -4633274, 02-4641439,024637121",,"02 -4633274",,"อื่น ๆ ",,"ทำผ้าใบ","Cash",3,, +"res_partner_office_212","คุณชาติ",,"FALSE","FALSE","TRUE","สยามวิศวกรรมและการพานิช","res_partner_office_211","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_213","คุณสงวน",,"FALSE","FALSE","TRUE","สยามวิศวกรรมและการพานิช","res_partner_office_211","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_214","บริษัท วี. พี. ซี. กรุ๊ป จำกัด","SP07S075","TRUE","FALSE","TRUE",,,"Default","FALSE","59 ซอยอ่อนนุช 65 + +","แขวงประเวศ เขตประเวศ + +",10250,"กรุงเทพฯ","Thailand","02 - 3220057-9",,"02 - 3220060,02 - 3229191",,"อื่น ๆ ",,"นั่งร้านเหล็ก","Cash",3,, +"res_partner_office_215","บริษัท เอสโก้ - ไทย จำกัด","SP07S076","TRUE","FALSE","TRUE",,,"Default","FALSE","1018,1020,1022 ถ.ศรีนครินทร์","แขวงสวนหลวง เขตสวนหลวง",10250,"กรุงเทพฯ","Thailand","0-2322 9022-4",,"0-2322 5651 , 02-322 4412",,"อื่น ๆ ",,"นำเข้าเครื่องฟอกอากาศ เครื่องกำจัดไฟฟ้าสถิตย์ ชุด ","Cash",7,, +"res_partner_office_216","คุณโสสรส",,"FALSE","FALSE","TRUE","บริษัท เอสโก้ - ไทย จำกัด","res_partner_office_215","Contact","TRUE",,,,,"Thailand",,"081-303 6663"," ",,,,,,,, +"res_partner_office_217","บริษัท เร้นท์ (ประเทศไทย ) จำกัด","SP07S077","TRUE","FALSE","TRUE",,,"Default","FALSE","700/679 หมู่ 1","ตำบลพานทอง อำเภอพานทอง",20160,"ชลบุรี","Thailand","038 - 447391-4",,"038 - 447395-6",,"อื่น ๆ ",,"บริการเช่ารถ ( รถเครน )","30 Days",7,, +"res_partner_office_218","คุณตรียภรณ์",,"FALSE","FALSE","TRUE","บริษัท เร้นท์ (ประเทศไทย ) จำกัด","res_partner_office_217","Contact","TRUE",,,,,"Thailand",,"087-344 4139",,,,,,,,, +"res_partner_office_219","บริษัท เปี๊ยกเครนกลการ จำกัด","SP07S078","TRUE","FALSE","TRUE",,,"Default","FALSE","11/5 หมู่ที่ 18","ตำบลคูคต อำเภอลำลูกกา",,"ปทุมธานี","Thailand","02-9958546 ",,"02-9958546 ,",,"อื่น ๆ ",,"บริการเช่ารถ ( รถเครน )","Cash",7,, +"res_partner_office_220","คุณเปี๊ยก",,"FALSE","FALSE","TRUE","บริษัท เปี๊ยกเครนกลการ จำกัด","res_partner_office_219","Contact","TRUE",,,,,"Thailand",,"081 - 832 7250",,,,,,,,, +"res_partner_office_221","บริษัท ออล สตาร์ ทรานสปอร์ต จำกัด","SP07S079","TRUE","FALSE","TRUE",,,"Default","FALSE","880/2 ถนนหลวงแพ่ง","แขวงทับยาว เขตลาดกระบัง",10520,"กรุงเทพฯ","Thailand"," 02-715-1800-5 , 084-451-5588 ",," 02-715-1818-9",,"อื่น ๆ ",,"บริการเช่ารถ ( รถตู้ )","Cash",7,, +"res_partner_office_222","คุณพัชรี",,"FALSE","FALSE","TRUE","บริษัท ออล สตาร์ ทรานสปอร์ต จำกัด","res_partner_office_221","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_223","ห้างหุ้นส่วนจำกัด สมจิตร นิลสุวรรรณ ทรานสปอร์ต","SP07S080","TRUE","FALSE","TRUE",,,"Default","FALSE","16 ม.6 ถ.บางนา-ตราด กม.15","ต.บางโฉลง อ.บางพลี",,"สมุทรปราการ","Thailand","0-2312-5124 ,0-2312-5858 , 0-2312-5859 ",,"0-2312-5538 ",,"อื่น ๆ ",,"บริการเช่ารถ ( รถตู้ ) ","Cash",7,, +"res_partner_office_224","คุณนารีรัตน์",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด สมจิตร นิลสุวรรรณ ทรานสปอร์ต","res_partner_office_223","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_225","คุณสุ",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด สมจิตร นิลสุวรรรณ ทรานสปอร์ต","res_partner_office_223","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_226","บริษัท บางบอนฟอร์คลิฟท์ จำกัด","SP07S081","TRUE","FALSE","TRUE",,,"Default","FALSE","เลขที่ 781 ถนนเอกชัย","แขวงบางบอน เขตบางบอน",10150,"กรุงเทพฯ","Thailand","02-894-3322, 02-894-5115",,"02-8943746 ",,"อื่น ๆ ",,"บริการเช่ารถ , จำหน่าย รถโฟร์คลิฟท์ ","30 Days",7,, +"res_partner_office_227","บริษัท อิมมอร์เทล จำกัด","SP07S082","TRUE","FALSE","TRUE",,,"Default","FALSE","445/369 หมู่ที่ 4 +","ตำบลแพรกษา อำเภอเมืองสมุทรปราการ +"," ","สมุทรปราการ","Thailand","TEL : 0-2324 3817 , 02 - 324 3833",,"0-2324 3818",,"อื่น ๆ ",,"บริการตรวจสอบเครน","30 Days","-",, +"res_partner_office_228","คุณปพิชญานันท์",,"FALSE","FALSE","TRUE","บริษัท อิมมอร์เทล จำกัด","res_partner_office_227","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_229","คณะบุคคล เจ อาร์ เอส","SP07S083","TRUE","FALSE","TRUE",,,"Default","FALSE","120/82","แขวงหลักสอง เขตบางแค",10160,"กรุงเทพฯ","Thailand","02 - 802 7887 ,081-710 3733 ",,"02-804 9303 ",,"อื่น ๆ ",,"บริการตรวจสอบเครน ","30 Days","-",, +"res_partner_office_230","คุณจำเริญ",,"FALSE","FALSE","TRUE","คณะบุคคล เจ อาร์ เอส","res_partner_office_229","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_231","บริษัท แบงค็อคเอ็กซ์ซิบิชั่นเซอร์วิสเซส จำกัด","SP07S084","TRUE","FALSE","TRUE",,,"Default","FALSE","62 ซ.พระราม 6 ซ.30 ถ.พระราม 6","แขวงสามเสนใน เขตพญาไท",10400,"กรุงเทพฯ","Thailand","02-6171475-82",,"02-6171407",,"อื่น ๆ ",,"บริการให้เช่าพื้นที่สำหรับจัดนิทรรศการ ","Cash","-",, +"res_partner_office_232","บริษัท สยามทิมเบอร์ แอนด์ แมชชีนเนอร์นร่ จำกัด","SP07S085","TRUE","FALSE","TRUE",,,"Default","FALSE","4-6 ถ.บรรทัดทอง","แขวงเพชรบุรี แขตราชเทวี",,"กรุงเทพฯ","Thailand","081-4421786 ,02-2160295-7 ",,"02-2159526,02-2159595",,"อื่น ๆ ",,"ใบเลื่อยสายพาน","Cash","-",, +"res_partner_office_233","คุณฐิตาพร(บี)",,"FALSE","FALSE","TRUE","บริษัท สยามทิมเบอร์ แอนด์ แมชชีนเนอร์นร่ จำกัด","res_partner_office_232","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_234","ห้างหุ้นส่วนจำกัด ทวีอนันต์","SP07S086","TRUE","FALSE","TRUE",,,"Default","FALSE","27/10 ม.13","แขวงคันนายาว เขตคันนายาว",,"กรุงเทพฯ","Thailand","02-5107857, 01-8015256",,"02-5107857",,"อื่น ๆ ",,"ประกอบกิจการรับเหมาก่อสร้าง",,"-",, +"res_partner_office_235","บริษัท วิริยะประกันภัย จำกัด","SP07S087","TRUE","FALSE","TRUE",,,"Default","FALSE","1242 ถนนกรุงเกษม","แขวงคลองมหานาค เขตป้อมปราบศัตรูพ่าย",10100,"กรุงเทพฯ","Thailand","02-224 0059, 02-2223 0851",,"02 - 7599296",,"อื่น ๆ ",,"ประกันภัย","30 Days","-",, +"res_partner_office_236","บริษัท กรุงเทพประกันภัย จำกัด (มหาชน)","SP07S088","TRUE","FALSE","TRUE",,,"Default","FALSE","อาคารกรุงเทพประกันภัย 25","ถนนสาทรใต้",10120,"กรุงเทพฯ","Thailand","02-085 8888 , 02-677 3777",,"02-677 3737-8",,"อื่น ๆ ",,"ประกันภัย ","30 Days","-",, +"res_partner_office_237","คุณวีนา",,"FALSE","FALSE","TRUE","บริษัท กรุงเทพประกันภัย จำกัด (มหาชน)","res_partner_office_236","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_238","บริษัท ศรีทอง เอ็นจิเนียริ่ง จำกัด","SP07S089","TRUE","FALSE","TRUE",,,"Default","FALSE","483,485,487,489 พระราม 2 + +","แขวงบางมด เขตจอมทอง + +",10150,"กรุงเทพฯ","Thailand","02-4284171-8",,"02-4284180",,"อื่น ๆ ",,"ปลอกยอย, สาย HY, ข้อต่อตรง, ไฮโดรลิก",,"-",, +"res_partner_office_239","อภิสิทธิ์ มีอาษา",,"FALSE","FALSE","TRUE","บริษัท ศรีทอง เอ็นจิเนียริ่ง จำกัด","res_partner_office_238","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_240","บริษัท ไวทยะโชติ จำกัด","SP07S090","TRUE","FALSE","TRUE",,,"Default","FALSE","120 ซอยบางนาตราด 31","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","02-3987294, 7441307",,"02-3994840",,"อื่น ๆ ",,"ปั๊มน้ำ ปั๊มลม มอเตอร์ไฟฟ้า +",,"-",, +"res_partner_office_241","ร้านปากน้ำผ้าใบ","SP07S091","TRUE","FALSE","TRUE",,,"Default","FALSE","50/34-5 คลองตะเค็ดฝั่งตะวันตก + +","ตำบลปากน้ำ อำเภอเมืองสมุทรปราการ + +",10280,"สมุทรปราการ","Thailand","0-2395-2434, 701-7998",,"0-2701-8540",,"อื่น ๆ ",,"ผ้าใบคลุมรถ","Cash",7,, +"res_partner_office_242","คุณสิริมา",,"FALSE","FALSE","TRUE","ร้านปากน้ำผ้าใบ","res_partner_office_241","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_243","ห้างหุ้นส่วนจำกัด ประกิตผ้าใบ","SP07S092","TRUE","FALSE","TRUE",,,"Default","FALSE","35, 37 ถ.สายลวด","ต.ปากน้ำ อ.เมือง",10280,"สมุทรปราการ","Thailand","02-7018820-1",,"02-3872473",,"อื่น ๆ ",,"ผ้าใบคลุมรถ","Cash",7,, +"res_partner_office_244","หนุ่ม",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ประกิตผ้าใบ","res_partner_office_243","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_245","ห้างหุ้นส่วนจำกัด ยี้ เฮง หลง","SP07S093","TRUE","FALSE","TRUE",,,"Default","FALSE","196-8","แขวงจักรวรรดิ์ เขตสัมพันธวงศ์",10100,"กรุงเทพฯ","Thailand","02-2222808, 2114564",,"02-2253271",,"อื่น ๆ ",,"ผ้ายางมะตอย","Cash",7,, +"res_partner_office_246","แก้ว",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ยี้ เฮง หลง","res_partner_office_245","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_247","บริษัท ไอ เอ๊กซ์ แอล จำกัด","SP07S094","TRUE","FALSE","TRUE",,,"Default","FALSE","4 ซอยสุขาภิบาล 2 ซอย 11 แยก 2-3 อ่อนนุช","แขวงประเวศ เขตประเวศ",10250,"กรุงเทพฯ","Thailand","02 - 7264574-6",,"02 - 7264577",,"อื่น ๆ ",,"แผ่นฉนวนกันความร้อน, ","Cash",7,, +"res_partner_office_248","บริษัท ซานโต ไฟร์ เทรนนิ่ง จำกัด","SP07S095","TRUE","FALSE","TRUE",,,"Default","FALSE","6/53-55 ซอยแสงอุทัยทิพย์ ถนนดินแดง","แขวงดินแดง เขตดินแดง",,"กรุงเทพฯ","Thailand","02-248-3071 ",,"02-246-6859 ",,"อื่น ๆ ",,"ฝึกอบรมดับเพลิงขั้นต้นและฝึกซ้อมหนีไฟประจำปี ","30 Days",7,, +"res_partner_office_249","คุณอธิกาญ",,"FALSE","FALSE","TRUE","บริษัท ซานโต ไฟร์ เทรนนิ่ง จำกัด","res_partner_office_248","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_250","บริษัท เค.ที แอนด์ แอล เมทัล จำกัด","SP07S096","TRUE","FALSE","TRUE",,,"Default","FALSE","227 ม.4 ถ.รัตนโกสินทร์ 200 ปี","ต.บางบ่อ อ.บางบ่อ",10560,"สมุทรปราการ","Thailand","02-707 0573-4 / 081- 5837828",,"02-7070575",,"อื่น ๆ ",,"พ่นสีอลูมิเนียม","30 Days",7,, +"res_partner_office_251","คุณทวีพัฒน์",,"FALSE","FALSE","TRUE","บริษัท เค.ที แอนด์ แอล เมทัล จำกัด","res_partner_office_250","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_252","คุณสุรินทร์",,"FALSE","FALSE","TRUE","บริษัท เค.ที แอนด์ แอล เมทัล จำกัด","res_partner_office_250","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_253","บริษัท แคปิตอล คาร์เปท จำกัด","SP07S097","TRUE","FALSE","TRUE",,,"Default","FALSE","32 Soi Udomsuk 31, Sukhumvit 103 Rd.,","Bangjak , Prakhanong ,",10260,"Bangkok","Thailand","0-2383 - 8850-3",," 0 - 2383 - 8860 ",,"อื่น ๆ ",,"พรม , กาวปูพรม","Cash",7,, +"res_partner_office_254","คุณอุดม",,"FALSE","FALSE","TRUE","บริษัท แคปิตอล คาร์เปท จำกัด","res_partner_office_253","Contact","TRUE",,,,,"Thailand",,"081-565 7059",,,,,,,,, +"res_partner_office_255","ห้างหุ้นส่วนจำกัด มงคลถาวรกิจ","SP07S098","TRUE","FALSE","TRUE",,,"Default","FALSE","2/14-15 หมู่ 10 ซอยเอกชัย 7 ถนนเอกชัย +","แขวงบางขุนเทียน เขตจอมทอง +",10150,"กรุงเทพฯ","Thailand","02 - 415 3138, 2415 2322, 2416 9594 +",,"02 - 893 8563 +",,"อื่น ๆ ",,"พัดลมอุตสาหกรรม","Cash",7,, +"res_partner_office_256","VKS TINT CO.,LTD","SP07S099","TRUE","FALSE","TRUE",,,"Default","FALSE","27 ซ.ลาซาล 365","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","02-745-8112-3",,"02-478-7643",,"อื่น ๆ ",,"ฟิล์มกรองแสง","30 Days",7,, +"res_partner_office_257","คุณวิทยา",,"FALSE","FALSE","TRUE","VKS TINT CO.,LTD","res_partner_office_256","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_258","บริษัท พลวัตร จำกัด","SP07S100","TRUE","FALSE","TRUE",,,"Default","FALSE","76 ม.11 ถ.พุทธมณฑลสาย 5","ต.ไร่ขิง อ.สามพราน",73210,"นครปฐม","Thailand","0-2811-9022",,"0-2811-9519",,"อื่น ๆ ",,"มอเตอร์เกียร์","Cash",7,, +"res_partner_office_259","คุณสุรินทร์",,"FALSE","FALSE","TRUE","บริษัท พลวัตร จำกัด","res_partner_office_258","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_260","บริษัท ไมโครไฟเบอร์ อุตสาหกรรม จำกัด","SP07S101","TRUE","FALSE","TRUE",,,"Default","FALSE","อาคารไทยสมุทร ชั้น 3 175 ถนนสุขุมวิท 21","วัฒนา",10110,"กรุงเทพฯ","Thailand","02-2583774-6, 2593767-9",,"02-2583767",,"อื่น ๆ ",,"ไมโครไฟเบอร์ แบบกันเสียง","Cash","-",, +"res_partner_office_261","เดโช",,"FALSE","FALSE","TRUE","บริษัท ไมโครไฟเบอร์ อุตสาหกรรม จำกัด","res_partner_office_260","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_262","บริษัท วี. พี. วู๊ด จำกัด","SP07S102","TRUE","FALSE","TRUE",,,"Default","FALSE","25/5 หมู่ 4 ซ.สุขสวัสดิ์ 66 ถ.สุขสวัสดิ์ + +","แขวงบางมด เขตทุ่งครุ",10140,"กรุงเทพฯ","Thailand","02-463-0335 - 9 , 086-340-8271",,"02-463-4477",,"อื่น ๆ ",,"ไม้แปรรูป / ไม้รูปพรรณ /ไม้อัด","Cash","-",, +"res_partner_office_263","คุณวุฒิ",,"FALSE","FALSE","TRUE","บริษัท วี. พี. วู๊ด จำกัด","res_partner_office_262","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_264","บริษัท ธนาดุลค้าไม้ จำกัด","SP07S103","TRUE","FALSE","TRUE",,,"Default","FALSE","136/7-9 ซอยไสวสุวรรณ ประชาราษฎร์สาย 1","แขวงบางซื่อ เขตบางซื่อ",10800,"กรุงเทพฯ","Thailand","02-912 7937-9",,"02- 912 7936 ",,"อื่น ๆ ",,"ไม้แปรรูป / ไม้รูปพรรณ /ไม้อัด","Cash","-",, +"res_partner_office_265","คุณเต๋า",,"FALSE","FALSE","TRUE","บริษัท ธนาดุลค้าไม้ จำกัด","res_partner_office_264","Contact","TRUE",,,,,"Thailand",,"081-514 3352",,,,,,,,, +"res_partner_office_266","บริษัท เอกวิวัฒน์ไม้อัด จำกัด","SP07S104","TRUE","FALSE","TRUE",,,"Default","FALSE","29/41 หมู่ 6 ซอยจิตภักดี สุขาภิบาล 1 + +","แขวงคลองกุ่ม เขตบึงกุ่ม",10240,"กรุงเทพฯ","Thailand","02-3792845, 3792956",,"02-3792845, 3792956",,"อื่น ๆ ",,"ไม้แปรรูป / ไม้รูปพรรณ /ไม้อัด","Cash","-",, +"res_partner_office_267","ทัศนีย์",,"FALSE","FALSE","TRUE","บริษัท เอกวิวัฒน์ไม้อัด จำกัด","res_partner_office_266","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_268","บริษัท พีพีพี ทิมเบอร์ส จำกัด","SP07S105","TRUE","FALSE","TRUE",,,"Default","FALSE","797 ถ.ศรีนครินทร์","แขวงสวนหลวง เขตสวนหลวง",,"กรุงเทพฯ","Thailand","081 - 886 - 5288 , 02 - 320 -1915 ",,"02 - 320 - 1916",,"อื่น ๆ ",,"ไม้แปรรูป / ไม้รูปพรรณ /ไม้อัด","15 Days","-",, +"res_partner_office_269","คุณเล็ก",,"FALSE","FALSE","TRUE","บริษัท พีพีพี ทิมเบอร์ส จำกัด","res_partner_office_268","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_270","ศรีนครินทร์ปาเก้","SP07S106","TRUE","FALSE","TRUE",,,"Default","FALSE","407/8-9 หมู่ 5 ถ.ศรีนครินทร์ + +","ต.สำโรงเหนือ อ.เมืองสมุทรปราการ + +",,"สมุทรปราการ","Thailand","02-3857731, 3857785",,"02-3867223",,"อื่น ๆ ",,"ไม้แปรรูป / ไม้รูปพรรณ /ไม้อัด","30 Days","-",, +"res_partner_office_271","เก๋",,"FALSE","FALSE","TRUE","ศรีนครินทร์ปาเก้","res_partner_office_270","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_272","จ.รวมยาง","SP07S107","TRUE","FALSE","TRUE",,,"Default","FALSE","735/9","ต. พนมสารคาม อ.พนมสารคาม",,"ฉะเชิงเทรา","Thailand","038- 551 230 ,038 - 837 311",,"038- 551 230 ,038 - 837 311",,"อื่น ๆ ",,"ยางรถยนต์ ","Cash","-",, +"res_partner_office_273","คุณสมบูรณ์",,"FALSE","FALSE","TRUE","จ.รวมยาง","res_partner_office_272","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_274","บริษัท สต๊อป - เบิร์ด โปรเฟสชั่นแนล จำกัด","SP07S108","TRUE","FALSE","TRUE",,,"Default","FALSE","87/291 ถ.กาญจนาภิเษก","แขวงบางบอน เขตบางบอน",10150,"กรุงเทพฯ","Thailand","02 - 899 9928 ",,"02 - 899 9939, 49, 59",,"อื่น ๆ ",,"ยาดักจับนก","Cash","-",, +"res_partner_office_275","คุณวัชรินทร์",,"FALSE","FALSE","TRUE","บริษัท สต๊อป - เบิร์ด โปรเฟสชั่นแนล จำกัด","res_partner_office_274","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_276","บริษัท ฮ.เจริญทรัพย์กลการ จำกัด","SP07S109","TRUE","FALSE","TRUE",,,"Default","FALSE","109/438-41 บางนา-ตราด + +","ตำบลบางพลีใหญ่ อำเภอบางพลี + +",10540,"สมุทรปราการ","Thailand","0-2749 2162-3",,"0-2749 2169",,"อื่น ๆ ",,"ร้านซ่อมรถ","30 Days","-",, +"res_partner_office_277","คุณประนอม",,"FALSE","FALSE","TRUE","บริษัท ฮ.เจริญทรัพย์กลการ จำกัด","res_partner_office_276","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_278","ร้านสมานมิตร","SP07S110","TRUE","FALSE","TRUE",,,"Default","FALSE","802 หมู่ 1","ต.พนมสารคาม อ.พนมสารคาม",24120,"ฉะเชิงเทรา","Thailand","(038)883 9191",," (038) 839 292",,"อื่น ๆ ",,"ร้านอุปกรณ์ก่อสร้าง ","Cash","-",, +"res_partner_office_279","คุณไพรวัลย์",,"FALSE","FALSE","TRUE","ร้านสมานมิตร","res_partner_office_278","Contact","TRUE",,,,,"Thailand",,"089-964 0222",,,,,,,,, +"res_partner_office_280","บริษัท ภูวดลไพศาล เอ็นจิเนียริ่ง จำกัด","SP07S111","TRUE","FALSE","TRUE",,,"Default","FALSE","8 ม.5","ต.บางพูน อ.เมือง",12000,"ปทุมธานี","Thailand","0-2567-3651-2",,"0-2567-3185",,"อื่น ๆ ",,"รีโมท","Cash","-",, +"res_partner_office_281","ประดิษฐ์",,"FALSE","FALSE","TRUE","บริษัท ภูวดลไพศาล เอ็นจิเนียริ่ง จำกัด","res_partner_office_280","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_282","บริษัท อาร์. เจ. โค้ทติ้ง จำกัด","SP07S112","TRUE","FALSE","TRUE",,,"Default","FALSE","38/1 ม.6 ต.เกาะขนุน","อ.พนมสารคาม",24120,"ฉะเชิงเทรา","Thailand"," 038-59-7738-9 ",," 0-3859-7025",,"อื่น ๆ ",,"โรงพ่นสี ","Cash","-",, +"res_partner_office_283","คุณจินตนา",,"FALSE","FALSE","TRUE","บริษัท อาร์. เจ. โค้ทติ้ง จำกัด","res_partner_office_282","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_284","จรัสบริการ ( ลับคมใบมีด )","SP07S113","TRUE","FALSE","TRUE",,,"Default","FALSE","1568 หมู่ที่ 6 ถ.สุขุมวิท","ต. สำโรงเหนือ อ.เมือง",10270,"สมุทรปราการ","Thailand","02- 749 3472-3 ",,"02 -393 9754",,"อื่น ๆ ",,"ลับคมใบมีด","Cash","-",, +"res_partner_office_285","คุณเมย์",,"FALSE","FALSE","TRUE","จรัสบริการ ( ลับคมใบมีด )","res_partner_office_284","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_286","บริษัท ศรีบุญชัย ( สุขุมวิท105) จำกัด","SP07S114","TRUE","FALSE","TRUE",,,"Default","FALSE","756 ซ. สุขุมวิท 105 ถ.ลาซาล","แขวงบางนา เขตบางนนา",10260,"กรุงเทพฯ","Thailand","02 748 6089 - 90 ",,"02 - 398 4953-4",,"อื่น ๆ ",,"วัสดุก่อสร้าง","30 Days",7,, +"res_partner_office_287","คุณประภา (นก)",,"FALSE","FALSE","TRUE","บริษัท ศรีบุญชัย ( สุขุมวิท105) จำกัด","res_partner_office_286","Contact","TRUE",,,,,"Thailand",,"086-3741581",,,,,,,,, +"res_partner_office_288","บริษัท ฮาร์ดแวร์ เซ็นเตอร์ จำกัด","SP07S115","TRUE","FALSE","TRUE",,,"Default","FALSE","766 ซอยสุขุมวิท 105ถนนลาซาล","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand"," 02 - 748 6089-90",,"02 - 748 6090 ",,"อื่น ๆ ",,"วัสดุก่อสร้าง","Cash",7,, +"res_partner_office_289","คุณขวัญ",,"FALSE","FALSE","TRUE","บริษัท ฮาร์ดแวร์ เซ็นเตอร์ จำกัด","res_partner_office_288","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_290","บริษัท บี วาย พี เทรดดิ้ง จำกัด","SP07S116","TRUE","FALSE","TRUE",,,"Default","FALSE","23/25 อาคารอี โครงการรอยัลซิตี้อเวนิว ซอยศูนย์วิจัย ถนนพระราม 9","แขวงบางกะปิ เขตห้วยขวาง",,"กรุงเทพฯ","Thailand","-",,"-",,"อื่น ๆ ",,"เสื้อโปโล","Cash",30,, +"res_partner_office_291","คุณอราม",,"FALSE","FALSE","TRUE","บริษัท บี วาย พี เทรดดิ้ง จำกัด","res_partner_office_290","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_292","บริษัท แอมเชอร์ พลัส จรูญรัศมี จำกัด","SP07S117","TRUE","FALSE","TRUE",,,"Default","FALSE","1015 หมู่ที่ 3 ซอยรามคำแหง 164 รามคำแหง","คลองสองต้นนุ่น ลาดกระบัง",,"กรุงเทพฯ","Thailand"," 02 - 372 9586 ",,"02 - 372 7116",,"อื่น ๆ ",,"เสื้อโปโล","Cash",30,, +"res_partner_office_293","คณะบุคคล โฟร์ เฟรน ซอร์สซิ่ง","SP07S118","TRUE","FALSE","TRUE",,,"Default","FALSE","56/81 ม.7 ถ.บางกรวย-ไทรน้อย","ต.บางกรวย อ.บางกรวย",11130,"นนทบุรี","Thailand","05-1124291/0-2673-1593/01-4383750/06-9890006",,"0-2673-1593",,"อื่น ๆ ",,"เสื้อโปโล","Cash",30,, +"res_partner_office_294","คุณธงชัย",,"FALSE","FALSE","TRUE","คณะบุคคล โฟร์ เฟรน ซอร์สซิ่ง","res_partner_office_293","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_295","พุทธชาด",,"FALSE","FALSE","TRUE","คณะบุคคล โฟร์ เฟรน ซอร์สซิ่ง","res_partner_office_293","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_296","นิวแสงทองแฟ็คทอรี่","SP07S119","TRUE","FALSE","TRUE",,,"Default","FALSE","24/630 ถ.สุขุมวิท 105 ซ.ลาซาล 75","แขวงบางนา เขตบางนนา",10260,"กรุงเทพฯ","Thailand","02-7487774-8",,"02-7487770",,"อื่น ๆ ",,"เสื้อโปโล","Cash",30,, +"res_partner_office_297","คุณวรวุฒิ",,"FALSE","FALSE","TRUE","นิวแสงทองแฟ็คทอรี่","res_partner_office_296","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_298","ห้างหุ้นส่วนจำกัด อาจิวการไฟฟ้า","SP07S120","TRUE","FALSE","TRUE",,,"Default","FALSE","66 ซ.บุรีรมย์ ถนนเจริญกรุง","แขวงบ้านบาตร์ เขตป้อมปรบศัตรูพ่าย",10100,"กรุงเทพฯ","Thailand","02-222 6421, 02-222 6427 ",,"02-621 0008-9",,"อื่น ๆ ",,"หม้อแปลงเครื่องอาร์กสปอร์ตเวลติ้","Cash",7,, +"res_partner_office_299","คุณนิรุฒ",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด อาจิวการไฟฟ้า","res_partner_office_298","Contact","TRUE",,,,,"Thailand",,"089-131 0681",,,,,,,,, +"res_partner_office_300","บริษัท แลมป์ตัน ไลท์ติ้ง(2001 ) จำกัด","SP07S121","TRUE","FALSE","TRUE",,,"Default","FALSE","3 ซอยเทียนทะเล 19 ถ.บางขุนเทียน -ชายทะเล","แขวงท่าด่า แขตบางขุนเทียน",10150,"กรุงเทพฯ","Thailand","02 - 451 2968-9",,"02-8972938 ",,"อื่น ๆ ",,"หลอดไฟ ","Cash",15,, +"res_partner_office_301","คุณหญิง",,"FALSE","FALSE","TRUE","บริษัท แลมป์ตัน ไลท์ติ้ง(2001 ) จำกัด","res_partner_office_300","Contact","TRUE",,,,,"Thailand",,"085-770-7077 , 080 -729 9904",,,,,,,,, +"res_partner_office_302","THAI SYNCON & SUPPLIES CO.,LTD.","SP07S122","TRUE","FALSE","TRUE",,,"Default","FALSE","889 อาคารไทย ซีซี ทาวเวอร์ ชั้นที่ 22 ห้อง 224 ถ.สาทรใต้แขวงยายนาวา","เขตสาทร",10120,"กรุงเทพฯ","Thailand","02-675 6260-2 ,038-570572",,"02-675 6259,",,"อื่น ๆ ",,"หลังคา , งานเมทัลชีท","Cash",15,, +"res_partner_office_303","K. ชนากานต์",,"FALSE","FALSE","TRUE","THAI SYNCON & SUPPLIES CO.,LTD.","res_partner_office_302","Contact","TRUE",,,,,"Thailand",,"08-1357 1389",,,,,,,,, +"res_partner_office_304","บริษัท ซี.เอส.ซี. อินเตอร์เนชั่นแนล จำกัด","SP07S123","TRUE","FALSE","TRUE",,,"Default","FALSE","10/22 หมู่ 8 ถนนพุทธรักษา +","ตำบลท้ายบ้านใหม่ อำเภอเมือง +",,"สมุทรปราการ","Thailand","02-388-1081-2",,"02-388-1080",,"อื่น ๆ ",,"หลังคา , งานเมทัลชีท","Cash",15,, +"res_partner_office_305","บริษัท ไทย อาจีย่า จำกัด","SP07S124","TRUE","FALSE","TRUE",,,"Default","FALSE","19/40 หมู่ 10 พหลโยธิน + +","ตำบลคลองหนึ่ง อำเภอคลองหลวง + +",12122,"ปทุมธานี","Thailand","02 - 5204047-8",,"02 - 5204050",,"อื่น ๆ ",,"หลังคา , งานเมทัลชีท","30 Days",15,, +"res_partner_office_306","คุณอมรเทพ",,"FALSE","FALSE","TRUE","บริษัท ไทย อาจีย่า จำกัด","res_partner_office_305","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_307","ห้างหุ้นส่วนจำกัด ลี - เมดิค","SP07S125","TRUE","FALSE","TRUE",,,"Default","FALSE","90/68 หมู่ 8 ซอย 26 สุขสวัสดิ์ + +","แขวงบางปะกอก เขตราษฎร์บูรณะ + +",10140,"กรุงเทพฯ","Thailand","02 - 8744801-2",,"02 - 8744801-2",,"อื่น ๆ ",,"อุปกรณ์การแพทย์","Cash",15,, +"res_partner_office_308","บริษัท ฟอร์ท แทร็คกิ้ง ซีสเต็ม จำกัด","SP07S126","TRUE","FALSE","TRUE",,,"Default","FALSE","226/3,4,5 ถนนพหลโยธิน +","แขวงสามเสนใน เขตพญาไท",10400,"กรุงเทพฯ","Thailand","02 - 615-0808",,"02 - 615-0809",,"อื่น ๆ ",,"อุปกรณ์ติดตามรถ","30 Days",7,, +"res_partner_office_309","คุณไกรกฤษ์ ทิมอ่อน",,"FALSE","FALSE","TRUE","บริษัท ฟอร์ท แทร็คกิ้ง ซีสเต็ม จำกัด","res_partner_office_308","Contact","TRUE",,,,,"Thailand",,"084-1067 825",,,,,,,,, +"res_partner_office_310","บริษัท รีฟริโก อีควิปเม้นท์ จำกัด","SP07S127","TRUE","FALSE","TRUE",,,"Default","FALSE","99/24-27 ม.9 ถ.ลาดพร้าว","แขวงลาดพร้าว เขตลาดพร้าว",10230,"กรุงเทพฯ","Thailand","02-7627910-20",,"0-2931-7280",,"อื่น ๆ ",,"อุปกรณ์ทองแดง","30 Days",7,, +"res_partner_office_311","คุณไชย",,"FALSE","FALSE","TRUE","บริษัท รีฟริโก อีควิปเม้นท์ จำกัด","res_partner_office_310","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_312","บริษัท แสงชัยรีฟริเจอเรชั่น จำกัด","SP07S128","TRUE","FALSE","TRUE",,,"Default","FALSE","283 ถ.หลานหลวง","แขวงวัดโสมนัส เขตป้อมปราบฯ",10100,"กรุงเทพฯ","Thailand","05-1239166, 02-6282600, 2803444",,"02-6280484-5",,"อื่น ๆ ",,"อุปกรณ์ทองแดง","60 Days",7,, +"res_partner_office_313","คุณนราวุธ",,"FALSE","FALSE","TRUE","บริษัท แสงชัยรีฟริเจอเรชั่น จำกัด","res_partner_office_312","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_314","บริษัท เซนิท ซิสเท็ม จำกัด","SP07S129","TRUE","FALSE","TRUE",,,"Default","FALSE","32/9 ซอยเจริญรัก 18 ถนนเจริญรัก","แขวงคลองต้นไทร เขตคลองสาน",10600,"กรุงเทพฯ","Thailand","0-2862 0906 , 02 -439 4723 ",,"02- 437 8921",,"อื่น ๆ ",,"อุปกรณ์ลำเรียง","30 Days",7,, +"res_partner_office_315","คุณดลพร",,"FALSE","FALSE","TRUE","บริษัท เซนิท ซิสเท็ม จำกัด","res_partner_office_314","Contact","TRUE",,,,,"Thailand",,"081-5183374",,,,,,,,, +"res_partner_office_316","บริษัท ยู.บี.จี.(2008) จำกัด","SP07S130","TRUE","FALSE","TRUE",,,"Default","FALSE","155, ซอยเอกชัย 110, ถนนเอกชัย","แขวงบางบอน, เขตบางบอน,",10150,"กรุงเทพฯ","Thailand","02 - 895 0751-4",," 02 -895 0755 ",,"อื่น ๆ ",,"อุปกรณ์ลำเรียง","Cash",7,, +"res_partner_office_317","คุณทวี",,"FALSE","FALSE","TRUE","บริษัท ยู.บี.จี.(2008) จำกัด","res_partner_office_316","Contact","TRUE",,,,,"Thailand",,"081-6123951",,,,,,,,, +"res_partner_office_318","บริษัท ลาฟแลนด์ 2535 ซัพพลาย จำกัด ( ล้อยูริเทน, PVC SH4, แผ่นซุปเปอร์เลน )","SP07S131","TRUE","FALSE","TRUE",,,"Default","FALSE","1999/8-9 หมู่ที่ 4 ถนนสุขุมวิท","ตำบลเทพารักษ์ อำเภอเมืองสมุทรปราการ",,"สมุทรปราการ","Thailand","02-3847890, 7577039",,"02-7577045",,"อื่น ๆ ",,"อุปกรณ์ลำเรียง","Cash",3,, +"res_partner_office_319","นงนุช",,"FALSE","FALSE","TRUE","บริษัท ลาฟแลนด์ 2535 ซัพพลาย จำกัด ( ล้อยูริเทน, PVC SH4, แผ่นซุปเปอร์เลน )","res_partner_office_318","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_320","บริษัท สปีดเวย์ โรลเลอร์แอนด์คอนเวเยอร์ จำกัด","SP07S132","TRUE","FALSE","TRUE",,,"Default","FALSE","26/203 หมู่ 1 ซอยจุลพงษ์ บางขุนเทียน-ชายทะเล + +","แขวงแสมดำ เขตบางขุนเทียน",10150,"กรุงเทพฯ","Thailand","02 - 8921846-50",,"02 - 4156327,028921233",,"อื่น ๆ ",,"อุปกรณ์ลำเรียง","30 Days",3,, +"res_partner_office_321","บริษัท ไมครอนคลีน จำกัด","SP07S133","TRUE","FALSE","TRUE",,,"Default","FALSE","1246 ม.13 ถ.พหลโยธิน","ต.คลองหนึ่ง อ.คลองหลวง",12120,"ปทุมธานี","Thailand","01-3430443, 02-9088200",,"02-9088211",,"อื่น ๆ ",,"อุปกรณ์และวัสดุที่ใช้ในห้องสะอาด","30 Days",3,, +"res_partner_office_322","วีระชัย",,"FALSE","FALSE","TRUE","บริษัท ไมครอนคลีน จำกัด","res_partner_office_321","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_323","ร้าน เอส เค แอร์ แอนด์ เซอร์วิส","SP07S134","TRUE","FALSE","TRUE",,,"Default","FALSE","8/5 หมู่ 12 พระประแดง","ต.บางกอบัว อ.พระประแดง",10130,"สมุทรปราการ","Thailand","02-816-5711",,"02-816-5711",,"อื่น ๆ ",,"แอร์ บ้าน","30 Days",3,, +"res_partner_office_324","คุณอุมา",,"FALSE","FALSE","TRUE","ร้าน เอส เค แอร์ แอนด์ เซอร์วิส","res_partner_office_323","Contact","TRUE",,,,,"Thailand",,"086-906-9134",,,,,,,,, +"res_partner_office_325","คุณฑาณุมาศ",,"FALSE","FALSE","TRUE","ร้าน เอส เค แอร์ แอนด์ เซอร์วิส","res_partner_office_323","Contact","TRUE",,,,,"Thailand",,"089-674-7606",,,,,,,,, +"res_partner_office_326","ห้างหุ้นส่วนจำกัด ซี.ที.พี.แอร์ เซอร์วิส","SP07S135","TRUE","FALSE","TRUE",,,"Default","FALSE","94/29 หมู่ที่ 4 ถ.สุขุมวิท 105","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","0-2 393 7143, 02-393 7153",,"0-2749 7357",,"อื่น ๆ ",,"แอร์ บ้าน","30 Days","-",, +"res_partner_office_327","คุณศิริศักดิ์",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ซี.ที.พี.แอร์ เซอร์วิส","res_partner_office_326","Contact","TRUE",,,,,"Thailand",,"081 - 812 9951",,,,,,,,, +"res_partner_office_328","คุณนี",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ซี.ที.พี.แอร์ เซอร์วิส","res_partner_office_326","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_329","บริษัท แคนนอน ฟาร์อีสต์ (ไทยแลนด์) จำกัด","SP07S136","TRUE","FALSE","TRUE",,,"Default","FALSE","48 ซ.รามคำแหง 14","แขวงหัวหมาก แขตบางกะปิ",10240,"กรุงเทพฯ","Thailand","02-3192595-7",,"02-3192598",,"อื่น ๆ ",,"Machinne / เครื่องฉีดโฟม / SPARE PART ","30 Days","ตามตกลง",, +"res_partner_office_330","ทัศนีย์",,"FALSE","FALSE","TRUE","บริษัท แคนนอน ฟาร์อีสต์ (ไทยแลนด์) จำกัด","res_partner_office_329","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_331","Hennecke GmbH","SP07S137","TRUE","FALSE","TRUE",,,"Default","FALSE","Polyurethane Technology Birlinghovener","StraBe 30 D-53757 Sankt Augustin",,,"Thailand","(+49) 22 41/3 39-0",," (+49) 22 41/3 39-20 4",,"อื่น ๆ ",,"Machinne / เครื่องฉีดโฟม / SPARE PART ",,"ตามตกลง",, +"res_partner_office_332","ALL ARM CO.,LTD.","SP07S138","TRUE","FALSE","TRUE",,,"Default","FALSE","93 ซอยเสนานิคม1(พหลโยธิน32) ถ.พหลโยธิน","แขวงเสนานิคม เขตจตุจักร",10900,"กรุงเทพฯ","Thailand","02 - 9415657, 9415577 ",,"941 8707 ",,"อื่น ๆ ",,"Machinne / เครื่องฉีดโฟม / SPARE PART ","30 Days","ตามตกลง",, +"res_partner_office_333","คุรแซม / คุรฉฮฯ",,"FALSE","FALSE","TRUE","ALL ARM CO.,LTD.","res_partner_office_332","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_334","CBM MACHINE (NZ) LIMITED","SP07S139","TRUE","FALSE","TRUE",,,"Default","FALSE","NO. 1825, HUALONG ROAD, JIAHENG TOWER A 2201,","Jinan - 250100, Shandong, China",,,"Thailand","86-531-88020036",,"86-531-88020455",,"อื่น ๆ ",,"Machinne / เครื่องฉีดโฟม / SPARE PART ","30 Days","ตามตกลง",, +"res_partner_office_335","Mr. Farley Feng (Sales Manager)",,"FALSE","FALSE","TRUE","CBM MACHINE (NZ) LIMITED","res_partner_office_334","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_336","7408 ENGINEERING CO.,LTD.","SP07S140","TRUE","FALSE","TRUE",,,"Default","FALSE","244/3 Moo 1 Thepharak","Tumbol Bang Sao Thong Amphoe Bang Sao Thong",10540,"Samut Prakan","Thailand",23131340,,23131340,,"อื่น ๆ ",,"Machinne / SPARE PART ","30 Days","ตามตกลง",, +"res_partner_office_337","บริษัท ไทย เมทัล ชีท โปรดัก จำกัด","SP07S141","TRUE","FALSE","TRUE",,,"Default","FALSE","25/257 หมู่ที่ 6","ตำบลบางตลาด อำเภอปากเกร็ด",11120,"นนทบุรี","Thailand","02 -582 0588-90 , 081- 823 5182 ",,"02-582 0591, 02-962 1486",,"อื่น ๆ ",,"Machinne / SPARE PART ","30 Days","ตามตกลง",, +"res_partner_office_338","ศุภกร",,"FALSE","FALSE","TRUE","บริษัท ไทย เมทัล ชีท โปรดัก จำกัด","res_partner_office_337","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_339","ทัศนีย์",,"FALSE","FALSE","TRUE","บริษัท ไทย เมทัล ชีท โปรดัก จำกัด","res_partner_office_337","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_340","คุณปู",,"FALSE","FALSE","TRUE","บริษัท ไทย เมทัล ชีท โปรดัก จำกัด","res_partner_office_337","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_341","บริษัท สยามโปรเทค ซัพพลาย จำกัด","SP07S142","TRUE","FALSE","TRUE",,,"Default","FALSE","81/51ม.9 ถนนฉลองกรุง","แขวงลำผักชี เขตหนองจอก",10530,"กรุงเทพฯ","Thailand"," 0-2908-3596-9",," 0-2908-3595",,"อื่น ๆ ",,"Machinne / SPARE PART ","30 Days","ตามตกลง",, +"res_partner_office_342","คุณประภัสสร",,"FALSE","FALSE","TRUE","บริษัท สยามโปรเทค ซัพพลาย จำกัด","res_partner_office_341","Contact","TRUE",,,,,"Thailand",,"089 - 797 6629",,,,,,,,, +"res_partner_office_343","บริษัท เอส วาย เทค คอปอร์เรชั่น จำกัด","SP07S143","TRUE","FALSE","TRUE",,,"Default","FALSE","HEAD OFFICE 335/21 Srinakarin Road,","Nongbon, Pravet,",10250,"Bangkok","Thailand","02-366-0395-7 , 02-366-0731 ",," 02-366-0394-5",,"อื่น ๆ ",,"Machinne / SPARE PART ","30 Days","ตามตกลง",, +"res_partner_office_344","คุณสำเร็จ",,"FALSE","FALSE","TRUE","บริษัท เอส วาย เทค คอปอร์เรชั่น จำกัด","res_partner_office_343","Contact","TRUE",,,,,"Thailand",,"081-341 1267",,,,,,,,, +"res_partner_office_345","บริษัท วีเอ็น - เทค ออโตเมชั่น จำกัด","SP07S144","TRUE","FALSE","TRUE",,,"Default","FALSE","89/183 หมู่ที่ 5 ถนนเทพารักษ์","ต. บางพลีใหญ่ อ. บางพลี",10540,"สมุทรปราการ","Thailand","02 - 186 8290 , 089 - 7610330 ,086-3205257 ",,"02 - 186 8291 ",,"อื่น ๆ ",,"Machinne / SPARE PART ","30 Days","ตามตกลง",, +"res_partner_office_346","คุณชาญยุทธ",,"FALSE","FALSE","TRUE","บริษัท วีเอ็น - เทค ออโตเมชั่น จำกัด","res_partner_office_345","Contact","TRUE",,,,,"Thailand",,"089 - 7610330",,,,,,,,, +"res_partner_office_347","คุณจุไรพร",,"FALSE","FALSE","TRUE","บริษัท วีเอ็น - เทค ออโตเมชั่น จำกัด","res_partner_office_345","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_348","บริษัท ยู.บี.จี.(2008) จำกัด","SP07S145","TRUE","FALSE","TRUE",,,"Default","FALSE","155, ซอยเอกชัย 110, ถนนเอกชัย,","แขวงบางบอน, เขตบางบอน,",10150,"กรุงเทพฯ","Thailand","02-895 0751-4 ",,"02-8950755",,"อื่น ๆ ",,"Machinne / SPARE PART ","30 Days","ตามตกลง",, +"res_partner_office_349","คุณทวี",,"FALSE","FALSE","TRUE","บริษัท ยู.บี.จี.(2008) จำกัด","res_partner_office_348","Contact","TRUE",,,,,"Thailand",,"081-6123951 ",,,,,,,,, +"res_partner_office_350","บริษัท 3114 เอ็นจิเนียริ่ง จำกัด","SP07S146","TRUE","FALSE","TRUE",,,"Default","FALSE","87 ซอยบางนา - ตราด 21","บางนา บางนา",10260,"กรุงเทพฯ","Thailand","02 - 748 8455-8 ",,"02 - 399 2815,393 6680 ",,"อื่น ๆ ",,"Machinne / SPARE PART ","30 Days","ตามตกลง",, +"res_partner_office_351","คุณทิพวรรณ",,"FALSE","FALSE","TRUE","บริษัท 3114 เอ็นจิเนียริ่ง จำกัด","res_partner_office_350","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_352","ห้างหุ้นส่วนจำกัด ศิริวัฒน์ แมชชินเนอรี่","SP07S147","TRUE","FALSE","TRUE",,,"Default","FALSE","23-27 และ 282-284 ในเวิ้งนครเกษม ถนนเจริญกรุง","แขวงสัมพันธวงศ์ เขตสัมพันธวงศ์",10100,"กรุงเทพฯ","Thailand","0-2222-9880, 222-2284",,"0-2225-3724",,"อื่น ๆ ",,"Machinne ( จำหน่ายเครื่องปั๊มลม FUSHENG)","Cash","ตามตกลง",, +"res_partner_office_353","คุณสุทธิชัย",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ศิริวัฒน์ แมชชินเนอรี่","res_partner_office_352","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_354","คุณสุชาติ",,"FALSE","FALSE","TRUE","ห้างหุ้นส่วนจำกัด ศิริวัฒน์ แมชชินเนอรี่","res_partner_office_352","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_355","บริษัท ที.ที.แอล. เอ็นจิเนียริ่ง ซีสเต็มส์ จำกัด","SP07S148","TRUE","FALSE","TRUE",,,"Default","FALSE","70 นิมิตรใหม่ + +","ตำบลลำลูกกา อำเภอลำลูกกา + +",12150,"ปทุมธานี","Thailand","0-2993-4937-8, 0-2597-9082-5",,"0-2993-4939",,"อื่น ๆ ",,"Machinne /Spare Part ","60 Days",,, +"res_partner_office_356","คุณเลอชาย แสงงาม",,"FALSE","FALSE","TRUE","บริษัท ที.ที.แอล. เอ็นจิเนียริ่ง ซีสเต็มส์ จำกัด","res_partner_office_355","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_357","S. M. C. ( THAILAND ) LTD.","SP07S149","TRUE","FALSE","TRUE",,,"Default","FALSE","1340/16 ถนนสุรนารายณ์","ตำบลในเมือง อำเภอเมืองนครราชสีมา",30000,"นครราชสีมา","Thailand","0-4434-1775-6",,"0-4434-1774",,"อื่น ๆ ",,"Machinne /Spare Part ","30 Days",10,, +"res_partner_office_358","K. Angkrit",,"FALSE","FALSE","TRUE","S. M. C. ( THAILAND ) LTD.","res_partner_office_357","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_359","บริษัท พีเอ็น.แทรค เอ็นจิเนียริ่ง แอนด์ พาร์ท จำกัด","SP07S150","TRUE","FALSE","TRUE",,,"Default","FALSE","154/64-66 หมู่ที่ 4","ต.เมืองเก่า อ.พนมสารคาม",24100,"ฉะเชิงเทรา","Thailand","03-883-148-9",,"03-880-7088",,"อื่น ๆ ",,"Machinne /Spare Part ","30 Days",10,, +"res_partner_office_360","บริษัท คราสส์เทค จำกัด","SP07S151","TRUE","FALSE","TRUE",,,"Default","FALSE","1205 ซ.พระรามเก้า 55 ถ. พระราม 9","แขวงสวนหลวง เขตสวนหลวง",10250,"กรุงเทพฯ","Thailand","02 - 732 1144 ( AUTO)",," 02 - 732 2350 ",,"อื่น ๆ ",,"Machinne /Spare Part ","30 Days",10,, +"res_partner_office_361","คุณณัฐวุฒิ เจริญเสถียร",,"FALSE","FALSE","TRUE","บริษัท คราสส์เทค จำกัด","res_partner_office_360","Contact","TRUE",,,,,"Thailand",,"086-377 0425",,,,,,,,, +"res_partner_office_362","คุณธนาวุฒิ",,"FALSE","FALSE","TRUE","บริษัท คราสส์เทค จำกัด","res_partner_office_360","Contact","TRUE",,,,,"Thailand",,"089-3157657",,,,,,,,, +"res_partner_office_363","CECO INDUSTRIAL GAS CO.,LTD.","SP07S152","TRUE","FALSE","TRUE",,,"Default","FALSE","698 Srinakarin Road,","Suanluang, Suanluang,",10250,"Bangkok","Thailand","66) 2722 7928-32 ",," (66) 2321-9333 ",,"อื่น ๆ ",,"Machinne /Spare Part ","Cash",30,, +"res_partner_office_364","บริษัท เค. เอ็ม. ดี เซอร์วิส จำกัด","SP07S153","TRUE","FALSE","TRUE",,,"Default","FALSE","254/62 หมู่5","ต. บึง อ.ศรีราชา",20230,"ชลบุรี","Thailand"," 038 - 481085 ",," 038-481086",,"อื่น ๆ ",,"Machinne /Spare Part ","Cash","ตามตกลง",, +"res_partner_office_365","คุณชาญยุทธ",,"FALSE","FALSE","TRUE","บริษัท เค. เอ็ม. ดี เซอร์วิส จำกัด","res_partner_office_364","Contact","TRUE",,,,,"Thailand",,"089-761 0330",,,,,,,,, +"res_partner_office_366","บริษัท เอ็น.เอ็ม.เอ็ม.แมชชีน พาร์ท จำกัด","SP07S154","TRUE","FALSE","TRUE",,,"Default","FALSE","66/3 ม.12 ถ.ธนสิทธิ์","ต.บางปลา อ.บางพลี",10540,"สมุทรปราการ","Thailand","02 - 182 - 1245 - 6 ",,"02 - 182 1247",,"อื่น ๆ ",,"Machinne /Spare Part ","30 Days","ตามตกลง",, +"res_partner_office_367","คุณนิมิตร",,"FALSE","FALSE","TRUE","บริษัท เอ็น.เอ็ม.เอ็ม.แมชชีน พาร์ท จำกัด","res_partner_office_366","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_368","บริษัท วายเอสที ออโตเมชั่น จำกัด","SP07S155","TRUE","FALSE","TRUE",,,"Default","FALSE","298 หมู่ 3 ซอยเทวา 1 เทพารักษ์","ตำบลเทพารักษ์ อำเภอเมืองสมุทรปราการ",10270,"สมุทรปราการ","Thailand","02 - 753 0899 ",," 02-753 0890 ",,"อื่น ๆ ",,"Machinne /Spare Part ","30 Days","ตามตกลง",, +"res_partner_office_369","คุณรัณเดช",,"FALSE","FALSE","TRUE","บริษัท วายเอสที ออโตเมชั่น จำกัด","res_partner_office_368","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_370","EBM-PAPST (THAILAND) CO., LTD ( อะไหล่เครื่องจักร )","SP07S156","TRUE","FALSE","TRUE",,,"Default","FALSE","99/349 Na-Nakorn Bldg., 4th FloorChaeng Wattana Road,","Thungsonghong, Laksi,",10210,"Bangkok","Thailand","+66 2 57615-24",,"66 2 57615-42",,"อื่น ๆ ",,"Machinne /Spare Part ","7 Days","ตามตกลง",, +"res_partner_office_371","บริษัท อัพ โซ แอร์ จำกัด ( อุปกรณ์เครื่องจักร )","SP07S157","TRUE","FALSE","TRUE",,,"Default","FALSE","3413 ถนนพระราม 9","สวนหลวง",10250,"กรุงเทพฯ","Thailand",,,,,"อื่น ๆ ",,"Machinne /Spare Part ","PDC. 30 Days","ตามตกลง",, +"res_partner_office_372","JINAN DELTA CNC MACHINERY CO.,LTD.","SP07S158","TRUE","FALSE","TRUE",,,"Default","FALSE","TIANCHEN INDUSTRIAL PARK, TIANCHEN ROAD HI-TECH ZONE ,","JINAN , SHANDONG PROVINCE , P.R. CHINA."," ",,"Thailand"," (0086 531 ) 8887-7039 ",,"(0086 531 ) 8887-7041",,"อื่น ๆ ",,"Machinne /Spare Part ",,45,, +"res_partner_office_373","บริษัท อะมะดะ (ประเทศไทย) จำกัด ( อะไล่เครื่องจักรมือสอง )","SP07S159","TRUE","FALSE","TRUE",,,"Default","FALSE","อาคารทศพลแลนด์ 3 ชั้น 6, 947 ม.12 ถ.บางนาตราด กม.3","แขวงบางนา เขตบางนา",10260,"กรุงเทพฯ","Thailand","0-2361-9152-60",,"0-2361-9165-6",,"อื่น ๆ ",,"Machinne /Spare Part ","30 Days","-",, +"res_partner_office_374","Pongsak",,"FALSE","FALSE","TRUE","บริษัท อะมะดะ (ประเทศไทย) จำกัด ( อะไล่เครื่องจักรมือสอง )","res_partner_office_373","Contact","TRUE",,,,,"Thailand",,,,,,,,,,, +"res_partner_office_375","บริษัท เอส วาย เทค คอปอร์เรชั่น จำกัด","SP07S160","TRUE","FALSE","TRUE",,,"Default","FALSE","335/21 Srinakarin Road,","Nongbon, Pravet,",10250,"Bangkok","Thailand","02-366-0395-7 , 02-366-0731 ",," 02-366-0394-5",,"อื่น ๆ ",,"SPARE PART เครื่องจักร",,,, +"res_partner_office_376","คุณสำเร็จ",,"FALSE","FALSE","TRUE","บริษัท เอส วาย เทค คอปอร์เรชั่น จำกัด","res_partner_office_375","Contact","TRUE",,,,,"Thailand",,"081-341 1267",,,,,,,,, +"res_partner_subcontract_1","บริษัท เอ็กซ์เพรสอินเตอร์คูล จำกัด",,"TRUE","FALSE","TRUE",,,"Default","FALSE","234/34 หมู่ 1 ","ต.หนองหอย อ.เมือง",50000,"เชียงใหม่","Thailand","0-2809-9551-3","08-8317-7755","0-2809-9554","jakraraj_2001@hotmail.ocm",,,,"15 Days",,, +"res_partner_subcontract_2","หจก. วาย.โอ.เอส.ชัยยศ เซอร์วิส",,"TRUE","FALSE","TRUE",,,"Default","FALSE","31/3 หมู่ 4","ต.บ้านม้า อ. บางไทร",13190,"พระนครศรีอยุธยา","Thailand","0-3571-8115","08-4906-9311","0-3571-8115","chaiyos_2013@hotmail.co.th",,,,"15 Days",,, +"res_partner_subcontract_3","นางสาวจันทิมา สุกทน",,"FALSE","FALSE","TRUE","หจก.วาย.โอ.เอส.ชัยยศ เซอร์วิส","res_partner_subcontract_2","Contact","FALSE","59 หมู่ 2","ต. อินทร์แปลง อ. วานรนิวาส",47120,"สกลนคร","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_4","นายนิรันต์ โหมฮึก",,"TRUE","FALSE","TRUE",,,"Default","FALSE","52/1 หมู่ 3","ต. ปรือ อ. ปราสาท",32140,"สุรินทร์","Thailand",,"08-9003-1942",,,,,,"15 Days",,, +"res_partner_subcontract_5","นายกุศล ดงพระจันทร์",,"TRUE","FALSE","TRUE",,,"Default","FALSE","44 หมู่ 5","ต.หนองแคน อ. ปทุมรัตต์",45190,"ร้อยเอ็ด","Thailand",,"08-1945-5325",,,,,,"15 Days",,, +"res_partner_subcontract_6","นายวิชัย สราพิมพ์",,"TRUE","FALSE","TRUE",,,"Default","FALSE","81 หมู่ 1","ต. บ้านฝาง อ. สระใคร",43100,"หนองคาย","Thailand",,"08-5378-3750",,,,,,"15 Days",,, +"res_partner_subcontract_7","นายสมศักดิ์ ศรีทองใบ",,"TRUE","FALSE","TRUE",,,"Default","FALSE","2/2 หมู่ 6","ต. คานหาม อ. อุทัย",13210,"พระนครศรีอยุธยา","Thailand",,"08-4543-5597",,"somsak8707@gmail.com",,,,"15 Days",,, +"res_partner_subcontract_8","นายศักดิ์ดา เยาวบุตร",,"FALSE","FALSE","TRUE","นายสมศักดิ์ ศรีทองใบ","res_partner_subcontract_7","Contact","FALSE","3 หมู่ 12","ต. ศรีวิชัย อ. วานรนิวาส",47120,"สกลนคร","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_9","นางฉวีวรรณ ศรีทองใบ",,"FALSE","FALSE","TRUE","นายสมศักดิ์ ศรีทองใบ","res_partner_subcontract_7","Contact","FALSE","2/2 หมู่ 6","ต. คานหาม อ. อุทัย",13210,"พระนครศรีอยุธยา","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_10","นายชัชวาลย์ สุขจิตร",,"TRUE","FALSE","TRUE",,,"Default","FALSE","8 หมู่ 9","ต. ตานี อ. ปราสาท",32140,"สุรินทร์","Thailand",,"08-1907-3328",,"ipad2sq@gmail.com",,,,"15 Days",,, +"res_partner_subcontract_11","นายวัชพล วงกนก",,"FALSE","FALSE","TRUE","นายชัชวาลย์ สุขจิตร","res_partner_subcontract_10","Contact","FALSE","46 หมู่ 9","ต. ตานี อ. ปราสาท",32140,"สุรินทร์","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_12","นายนิพล แก้วมาลุน",,"TRUE","FALSE","TRUE",,,"Default","FALSE","3 หมู่ 2","ต. หนองแวง อ. วานรนิวาส",47120,"สกลนคร","Thailand",,"08-9720-2730",,,,,,"15 Days",,, +"res_partner_subcontract_13","นางสาวจันทิรา ศรีหงษ์ทอง",,"FALSE","FALSE","TRUE","นายนิพล แก้วมาลุน","res_partner_subcontract_12","Contact","FALSE","266 หมู่ 14","ต. คำตากล้า อ. คำตากล้า",47250,"สกลนคร","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_14","นายบุญทอง เซียงใช่",,"TRUE","FALSE","TRUE",,,"Default","FALSE","37 หมู่ 6","ต. เขาสามสิบหาบ อ. ท่ามะกา",71120,"กาญจนบุรี","Thailand",,"08-9682-1139",,,,,,"15 Days",,, +"res_partner_subcontract_15","นายกนก เซี่ยงไช่",,"FALSE","FALSE","TRUE","นายบุญทอง เซียงใช่","res_partner_subcontract_14","Contact","FALSE","38 หมู่ 6","ต. เขาสามสิบหาบ อ. ท่ามะกา",71120,"กาญจนบุรี","Thailand",,"08-1017-7295",,,,,,"15 Days",,, +"res_partner_subcontract_16","นายมนเทียร มูลพาที",,"TRUE","FALSE","TRUE",,,"Default","FALSE","19 หมู่ 4","ต. หนองแคน อ. ปทุมรัตต์",45190,"ร้อยเอ็ด","Thailand",,"08-9044-8194",,"mrmonthien@gmail.com",,,,"15 Days",,, +"res_partner_subcontract_17","นายนิติกร บุญศร",,"FALSE","FALSE","TRUE","นายมนเทียร มูลพาที","res_partner_subcontract_16","Contact","FALSE","211 หมู่ 4","ต. หนองแคน อ. ปทุมรัตต์",45190,"ร้อยเอ็ด","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_18","นายสวิง แฮะประโคน",,"TRUE","FALSE","TRUE",,,"Default","FALSE","29 หมู่ 10","ต. ปรือ อ. ปราสาท",32140,"สุรินทร์","Thailand",,"08-9693-1207",,,,,,"15 Days",,, +"res_partner_subcontract_19","นายอิด คลองงาม",,"FALSE","FALSE","TRUE","นายสวิง แฮะประโคน","res_partner_subcontract_18","Contact","FALSE","9 หมู่ 10","ต. ปรือ อ. ปราสาท",32140,"สุรินทร์","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_20","นางวรรณา แฮะประโคน",,"FALSE","FALSE","TRUE","นายสวิง แฮะประโคน","res_partner_subcontract_18","Contact","FALSE","109/1 หมู่ 16","ต. ปรือ อ. ปราสาท",32140,"สุรินทร์","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_21","นายสุคนธ์ สวรรณา",,"TRUE","FALSE","TRUE",,,"Default","FALSE","46/1 หมู่ 4","ต.ชีลอง อ.เมืองชัยภูมิ",36000,"ชัยภูมิ","Thailand",,"08-5226-1530",,"sukone_9@yahoo.com",,,,"15 Days",,, +"res_partner_subcontract_22","นางสาวพรธิวา วะโพชัย",,"FALSE","FALSE","TRUE","นายสุคนธ์ สวรรณา","res_partner_subcontract_21","Contact","FALSE","46 หมู่ 10","ต. ระเริง อ. วังน้ำเขียว",30150,"นครราชสีมา","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_23","นายศิริชัย ศรีศรทอง",,"TRUE","FALSE","TRUE",,,"Default","FALSE","42 หมู่ 12","ต.กำแพงแสน อ. กำแพงแสน",73140,"นครปฐม","Thailand",,"08-5297-4405",,,,,,"7 Days",,, +"res_partner_subcontract_24","นายสายทอง สุขแสง",,"TRUE","FALSE","TRUE",,,"Default","FALSE","152 หมู่ 2","ต. ทุ่งทอง อ. เกษตรวิสัย",45150,"ร้อยเอ็ด","Thailand",,"08-9031-5521",,,,,,"7 Days",,, +"res_partner_subcontract_25","นายยุทธนา ชำนาญกลาง",,"TRUE","FALSE","TRUE",,,"Default","FALSE","45 หมู่ 5","ต. ด่านคล้า อ. โนนสูง",30160,"นครราชสีมา","Thailand",,"08-4496-4345",,,,,,"7 Days",,, +"res_partner_subcontract_26","นายบุญทิง สำราญสุข",,"TRUE","FALSE","TRUE",,,"Default","FALSE","71 หมู่ 3","ต. ทุ่งทอง อ. เกษตรวิสัย",45150,"ร้อยเอ็ด","Thailand",,"08-8394-9266",,,,,,"7 Days",,, +"res_partner_subcontract_27","นายประพันธ์ ระดาฤทธิ์",,"TRUE","FALSE","TRUE",,,"Default","FALSE","19 หมู่ 12","ต. หนองแวงใต้ อ. วานรนิวาส",47120,"สกลนคร","Thailand",,"09-0408-3127",,,,,,"7 Days",,, +"res_partner_subcontract_28","นายอิศราวุธ เทกอง",,"TRUE","FALSE","TRUE",,,"Default","FALSE","89 หมู่ 1","ต. หนองสิม อ. บรบือ",44130,"มหาสารคาม","Thailand",,"08-5224-4452",,,,,,"7 Days",,, +"res_partner_subcontract_29","นายสวน กำลา",,"TRUE","FALSE","TRUE",,,"Default","FALSE","64 หมู่ 2","ต. ทุ่งทอง อ. เกษตรวิสัย",45150,"ร้อยเอ็ด","Thailand",,,,,,,,"7 Days",,, +"res_partner_subcontract_30","นายเฉลียว บุตรแสน",,"TRUE","FALSE","TRUE",,,"Default","FALSE","133 หมู่ 4","ต. ดงลาน อ. สีชมพู",40220,"ขอนแก่น","Thailand",,"09-2479-6643",,,,,,"7 Days",,, +"res_partner_subcontract_31","นายศักภิสิทธิ์ แสงใสแก้ว",,"TRUE","FALSE","TRUE",,,"Default","FALSE","226 หมู่ 6","ต. บ้านขาว อ. เมืองอุดรธานี",41000,"อุดรธานี","Thailand",,,,,,,,"7 Days",,, +"res_partner_subcontract_32","นายเพลิน ละมัยวงค์",,"TRUE","FALSE","TRUE",,,"Default","FALSE","367 หมู่ 13","ต. ซับน้อย อ. วิเชียรบุรี",67180,"เพชรบูรณ์","Thailand",,,,,,,,"7 Days",,, +"res_partner_subcontract_33","นายประยงค์ ทันแล้ว",,"TRUE","FALSE","TRUE",,,"Default","FALSE","176 หมู่ 2","ต. คำสะอาด อ. สว่างแดนดิน",47110,"สกลนคร","Thailand",,,,,,,,"7 Days",,, +"res_partner_subcontract_34","นายทองเพชร ละมัยวงค์",,"TRUE","FALSE","TRUE",,,"Default","FALSE","366 หมู่ 13","ต. ซับน้อย อ. วิเชียรบุรี",67180,"เพชรบูรณ์","Thailand",,,,,,,,"7 Days",,, +"res_partner_subcontract_35","นายพงษ์พิพัฒน์ ละมัยวงค์",,"TRUE","FALSE","TRUE",,,"Default","FALSE","367 หมู่ 13","ต. ซับน้อย อ. วิเชียรบุรี",67180,"เพชรบูรณ์","Thailand",,,,,,,,"7 Days",,, +"res_partner_subcontract_36","นายอาทิตย์ อุดมกัน",,"TRUE","FALSE","TRUE",,,"Default","FALSE","39 หมู่ 8","ต. บึงเกลือ อ. เสลภูมิ",45120,"ร้อยเอ็ด","Thailand",,,,,,,,"7 Days",,, +"res_partner_subcontract_37","นายไพฑูรย์ บุญสวน",,"TRUE","FALSE","TRUE",,,"Default","FALSE","40/3 หมู่ 8","ต. นายม อ. เมืองเพชรบูรณ์",67210,"เพชรบูรณ์","Thailand",,"08-1481-4807",,,,,,"15 Days",,, +"res_partner_subcontract_38","นายอุดม พรมนก",,"FALSE","FALSE","TRUE","นายไพฑูรย์ บุญสวน","res_partner_subcontract_37","Contact","FALSE","59 หมู่ 10","ต. นายม อ. เมืองเพชรบูรณ์",67210,"เพชรบูรณ์","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_39","นายอำนวย หึกขุนทด",,"FALSE","FALSE","TRUE","นายไพฑูรย์ บุญสวน","res_partner_subcontract_37","Contact","FALSE","87 หมู่ 5","ต. หนองกราด อ. ด่านขุนทด",30210,"นครราชสีมา","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_40","นายมาโนช สานมะโน",,"FALSE","FALSE","TRUE","นายไพฑูรย์ บุญสวน","res_partner_subcontract_37","Contact","FALSE","14/3 หมู่ 7","ต. ห้วยโป่ง อ. หนองไผ่",67220,"เพชรบูรณ์","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_41","นายบุญเชิด ศรีเขตต์",,"FALSE","FALSE","TRUE","นายไพฑูรย์ บุญสวน","res_partner_subcontract_37","Contact","FALSE","92/2 หมู่ 7","ต. โคกไทย อ. ศรีมโหสถ",25190,"ปราจีนบุรี","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_42","นายสำเลิง นกงาม",,"FALSE","FALSE","TRUE","นายไพฑูรย์ บุญสวน","res_partner_subcontract_37","Contact","FALSE","9 หมู่ 3","ต. โคกขี้หนอน อ. พานทอง",20160,"ชลบุรี","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_43","นายจิตร เจนการ",,"TRUE","FALSE","TRUE",,,"Default","FALSE","23 หมู่ 7","ต. โคกไทย อ. ศรีมโหสถ",25190,"ปราจีนบุรี","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_44","นางสุรัชนีย์ บัวอินทร์",,"TRUE","FALSE","TRUE",,,"Default","FALSE","43/13 หมู่ 7","ต. โคกไทย อ. ศรีมโหสถ",25190,"ปราจีนบุรี","Thailand",,,,,,,,"15 Days",,, +"res_partner_subcontract_45","หจก. บุญชลิต",,"TRUE","FALSE","TRUE",,,"Default","FALSE","49/3 หมู่ 7","ต. โคกไทย อ. ศรีมโหสถ",25190,"ปราจีนบุรี","Thailand",,"08-1863-8427",,,,,,"15 Days",,, +"res_partner_finance_1","การไฟฟ้านครหลวง",,"TRUE","FALSE","TRUE",,,"Default","FALSE","30 ซอยชิดลม ถนนเพลินจิต","แขวงลุมพินี เขตปทุมวัน ",10330,"กรุงเทพฯ","Thailand",,,,,,,,,,"0994000165200","0000" +"res_partner_finance_2","การไฟฟ้าส่วนภูมิภาค",,"TRUE","FALSE","TRUE",,,"Default","FALSE","200 ถนนงามวงศ์วาน ","แขวงลาดยาว เขตจตุจักร",10900,"กรุงเทพฯ","Thailand",,,,,,,,,,"0994000165501","0000" +"res_partner_finance_3","บริษัท กสท โทรคมนาคม จำกัด (มหาชน)",,"TRUE","FALSE","TRUE",,,"Default","FALSE","99 หมู่ 3 ถนนแจ้งวัฒนะ ","แขวงทุ่งสองห้อง เขตหลักสี่",10210,"กรุงเทพฯ","Thailand",1322,,,,,,,,,"0107546000229","0000" +"res_partner_finance_4","บริษัท โทเทิ่ล แอ็คเซ็ส คอมมูนิเคชั่น จำกัด (มหาชน)",,"TRUE","FALSE","TRUE",,,"Default","FALSE","319 อาคารจัตุรัสจามจุรี ชั้น 22-41 ถนนพญาไท ","แขวงปทุมวัน เขตปทุมวัน",10330,"กรุงเทพฯ","Thailand",1678,,,,,,,,,"0107538000037","0000" +"res_partner_finance_5","บริษัท ทรู มูฟ จำกัด",,"TRUE","FALSE","TRUE",,,"Default","FALSE","18 อาคารทรู ทาวเวอร์ ถนนรัชดาภิเษก","แขวงห้วยขวาง เขตห้วยขวาง",10310,"กรุงเทพฯ","Thailand",1331,,,,,,,,,"0105537088818","0000" +"res_partner_finance_6","บริษัท ทรู อินเทอร์เน็ต จำกัด",,"TRUE","FALSE","TRUE",,,"Default","FALSE","1 อาคารฟอร์จูนทาวน์ ชั้น 14, 27 ถ.รัชดาภิเษก ","แขวงดินแดง เขตดินแดง ",10400,"กรุงเทพฯ","Thailand","0-2900-9100",,,,,,,,,"0105538114103","0000" +"res_partner_finance_7","บริษัท ทรู ไลฟ์ พลัส จำกัด",,"TRUE","FALSE","TRUE",,,"Default","FALSE","18 อาคารทรูทาวเวอร์ ถ.รัชดาภิเษก ","แขวงห้วยขวาง เขตห้วยขวาง ",10310,"กรุงเทพฯ","Thailand",,,,,,,,,,"01050546146361","0000" +"res_partner_finance_8","บริษัท ทีโอที จำกัด (มหาชน)",,"TRUE","FALSE","TRUE",,,"Default","FALSE","89/2 ม.3 ถ.แจ้งวัฒนะ แขวงทุ่งสองห้อง เขตหลักสี่","แขวงทุ่งสองห้อง เขตหลักสี่",10210,"กรุงเทพฯ","Thailand",1100,,,,,,,,,"0107545000161","0000" +"res_partner_finance_9","บมจ.แอดวานซ์ อินโฟร์ เซอร์วิส ",,"TRUE","FALSE","TRUE",,,"Default","FALSE","414 ถนนพหลโยธิน ","แขวงสามเสนใน เขตพญาไท ",10400,"กรุงเทพฯ","Thailand",1149,,,,,,,,,"0107535000265","0000" +"res_partner_finance_10","นางสมควร วงษ์ทองดี",,"TRUE","FALSE","TRUE",,,"Default","FALSE","69/1 หมู่ที่ 7","ตำบลโคกไทย อำเภอศรีมโหสถ ",,"ปราจีนบุรี","Thailand",,,,,,,,,,"3250900080437","0000" +"res_partner_finance_11","นายไชยา นริสาน",,"TRUE","FALSE","TRUE",,,"Default","FALSE","666 ถนนสุนทรวิจิตร","ตำบลในเมือง อำเภอเมืองนครพนม",,"นครพนม","Thailand",,,,,,,,,,"3489900186819","0000" +"res_partner_finance_12","ห้างหุ้นส่วนสามัญเกวลิน มงคล และ วีระยา คงสมุทร",,"TRUE","FALSE","TRUE",,,"Default","FALSE","223 ม.3 ถนนสุวินทวงศ์ ","ตำบลโคกปีบ อำเภอศรีมโหสถ ",25190,"ปราจีนบุรี","Thailand","08-6367-3121",,,,,,,,,"0992002338941","0000" +"res_partner_finance_13","บริษัท เชลล์แห่งประเทศไทย จำกัด",,"TRUE","FALSE","TRUE",,,"Default","FALSE","10 ถนนสุนทรโกษา ","แขวงคลองเตย เขตคลองเตย",10110,"กรุงเทพฯ","Thailand","0-2657-9615",,,,,,,,,"0100515042462","0000" +"res_partner_finance_14","บริษัท อี.เอฟ.เอส. อินเตอร์กรุ๊ป จำกัด",,"TRUE","FALSE","TRUE",,,"Default","FALSE","238/166 หมู่ที่ 10 ","ตำบลหนองปรือ อำเภอบางละมุง",20150,"ชลบุรี","Thailand","037-208-353",,,,,,,,,"0205549029837","0000" +"res_partner_finance_15","การประปานครหลวง",,"TRUE","FALSE","TRUE",,,"Default","FALSE",,,,"กรุงเทพฯ","Thailand",,,,,,,,,,, +"res_partner_finance_16","กรมสรรพากร",,"TRUE","FALSE","TRUE",,,"Default","FALSE",,,,"กรุงเทพฯ","Thailand",,,,,,,,,,, +"res_partner_finance_17","สำนักงานประกันสังคม",,"TRUE","FALSE","TRUE",,,"Default","FALSE",,,,"กรุงเทพฯ","Thailand",,,,,,,,,,, diff --git a/sqp_config/users_groups/res.users.csv b/sqp_config/users_groups/res.users.csv new file mode 100755 index 0000000..f8994df --- /dev/null +++ b/sqp_config/users_groups/res.users.csv @@ -0,0 +1,37 @@ +id,groups_id/id,function,name,login,password,company_id/id,active,lang,tz,action_id/id,notification_email_send,email,phone,mobile,signature +tmp_superuser,"base.group_erp_manager,base.group_system,base.group_user,base.group_multi_currency,base.group_no_one,base.group_sale_salesman,base.group_sale_manager,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,share.group_share_user,account.group_account_invoice,account.group_account_user,account.group_account_manager,base.group_sale_salesman_all_leads,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_stock_manager,stock.group_locations,purchase.group_purchase_user,purchase.group_purchase_manager,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user,mrp.group_mrp_manager,base.group_document_user,picking_invoice_rel.group,purchase_requisition.group_purchase_requisition_user,purchase_requisition.group_purchase_requisition_manager",tmp_superuser,tmp_superuser,tmp_superuser,tmp_superuser,base.main_company,True,en_US,Asia/Bangkok,,Never,,,, +tmp_manager,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_sale_manager,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,account.group_account_user,account.group_account_manager,base.group_sale_salesman_all_leads,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_stock_manager,stock.group_locations,purchase.group_purchase_user,purchase.group_purchase_manager,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user,mrp.group_mrp_manager,base.group_document_user,purchase_requisition.group_purchase_requisition_user,purchase_requisition.group_purchase_requisition_manager",Sales/Management,tmp_manager,tmp_manager,tmp_manager,base.main_company,True,en_US,Asia/Bangkok,,Never,,,, +tmp_sales,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders",Sales,tmp_sales,tmp_sales,tmp_sales,base.main_company,True,en_US,Asia/Bangkok,,Never,,,, +tmp_salesadmin,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,base.group_sale_salesman_all_leads,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders",Sales Admin,tmp_salesadmin,tmp_salesadmin,tmp_salesadmin,base.main_company,True,en_US,Asia/Bangkok,,Never,,,, +tmp_purchase,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,purchase.group_purchase_user,purchase.group_purchase_manager,sale_stock.group_invoice_deli_orders,purchase_requisition.group_purchase_requisition_user,purchase_requisition.group_purchase_requisition_manager",Purchase,tmp_purchase,tmp_purchase,tmp_purchase,base.main_company,True,en_US,Asia/Bangkok,,Never,,,, +tmp_engineer,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,purchase.group_purchase_user,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user,mrp.group_mrp_manager,purchase_requisition.group_purchase_requisition_user",Engineer,tmp_engineer,tmp_engineer,tmp_engineer,base.main_company,True,en_US,Asia/Bangkok,,Never,,,, +tmp_finance,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,account.group_account_user,account.group_account_manager,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,sale_stock.group_invoice_deli_orders",Finance&Account,tmp_finance,tmp_finance,tmp_finance,base.main_company,True,en_US,Asia/Bangkok,,Never,,,, +tmp_installation,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,purchase.group_purchase_user,sale_stock.group_invoice_deli_orders,purchase_requisition.group_purchase_requisition_user",Installation,tmp_installation,tmp_installation,tmp_installation,base.main_company,True,en_US,Asia/Bangkok,,Never,,,, +tmp_production,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user",Production,tmp_production,tmp_production,tmp_production,base.main_company,True,en_US,Asia/Bangkok,,Never,,,, +tmp_itadmin,"base.group_erp_manager,base.group_system,base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders",IT/Admin,tmp_itadmin,tmp_itadmin,tmp_itadmin,base.main_company,True,en_US,Asia/Bangkok,,Never,,,, +tmp_warehouse,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_stock_manager,stock.group_locations,sale_stock.group_invoice_deli_orders",Warehouse,tmp_warehouse,tmp_warehouse,tmp_warehouse,base.main_company,True,en_US,Asia/Bangkok,,Never,,,, +base.res_user_1,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_sale_manager,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,account.group_account_user,account.group_account_manager,base.group_sale_salesman_all_leads,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_stock_manager,stock.group_locations,purchase.group_purchase_user,purchase.group_purchase_manager,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user,mrp.group_mrp_manager,base.group_document_user,purchase_requisition.group_purchase_requisition_user,purchase_requisition.group_purchase_requisition_manager",Sales/Management,VISAK THUNYAWAN,visak,visak,base.main_company,True,en_US,Asia/Bangkok,,Never,visak@squarepanel.com,0-2744-6300-2,081 8486793, +base.res_user_2,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_sale_manager,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,account.group_account_user,account.group_account_manager,base.group_sale_salesman_all_leads,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_stock_manager,stock.group_locations,purchase.group_purchase_user,purchase.group_purchase_manager,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user,mrp.group_mrp_manager,base.group_document_user,purchase_requisition.group_purchase_requisition_user,purchase_requisition.group_purchase_requisition_manager",Sales/Management,SOMBOON THUNYAVAN,somboon,somboon,base.main_company,True,en_US,Asia/Bangkok,,Never,somboon@squarepanel.com,0-2744-6300-2,081 8401389, +base.res_user_3,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders",Sales,CHATCHAI TUEANSA-ARD,chatchai,chatchai,base.main_company,True,en_US,Asia/Bangkok,,Never,chatchai@squarepanel.com,0-2744-6300-2,081 5544097, +base.res_user_4,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders",Sales,WEERAUNWAT SUKHON,weeranuwat,weeranuwat,base.main_company,True,en_US,Asia/Bangkok,,Never,weeranuwat@squarepanel.com,0-2744-6300-2,089 7807891, +base.res_user_5,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders",Sales,DUSIT THARA,dusit,dusit,base.main_company,True,en_US,Asia/Bangkok,,Never,dusit@squarepanel.com,0-2744-6300-2,081 4241488, +base.res_user_6,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders",Sales,SURASAK SOMCPRUK,surasak,surasak,base.main_company,True,en_US,Asia/Bangkok,,Never,surasak@squarepanel.com,0-2744-6300-2,089 7738744, +base.res_user_7,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders",Sales,CHAIRAT SEANGCHOT,chairat,chairat,base.main_company,True,en_US,Asia/Bangkok,,Never,chairat@squarepanel.com,0-2744-6300-2,081 4973284, +base.res_user_8,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,base.group_sale_salesman_all_leads,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders",Sales Admin,SAOWALUCK PROMSAWAT,saowaluck,saowaluck,base.main_company,True,en_US,Asia/Bangkok,,Never,somm@squarepanel.com,0-2744-6300-2,081 4254237, +base.res_user_9,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,base.group_sale_salesman_all_leads,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders",Sales Admin,POTCHAMAL APISITMONTREE,potchamal,potchamal,base.main_company,True,en_US,Asia/Bangkok,,Never,potchamal@squarepanel.com,0-2744-6300-2,, +base.res_user_10,"base.group_user,base.group_multi_currency,base.group_sale_salesman,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,base.group_sale_salesman_all_leads,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders",Sales Admin,KAMONRAT REABSOMRET,kamonrat,kamonrat,base.main_company,True,en_US,Asia/Bangkok,,Never,kamonrat@squarepanel.com,0-2744-6300-2,, +base.res_user_11,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,purchase.group_purchase_user,purchase.group_purchase_manager,sale_stock.group_invoice_deli_orders,purchase_requisition.group_purchase_requisition_user,purchase_requisition.group_purchase_requisition_manager",Purchase,SARANYA KITSARIKAN,saranya,saranya,base.main_company,True,en_US,Asia/Bangkok,,Never,saranya@squarepanel.com,0-2744-6300-2,080 0619009, +base.res_user_12,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,purchase.group_purchase_user,purchase.group_purchase_manager,sale_stock.group_invoice_deli_orders,purchase_requisition.group_purchase_requisition_user,purchase_requisition.group_purchase_requisition_manager",Purchase,YUWALUK WONGKAEW,yuwaluk,yuwaluk,base.main_company,True,en_US,Asia/Bangkok,,Never,yuwaluk@squarepanel.com,0-2744-6300-2,, +base.res_user_13,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,purchase.group_purchase_user,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user,mrp.group_mrp_manager,purchase_requisition.group_purchase_requisition_user",Engineer,NIPHON CHOOKAEW,niphon,niphon,base.main_company,True,en_US,Asia/Bangkok,,Never,niphon@squarepanel.com,0-2744-6300-2,086 0073764, +base.res_user_14,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,purchase.group_purchase_user,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user,mrp.group_mrp_manager,purchase_requisition.group_purchase_requisition_user",Engineer,SUWANNA YAMKAYAM,suwanna,suwanna,base.main_company,True,en_US,Asia/Bangkok,,Never,suwanna@squarepanel.com,0-2744-6300-2,089 7745420, +base.res_user_15,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,purchase.group_purchase_user,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user,mrp.group_mrp_manager,purchase_requisition.group_purchase_requisition_user",Engineer,PATTAMA MINGSUK,pattama,pattama,base.main_company,True,en_US,Asia/Bangkok,,Never,pattama@squarepanel.com,0-2744-6300-2,083 2338816, +base.res_user_16,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,account.group_account_user,account.group_account_manager,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,sale_stock.group_invoice_deli_orders",Finance&Account,SUWANNEE AIAM-ON,suwannee,suwannee,base.main_company,True,en_US,Asia/Bangkok,,Never,suwannee@squarepanel.com,0-2744-6300-2,081 3436324, +base.res_user_17,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,account.group_account_user,account.group_account_manager,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,sale_stock.group_invoice_deli_orders",Finance&Account,PATHUMWADEE PANO,pathumwadee,pathumwadee,base.main_company,True,en_US,Asia/Bangkok,,Never,pathumwadee@squarepanel.com,0-2744-6300-2,, +base.res_user_18,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,account.group_account_user,account.group_account_manager,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,sale_stock.group_invoice_deli_orders",Finance&Account,WANNEE CHAISUE,wannee,wannee,base.main_company,True,en_US,Asia/Bangkok,,Never,wannee@squarepanel.com,0-2744-6300-2,089 9127453, +base.res_user_19,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,purchase.group_purchase_user,sale_stock.group_invoice_deli_orders,purchase_requisition.group_purchase_requisition_user",Installation,SUPOT PROMSAWAT,supot,supot,base.main_company,True,en_US,Asia/Bangkok,,Never,supot@squarepanel.com,0-2744-6300-2,081 8493282, +base.res_user_20,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,account.group_account_invoice,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_locations,purchase.group_purchase_user,sale_stock.group_invoice_deli_orders,purchase_requisition.group_purchase_requisition_user",Installation,UMAPORN,umaporn,umaporn,base.main_company,True,en_US,Asia/Bangkok,,Never,umaporn@squarepanel.com,0-2744-6300-2,085 1259528, +base.res_user_21,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user",Production,JANDA,janda,janda,base.main_company,True,en_US,Asia/Bangkok,,Never,janda@squarepanel.com,0-2744-6300-2,, +base.res_user_22,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user",Production,TEERASAK,teerasak,teerasak,base.main_company,True,en_US,Asia/Bangkok,,Never,teerasak@squarepanel.com,0-2744-6300-2,081 7234733, +base.res_user_23,"base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user",Production,WARUNEE NADEE,warunee,warunee,base.main_company,True,en_US,Asia/Bangkok,,Never,warunee_mod@squarepanel.com,0-2744-6300-2,, +base.res_user_24,"base.group_erp_manager,base.group_system,base.group_user,base.group_multi_currency,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_locations,sale_stock.group_invoice_deli_orders",IT/Admin,NATTAPONG RAKKEATPAKPUM,nattapong,nattapong,base.main_company,True,en_US,Asia/Bangkok,,Never,nattapong@squarepanel.com,0-2744-6300-2,087 5844111, +base.res_user_25,"base.group_erp_manager,base.group_system,base.group_user,base.group_multi_currency,base.group_no_one,base.group_sale_salesman,base.group_sale_manager,base.group_partner_manager,product.group_sale_pricelist,product.group_uom,share.group_share_user,account.group_account_invoice,account.group_account_user,account.group_account_manager,base.group_sale_salesman_all_leads,sale.group_delivery_invoice_address,sale.group_mrp_properties,sale.group_discount_per_so_line,stock.group_stock_user,stock.group_stock_manager,stock.group_locations,purchase.group_purchase_user,purchase.group_purchase_manager,sale_stock.group_invoice_deli_orders,mrp.group_mrp_user,mrp.group_mrp_manager,base.group_document_user,picking_invoice_rel.group,purchase_requisition.group_purchase_requisition_user,purchase_requisition.group_purchase_requisition_manager",SuperUser/Admin,THODSAPORN RATTANAWONG ,thodsaporn,thodsaporn,base.main_company,True,en_US,Asia/Bangkok,,Never,thodsaporn@squarepanel.com,0-2744-6300-2,081 4263346, diff --git a/sqp_config_2/__init__.py b/sqp_config_2/__init__.py new file mode 100755 index 0000000..a4a5d90 --- /dev/null +++ b/sqp_config_2/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_config_2/__openerp__.py b/sqp_config_2/__openerp__.py new file mode 100755 index 0000000..a75bdda --- /dev/null +++ b/sqp_config_2/__openerp__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'Configuration for SQP (2)', + 'version': '1.0', + 'category': 'Hidden', + 'description': """ + * Add Warehouse and Location + """, + 'author': 'Ecosoft', + 'website': 'http://www.ecosoft.co.th/', + 'depends': [ + #'stock','product_bom_template' + ], + 'data': [ + 'stock_data.xml', # Warehouse + 'master/product/ahu_pricelist/product.pricelist.csv', # change label of ahu pricelist + 'data/product_data.xml', # Additional Category + 'data/mrp_data.xml', # Additional Category + 'master/product/product.category.csv', + ], + 'auto_install': False, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_config_2/data/mrp_data.xml b/sqp_config_2/data/mrp_data.xml new file mode 100755 index 0000000..99d043c --- /dev/null +++ b/sqp_config_2/data/mrp_data.xml @@ -0,0 +1,92 @@ + + + + + + 25 + 1.12 + 0.594 + 0.594 + 40 + 100 + 13 + 11 + 30 + 40 + + + 42 + 1.12 + 0.594 + 0.594 + 40 + 100 + 13 + 11 + 35 + 45 + + + 50 + 1.12 + 0.594 + 0.594 + 40 + 100 + 13 + 11 + 40 + 50 + + + 75 + 1.12 + 0.594 + 0.594 + 40 + 100 + 13 + 11 + 45 + 55 + + + 100 + 1.12 + 0.594 + 0.594 + 40 + 100 + 13 + 11 + 50 + 60 + + + 125 + 1.12 + 0.594 + 0.594 + 40 + 100 + 13 + 11 + 60 + 70 + + + 150 + 1.12 + 0.594 + 0.594 + 40 + 100 + 13 + 11 + 110 + 120 + + + diff --git a/sqp_config_2/data/product_data.xml b/sqp_config_2/data/product_data.xml new file mode 100755 index 0000000..b873591 --- /dev/null +++ b/sqp_config_2/data/product_data.xml @@ -0,0 +1,12 @@ + + + + + + + BOM Template + + + diff --git a/sqp_config_2/master/product/.~lock.product.category.csv# b/sqp_config_2/master/product/.~lock.product.category.csv# new file mode 100755 index 0000000..c73343b --- /dev/null +++ b/sqp_config_2/master/product/.~lock.product.category.csv# @@ -0,0 +1 @@ +Kitti U.,kittiu,kittiu,25.09.2013 18:05,file:///home/kittiu/.config/libreoffice/4; \ No newline at end of file diff --git a/sqp_config_2/master/product/ahu_pricelist/product.pricelist.csv b/sqp_config_2/master/product/ahu_pricelist/product.pricelist.csv new file mode 100755 index 0000000..8a189ec --- /dev/null +++ b/sqp_config_2/master/product/ahu_pricelist/product.pricelist.csv @@ -0,0 +1,4 @@ +id,company_id/id,currency_id/id,name,type +sqp_config.pricelist_ahu_1,,base.THB,AHU Price DAIKIN,sale +sqp_config.pricelist_ahu_2,,base.THB,AHU Price Shinko,sale +sqp_config.pricelist_ahu_3,,base.THB,AHU Price AlterAir,sale diff --git a/sqp_config_2/master/product/product.category.csv b/sqp_config_2/master/product/product.category.csv new file mode 100755 index 0000000..434d49f --- /dev/null +++ b/sqp_config_2/master/product/product.category.csv @@ -0,0 +1,3 @@ +id,name,parent_id,type +product.product_category_panel,Panel,Finished Goods,Normal +product.product_category_project,Project,Finished Goods,Normal diff --git a/sqp_config_2/stock_data.xml b/sqp_config_2/stock_data.xml new file mode 100755 index 0000000..5f415b1 --- /dev/null +++ b/sqp_config_2/stock_data.xml @@ -0,0 +1,59 @@ + + + + + + + Office + + + + + Factory + view + + + + + Output + + internal + customer + transparent + out + + + + + Stock RM + + + + + Stock FG + + + + + + Office Bangna + + + + Factory Prachin (RM) + + + + + + + Factory Prachin (FG) + + + + + + + diff --git a/sqp_config_bom_formula/00_slipjoint_ahu/mrp.bom.csv b/sqp_config_bom_formula/00_slipjoint_ahu/mrp.bom.csv new file mode 100755 index 0000000..65914b6 --- /dev/null +++ b/sqp_config_bom_formula/00_slipjoint_ahu/mrp.bom.csv @@ -0,0 +1,140 @@ +id,bom_id/id,product_id,product_qty_formula,product_uom +mrp.template_slipjoint_ahu_line1,mrp.template_slipjoint_ahu,[SP05006],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_ahu_line2,mrp.template_slipjoint_ahu,[SP05007],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_ahu_line3,mrp.template_slipjoint_ahu,[SP05006],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_ahu_line4,mrp.template_slipjoint_ahu,[SP05007],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_ahu_line5,mrp.template_slipjoint_ahu,[SP05008],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (457*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_ahu_line6,mrp.template_slipjoint_ahu,[SP05009],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (610*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_ahu_line7,mrp.template_slipjoint_ahu,[SP05008],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_ahu_line8,mrp.template_slipjoint_ahu,[SP05009],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_ahu_line9,mrp.template_slipjoint_ahu,[SP05006],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line10,mrp.template_slipjoint_ahu,[SP05004],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_ahu_line11,mrp.template_slipjoint_ahu,[SP05007],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line12,mrp.template_slipjoint_ahu,[SP05012],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_ahu_line13,mrp.template_slipjoint_ahu,[SP05006],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line14,mrp.template_slipjoint_ahu,[SP05004],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_ahu_line15,mrp.template_slipjoint_ahu,[SP05007],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line16,mrp.template_slipjoint_ahu,[SP05012],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_ahu_line17,mrp.template_slipjoint_ahu,[SP05013],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_ahu_line18,mrp.template_slipjoint_ahu,[SP05013],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_ahu_line19,mrp.template_slipjoint_ahu,[SP05013],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_ahu_line20,mrp.template_slipjoint_ahu,[SP05013],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_ahu_line21,mrp.template_slipjoint_ahu,[SP05006],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line22,mrp.template_slipjoint_ahu,[SP05013],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_ahu_line23,mrp.template_slipjoint_ahu,[SP05007],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line24,mrp.template_slipjoint_ahu,[SP05013],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_ahu_line25,mrp.template_slipjoint_ahu,[SP05006],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line26,mrp.template_slipjoint_ahu,[SP05013],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_ahu_line27,mrp.template_slipjoint_ahu,[SP05007],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line28,mrp.template_slipjoint_ahu,[SP05013],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_ahu_line29,mrp.template_slipjoint_ahu,[SP05006],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_ahu_line30,mrp.template_slipjoint_ahu,[SP05007],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_ahu_line31,mrp.template_slipjoint_ahu,[SP05006],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_ahu_line32,mrp.template_slipjoint_ahu,[SP05007],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_ahu_line33,mrp.template_slipjoint_ahu,[SP05008],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (457*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_ahu_line34,mrp.template_slipjoint_ahu,[SP05009],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (610*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_ahu_line35,mrp.template_slipjoint_ahu,[SP05008],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_ahu_line36,mrp.template_slipjoint_ahu,[SP05009],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_ahu_line37,mrp.template_slipjoint_ahu,[SP05006],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line38,mrp.template_slipjoint_ahu,[SP05004],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_ahu_line39,mrp.template_slipjoint_ahu,[SP05007],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line40,mrp.template_slipjoint_ahu,[SP05012],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_ahu_line41,mrp.template_slipjoint_ahu,[SP05006],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line42,mrp.template_slipjoint_ahu,[SP05004],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_ahu_line43,mrp.template_slipjoint_ahu,[SP05007],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line44,mrp.template_slipjoint_ahu,[SP05012],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_ahu_line45,mrp.template_slipjoint_ahu,[SP05013],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_ahu_line46,mrp.template_slipjoint_ahu,[SP05013],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_ahu_line47,mrp.template_slipjoint_ahu,[SP05013],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_ahu_line48,mrp.template_slipjoint_ahu,[SP05013],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_ahu_line49,mrp.template_slipjoint_ahu,[SP05006],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line50,mrp.template_slipjoint_ahu,[SP05013],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_ahu_line51,mrp.template_slipjoint_ahu,[SP05007],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line52,mrp.template_slipjoint_ahu,[SP05013],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_ahu_line53,mrp.template_slipjoint_ahu,[SP05006],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line54,mrp.template_slipjoint_ahu,[SP05013],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_ahu_line55,mrp.template_slipjoint_ahu,[SP05007],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_ahu_line56,mrp.template_slipjoint_ahu,[SP05013],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_ahu_line57,mrp.template_slipjoint_ahu,[SP05006],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_slipjoint_ahu_line58,mrp.template_slipjoint_ahu,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_slipjoint_ahu_line59,mrp.template_slipjoint_ahu,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_slipjoint_ahu_line60,mrp.template_slipjoint_ahu,[SP05007],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_slipjoint_ahu_line61,mrp.template_slipjoint_ahu,[SP05008],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (457*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_slipjoint_ahu_line62,mrp.template_slipjoint_ahu,[SP05009],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (610*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_slipjoint_ahu_line63,mrp.template_slipjoint_ahu,[SP05008],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_slipjoint_ahu_line64,mrp.template_slipjoint_ahu,[SP05009],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_slipjoint_ahu_line65,mrp.template_slipjoint_ahu,[SP05006],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_ahu_line66,mrp.template_slipjoint_ahu,[SP05004],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.2) or 0.0,kg +mrp.template_slipjoint_ahu_line67,mrp.template_slipjoint_ahu,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_ahu_line68,mrp.template_slipjoint_ahu,[SP05012],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.2) or 0.0,kg +mrp.template_slipjoint_ahu_line69,mrp.template_slipjoint_ahu,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_ahu_line70,mrp.template_slipjoint_ahu,[SP05004],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_slipjoint_ahu_line71,mrp.template_slipjoint_ahu,[SP05007],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_ahu_line72,mrp.template_slipjoint_ahu,[SP05012],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_slipjoint_ahu_line73,mrp.template_slipjoint_ahu,[SP05013],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_slipjoint_ahu_line74,mrp.template_slipjoint_ahu,[SP05013],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_slipjoint_ahu_line75,mrp.template_slipjoint_ahu,[SP05013],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_slipjoint_ahu_line76,mrp.template_slipjoint_ahu,[SP05013],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_slipjoint_ahu_line77,mrp.template_slipjoint_ahu,[SP05006],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_ahu_line78,mrp.template_slipjoint_ahu,[SP05013],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_ahu_line79,mrp.template_slipjoint_ahu,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_ahu_line80,mrp.template_slipjoint_ahu,[SP05013],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_ahu_line81,mrp.template_slipjoint_ahu,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_ahu_line82,mrp.template_slipjoint_ahu,[SP05013],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_ahu_line83,mrp.template_slipjoint_ahu,[SP05007],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_ahu_line84,mrp.template_slipjoint_ahu,[SP05013],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_ahu_line85,mrp.template_slipjoint_ahu,[SP05002],(line.mat_insulation_choices.code == 'PU') and (line.W*line.L*line.T.value/1000000000*40*0.437*1.13-(line.cut_area*line.T.value*40*0.437*1.13/1000)) or 0.0,kg +mrp.template_slipjoint_ahu_line86,mrp.template_slipjoint_ahu,[SP05003],(line.mat_insulation_choices.code == 'PU') and (line.W*line.L*line.T.value/1000000000*40*0.563*1.13-(line.cut_area*line.T.value*40*0.563*1.13/1000)) or 0.0,kg +mrp.template_slipjoint_ahu_line87,mrp.template_slipjoint_ahu,[SP05024],(line.mat_insulation_choices.code == 'PIR') and (line.W*line.L*line.T.value/1000000000*36*0.242*1.2*1.05-(line.cut_area*line.T.value*36*0.242*1.2*1.05/1000)) or 0.0,kg +mrp.template_slipjoint_ahu_line88,mrp.template_slipjoint_ahu,[SP05003],(line.mat_insulation_choices.code == 'PIR') and (line.W*line.L*line.T.value/1000000000*36*0.714*1.2*1.05-(line.cut_area*line.T.value*36*0.714*1.2*1.05/1000)) or 0.0,kg +mrp.template_slipjoint_ahu_line89,mrp.template_slipjoint_ahu,[SP05023],(line.mat_insulation_choices.code == 'PIR') and (line.W*line.L*line.T.value/1000000000*36*0.044*1.2*1.05-(line.cut_area*line.T.value*36*0.044*1.2*1.05/1000)) or 0.0,kg +mrp.template_slipjoint_ahu_line90,mrp.template_slipjoint_ahu,[SP04016],"(line.T.value == 42 and line.mat_insulation_choices.code in ('PU','PIR')) and (round((line.W*line.L/1000000)-0.5,0)*6) or 0.0",pcs +mrp.template_slipjoint_ahu_line91,mrp.template_slipjoint_ahu,[SP04017],"(line.T.value == 50 and line.mat_insulation_choices.code in ('PU','PIR')) and (round((line.W*line.L/1000000)-0.5,0)*6) or 0.0",pcs +mrp.template_slipjoint_ahu_line92,mrp.template_slipjoint_ahu,[SP04018],"(line.T.value == 75 and line.mat_insulation_choices.code in ('PU','PIR')) and (round((line.W*line.L/1000000)-0.5,0)*6) or 0.0",pcs +mrp.template_slipjoint_ahu_line93,mrp.template_slipjoint_ahu,[SP04019],"(line.T.value == 100 and line.mat_insulation_choices.code in ('PU','PIR')) and (round((line.W*line.L/1000000)-0.5,0)*6) or 0.0",pcs +mrp.template_slipjoint_ahu_line94,mrp.template_slipjoint_ahu,[SP04020],"(line.T.value == 125 and line.mat_insulation_choices.code in ('PU','PIR')) and (round((line.W*line.L/1000000)-0.5,0)*6) or 0.0",pcs +mrp.template_slipjoint_ahu_line95,mrp.template_slipjoint_ahu,[SP04021],"(line.T.value == 150 and line.mat_insulation_choices.code in ('PU','PIR')) and (round((line.W*line.L/1000000)-0.5,0)*6) or 0.0",pcs +mrp.template_slipjoint_ahu_line96,mrp.template_slipjoint_ahu,[SP03023-1],"(line.mat_camlock_choices.code == 'None') and (line.mat_joint_choices.code in ('NN')) and (round((line.L/1000)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line97,mrp.template_slipjoint_ahu,[SP03023-2],"(line.mat_camlock_choices.code == 'None') and (line.mat_joint_choices.code in ('NN')) and (round((line.L/1000)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line98,mrp.template_slipjoint_ahu,[SP03023-1],"(line.mat_camlock_choices.code == 'CR') and (line.mat_joint_choices.code in ('MF')) and (round((line.L/1000)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line99,mrp.template_slipjoint_ahu,[SP03023-1],"(line.mat_camlock_choices.code == 'CR') and (line.mat_joint_choices.code in ('MN')) and (round((line.L/1000)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line100,mrp.template_slipjoint_ahu,[SP03023-1],"(line.mat_camlock_choices.code == 'CR') and (line.mat_joint_choices.code in ('MM')) and (round((line.L/1000)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line101,mrp.template_slipjoint_ahu,[SP03023-2],"(line.mat_camlock_choices.code == 'CR') and (line.mat_joint_choices.code in ('MF')) and (round((line.L/1000)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line102,mrp.template_slipjoint_ahu,[SP03023-2],"(line.mat_camlock_choices.code == 'CR') and (line.mat_joint_choices.code in ('FN')) and (round((line.L/1000)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line103,mrp.template_slipjoint_ahu,[SP03023-2],"(line.mat_camlock_choices.code == 'CR') and (line.mat_joint_choices.code in ('FF')) and (round((line.L/1000)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line104,mrp.template_slipjoint_ahu,[SP03023-1],"(line.mat_camlock_choices.code == 'AHU') and (line.mat_joint_choices.code in ('MF')) and (round((line.L/500)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line105,mrp.template_slipjoint_ahu,[SP03023-1],"(line.mat_camlock_choices.code == 'AHU') and (line.mat_joint_choices.code in ('MN')) and (round((line.L/500)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line106,mrp.template_slipjoint_ahu,[SP03023-1],"(line.mat_camlock_choices.code == 'AHU') and (line.mat_joint_choices.code in ('MM')) and (round((line.L/500)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line107,mrp.template_slipjoint_ahu,[SP03023-2],"(line.mat_camlock_choices.code == 'AHU') and (line.mat_joint_choices.code in ('MF')) and (round((line.L/500)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line108,mrp.template_slipjoint_ahu,[SP03023-1],"(line.mat_camlock_choices.code == 'AHU') and (line.mat_joint_choices.code in ('FN')) and (round((line.L/500)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line109,mrp.template_slipjoint_ahu,[SP03023-2],"(line.mat_camlock_choices.code == 'AHU') and (line.mat_joint_choices.code in ('FF')) and (round((line.L/500)+0.499999,0)-1) or 0.0",pcs +mrp.template_slipjoint_ahu_line110,mrp.template_slipjoint_ahu,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200*2) or 0.0,roll +mrp.template_slipjoint_ahu_line111,mrp.template_slipjoint_ahu,[SP03006],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200*2) or 0.0,roll +mrp.template_slipjoint_ahu_line112,mrp.template_slipjoint_ahu,[SP03006],(line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200*2) or 0.0,roll +mrp.template_slipjoint_ahu_line113,mrp.template_slipjoint_ahu,[SP03006],(line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_ahu_line114,mrp.template_slipjoint_ahu,[SP03006],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_ahu_line115,mrp.template_slipjoint_ahu,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_ahu_line116,mrp.template_slipjoint_ahu,[SP04047],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 42 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line117,mrp.template_slipjoint_ahu,[SP04043],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 42 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line118,mrp.template_slipjoint_ahu,[SP04047],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 42 and line.mat_joint_choices.code == 'MM') and (4) or 0,pcs +mrp.template_slipjoint_ahu_line119,mrp.template_slipjoint_ahu,[SP04043],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 42 and line.mat_joint_choices.code == 'FF') and (4) or 0,pcs +mrp.template_slipjoint_ahu_line120,mrp.template_slipjoint_ahu,[SP04047],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 42 and line.mat_joint_choices.code == 'MN') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line121,mrp.template_slipjoint_ahu,[SP04043],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 42 and line.mat_joint_choices.code == 'FN') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line122,mrp.template_slipjoint_ahu,[SP04048],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 50 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line123,mrp.template_slipjoint_ahu,[SP04044],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 50 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line124,mrp.template_slipjoint_ahu,[SP04048],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 50 and line.mat_joint_choices.code == 'MM') and (4) or 0,pcs +mrp.template_slipjoint_ahu_line125,mrp.template_slipjoint_ahu,[SP04044],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 50 and line.mat_joint_choices.code == 'FF') and (4) or 0,pcs +mrp.template_slipjoint_ahu_line126,mrp.template_slipjoint_ahu,[SP04048],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 50 and line.mat_joint_choices.code == 'MN') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line127,mrp.template_slipjoint_ahu,[SP04044],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 50 and line.mat_joint_choices.code == 'FN') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line128,mrp.template_slipjoint_ahu,[SP04049],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 75 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line129,mrp.template_slipjoint_ahu,[SP04045],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 75 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line130,mrp.template_slipjoint_ahu,[SP04049],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 75 and line.mat_joint_choices.code == 'MM') and (4) or 0,pcs +mrp.template_slipjoint_ahu_line131,mrp.template_slipjoint_ahu,[SP04045],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 75 and line.mat_joint_choices.code == 'FF') and (4) or 0,pcs +mrp.template_slipjoint_ahu_line132,mrp.template_slipjoint_ahu,[SP04049],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 75 and line.mat_joint_choices.code == 'MN') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line133,mrp.template_slipjoint_ahu,[SP04045],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 75 and line.mat_joint_choices.code == 'FN') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line134,mrp.template_slipjoint_ahu,[SP04050],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 100 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line135,mrp.template_slipjoint_ahu,[SP04046],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 100 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line136,mrp.template_slipjoint_ahu,[SP04050],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 100 and line.mat_joint_choices.code == 'MM') and (4) or 0,pcs +mrp.template_slipjoint_ahu_line137,mrp.template_slipjoint_ahu,[SP04046],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 100 and line.mat_joint_choices.code == 'FF') and (4) or 0,pcs +mrp.template_slipjoint_ahu_line138,mrp.template_slipjoint_ahu,[SP04050],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 100 and line.mat_joint_choices.code == 'MN') and (2) or 0,pcs +mrp.template_slipjoint_ahu_line139,mrp.template_slipjoint_ahu,[SP04046],(line.mat_camlock_choices.code == 'CR') and (line.T.value == 100 and line.mat_joint_choices.code == 'FN') and (2) or 0,pcs diff --git a/sqp_config_bom_formula/01_slipjoint_cr_ahu/mrp.bom.csv b/sqp_config_bom_formula/01_slipjoint_cr_ahu/mrp.bom.csv new file mode 100755 index 0000000..07f995a --- /dev/null +++ b/sqp_config_bom_formula/01_slipjoint_cr_ahu/mrp.bom.csv @@ -0,0 +1,202 @@ +id,bom_id/id,product_id,product_qty_formula,product_uom +mrp.template_slipjoint_cr_ahu_line1,mrp.template_slipjoint_cr_ahu,[SP05006],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line2,mrp.template_slipjoint_cr_ahu,[SP05007],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line3,mrp.template_slipjoint_cr_ahu,[SP05006],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line4,mrp.template_slipjoint_cr_ahu,[SP05007],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line5,mrp.template_slipjoint_cr_ahu,[SP05008],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (457*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line6,mrp.template_slipjoint_cr_ahu,[SP05009],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (610*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line7,mrp.template_slipjoint_cr_ahu,[SP05008],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line8,mrp.template_slipjoint_cr_ahu,[SP05009],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line9,mrp.template_slipjoint_cr_ahu,[SP05006],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line10,mrp.template_slipjoint_cr_ahu,[SP05004],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line11,mrp.template_slipjoint_cr_ahu,[SP05007],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line12,mrp.template_slipjoint_cr_ahu,[SP05012],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line13,mrp.template_slipjoint_cr_ahu,[SP05006],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line14,mrp.template_slipjoint_cr_ahu,[SP05004],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line15,mrp.template_slipjoint_cr_ahu,[SP05007],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line16,mrp.template_slipjoint_cr_ahu,[SP05012],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line17,mrp.template_slipjoint_cr_ahu,[SP05013],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line18,mrp.template_slipjoint_cr_ahu,[SP05013],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line19,mrp.template_slipjoint_cr_ahu,[SP05013],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line20,mrp.template_slipjoint_cr_ahu,[SP05013],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line21,mrp.template_slipjoint_cr_ahu,[SP05006],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line22,mrp.template_slipjoint_cr_ahu,[SP05013],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line23,mrp.template_slipjoint_cr_ahu,[SP05007],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line24,mrp.template_slipjoint_cr_ahu,[SP05013],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line25,mrp.template_slipjoint_cr_ahu,[SP05006],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line26,mrp.template_slipjoint_cr_ahu,[SP05013],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line27,mrp.template_slipjoint_cr_ahu,[SP05007],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line28,mrp.template_slipjoint_cr_ahu,[SP05013],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line29,mrp.template_slipjoint_cr_ahu,[SP05006],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line30,mrp.template_slipjoint_cr_ahu,[SP05013],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line31,mrp.template_slipjoint_cr_ahu,[SP05007],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line32,mrp.template_slipjoint_cr_ahu,[SP05013],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line33,mrp.template_slipjoint_cr_ahu,[SP05006],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line34,mrp.template_slipjoint_cr_ahu,[SP05013],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line35,mrp.template_slipjoint_cr_ahu,[SP05007],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line36,mrp.template_slipjoint_cr_ahu,[SP05013],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line37,mrp.template_slipjoint_cr_ahu,[SP05006],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line38,mrp.template_slipjoint_cr_ahu,[SP05004],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line39,mrp.template_slipjoint_cr_ahu,[SP05007],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line40,mrp.template_slipjoint_cr_ahu,[SP05012],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line41,mrp.template_slipjoint_cr_ahu,[SP05006],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line42,mrp.template_slipjoint_cr_ahu,[SP05004],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line43,mrp.template_slipjoint_cr_ahu,[SP05007],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line44,mrp.template_slipjoint_cr_ahu,[SP05012],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line45,mrp.template_slipjoint_cr_ahu,[SP05004],"((59+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.2*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line46,mrp.template_slipjoint_cr_ahu,[SP05012],"((59+line.W)>457 and (59+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*3.2*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line47,mrp.template_slipjoint_cr_ahu,[SP05004],"((59+line.W)>610 and (59+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line48,mrp.template_slipjoint_cr_ahu,[SP05012],"((59+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line49,mrp.template_slipjoint_cr_ahu,[SP05006],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line50,mrp.template_slipjoint_cr_ahu,[SP05007],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line51,mrp.template_slipjoint_cr_ahu,[SP05006],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line52,mrp.template_slipjoint_cr_ahu,[SP05007],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line53,mrp.template_slipjoint_cr_ahu,[SP05008],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (457*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line54,mrp.template_slipjoint_cr_ahu,[SP05009],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (610*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line55,mrp.template_slipjoint_cr_ahu,[SP05008],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line56,mrp.template_slipjoint_cr_ahu,[SP05009],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line57,mrp.template_slipjoint_cr_ahu,[SP05006],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line58,mrp.template_slipjoint_cr_ahu,[SP05004],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line59,mrp.template_slipjoint_cr_ahu,[SP05007],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line60,mrp.template_slipjoint_cr_ahu,[SP05012],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line61,mrp.template_slipjoint_cr_ahu,[SP05006],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line62,mrp.template_slipjoint_cr_ahu,[SP05004],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line63,mrp.template_slipjoint_cr_ahu,[SP05007],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line64,mrp.template_slipjoint_cr_ahu,[SP05012],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line65,mrp.template_slipjoint_cr_ahu,[SP05013],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line66,mrp.template_slipjoint_cr_ahu,[SP05013],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line67,mrp.template_slipjoint_cr_ahu,[SP05013],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line68,mrp.template_slipjoint_cr_ahu,[SP05013],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line69,mrp.template_slipjoint_cr_ahu,[SP05006],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line70,mrp.template_slipjoint_cr_ahu,[SP05013],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line71,mrp.template_slipjoint_cr_ahu,[SP05007],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line72,mrp.template_slipjoint_cr_ahu,[SP05013],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line73,mrp.template_slipjoint_cr_ahu,[SP05006],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line74,mrp.template_slipjoint_cr_ahu,[SP05013],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line75,mrp.template_slipjoint_cr_ahu,[SP05007],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line76,mrp.template_slipjoint_cr_ahu,[SP05013],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line77,mrp.template_slipjoint_cr_ahu,[SP05006],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line78,mrp.template_slipjoint_cr_ahu,[SP05013],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line79,mrp.template_slipjoint_cr_ahu,[SP05007],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line80,mrp.template_slipjoint_cr_ahu,[SP05013],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line81,mrp.template_slipjoint_cr_ahu,[SP05006],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line82,mrp.template_slipjoint_cr_ahu,[SP05013],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line83,mrp.template_slipjoint_cr_ahu,[SP05007],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line84,mrp.template_slipjoint_cr_ahu,[SP05013],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line85,mrp.template_slipjoint_cr_ahu,[SP05006],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line86,mrp.template_slipjoint_cr_ahu,[SP05004],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line87,mrp.template_slipjoint_cr_ahu,[SP05007],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line88,mrp.template_slipjoint_cr_ahu,[SP05012],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line89,mrp.template_slipjoint_cr_ahu,[SP05006],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line90,mrp.template_slipjoint_cr_ahu,[SP05004],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line91,mrp.template_slipjoint_cr_ahu,[SP05007],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.75) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line92,mrp.template_slipjoint_cr_ahu,[SP05012],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line93,mrp.template_slipjoint_cr_ahu,[SP05004],"((39+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.2*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line94,mrp.template_slipjoint_cr_ahu,[SP05012],"((39+line.W)>457 and (39+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*3.2*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line95,mrp.template_slipjoint_cr_ahu,[SP05004],"((39+line.W)>610 and (39+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line96,mrp.template_slipjoint_cr_ahu,[SP05012],"((39+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2*2) or 0.0",kg +mrp.template_slipjoint_cr_ahu_line97,mrp.template_slipjoint_cr_ahu,[SP05006],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line98,mrp.template_slipjoint_cr_ahu,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line99,mrp.template_slipjoint_cr_ahu,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line100,mrp.template_slipjoint_cr_ahu,[SP05007],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line101,mrp.template_slipjoint_cr_ahu,[SP05008],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (457*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line102,mrp.template_slipjoint_cr_ahu,[SP05009],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (610*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line103,mrp.template_slipjoint_cr_ahu,[SP05008],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line104,mrp.template_slipjoint_cr_ahu,[SP05009],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line105,mrp.template_slipjoint_cr_ahu,[SP05006],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line106,mrp.template_slipjoint_cr_ahu,[SP05004],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line107,mrp.template_slipjoint_cr_ahu,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line108,mrp.template_slipjoint_cr_ahu,[SP05012],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line109,mrp.template_slipjoint_cr_ahu,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line110,mrp.template_slipjoint_cr_ahu,[SP05004],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line111,mrp.template_slipjoint_cr_ahu,[SP05007],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line112,mrp.template_slipjoint_cr_ahu,[SP05012],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line113,mrp.template_slipjoint_cr_ahu,[SP05013],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line114,mrp.template_slipjoint_cr_ahu,[SP05013],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line115,mrp.template_slipjoint_cr_ahu,[SP05013],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line116,mrp.template_slipjoint_cr_ahu,[SP05013],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line117,mrp.template_slipjoint_cr_ahu,[SP05006],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line118,mrp.template_slipjoint_cr_ahu,[SP05013],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line119,mrp.template_slipjoint_cr_ahu,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line120,mrp.template_slipjoint_cr_ahu,[SP05013],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line121,mrp.template_slipjoint_cr_ahu,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line122,mrp.template_slipjoint_cr_ahu,[SP05013],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line123,mrp.template_slipjoint_cr_ahu,[SP05007],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line124,mrp.template_slipjoint_cr_ahu,[SP05013],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line125,mrp.template_slipjoint_cr_ahu,[SP05006],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line126,mrp.template_slipjoint_cr_ahu,[SP05013],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line127,mrp.template_slipjoint_cr_ahu,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line128,mrp.template_slipjoint_cr_ahu,[SP05013],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line129,mrp.template_slipjoint_cr_ahu,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line130,mrp.template_slipjoint_cr_ahu,[SP05013],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line131,mrp.template_slipjoint_cr_ahu,[SP05007],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line132,mrp.template_slipjoint_cr_ahu,[SP05013],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line133,mrp.template_slipjoint_cr_ahu,[SP05006],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line134,mrp.template_slipjoint_cr_ahu,[SP05004],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line135,mrp.template_slipjoint_cr_ahu,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line136,mrp.template_slipjoint_cr_ahu,[SP05012],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*3.2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line137,mrp.template_slipjoint_cr_ahu,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line138,mrp.template_slipjoint_cr_ahu,[SP05004],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line139,mrp.template_slipjoint_cr_ahu,[SP05007],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line140,mrp.template_slipjoint_cr_ahu,[SP05012],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line141,mrp.template_slipjoint_cr_ahu,[SP05004],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line142,mrp.template_slipjoint_cr_ahu,[SP05012],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line143,mrp.template_slipjoint_cr_ahu,[SP05004],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line144,mrp.template_slipjoint_cr_ahu,[SP05012],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line145,mrp.template_slipjoint_cr_ahu,[999-14-SP03017],((+line.W)<=1204) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='M12N') and (line.mat_outside_skin_choices.code=='H-OW') and (1) or 0.0,pcs +mrp.template_slipjoint_cr_ahu_line146,mrp.template_slipjoint_cr_ahu,[999-14-SP05003],((15+line.W)<=1219) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='M12N') and (line.mat_outside_skin_choices.code=='H-OW') and (1219*line.L/1000000*4.2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line147,mrp.template_slipjoint_cr_ahu,[999-14-SP03017],((+line.W)<=1204) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='H-OW') and (line.mat_outside_skin_choices.code=='M12N') and (1) or 0.0,pcs +mrp.template_slipjoint_cr_ahu_line148,mrp.template_slipjoint_cr_ahu,[999-14-SP05003],((15+line.W)<=1219) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='H-OW') and (line.mat_outside_skin_choices.code=='M12N') and (1219*line.L/1000000*4.2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line149,mrp.template_slipjoint_cr_ahu,[999-14-SP03017],((+line.W)<=1200) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='M12N') and (line.mat_outside_skin_choices.code=='M12N') and (2) or 0.0,pcs +mrp.template_slipjoint_cr_ahu_line150,mrp.template_slipjoint_cr_ahu,[SP05027],((+line.W)<=1000) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='M12(BLACK)') and (line.mat_outside_skin_choices.code=='M12(BLACK)') and (2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line151,mrp.template_slipjoint_cr_ahu,[SP05028],((+line.W)<=1000) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='M12(WHITE)') and (line.mat_outside_skin_choices.code=='M12(WHITE)') and (2) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line152,mrp.template_slipjoint_cr_ahu,[SP05027],((+line.W)<=1000) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='M12(BLACK)') and (line.mat_outside_skin_choices.code=='M12(WHITE)') and (1) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line153,mrp.template_slipjoint_cr_ahu,[SP05028],((+line.W)<=1000) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='M12(BLACK)') and (line.mat_outside_skin_choices.code=='M12(WHITE)') and (1) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line154,mrp.template_slipjoint_cr_ahu,[SP05027],((+line.W)<=1000) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='M12(WHITE)') and (line.mat_outside_skin_choices.code=='M12(BLACK)') and (1) or 0.0,kg +mrp.template_slipjoint_cr_ahu_line155,mrp.template_slipjoint_cr_ahu,[SP05028],((+line.W)<=1000) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='M12(WHITE)') and (line.mat_outside_skin_choices.code=='M12(BLACK)') and (1) or 0.0,pcs +mrp.template_slipjoint_cr_ahu_line156,mrp.template_slipjoint_cr_ahu,[SP05002],(line.mat_insulation_choices.code == 'PU') and (line.W*line.L*line.T.value/1000000000*40*0.437*1.13-(line.cut_area*line.T.value*40*0.437*1.13/1000)) or 0.0,pcs +mrp.template_slipjoint_cr_ahu_line157,mrp.template_slipjoint_cr_ahu,[SP05003],(line.mat_insulation_choices.code == 'PU') and (line.W*line.L*line.T.value/1000000000*40*0.563*1.13-(line.cut_area*line.T.value*40*0.563*1.13/1000)) or 0.0,pcs +mrp.template_slipjoint_cr_ahu_line158,mrp.template_slipjoint_cr_ahu,[SP05024],(line.mat_insulation_choices.code == 'PIR') and (line.W*line.L*line.T.value/1000000000*36*0.242*1.2*1.05-(line.cut_area*line.T.value*36*0.242*1.2*1.05/1000)) or 0.0,pcs +mrp.template_slipjoint_cr_ahu_line159,mrp.template_slipjoint_cr_ahu,[SP05003],(line.mat_insulation_choices.code == 'PIR') and (line.W*line.L*line.T.value/1000000000*36*0.714*1.2*1.05-(line.cut_area*line.T.value*36*0.714*1.2*1.05/1000)) or 0.0,pcs +mrp.template_slipjoint_cr_ahu_line160,mrp.template_slipjoint_cr_ahu,[SP05023],(line.mat_insulation_choices.code == 'PIR') and (line.W*line.L*line.T.value/1000000000*36*0.044*1.2*1.05-(line.cut_area*line.T.value*36*0.044*1.2*1.05/1000)) or 0.0,pcs +mrp.template_slipjoint_cr_ahu_line161,mrp.template_slipjoint_cr_ahu,[SP04047],(line.T.value == 42 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line162,mrp.template_slipjoint_cr_ahu,[SP04043],(line.T.value == 42 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line163,mrp.template_slipjoint_cr_ahu,[SP04047],(line.T.value == 42 and line.mat_joint_choices.code == 'MM') and (4) or 0,pcs +mrp.template_slipjoint_cr_ahu_line164,mrp.template_slipjoint_cr_ahu,[SP04043],(line.T.value == 42 and line.mat_joint_choices.code == 'FF') and (4) or 0,pcs +mrp.template_slipjoint_cr_ahu_line165,mrp.template_slipjoint_cr_ahu,[SP04047],(line.T.value == 42 and line.mat_joint_choices.code == 'MN') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line166,mrp.template_slipjoint_cr_ahu,[SP04043],(line.T.value == 42 and line.mat_joint_choices.code == 'FN') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line167,mrp.template_slipjoint_cr_ahu,[SP04048],(line.T.value == 50 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line168,mrp.template_slipjoint_cr_ahu,[SP04044],(line.T.value == 50 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line169,mrp.template_slipjoint_cr_ahu,[SP04048],(line.T.value == 50 and line.mat_joint_choices.code == 'MM') and (4) or 0,pcs +mrp.template_slipjoint_cr_ahu_line170,mrp.template_slipjoint_cr_ahu,[SP04044],(line.T.value == 50 and line.mat_joint_choices.code == 'FF') and (4) or 0,pcs +mrp.template_slipjoint_cr_ahu_line171,mrp.template_slipjoint_cr_ahu,[SP04048],(line.T.value == 50 and line.mat_joint_choices.code == 'MN') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line172,mrp.template_slipjoint_cr_ahu,[SP04044],(line.T.value == 50 and line.mat_joint_choices.code == 'FN') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line173,mrp.template_slipjoint_cr_ahu,[SP04049],(line.T.value == 75 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line174,mrp.template_slipjoint_cr_ahu,[SP04045],(line.T.value == 75 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line175,mrp.template_slipjoint_cr_ahu,[SP04049],(line.T.value == 75 and line.mat_joint_choices.code == 'MM') and (4) or 0,pcs +mrp.template_slipjoint_cr_ahu_line176,mrp.template_slipjoint_cr_ahu,[SP04045],(line.T.value == 75 and line.mat_joint_choices.code == 'FF') and (4) or 0,pcs +mrp.template_slipjoint_cr_ahu_line177,mrp.template_slipjoint_cr_ahu,[SP04049],(line.T.value == 75 and line.mat_joint_choices.code == 'MN') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line178,mrp.template_slipjoint_cr_ahu,[SP04045],(line.T.value == 75 and line.mat_joint_choices.code == 'FN') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line179,mrp.template_slipjoint_cr_ahu,[SP04050],(line.T.value == 100 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line180,mrp.template_slipjoint_cr_ahu,[SP04046],(line.T.value == 100 and line.mat_joint_choices.code == 'MF') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line181,mrp.template_slipjoint_cr_ahu,[SP04050],(line.T.value == 100 and line.mat_joint_choices.code == 'MM') and (4) or 0,pcs +mrp.template_slipjoint_cr_ahu_line182,mrp.template_slipjoint_cr_ahu,[SP04046],(line.T.value == 100 and line.mat_joint_choices.code == 'FF') and (4) or 0,pcs +mrp.template_slipjoint_cr_ahu_line183,mrp.template_slipjoint_cr_ahu,[SP04050],(line.T.value == 100 and line.mat_joint_choices.code == 'MN') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line184,mrp.template_slipjoint_cr_ahu,[SP04046],(line.T.value == 100 and line.mat_joint_choices.code == 'FN') and (2) or 0,pcs +mrp.template_slipjoint_cr_ahu_line185,mrp.template_slipjoint_cr_ahu,[SP04016],"(line.T.value == 42 and line.mat_insulation_choices.code in ('PU','PIR')) and (round((line.W*line.L/1000000)-0.5,0)*6) or 0.0",roll +mrp.template_slipjoint_cr_ahu_line186,mrp.template_slipjoint_cr_ahu,[SP04017],"(line.T.value == 50 and line.mat_insulation_choices.code in ('PU','PIR')) and (round((line.W*line.L/1000000)-0.5,0)*6) or 0.0",roll +mrp.template_slipjoint_cr_ahu_line187,mrp.template_slipjoint_cr_ahu,[SP04018],"(line.T.value == 75 and line.mat_insulation_choices.code in ('PU','PIR')) and (round((line.W*line.L/1000000)-0.5,0)*6) or 0.0",roll +mrp.template_slipjoint_cr_ahu_line188,mrp.template_slipjoint_cr_ahu,[SP04019],"(line.T.value == 100 and line.mat_insulation_choices.code in ('PU','PIR')) and (round((line.W*line.L/1000000)-0.5,0)*6) or 0.0",roll +mrp.template_slipjoint_cr_ahu_line189,mrp.template_slipjoint_cr_ahu,[SP04020],"(line.T.value == 125 and line.mat_insulation_choices.code in ('PU','PIR')) and (round((line.W*line.L/1000000)-0.5,0)*6) or 0.0",roll +mrp.template_slipjoint_cr_ahu_line190,mrp.template_slipjoint_cr_ahu,[SP04021],"(line.T.value == 150 and line.mat_insulation_choices.code in ('PU','PIR')) and (round((line.W*line.L/1000000)-0.5,0)*6) or 0.0",roll +mrp.template_slipjoint_cr_ahu_line191,mrp.template_slipjoint_cr_ahu,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200*2) or 0.0,roll +mrp.template_slipjoint_cr_ahu_line192,mrp.template_slipjoint_cr_ahu,[SP03006],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200*2) or 0.0,roll +mrp.template_slipjoint_cr_ahu_line193,mrp.template_slipjoint_cr_ahu,[SP03006],(line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200*2) or 0.0,roll +mrp.template_slipjoint_cr_ahu_line194,mrp.template_slipjoint_cr_ahu,[SP03006],(line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_cr_ahu_line195,mrp.template_slipjoint_cr_ahu,[SP03006],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_cr_ahu_line196,mrp.template_slipjoint_cr_ahu,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_cr_ahu_line197,mrp.template_slipjoint_cr_ahu,[SP03006],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_cr_ahu_line198,mrp.template_slipjoint_cr_ahu,[SP03007],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_cr_ahu_line199,mrp.template_slipjoint_cr_ahu,[SP03006],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_cr_ahu_line200,mrp.template_slipjoint_cr_ahu,[SP03006],(line.mat_inside_skin_choices.code=='M12N') and (line.mat_outside_skin_choices.code=='H-OW') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_cr_ahu_line201,mrp.template_slipjoint_cr_ahu,[SP03006],(line.mat_inside_skin_choices.code=='H-OW') and (line.mat_outside_skin_choices.code=='M12N') and (line.L/1000/200) or 0.0,roll diff --git a/sqp_config_bom_formula/02_slipjoint_std_ahu/mrp.bom.csv b/sqp_config_bom_formula/02_slipjoint_std_ahu/mrp.bom.csv new file mode 100755 index 0000000..5f1e83a --- /dev/null +++ b/sqp_config_bom_formula/02_slipjoint_std_ahu/mrp.bom.csv @@ -0,0 +1,55 @@ +id,bom_id/id,product_id,product_qty_formula,product_uom +mrp.template_slipjoint_std_ahu_line1,mrp.template_slipjoint_std_ahu,[SP05042],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*2.55*2) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line2,mrp.template_slipjoint_std_ahu,[SP05043],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*2.55*2) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line3,mrp.template_slipjoint_std_ahu,[SP05042],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*2.55*2) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line4,mrp.template_slipjoint_std_ahu,[SP05043],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*2.55*2) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line5,mrp.template_slipjoint_std_ahu,[SP05042],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*2.55) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line6,mrp.template_slipjoint_std_ahu,[SP05041],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*2.73) or 0.0,kg +mrp.template_slipjoint_std_ahu_line7,mrp.template_slipjoint_std_ahu,[SP05043],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*2.55) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line8,mrp.template_slipjoint_std_ahu,[SP05040],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*2.73) or 0.0,kg +mrp.template_slipjoint_std_ahu_line9,mrp.template_slipjoint_std_ahu,[SP05042],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*2.55) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line10,mrp.template_slipjoint_std_ahu,[SP05041],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*2.73) or 0.0,kg +mrp.template_slipjoint_std_ahu_line11,mrp.template_slipjoint_std_ahu,[SP05043],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*2.55) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line12,mrp.template_slipjoint_std_ahu,[SP05040],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*2.73) or 0.0,kg +mrp.template_slipjoint_std_ahu_line13,mrp.template_slipjoint_std_ahu,[SP05041],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*2.73*2) or 0.0,kg +mrp.template_slipjoint_std_ahu_line14,mrp.template_slipjoint_std_ahu,[SP05040],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*2.73*2) or 0.0,kg +mrp.template_slipjoint_std_ahu_line15,mrp.template_slipjoint_std_ahu,[SP05041],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*2.73*2) or 0.0,kg +mrp.template_slipjoint_std_ahu_line16,mrp.template_slipjoint_std_ahu,[SP05040],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*2.73*2) or 0.0,kg +mrp.template_slipjoint_std_ahu_line17,mrp.template_slipjoint_std_ahu,[SP05013],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_slipjoint_std_ahu_line18,mrp.template_slipjoint_std_ahu,[SP05013],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_slipjoint_std_ahu_line19,mrp.template_slipjoint_std_ahu,[SP05013],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_slipjoint_std_ahu_line20,mrp.template_slipjoint_std_ahu,[SP05013],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_slipjoint_std_ahu_line21,mrp.template_slipjoint_std_ahu,[SP05042],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*2.55) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line22,mrp.template_slipjoint_std_ahu,[SP05013],((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_std_ahu_line23,mrp.template_slipjoint_std_ahu,[SP05043],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*2.55) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line24,mrp.template_slipjoint_std_ahu,[SP05013],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_std_ahu_line25,mrp.template_slipjoint_std_ahu,[SP05042],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*2.55) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line26,mrp.template_slipjoint_std_ahu,[SP05013],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_std_ahu_line27,mrp.template_slipjoint_std_ahu,[SP05043],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*2.55) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line28,mrp.template_slipjoint_std_ahu,[SP05013],((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.9) or 0.0,kg +mrp.template_slipjoint_std_ahu_line29,mrp.template_slipjoint_std_ahu,[SP05002],(line.mat_insulation_choices.code == 'PU') and (line.W*line.L*line.T.value/1000000000*40*0.437*1.13-(line.cut_area*line.T.value*40*0.437*1.13/1000)) or 0.0,kg +mrp.template_slipjoint_std_ahu_line30,mrp.template_slipjoint_std_ahu,[SP05003],(line.mat_insulation_choices.code == 'PU') and (line.W*line.L*line.T.value/1000000000*40*0.563*1.13-(line.cut_area*line.T.value*40*0.563*1.13/1000)) or 0.0,kg +mrp.template_slipjoint_std_ahu_line31,mrp.template_slipjoint_std_ahu,[SP05024],(line.mat_insulation_choices.code == 'PIR') and (line.W*line.L*line.T.value/1000000000*36*0.242*1.2*1.05-(line.cut_area*line.T.value*36*0.242*1.2*1.05/1000)) or 0.0,kg +mrp.template_slipjoint_std_ahu_line32,mrp.template_slipjoint_std_ahu,[SP05003],(line.mat_insulation_choices.code == 'PIR') and (line.W*line.L*line.T.value/1000000000*36*0.714*1.2*1.05-(line.cut_area*line.T.value*36*0.714*1.2*1.05/1000)) or 0.0,kg +mrp.template_slipjoint_std_ahu_line33,mrp.template_slipjoint_std_ahu,[SP05023],(line.mat_insulation_choices.code == 'PIR') and (line.W*line.L*line.T.value/1000000000*36*0.044*1.2*1.05-(line.cut_area*line.T.value*36*0.044*1.2*1.05/1000)) or 0.0,kg +mrp.template_slipjoint_std_ahu_line35,mrp.template_slipjoint_std_ahu,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200*2) or 0.0,roll +mrp.template_slipjoint_std_ahu_line36,mrp.template_slipjoint_std_ahu,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_std_ahu_line37,mrp.template_slipjoint_std_ahu,[SP03006],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_std_ahu_line38,mrp.template_slipjoint_std_ahu,[SP03006],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200*2) or 0.0,roll +mrp.template_slipjoint_std_ahu_line39,mrp.template_slipjoint_std_ahu,[SP03006],(line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_slipjoint_std_ahu_line40,mrp.template_slipjoint_std_ahu,[SP02179],(line.mat_model_choices.code=='AG' and line.T.value == 25) and (1) or 0.0,set +mrp.template_slipjoint_std_ahu_line41,mrp.template_slipjoint_std_ahu,[SP02180],(line.mat_model_choices.code=='AG' and line.T.value == 50) and (1) or 0.0,set +mrp.template_slipjoint_std_ahu_line42,mrp.template_slipjoint_std_ahu,[SP04010],(line.mat_model_choices.code=='AH' and line.T.value == 25) and ((line.W+line.L)*2/1000/3) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line43,mrp.template_slipjoint_std_ahu,[SP04005-2],(line.mat_model_choices.code=='AH' and line.T.value == 50) and ((line.W+line.L)*2/1000/3) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line44,mrp.template_slipjoint_std_ahu,[SP04103],(line.mat_model_choices.code=='AH' and line.T.value == 25) and ((line.W+line.L)*2/1000/3) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line45,mrp.template_slipjoint_std_ahu,[SP04093-2],(line.mat_model_choices.code=='AH' and line.T.value == 50) and ((line.W+line.L)*2/1000/3) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line46,mrp.template_slipjoint_std_ahu,[SP04104],(line.mat_model_choices.code=='AH' and line.T.value == 25) and ((line.W+line.L)*2/1000/3) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line47,mrp.template_slipjoint_std_ahu,[SP04039-2],(line.mat_model_choices.code=='AH' and line.T.value == 50) and ((line.W+line.L)*2/1000/3) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line48,mrp.template_slipjoint_std_ahu,[SP02177],(line.mat_model_choices.code=='AH' and line.T.value == 25) and ((line.L <= 614) and 1.0 or ((line.L > 614) and 2.0 or 0.0)) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line49,mrp.template_slipjoint_std_ahu,[SP02178],(line.mat_model_choices.code=='AH' and line.T.value == 50) and ((line.L <= 614) and 1.0 or ((line.L > 614) and 2.0 or 0.0)) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line50,mrp.template_slipjoint_std_ahu,[SP02176],(line.mat_model_choices.code=='AH') and (2) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line51,mrp.template_slipjoint_std_ahu,[SP02158],(line.mat_model_choices.code=='AH') and ((line.L <= 614) and 1.0 or ((line.L > 614) and 2.0 or 0.0)) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line52,mrp.template_slipjoint_std_ahu,[SP04108],(line.mat_model_choices.code=='AH') and (4) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line53,mrp.template_slipjoint_std_ahu,[SP04005-2],(line.mat_model_choices.code=='AL' and line.T.value == 50) and ((line.W+line.L)*2/1000/3) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line54,mrp.template_slipjoint_std_ahu,[SP04010],(line.T.value == 25) and (line.mat_model_choices.code=='Access') and ((line.W+line.L)*2/1000/3) or 0.0,pcs +mrp.template_slipjoint_std_ahu_line55,mrp.template_slipjoint_std_ahu,[SP04005-2],(line.T.value == 50) and (line.mat_model_choices.code=='Access') and ((line.W+line.L)*2/1000/3) or 0.0,pcs diff --git a/sqp_config_bom_formula/03_slipjoint_rockwool/mrp.bom.csv b/sqp_config_bom_formula/03_slipjoint_rockwool/mrp.bom.csv new file mode 100755 index 0000000..985c76a --- /dev/null +++ b/sqp_config_bom_formula/03_slipjoint_rockwool/mrp.bom.csv @@ -0,0 +1,24 @@ +"id","bom_id/id","product_id","product_qty_formula","product_uom" +"mrp.template_slipjoint_rockwool_line1","mrp.template_slipjoint_rockwool","[SP05006]","((49+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line2","mrp.template_slipjoint_rockwool","[SP05007]","((49+line.W)>457 and (49+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line3","mrp.template_slipjoint_rockwool","[SP05006]","((49+line.W)>610 and (49+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line4","mrp.template_slipjoint_rockwool","[SP05007]","((49+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line5","mrp.template_slipjoint_rockwool","[SP05020]","((49+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI8') and (line.mat_outside_skin_choices.code=='GI8') and (457*line.L/1000000*5.85*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line6","mrp.template_slipjoint_rockwool","[SP05020]","((49+line.W)>610 and (49+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI8') and (line.mat_outside_skin_choices.code=='GI8') and (914*line.L/1000000*5.85*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line7","mrp.template_slipjoint_rockwool","[SP05006]","((29+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line8","mrp.template_slipjoint_rockwool","[SP05007]","((29+line.W)>457 and (29+line.W)<=610) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line9","mrp.template_slipjoint_rockwool","[SP05006]","((29+line.W)>610 and (29+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line10","mrp.template_slipjoint_rockwool","[SP05007]","((29+line.W)>914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line11","mrp.template_slipjoint_rockwool","[SP05020]","((29+line.W)<=457) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI8') and (line.mat_outside_skin_choices.code=='GI8') and (457*line.L/1000000*5.85*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line12","mrp.template_slipjoint_rockwool","[SP05020]","((29+line.W)>610 and (29+line.W)<=914) and (line.mat_joint_choices.code in ('MN','FN')) and (line.mat_inside_skin_choices.code=='GI8') and (line.mat_outside_skin_choices.code=='GI8') and (914*line.L/1000000*5.85*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line13","mrp.template_slipjoint_rockwool","[SP05006]","((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line14","mrp.template_slipjoint_rockwool","[SP05007]","((14+line.W)>457 and (14+line.W)<=610) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line15","mrp.template_slipjoint_rockwool","[SP05006]","((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line16","mrp.template_slipjoint_rockwool","[SP05007]","((14+line.W)>914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line17","mrp.template_slipjoint_rockwool","[SP05020]","((14+line.W)<=457) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI8') and (line.mat_outside_skin_choices.code=='GI8') and (457*line.L/1000000*5.85*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line18","mrp.template_slipjoint_rockwool","[SP05020]","((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('NN')) and (line.mat_inside_skin_choices.code=='GI8') and (line.mat_outside_skin_choices.code=='GI8') and (914*line.L/1000000*5.85*2) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line19","mrp.template_slipjoint_rockwool","[SP05021]","(line.mat_insulation_choices.code == 'Rockwool') and (line.T.value==50) and (round((line.W*line.L/1000000/2.52)+0.5,0)) or 0.0","pcs" +"mrp.template_slipjoint_rockwool_line20","mrp.template_slipjoint_rockwool","[SP05021]","(line.mat_insulation_choices.code == 'Rockwool') and (line.T.value==75) and (round((line.W*line.L/1000000/1.68)+0.5,0)) or 0.0","pcs" +"mrp.template_slipjoint_rockwool_line21","mrp.template_slipjoint_rockwool","[SP05021]","(line.mat_insulation_choices.code == 'Rockwool') and (line.T.value==100) and (round((line.W*line.L/1000000/1.32)+0.5,0)) or 0.0","pcs" +"mrp.template_slipjoint_rockwool_line22","mrp.template_slipjoint_rockwool","[SP03131]","(line.W*line.L/1000000*0.3) or 0.0","kg" +"mrp.template_slipjoint_rockwool_line23","mrp.template_slipjoint_rockwool","[SP03006]","(line.L/1000/200*2) or 0.0","roll" diff --git a/sqp_config_bom_formula/04_firejoint_rockwool/mrp.bom.csv b/sqp_config_bom_formula/04_firejoint_rockwool/mrp.bom.csv new file mode 100755 index 0000000..62fe579 --- /dev/null +++ b/sqp_config_bom_formula/04_firejoint_rockwool/mrp.bom.csv @@ -0,0 +1,12 @@ +"id","bom_id/id","product_id","product_qty_formula","product_uom" +"mrp.template_firejoint_rockwool_line1","mrp.template_firejoint_rockwool","[SP05006]","((74+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_firejoint_rockwool_line2","mrp.template_firejoint_rockwool","[SP05007]","((74+line.W)>457 and (74+line.W)<=610) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_firejoint_rockwool_line3","mrp.template_firejoint_rockwool","[SP05006]","((74+line.W)>610 and (74+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_firejoint_rockwool_line4","mrp.template_firejoint_rockwool","[SP05007]","((74+line.W)>914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_firejoint_rockwool_line5","mrp.template_firejoint_rockwool","[SP05020]","((74+line.W)<=457) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI8') and (line.mat_outside_skin_choices.code=='GI8') and (457*line.L/1000000*5.85*2) or 0.0","kg" +"mrp.template_firejoint_rockwool_line6","mrp.template_firejoint_rockwool","[SP05020]","((74+line.W)>610 and (74+line.W)<=914) and (line.mat_joint_choices.code in ('MF','MM','FF')) and (line.mat_inside_skin_choices.code=='GI8') and (line.mat_outside_skin_choices.code=='GI8') and (914*line.L/1000000*5.85*2) or 0.0","kg" +"mrp.template_firejoint_rockwool_line7","mrp.template_firejoint_rockwool","[SP05021]","(line.mat_insulation_choices.code == 'Rockwool') and (line.T.value==50) and (round((line.W*line.L/1000000/2.52)+0.5,0)) or 0.0","pcs" +"mrp.template_firejoint_rockwool_line8","mrp.template_firejoint_rockwool","[SP05021]","(line.mat_insulation_choices.code == 'Rockwool') and (line.T.value==75) and (round((line.W*line.L/1000000/1.68)+0.5,0)) or 0.0","pcs" +"mrp.template_firejoint_rockwool_line9","mrp.template_firejoint_rockwool","[SP05021]","(line.mat_insulation_choices.code == 'Rockwool') and (line.T.value==100) and (round((line.W*line.L/1000000/1.32)+0.5,0)) or 0.0","pcs" +"mrp.template_firejoint_rockwool_line10","mrp.template_firejoint_rockwool","[SP03131]","(line.W*line.L/1000000*0.3) or 0.0","kg" +"mrp.template_firejoint_rockwool_line11","mrp.template_firejoint_rockwool","[SP03006]","(line.L/1000/200*2) or 0.0","roll" diff --git a/sqp_config_bom_formula/05_nonprogressive_joint/mrp.bom.csv b/sqp_config_bom_formula/05_nonprogressive_joint/mrp.bom.csv new file mode 100755 index 0000000..5f26c58 --- /dev/null +++ b/sqp_config_bom_formula/05_nonprogressive_joint/mrp.bom.csv @@ -0,0 +1,9 @@ +"id","bom_id/id","product_id","product_qty_formula","product_uom" +"mrp.template_nonprogressive_joint_line1","mrp.template_nonprogressive_joint","[SP05020]","((14+line.W)<=457) and (line.mat_joint_choices.code in ('MF')) and (line.mat_inside_skin_choices.code=='GI8') and (line.mat_outside_skin_choices.code=='GI8') and (457*line.L/1000000*5.85*2) or 0.0","kg" +"mrp.template_nonprogressive_joint_line2","mrp.template_nonprogressive_joint","[SP05020]","((14+line.W)>610 and (14+line.W)<=914) and (line.mat_joint_choices.code in ('MF')) and (line.mat_inside_skin_choices.code=='GI8') and (line.mat_outside_skin_choices.code=='GI8') and (914*line.L/1000000*5.85*2) or 0.0","kg" +"mrp.template_nonprogressive_joint_line3","mrp.template_nonprogressive_joint","[SP01420]","(line.T.value==50) and (round(((line.W+line.L)*2/6000)+0,2)) or 0.0","pcs" +"mrp.template_nonprogressive_joint_line4","mrp.template_nonprogressive_joint","[SP01424]","(line.T.value==75) and (round(((line.W+line.L)*2/6000)+0,2)) or 0.0","pcs" +"mrp.template_nonprogressive_joint_line5","mrp.template_nonprogressive_joint","[SP05021]","(line.mat_insulation_choices.code == 'Rockwool') and (line.T.value==50) and (round((line.W*line.L/1000000/2.52)+0.5,0)) or 0.0","pcs" +"mrp.template_nonprogressive_joint_line6","mrp.template_nonprogressive_joint","[SP05021]","(line.mat_insulation_choices.code == 'Rockwool') and (line.T.value==75) and (round((line.W*line.L/1000000/1.68)+0.5,0)) or 0.0","pcs" +"mrp.template_nonprogressive_joint_line7","mrp.template_nonprogressive_joint","[SP03131]","(line.W*line.L/1000000*0.3) or 0.0","kg" +"mrp.template_nonprogressive_joint_line8","mrp.template_nonprogressive_joint","[SP03006]","(line.L/1000/200*2) or 0.0","roll" diff --git a/sqp_config_bom_formula/06_foamslab/mrp.bom.csv b/sqp_config_bom_formula/06_foamslab/mrp.bom.csv new file mode 100755 index 0000000..3ed79e5 --- /dev/null +++ b/sqp_config_bom_formula/06_foamslab/mrp.bom.csv @@ -0,0 +1,6 @@ +id,bom_id/id,product_id,product_qty_formula,product_uom +mrp.template_foamslab_line1,mrp.template_foamslab,[SP05002],line.W*line.L*line.T.value/1000000000*40*0.437*1.13-(line.cut_area*line.T.value*40*0.437*1.13/1000),kg +mrp.template_foamslab_line2,mrp.template_foamslab,[SP05003],line.W*line.L*line.T.value/1000000000*40*0.563*1.13-(line.cut_area*line.T.value*40*0.563*1.13/1000),kg +mrp.template_foamslab_line3,mrp.template_foamslab,[SP05024],line.W*line.L*line.T.value/1000000000*36*0.242*1.2*1.05-(line.cut_area*line.T.value*36*0.242*1.2*1.05/1000),kg +mrp.template_foamslab_line4,mrp.template_foamslab,[SP05003],line.W*line.L*line.T.value/1000000000*36*0.714*1.2*1.05-(line.cut_area*line.T.value*36*0.714*1.2*1.05/1000),kg +mrp.template_foamslab_line5,mrp.template_foamslab,[SP05023],line.W*line.L*line.T.value/1000000000*36*0.044*1.2*1.05-(line.cut_area*line.T.value*36*0.044*1.2*1.05/1000),kg diff --git a/sqp_config_bom_formula/07_single_door_flat/mrp.bom.csv b/sqp_config_bom_formula/07_single_door_flat/mrp.bom.csv new file mode 100755 index 0000000..e449769 --- /dev/null +++ b/sqp_config_bom_formula/07_single_door_flat/mrp.bom.csv @@ -0,0 +1,338 @@ +id,bom_id/id,product_id,product_qty_formula,product_uom +mrp.template_single_door_flat_line1,mrp.template_single_door_flat,[SP05006],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_single_door_flat_line2,mrp.template_single_door_flat,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_single_door_flat_line3,mrp.template_single_door_flat,[SP05007],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*4) or 0.0,kg +mrp.template_single_door_flat_line4,mrp.template_single_door_flat,[SP05008],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_single_door_flat_line5,mrp.template_single_door_flat,[SP05009],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_single_door_flat_line6,mrp.template_single_door_flat,[SP05008],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*4) or 0.0,kg +mrp.template_single_door_flat_line7,mrp.template_single_door_flat,[SP05026],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_single_door_flat_line8,mrp.template_single_door_flat,[SP05018],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_single_door_flat_line9,mrp.template_single_door_flat,[SP05026],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2*4) or 0.0,kg +mrp.template_single_door_flat_line10,mrp.template_single_door_flat,[SP05013],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_single_door_flat_line11,mrp.template_single_door_flat,[SP05013],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_single_door_flat_line12,mrp.template_single_door_flat,[SP05013],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*4) or 0.0,kg +mrp.template_single_door_flat_line13,mrp.template_single_door_flat,[SP05006],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_single_door_flat_line14,mrp.template_single_door_flat,[SP05026],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_single_door_flat_line15,mrp.template_single_door_flat,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_single_door_flat_line16,mrp.template_single_door_flat,[SP05018],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_single_door_flat_line17,mrp.template_single_door_flat,[SP05006],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_single_door_flat_line18,mrp.template_single_door_flat,[SP05026],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_single_door_flat_line19,mrp.template_single_door_flat,[SP05006],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_single_door_flat_line20,mrp.template_single_door_flat,[SP05026],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_single_door_flat_line21,mrp.template_single_door_flat,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_single_door_flat_line22,mrp.template_single_door_flat,[SP05018],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_single_door_flat_line23,mrp.template_single_door_flat,[SP05006],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_single_door_flat_line24,mrp.template_single_door_flat,[SP05026],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_single_door_flat_line25,mrp.template_single_door_flat,[SP05006],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_single_door_flat_line26,mrp.template_single_door_flat,[SP05008],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4) or 0.0,kg +mrp.template_single_door_flat_line27,mrp.template_single_door_flat,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_single_door_flat_line28,mrp.template_single_door_flat,[SP05009],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4) or 0.0,kg +mrp.template_single_door_flat_line29,mrp.template_single_door_flat,[SP05006],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_single_door_flat_line30,mrp.template_single_door_flat,[SP05008],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_single_door_flat_line31,mrp.template_single_door_flat,[SP05006],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_single_door_flat_line32,mrp.template_single_door_flat,[SP05008],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.4) or 0.0,kg +mrp.template_single_door_flat_line33,mrp.template_single_door_flat,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_single_door_flat_line34,mrp.template_single_door_flat,[SP05009],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.4) or 0.0,kg +mrp.template_single_door_flat_line35,mrp.template_single_door_flat,[SP05006],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_single_door_flat_line36,mrp.template_single_door_flat,[SP05008],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_single_door_flat_line37,mrp.template_single_door_flat,[SP05006],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_single_door_flat_line38,mrp.template_single_door_flat,[SP05013],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line39,mrp.template_single_door_flat,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_single_door_flat_line40,mrp.template_single_door_flat,[SP05013],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line41,mrp.template_single_door_flat,[SP05006],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_single_door_flat_line42,mrp.template_single_door_flat,[SP05013],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_single_door_flat_line43,mrp.template_single_door_flat,[SP05006],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_single_door_flat_line44,mrp.template_single_door_flat,[SP05013],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line45,mrp.template_single_door_flat,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_single_door_flat_line46,mrp.template_single_door_flat,[SP05013],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line47,mrp.template_single_door_flat,[SP05006],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_single_door_flat_line48,mrp.template_single_door_flat,[SP05013],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_single_door_flat_line49,mrp.template_single_door_flat,[SP05026],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_single_door_flat_line50,mrp.template_single_door_flat,[SP05008],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.4) or 0.0,kg +mrp.template_single_door_flat_line51,mrp.template_single_door_flat,[SP05018],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_single_door_flat_line52,mrp.template_single_door_flat,[SP05009],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.4) or 0.0,kg +mrp.template_single_door_flat_line53,mrp.template_single_door_flat,[SP05026],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_single_door_flat_line54,mrp.template_single_door_flat,[SP05008],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_single_door_flat_line55,mrp.template_single_door_flat,[SP05026],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_single_door_flat_line56,mrp.template_single_door_flat,[SP05008],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4) or 0.0,kg +mrp.template_single_door_flat_line57,mrp.template_single_door_flat,[SP05018],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_single_door_flat_line58,mrp.template_single_door_flat,[SP05009],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4) or 0.0,kg +mrp.template_single_door_flat_line59,mrp.template_single_door_flat,[SP05026],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_single_door_flat_line60,mrp.template_single_door_flat,[SP05008],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_single_door_flat_line61,mrp.template_single_door_flat,[SP05008],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.4) or 0.0,kg +mrp.template_single_door_flat_line62,mrp.template_single_door_flat,[SP05013],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line63,mrp.template_single_door_flat,[SP05009],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.4) or 0.0,kg +mrp.template_single_door_flat_line64,mrp.template_single_door_flat,[SP05013],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line65,mrp.template_single_door_flat,[SP05008],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_single_door_flat_line66,mrp.template_single_door_flat,[SP05013],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_single_door_flat_line67,mrp.template_single_door_flat,[SP05008],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4) or 0.0,kg +mrp.template_single_door_flat_line68,mrp.template_single_door_flat,[SP05013],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line69,mrp.template_single_door_flat,[SP05009],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4) or 0.0,kg +mrp.template_single_door_flat_line70,mrp.template_single_door_flat,[SP05013],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line71,mrp.template_single_door_flat,[SP05008],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_single_door_flat_line72,mrp.template_single_door_flat,[SP05013],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_single_door_flat_line73,mrp.template_single_door_flat,[SP05013],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line74,mrp.template_single_door_flat,[SP05026],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_single_door_flat_line75,mrp.template_single_door_flat,[SP05013],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line76,mrp.template_single_door_flat,[SP05018],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_single_door_flat_line77,mrp.template_single_door_flat,[SP05013],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line78,mrp.template_single_door_flat,[SP05026],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_single_door_flat_line79,mrp.template_single_door_flat,[SP05013],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line80,mrp.template_single_door_flat,[SP05026],((14+line.W)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_single_door_flat_line81,mrp.template_single_door_flat,[SP05013],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line82,mrp.template_single_door_flat,[SP05018],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_single_door_flat_line83,mrp.template_single_door_flat,[SP05013],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.9) or 0.0,kg +mrp.template_single_door_flat_line84,mrp.template_single_door_flat,[SP05026],((14+line.W)>1219 and (14+line.W)<=1788) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_single_door_flat_line85,mrp.template_single_door_flat,[SP05002],(line.mat_insulation_choices.code == 'PU') and (line.W*line.L*line.T.value/1000000000*40*0.437*1.13-(line.cut_area*line.T.value*40*0.437*1.13/1000)) or 0.0,kg +mrp.template_single_door_flat_line86,mrp.template_single_door_flat,[SP05003],(line.mat_insulation_choices.code == 'PU') and (line.W*line.L*line.T.value/1000000000*40*0.563*1.13-(line.cut_area*line.T.value*40*0.563*1.13/1000)) or 0.0,kg +mrp.template_single_door_flat_line87,mrp.template_single_door_flat,[SP05025],(line.mat_insulation_choices.code == PU(DEN80)') and (line.W*line.L*line.T.value/1000000000*67*0.445*1.13-(line.cut_area*line.T.value*67*0.445*1.13/1000)) or 0.0,kg +mrp.template_single_door_flat_line88,mrp.template_single_door_flat,[SP05003],(line.mat_insulation_choices.code == PU(DEN80)') and (line.W*line.L*line.T.value/1000000000*67*0.556*1.13-(line.cut_area*line.T.value*67*0.556*1.13/1000)) or 0.0,kg +mrp.template_single_door_flat_line89,mrp.template_single_door_flat,[SP01329],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line90,mrp.template_single_door_flat,[SP01341],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line91,mrp.template_single_door_flat,[SP01345],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line92,mrp.template_single_door_flat,[SP01432],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line93,mrp.template_single_door_flat,[SP01330],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line94,mrp.template_single_door_flat,[SP01342],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line95,mrp.template_single_door_flat,[SP01346],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line96,mrp.template_single_door_flat,[SP01433],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line97,mrp.template_single_door_flat,[SP01329],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line98,mrp.template_single_door_flat,[SP01341],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line99,mrp.template_single_door_flat,[SP01345],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line100,mrp.template_single_door_flat,[SP01432],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line101,mrp.template_single_door_flat,[SP01329],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line102,mrp.template_single_door_flat,[SP01341],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line103,mrp.template_single_door_flat,[SP01345],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line104,mrp.template_single_door_flat,[SP01432],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line105,mrp.template_single_door_flat,[SP01329],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line106,mrp.template_single_door_flat,[SP01341],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line107,mrp.template_single_door_flat,[SP01345],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line108,mrp.template_single_door_flat,[SP01432],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line109,mrp.template_single_door_flat,[SP01329],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line110,mrp.template_single_door_flat,[SP01341],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line111,mrp.template_single_door_flat,[SP01345],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line112,mrp.template_single_door_flat,[SP01432],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line113,mrp.template_single_door_flat,[SP01329],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line114,mrp.template_single_door_flat,[SP01341],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line115,mrp.template_single_door_flat,[SP01345],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line116,mrp.template_single_door_flat,[SP01432],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line117,mrp.template_single_door_flat,[SP01329],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line118,mrp.template_single_door_flat,[SP01341],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line119,mrp.template_single_door_flat,[SP01345],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line120,mrp.template_single_door_flat,[SP01432],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line121,mrp.template_single_door_flat,[SP01329],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line122,mrp.template_single_door_flat,[SP01341],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line123,mrp.template_single_door_flat,[SP01345],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line124,mrp.template_single_door_flat,[SP01432],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line125,mrp.template_single_door_flat,[SP01329],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line126,mrp.template_single_door_flat,[SP01341],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line127,mrp.template_single_door_flat,[SP01345],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line128,mrp.template_single_door_flat,[SP01432],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line129,mrp.template_single_door_flat,[SP01330],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line130,mrp.template_single_door_flat,[SP01342],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line131,mrp.template_single_door_flat,[SP01346],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line132,mrp.template_single_door_flat,[SP01433],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line133,mrp.template_single_door_flat,[SP01330],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line134,mrp.template_single_door_flat,[SP01342],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line135,mrp.template_single_door_flat,[SP01346],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line136,mrp.template_single_door_flat,[SP01433],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line137,mrp.template_single_door_flat,[SP01330],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line138,mrp.template_single_door_flat,[SP01342],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line139,mrp.template_single_door_flat,[SP01346],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line140,mrp.template_single_door_flat,[SP01433],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line141,mrp.template_single_door_flat,[SP01330],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line142,mrp.template_single_door_flat,[SP01342],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line143,mrp.template_single_door_flat,[SP01346],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line144,mrp.template_single_door_flat,[SP01433],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line145,mrp.template_single_door_flat,[SP01329],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line146,mrp.template_single_door_flat,[SP01341],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line147,mrp.template_single_door_flat,[SP01345],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line148,mrp.template_single_door_flat,[SP01432],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line149,mrp.template_single_door_flat,[SP01329],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line150,mrp.template_single_door_flat,[SP01341],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line151,mrp.template_single_door_flat,[SP01345],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line152,mrp.template_single_door_flat,[SP01432],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (((line.L+line.L+line.W)/6000) < 0.47 and 0.5 or ((line.L+line.L+line.W)/6000) < 0.97 and 1.0 or ((line.L+line.L+line.W)/6000) < 1.47 and 1.5 or ((line.L+line.L+line.W)/6000) < 1.97 and 2) or 0.0,pcs +mrp.template_single_door_flat_line153,mrp.template_single_door_flat,[SP02229],((line.L+line.L+line.W+200)/1000) or 0.0,m +mrp.template_single_door_flat_line154,mrp.template_single_door_flat,[SP01181],((line.W) < 601 and 0.1 or (line.W) < 1201 and 0.2 or (line.W) < 1801 and 0.3) or 0.0,pcs +mrp.template_single_door_flat_line155,mrp.template_single_door_flat,[SP01135],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line156,mrp.template_single_door_flat,[SP01301],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line157,mrp.template_single_door_flat,[SP01135],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line158,mrp.template_single_door_flat,[SP01301],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line159,mrp.template_single_door_flat,[SP01135],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line160,mrp.template_single_door_flat,[SP01301],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line161,mrp.template_single_door_flat,[SP01136],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line162,mrp.template_single_door_flat,[SP01302],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line163,mrp.template_single_door_flat,[SP01136],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line164,mrp.template_single_door_flat,[SP01302],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line165,mrp.template_single_door_flat,[SP01136],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line166,mrp.template_single_door_flat,[SP01302],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line167,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line168,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line169,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line170,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line171,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line172,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line173,mrp.template_single_door_flat,[SP01135],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line174,mrp.template_single_door_flat,[SP01301],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line175,mrp.template_single_door_flat,[SP01135],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line176,mrp.template_single_door_flat,[SP01301],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line177,mrp.template_single_door_flat,[SP01135],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line178,mrp.template_single_door_flat,[SP01301],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line179,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line180,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line181,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line182,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line183,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line184,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line185,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line186,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line187,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line188,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line189,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line190,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line191,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line192,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line193,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line194,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line195,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line196,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line197,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line198,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line199,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line200,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line201,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line202,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line203,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line204,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line205,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line206,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line207,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line208,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line209,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line210,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line211,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line212,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line213,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line214,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line215,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line216,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line217,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line218,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line219,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line220,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line221,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line222,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line223,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line224,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line225,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line226,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line227,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line228,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line229,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line230,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line231,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line232,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line233,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line234,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line235,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line236,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line237,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line238,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line239,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line240,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line241,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line242,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line243,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line244,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line245,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line246,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line247,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line248,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F100)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line249,mrp.template_single_door_flat,[SP01134],(line.T.name=='42(F42-80)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line250,mrp.template_single_door_flat,[SP01300],(line.T.name=='50(F50-80)') and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and ((line.L+line.L+line.W) < 3001 and 0.5 or (line.L+line.L+line.W) < 6001 and 1.0) or 0.0,pcs +mrp.template_single_door_flat_line251,mrp.template_single_door_flat,[SP02114],(line.W <= 930) and 1.0 or 0.0,pcs +mrp.template_single_door_flat_line252,mrp.template_single_door_flat,[SP02122],(line.W > 930 and line.W <= 1085) and 1.0 or 0.0,pcs +mrp.template_single_door_flat_line253,mrp.template_single_door_flat,[SP02116],(line.W > 1085 and line.W <= 1230) and 1.0 or 0.0,pcs +mrp.template_single_door_flat_line254,mrp.template_single_door_flat,[SP02071],(line.mat_window_choices.code == 'None') and 0 or 0.0,pcs +mrp.template_single_door_flat_line255,mrp.template_single_door_flat,[SP02071],(line.mat_window_choices.code == 'Single') and 1 or 0.0,pcs +mrp.template_single_door_flat_line256,mrp.template_single_door_flat,[SP02071],(line.mat_window_choices.code == 'Double') and 2 or 0.0,pcs +mrp.template_single_door_flat_line257,mrp.template_single_door_flat,[SP03032],(1) or 0.0,pcs +mrp.template_single_door_flat_line258,mrp.template_single_door_flat,[SP02197],(1) or 0.0,set +mrp.template_single_door_flat_line259,mrp.template_single_door_flat,[SP02195],(2) or 0.0,set +mrp.template_single_door_flat_line260,mrp.template_single_door_flat,[SP02196],(2) or 0.0,set +mrp.template_single_door_flat_line261,mrp.template_single_door_flat,[SP03173-1],(line.T.name=='42(F42)') and (2) or 0.0,pcs +mrp.template_single_door_flat_line262,mrp.template_single_door_flat,[SP03173-1],(line.T.name=='50(F50)') and (2) or 0.0,pcs +mrp.template_single_door_flat_line263,mrp.template_single_door_flat,[SP03173-2],(line.T.name=='42(F100)') and (2) or 0.0,pcs +mrp.template_single_door_flat_line264,mrp.template_single_door_flat,[SP03173-2],(line.T.name=='50(F100)') and (2) or 0.0,pcs +mrp.template_single_door_flat_line265,mrp.template_single_door_flat,[SP03186],(line.T.name=='42(42-80)') and (2) or 0.0,pcs +mrp.template_single_door_flat_line266,mrp.template_single_door_flat,[SP03186],(line.T.name=='50(50-80)') and (2) or 0.0,pcs +mrp.template_single_door_flat_line267,mrp.template_single_door_flat,[SP03186],(line.T.name=='42(100-80)') and (2) or 0.0,pcs +mrp.template_single_door_flat_line268,mrp.template_single_door_flat,[SP03190],(1) or 0.0,pcs +mrp.template_single_door_flat_line269,mrp.template_single_door_flat,[SP03191],(1) or 0.0,pcs +mrp.template_single_door_flat_line270,mrp.template_single_door_flat,[SP02147],(1) or 0.0,set +mrp.template_single_door_flat_line271,mrp.template_single_door_flat,[SP02148],(1) or 0.0,pcs +mrp.template_single_door_flat_line272,mrp.template_single_door_flat,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200*2) or 0.0,roll +mrp.template_single_door_flat_line273,mrp.template_single_door_flat,[SP03006],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200*2) or 0.0,roll +mrp.template_single_door_flat_line274,mrp.template_single_door_flat,[SP03006],(line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200*2) or 0.0,roll +mrp.template_single_door_flat_line275,mrp.template_single_door_flat,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line276,mrp.template_single_door_flat,[SP03006],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line277,mrp.template_single_door_flat,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line278,mrp.template_single_door_flat,[SP03006],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line279,mrp.template_single_door_flat,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line280,mrp.template_single_door_flat,[SP03006],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line281,mrp.template_single_door_flat,[SP03006],(line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line282,mrp.template_single_door_flat,[SP03006],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200*2) or 0.0,roll +mrp.template_single_door_flat_line283,mrp.template_single_door_flat,[SP03006],(line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='GI') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line284,mrp.template_single_door_flat,[SP03006],(line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line285,mrp.template_single_door_flat,[SP03007],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line286,mrp.template_single_door_flat,[SP03006],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line287,mrp.template_single_door_flat,[SP03007],(line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line288,mrp.template_single_door_flat,[SP03006],(line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line289,mrp.template_single_door_flat,[SP03007],(line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200) or 0.0,roll +mrp.template_single_door_flat_line290,mrp.template_single_door_flat,[SP04057],(line.T.name=='42(F42)') and (line.mat_window_choices.code == 'Double') and 0.25 or 0.0,pcs +mrp.template_single_door_flat_line291,mrp.template_single_door_flat,[SP04057],(line.T.name=='42(F100)') and (line.mat_window_choices.code == 'Double') and 0.25 or 0.0,pcs +mrp.template_single_door_flat_line292,mrp.template_single_door_flat,[SP04057],(line.T.name=='42(F100)') and (line.mat_window_choices.code == 'Double') and 0.25 or 0.0,pcs +mrp.template_single_door_flat_line293,mrp.template_single_door_flat,[SP04057],(line.T.name=='42(F100)') and (line.mat_window_choices.code == 'Double') and 0.25 or 0.0,pcs +mrp.template_single_door_flat_line294,mrp.template_single_door_flat,[SP04005-2],(line.T.name=='50(F50)') and (line.mat_window_choices.code == 'Double') and 0.25 or 0.0,pcs +mrp.template_single_door_flat_line295,mrp.template_single_door_flat,[SP04005-2],(line.T.name=='50(F100)') and (line.mat_window_choices.code == 'Double') and 0.25 or 0.0,pcs +mrp.template_single_door_flat_line296,mrp.template_single_door_flat,[SP04005-2],(line.T.name=='50(F100)') and (line.mat_window_choices.code == 'Double') and 0.25 or 0.0,pcs +mrp.template_single_door_flat_line297,mrp.template_single_door_flat,[SP04081],(line.T.name=='42(F42)') and (line.mat_window_choices.code == 'Double') and 0.75 or 0.0,pcs +mrp.template_single_door_flat_line298,mrp.template_single_door_flat,[SP04081],(line.T.name=='42(F100)') and (line.mat_window_choices.code == 'Double') and 0.75 or 0.0,pcs +mrp.template_single_door_flat_line299,mrp.template_single_door_flat,[SP04081],(line.T.name=='42(42-80)') and (line.mat_window_choices.code == 'Double') and 0.75 or 0.0,pcs +mrp.template_single_door_flat_line300,mrp.template_single_door_flat,[SP04081],(line.T.name=='42(100-80)') and (line.mat_window_choices.code == 'Double') and 0.75 or 0.0,pcs +mrp.template_single_door_flat_line301,mrp.template_single_door_flat,[SP04097],(line.T.name=='50(F50)') and (line.mat_window_choices.code == 'Double') and 0.75 or 0.0,pcs +mrp.template_single_door_flat_line302,mrp.template_single_door_flat,[SP04097],(line.T.name=='50(F100)') and (line.mat_window_choices.code == 'Double') and 0.75 or 0.0,pcs +mrp.template_single_door_flat_line303,mrp.template_single_door_flat,[SP04097],(line.T.name=='50(F100)') and (line.mat_window_choices.code == 'Double') and 0.75 or 0.0,pcs +mrp.template_single_door_flat_line304,mrp.template_single_door_flat,[SP01436],(line.T.name=='42(F42)') and (line.mat_window_choices.code == 'Double') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line305,mrp.template_single_door_flat,[SP01436],(line.T.name=='42(F100)') and (line.mat_window_choices.code == 'Double') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line306,mrp.template_single_door_flat,[SP01436],(line.T.name=='42(F100)') and (line.mat_window_choices.code == 'Double') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line307,mrp.template_single_door_flat,[SP01436],(line.T.name=='42(F100)') and (line.mat_window_choices.code == 'Double') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line308,mrp.template_single_door_flat,[SP01385],(line.T.name=='50(F50)') and (line.mat_window_choices.code == 'Double') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line309,mrp.template_single_door_flat,[SP01385],(line.T.name=='50(F100)') and (line.mat_window_choices.code == 'Double') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line310,mrp.template_single_door_flat,[SP01385],(line.T.name=='50(F100)') and (line.mat_window_choices.code == 'Double') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line311,mrp.template_single_door_flat,[SP03160],(1) or 0.0,pcs +mrp.template_single_door_flat_line312,mrp.template_single_door_flat,[SP04079],(1) or 0.0,pcs +mrp.template_single_door_flat_line313,mrp.template_single_door_flat,[SP04080],(1) or 0.0,pcs +mrp.template_single_door_flat_line314,mrp.template_single_door_flat,[SP01321],(0.1) or 0.0,pcs +mrp.template_single_door_flat_line315,mrp.template_single_door_flat,[SP01035],(line.mat_window_choices.code == 'Single') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line316,mrp.template_single_door_flat,[SP01039],(line.mat_window_choices.code == 'Single') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line317,mrp.template_single_door_flat,[SP02022-3],(line.mat_window_choices.code == 'Single') and 2.5 or 0.0,m +mrp.template_single_door_flat_line318,mrp.template_single_door_flat,[SP02023-3],(line.mat_window_choices.code == 'Single') and 2.5 or 0.0,m +mrp.template_single_door_flat_line319,mrp.template_single_door_flat,[SP01163],(line.mat_window_choices.code == 'Single') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line320,mrp.template_single_door_flat,[SP01163],(line.mat_window_choices.code == 'Single') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line321,mrp.template_single_door_flat,[SP01163],(line.mat_window_choices.code == 'Single') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line322,mrp.template_single_door_flat,[SP01163],(line.mat_window_choices.code == 'Single') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line323,mrp.template_single_door_flat,[SP01095],(line.mat_window_choices.code == 'Single') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line324,mrp.template_single_door_flat,[SP01095],(line.mat_window_choices.code == 'Single') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line325,mrp.template_single_door_flat,[SP01095],(line.mat_window_choices.code == 'Single') and 0.5 or 0.0,pcs +mrp.template_single_door_flat_line326,mrp.template_single_door_flat,[SP01356],(0.06) or 0.0,pcs +mrp.template_single_door_flat_line327,mrp.template_single_door_flat,[SP04094],(15) or 0.0,pcs +mrp.template_single_door_flat_line328,mrp.template_single_door_flat,[SP03185],(15) or 0.0,pcs +mrp.template_single_door_flat_line329,mrp.template_single_door_flat,[SP03185],(15) or 0.0,pcs +mrp.template_single_door_flat_line330,mrp.template_single_door_flat,[SP03185],(15) or 0.0,pcs +mrp.template_single_door_flat_line331,mrp.template_single_door_flat,[SP03185],(15) or 0.0,pcs +mrp.template_single_door_flat_line332,mrp.template_single_door_flat,[SP03185],(15) or 0.0,pcs +mrp.template_single_door_flat_line333,mrp.template_single_door_flat,[SP03185],(15) or 0.0,pcs +mrp.template_single_door_flat_line334,mrp.template_single_door_flat,[SP03185],(15) or 0.0,pcs +mrp.template_single_door_flat_line335,mrp.template_single_door_flat,[SP02134],(0.5) or 0.0,tube +mrp.template_single_door_flat_line336,mrp.template_single_door_flat,[SP02010],(8) or 0.0,pcs +mrp.template_single_door_flat_line337,mrp.template_single_door_flat,[SP03189],(2) or 0.0,pcs diff --git a/sqp_config_bom_formula/08_double_door_unseq/.~lock.mrp.bom.csv# b/sqp_config_bom_formula/08_double_door_unseq/.~lock.mrp.bom.csv# new file mode 100755 index 0000000..af75741 --- /dev/null +++ b/sqp_config_bom_formula/08_double_door_unseq/.~lock.mrp.bom.csv# @@ -0,0 +1 @@ +Kitti U.,kittiu,kittiu,03.12.2013 17:30,file:///home/kittiu/.config/libreoffice/4; \ No newline at end of file diff --git a/sqp_config_bom_formula/08_double_door_unseq/mrp.bom.csv b/sqp_config_bom_formula/08_double_door_unseq/mrp.bom.csv new file mode 100755 index 0000000..cd2929a --- /dev/null +++ b/sqp_config_bom_formula/08_double_door_unseq/mrp.bom.csv @@ -0,0 +1,59 @@ +id,bom_id/id,product_id,product_qty_formula,product_uom +mrp.template_double_door_unseq_line1,mrp.template_double_door_unseq,[SP05006],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*4) or 0.0,kg +mrp.template_double_door_unseq_line2,mrp.template_double_door_unseq,[SP05007],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*4) or 0.0,kg +mrp.template_double_door_unseq_line3,mrp.template_double_door_unseq,[SP05008],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*4) or 0.0,kg +mrp.template_double_door_unseq_line4,mrp.template_double_door_unseq,[SP05009],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*4) or 0.0,kg +mrp.template_double_door_unseq_line5,mrp.template_double_door_unseq,[SP05018],((14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2*4) or 0.0,kg +mrp.template_double_door_unseq_line6,mrp.template_double_door_unseq,[SP05013],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*4) or 0.0,kg +mrp.template_double_door_unseq_line7,mrp.template_double_door_unseq,[SP05013],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*4) or 0.0,kg +mrp.template_double_door_unseq_line8,mrp.template_double_door_unseq,[SP05006],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_double_door_unseq_line9,mrp.template_double_door_unseq,[SP05007],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_double_door_unseq_line10,mrp.template_double_door_unseq,[SP05013],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_unseq_line11,mrp.template_double_door_unseq,[SP05013],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_unseq_line12,mrp.template_double_door_unseq,[SP05008],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_double_door_unseq_line13,mrp.template_double_door_unseq,[SP05009],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_double_door_unseq_line14,mrp.template_double_door_unseq,[SP05013],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_unseq_line15,mrp.template_double_door_unseq,[SP05013],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_unseq_line16,mrp.template_double_door_unseq,[SP05018],((14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_unseq_line17,mrp.template_double_door_unseq,[SP05013],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_unseq_line18,mrp.template_double_door_unseq,[SP05013],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_unseq_line19,mrp.template_double_door_unseq,[SP05002],(line.mat_insulation_choices.code == 'PU') and ((line.W*line.L*line.T.value/1000000000*80*0.437*1.13)*2-(line.cut_area*line.T.value*80*0.437*1.13*2/1000)) or 0.0,kg +mrp.template_double_door_unseq_line20,mrp.template_double_door_unseq,[SP05003],(line.mat_insulation_choices.code == 'PU') and ((line.W*line.L*line.T.value/1000000000*80*0.563*1.13)*2-(line.cut_area*line.T.value*80*0.563*1.13*2/1000)) or 0.0,kg +mrp.template_double_door_unseq_line21,mrp.template_double_door_unseq,[SP01328],"(line.T.name=='42(F42)') and (round(((line.W*2)+(line.L*2))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_unseq_line22,mrp.template_double_door_unseq,[SP01340],"(line.T.name=='50(F50)') and (round(((line.W*2)+(line.L*2))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_unseq_line23,mrp.template_double_door_unseq,[SP01344],"(line.T.name=='42(F100)') and (round(((line.W*2)+(line.L*2))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_unseq_line24,mrp.template_double_door_unseq,[SP01431],"(line.T.name=='50(F100)') and (round(((line.W*2)+(line.L*2))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_unseq_line25,mrp.template_double_door_unseq,[SP02183],"(round((((line.W*2)+(line.L*2))/1000),1)) or 0.0",m +mrp.template_double_door_unseq_line26,mrp.template_double_door_unseq,[SP02149],((line.L*2)/1000) or 0.0,m +mrp.template_double_door_unseq_line27,mrp.template_double_door_unseq,[SP01181],"(round(line.W/1000*6,0)) or 0.0",pcs +mrp.template_double_door_unseq_line28,mrp.template_double_door_unseq,[SP01134],"(line.T.name=='42(F42)') and (round(((line.W*2)+(line.L*2))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_unseq_line29,mrp.template_double_door_unseq,[SP01300],"(line.T.name=='50(F50)') and (round(((line.W*2)+(line.L*2))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_unseq_line30,mrp.template_double_door_unseq,[SP01134],"(line.T.name=='42(F100)') and (round(((line.W*2)+(line.L*2))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_unseq_line31,mrp.template_double_door_unseq,[SP01300],"(line.T.name=='50(F100)') and (round(((line.W*2)+(line.L*2))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_unseq_line32,mrp.template_double_door_unseq,[SP01292],"(line.T.name=='42(F42)') and (round(((line.L)*2/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_double_door_unseq_line33,mrp.template_double_door_unseq,[SP01352],"(line.T.name=='50(F50)') and (round(((line.L)*2/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_double_door_unseq_line34,mrp.template_double_door_unseq,[SP01292],"(line.T.name=='42(F100)') and (round(((line.L)*2/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_double_door_unseq_line35,mrp.template_double_door_unseq,[SP01352],"(line.T.name=='50(F100)') and (round(((line.L)*2/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_double_door_unseq_line36,mrp.template_double_door_unseq,[SP02114],(line.W <= 930) and 2.0 or 0.0,pcs +mrp.template_double_door_unseq_line37,mrp.template_double_door_unseq,[SP02122],(line.W > 930 and line.W <= 1085) and 2.0 or 0.0,pcs +mrp.template_double_door_unseq_line38,mrp.template_double_door_unseq,[SP02116],(line.W > 1085 and line.W <= 1230) and 2.0 or 0.0,pcs +mrp.template_double_door_unseq_line39,mrp.template_double_door_unseq,[SP02071],(line.mat_window_choices.code == 'None') and 0 or 0.0,pcs +mrp.template_double_door_unseq_line40,mrp.template_double_door_unseq,[SP02071],(line.mat_window_choices.code == 'Single') and 2 or 0.0,pcs +mrp.template_double_door_unseq_line41,mrp.template_double_door_unseq,[SP02071],(line.mat_window_choices.code == 'Double') and 4 or 0.0,pcs +mrp.template_double_door_unseq_line42,mrp.template_double_door_unseq,[SP03032],(2) or 0.0,pcs +mrp.template_double_door_unseq_line43,mrp.template_double_door_unseq,[SP02197],(2) or 0.0,set +mrp.template_double_door_unseq_line44,mrp.template_double_door_unseq,[SP02195],(4) or 0.0,set +mrp.template_double_door_unseq_line45,mrp.template_double_door_unseq,[SP02196],(4) or 0.0,set +mrp.template_double_door_unseq_line46,mrp.template_double_door_unseq,[SP03173],(4) or 0.0,pcs +mrp.template_double_door_unseq_line47,mrp.template_double_door_unseq,[SP03177],(2) or 0.0,pcs +mrp.template_double_door_unseq_line48,mrp.template_double_door_unseq,[SP03178],(2) or 0.0,pcs +mrp.template_double_door_unseq_line49,mrp.template_double_door_unseq,[SP02147],(2) or 0.0,set +mrp.template_double_door_unseq_line50,mrp.template_double_door_unseq,[SP02148],(2) or 0.0,pcs +mrp.template_double_door_unseq_line51,mrp.template_double_door_unseq,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200*2) or 0.0,roll +mrp.template_double_door_unseq_line52,mrp.template_double_door_unseq,[SP03006],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200*2) or 0.0,roll +mrp.template_double_door_unseq_line53,mrp.template_double_door_unseq,[SP03006],(line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200*2) or 0.0,roll +mrp.template_double_door_unseq_line54,mrp.template_double_door_unseq,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_double_door_unseq_line55,mrp.template_double_door_unseq,[SP03006],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_double_door_unseq_line56,mrp.template_double_door_unseq,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200) or 0.0,roll +mrp.template_double_door_unseq_line57,mrp.template_double_door_unseq,[SP03006],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200) or 0.0,roll +mrp.template_double_door_unseq_line58,mrp.template_double_door_unseq,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (line.L/1000/200) or 0.0,roll diff --git a/sqp_config_bom_formula/09_double_door_seq/mrp.bom.csv b/sqp_config_bom_formula/09_double_door_seq/mrp.bom.csv new file mode 100755 index 0000000..7c3101f --- /dev/null +++ b/sqp_config_bom_formula/09_double_door_seq/mrp.bom.csv @@ -0,0 +1,59 @@ +id,bom_id/id,product_id,product_qty_formula,product_uom +mrp.template_double_door_seq_line1,mrp.template_double_door_seq,[SP05006],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*4) or 0.0,kg +mrp.template_double_door_seq_line2,mrp.template_double_door_seq,[SP05007],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*4) or 0.0,kg +mrp.template_double_door_seq_line3,mrp.template_double_door_seq,[SP05008],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*4) or 0.0,kg +mrp.template_double_door_seq_line4,mrp.template_double_door_seq,[SP05009],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*4) or 0.0,kg +mrp.template_double_door_seq_line5,mrp.template_double_door_seq,[SP05018],((14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2*4) or 0.0,kg +mrp.template_double_door_seq_line6,mrp.template_double_door_seq,[SP05013],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.9*4) or 0.0,kg +mrp.template_double_door_seq_line7,mrp.template_double_door_seq,[SP05013],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*4) or 0.0,kg +mrp.template_double_door_seq_line8,mrp.template_double_door_seq,[SP05006],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_double_door_seq_line9,mrp.template_double_door_seq,[SP05007],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_double_door_seq_line10,mrp.template_double_door_seq,[SP05013],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_seq_line11,mrp.template_double_door_seq,[SP05013],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_seq_line12,mrp.template_double_door_seq,[SP05008],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_double_door_seq_line13,mrp.template_double_door_seq,[SP05009],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_double_door_seq_line14,mrp.template_double_door_seq,[SP05013],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_seq_line15,mrp.template_double_door_seq,[SP05013],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_seq_line16,mrp.template_double_door_seq,[SP05018],((14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_seq_line17,mrp.template_double_door_seq,[SP05013],((14+line.W/2)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_seq_line18,mrp.template_double_door_seq,[SP05013],((14+line.W/2)>914 and (14+line.W/2)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_double_door_seq_line19,mrp.template_double_door_seq,[SP05002],(line.mat_insulation_choices.code == 'PU') and ((line.W*line.L*line.T.value/1000000000*80*0.437*1.13)*2-(line.cut_area*line.T.value*80*0.437*1.13*2/1000)) or 0.0,kg +mrp.template_double_door_seq_line20,mrp.template_double_door_seq,[SP05003],(line.mat_insulation_choices.code == 'PU') and ((line.W*line.L*line.T.value/1000000000*80*0.563*1.13)*2-(line.cut_area*line.T.value*80*0.563*1.13*2/1000)) or 0.0,kg +mrp.template_double_door_seq_line21,mrp.template_double_door_seq,[SP01328],"(line.T.name=='42(F42)') and (round(((line.W*2)+(line.L*2))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_seq_line22,mrp.template_double_door_seq,[SP01340],"(line.T.name=='50(F50)') and (round(((line.W*2)+(line.L*2))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_seq_line23,mrp.template_double_door_seq,[SP01344],"(line.T.name=='42(F100)') and (round(((line.W*2)+(line.L*2))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_seq_line24,mrp.template_double_door_seq,[SP01431],"(line.T.name=='50(F100)') and (round(((line.W*2)+(line.L*2))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_seq_line25,mrp.template_double_door_seq,[SP02183],"(round((((line.W*2)+(line.L*2))/1000),1)) or 0.0",m +mrp.template_double_door_seq_line26,mrp.template_double_door_seq,[SP02149],(line.L/1000) or 0.0,m +mrp.template_double_door_seq_line27,mrp.template_double_door_seq,[SP01181],"(round(line.W*2/1000/6,0)) or 0.0",pcs +mrp.template_double_door_seq_line28,mrp.template_double_door_seq,[SP01134],"(line.T.name=='42(F42)') and (round(((line.W*2)+(line.L*3))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_seq_line29,mrp.template_double_door_seq,[SP01300],"(line.T.name=='50(F50)') and (round(((line.W*2)+(line.L*3))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_seq_line30,mrp.template_double_door_seq,[SP01134],"(line.T.name=='42(F100)') and (round(((line.W*2)+(line.L*3))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_seq_line31,mrp.template_double_door_seq,[SP01300],"(line.T.name=='50(F100)') and (round(((line.W*2)+(line.L*3))/1000/6+0.5,0)) or 0.0",pcs +mrp.template_double_door_seq_line32,mrp.template_double_door_seq,[SP01288],"(line.T.name=='42(F42)') and (round((line.L/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_double_door_seq_line33,mrp.template_double_door_seq,[SP01348],"(line.T.name=='50(F50)') and (round((line.L/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_double_door_seq_line34,mrp.template_double_door_seq,[SP01288],"(line.T.name=='42(F100)') and (round((line.L/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_double_door_seq_line35,mrp.template_double_door_seq,[SP01348],"(line.T.name=='50(F100)') and (round((line.L/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_double_door_seq_line36,mrp.template_double_door_seq,[SP02114],(line.W <= 930) and 2.0 or 0.0,pcs +mrp.template_double_door_seq_line37,mrp.template_double_door_seq,[SP02122],(line.W > 930 and line.W <= 1085) and 2.0 or 0.0,pcs +mrp.template_double_door_seq_line38,mrp.template_double_door_seq,[SP02116],(line.W > 1085 and line.W <= 1230) and 2.0 or 0.0,pcs +mrp.template_double_door_seq_line39,mrp.template_double_door_seq,[SP02071],(line.mat_window_choices.code == 'None') and 0 or 0.0,pcs +mrp.template_double_door_seq_line40,mrp.template_double_door_seq,[SP02071],(line.mat_window_choices.code == 'Single') and 2 or 0.0,pcs +mrp.template_double_door_seq_line41,mrp.template_double_door_seq,[SP02071],(line.mat_window_choices.code == 'Double') and 4 or 0.0,pcs +mrp.template_double_door_seq_line42,mrp.template_double_door_seq,[SP03032],(2) or 0.0,pcs +mrp.template_double_door_seq_line43,mrp.template_double_door_seq,[SP02197],(2) or 0.0,set +mrp.template_double_door_seq_line44,mrp.template_double_door_seq,[SP02195],(4) or 0.0,set +mrp.template_double_door_seq_line45,mrp.template_double_door_seq,[SP02196],(4) or 0.0,set +mrp.template_double_door_seq_line46,mrp.template_double_door_seq,[SP03173],(4) or 0.0,pcs +mrp.template_double_door_seq_line47,mrp.template_double_door_seq,[SP03177],(2) or 0.0,pcs +mrp.template_double_door_seq_line48,mrp.template_double_door_seq,[SP03178],(2) or 0.0,pcs +mrp.template_double_door_seq_line49,mrp.template_double_door_seq,[SP02147],(2) or 0.0,set +mrp.template_double_door_seq_line50,mrp.template_double_door_seq,[SP02148],(2) or 0.0,pcs +mrp.template_double_door_seq_line51,mrp.template_double_door_seq,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200*2) or 0.0,roll +mrp.template_double_door_seq_line52,mrp.template_double_door_seq,[SP03006],(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200*2) or 0.0,roll +mrp.template_double_door_seq_line53,mrp.template_double_door_seq,[SP03006],(line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200*2) or 0.0,roll +mrp.template_double_door_seq_line54,mrp.template_double_door_seq,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_double_door_seq_line55,mrp.template_double_door_seq,[SP03006],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200) or 0.0,roll +mrp.template_double_door_seq_line56,mrp.template_double_door_seq,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200) or 0.0,roll +mrp.template_double_door_seq_line57,mrp.template_double_door_seq,[SP03006],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200) or 0.0,roll +mrp.template_double_door_seq_line58,mrp.template_double_door_seq,[SP03007],(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='GI') and (line.L/1000/200) or 0.0,roll diff --git a/sqp_config_bom_formula/10_single_sliding_door/mrp.bom.csv b/sqp_config_bom_formula/10_single_sliding_door/mrp.bom.csv new file mode 100755 index 0000000..44c9147 --- /dev/null +++ b/sqp_config_bom_formula/10_single_sliding_door/mrp.bom.csv @@ -0,0 +1,31 @@ +"id","bom_id/id","product_id","product_qty_formula","product_uom" +"mrp.template_single_sliding_door_line1","mrp.template_single_sliding_door","[SP05007]","((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0","kg" +"mrp.template_single_sliding_door_line2","mrp.template_single_sliding_door","[SP05007]","((14+line.W)>1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*4) or 0.0","kg" +"mrp.template_single_sliding_door_line3","mrp.template_single_sliding_door","[SP05009]","((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*2) or 0.0","kg" +"mrp.template_single_sliding_door_line4","mrp.template_single_sliding_door","[SP05009]","((14+line.W)>1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*4) or 0.0","kg" +"mrp.template_single_sliding_door_line5","mrp.template_single_sliding_door","[SP05018]","((14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2*2) or 0.0","kg" +"mrp.template_single_sliding_door_line6","mrp.template_single_sliding_door","[SP05018]","((14+line.W)>1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2*4) or 0.0","kg" +"mrp.template_single_sliding_door_line7","mrp.template_single_sliding_door","[SP05013]","((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*2) or 0.0","kg" +"mrp.template_single_sliding_door_line8","mrp.template_single_sliding_door","[SP05013]","((14+line.W)>1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*4) or 0.0","kg" +"mrp.template_single_sliding_door_line9","mrp.template_single_sliding_door","[SP05002]","(line.mat_insulation_choices.code == 'PU') and ((line.W*line.L*line.T.value/1000000000*80*0.437*1.13)-(line.cut_area*line.T.value*80*0.437*1.13/1000)) or 0.0","kg" +"mrp.template_single_sliding_door_line10","mrp.template_single_sliding_door","[SP05003]","(line.mat_insulation_choices.code == 'PU') and ((line.W*line.L*line.T.value/1000000000*80*0.563*1.13)-(line.cut_area*line.T.value*80*0.563*1.13/1000)) or 0.0","kg" +"mrp.template_single_sliding_door_line11","mrp.template_single_sliding_door","[SP01006]","(round((line.W+(line.L*2)/1000/6)+0.5,0)) or 0.0","pcs" +"mrp.template_single_sliding_door_line12","mrp.template_single_sliding_door","[SP01102]","(round((line.W+(line.L*2)/1000/6)+0.5,0)) or 0.0","pcs" +"mrp.template_single_sliding_door_line13","mrp.template_single_sliding_door","[SP02071]","(line.mat_window_choices.code == 'None') and 0 or 0.0","pcs" +"mrp.template_single_sliding_door_line14","mrp.template_single_sliding_door","[SP02071]","(line.mat_window_choices.code == 'Single') and 1 or 0.0","pcs" +"mrp.template_single_sliding_door_line15","mrp.template_single_sliding_door","[SP02071]","(line.mat_window_choices.code == 'Double') and 2 or 0.0","pcs" +"mrp.template_single_sliding_door_line16","mrp.template_single_sliding_door","[SP01019]","(round(((line.L*2)/1000/6)+0.5,0)) or 0.0","pcs" +"mrp.template_single_sliding_door_line17","mrp.template_single_sliding_door","[SP01023]","(round((line.W/1000/6)+0.5,0)) or 0.0","pcs" +"mrp.template_single_sliding_door_line18","mrp.template_single_sliding_door","[SP01027]","(round((line.W/1000/6)+0.5,0)) or 0.0","pcs" +"mrp.template_single_sliding_door_line19","mrp.template_single_sliding_door","[SP01059]","(round(((line.W*2)+2/100/6)+0.5,0)) or 0.0","pcs" +"mrp.template_single_sliding_door_line20","mrp.template_single_sliding_door","[SP01277]","(round((line.L/1000/6)+0.5,0)) or 0.0","pcs" +"mrp.template_single_sliding_door_line21","mrp.template_single_sliding_door","[SP01011]","(round(((line.W*2)+2/100/6)+0.5,0)) or 0.0","pcs" +"mrp.template_single_sliding_door_line22","mrp.template_single_sliding_door","[SP01155]","(round(((line.W*2)+2/100/6)+0.5,0)) or 0.0","pcs" +"mrp.template_single_sliding_door_line23","mrp.template_single_sliding_door","[SP02034]","(2) or 0.0","set" +"mrp.template_single_sliding_door_line24","mrp.template_single_sliding_door","[SP02083]","(1) or 0.0","pcs" +"mrp.template_single_sliding_door_line25","mrp.template_single_sliding_door","[SP02107]","(1) or 0.0","pcs" +"mrp.template_single_sliding_door_line26","mrp.template_single_sliding_door","[SP03045]","(2) or 0.0","pcs" +"mrp.template_single_sliding_door_line27","mrp.template_single_sliding_door","[SP03032]","(1) or 0.0","pcs" +"mrp.template_single_sliding_door_line28","mrp.template_single_sliding_door","[SP03007]","(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200*2) or 0.0","roll" +"mrp.template_single_sliding_door_line29","mrp.template_single_sliding_door","[SP03006]","(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200*2) or 0.0","roll" +"mrp.template_single_sliding_door_line30","mrp.template_single_sliding_door","[SP03006]","(line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200*2) or 0.0","roll" diff --git a/sqp_config_bom_formula/11_swing_door_cold/mrp.bom.csv b/sqp_config_bom_formula/11_swing_door_cold/mrp.bom.csv new file mode 100755 index 0000000..ac77e94 --- /dev/null +++ b/sqp_config_bom_formula/11_swing_door_cold/mrp.bom.csv @@ -0,0 +1,28 @@ +"id","bom_id/id","product_id","product_qty_formula","product_uom" +"mrp.template_swing_door_cold_line1","mrp.template_swing_door_cold","[SP05007]","((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and ((1219*line.L/1000000*3.75*2)) or 0.0","kg" +"mrp.template_swing_door_cold_line2","mrp.template_swing_door_cold","[SP05007]","((14+line.W)>1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and ((1219*line.L/1000000*3.75*4)) or 0.0","kg" +"mrp.template_swing_door_cold_line3","mrp.template_swing_door_cold","[SP05009]","((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and ((1219*line.L/1000000*3.4*2)) or 0.0","kg" +"mrp.template_swing_door_cold_line4","mrp.template_swing_door_cold","[SP05009]","((14+line.W)>1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and ((1219*line.L/1000000*3.4*4)) or 0.0","kg" +"mrp.template_swing_door_cold_line5","mrp.template_swing_door_cold","[SP05018]","((14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and ((1219*line.L/1000000*3.2*2)) or 0.0","kg" +"mrp.template_swing_door_cold_line6","mrp.template_swing_door_cold","[SP05018]","((14+line.W)>1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and ((1219*line.L/1000000*3.2*4)) or 0.0","kg" +"mrp.template_swing_door_cold_line7","mrp.template_swing_door_cold","[SP05013]","((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and ((1219*line.L/1000000*3.9*2)) or 0.0","kg" +"mrp.template_swing_door_cold_line8","mrp.template_swing_door_cold","[SP05013]","((14+line.W)>1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and ((1219*line.L/1000000*3.9*4)) or 0.0","kg" +"mrp.template_swing_door_cold_line9","mrp.template_swing_door_cold","[SP05002]","(line.mat_insulation_choices.code == 'PU') and ((line.W*line.L*line.T.value/1000000000*80*0.437*1.13)-(line.cut_area*line.T.value*80*0.437*1.13/1000)) or 0.0","kg" +"mrp.template_swing_door_cold_line10","mrp.template_swing_door_cold","[SP05003]","(line.mat_insulation_choices.code == 'PU') and ((line.W*line.L*line.T.value/1000000000*80*0.563*1.13)-(line.cut_area*line.T.value*80*0.563*1.13/1000)) or 0.0","kg" +"mrp.template_swing_door_cold_line11","mrp.template_swing_door_cold","[SP04009]","(round(((line.W+(line.L*2))/1000)/3+0.5,0)) or 0.0","pcs" +"mrp.template_swing_door_cold_line12","mrp.template_swing_door_cold","[SP04007]","(round((line.W/1000)/3+0.5,0)) or 0.0","pcs" +"mrp.template_swing_door_cold_line13","mrp.template_swing_door_cold","[SP01011]","(round(((line.W+(line.L*2))/1000/6)+0.5,0)) or 0.0","pcs" +"mrp.template_swing_door_cold_line14","mrp.template_swing_door_cold","[SP01211]","(round(((line.W+(line.L*2))/1000/6)+0.5,0)) or 0.0","pcs" +"mrp.template_swing_door_cold_line15","mrp.template_swing_door_cold","[SP01055]","(round(((line.W+(line.L*2))/1000/6)+0.5,0)) or 0.0","pcs" +"mrp.template_swing_door_cold_line16","mrp.template_swing_door_cold","[SP02040]","(10) or 0.0","pcs" +"mrp.template_swing_door_cold_line17","mrp.template_swing_door_cold","[SP02072]","(10) or 0.0","pcs" +"mrp.template_swing_door_cold_line18","mrp.template_swing_door_cold","[SP02026]","(((line.W+(line.L*2))/1000)) or 0.0","m" +"mrp.template_swing_door_cold_line19","mrp.template_swing_door_cold","[SP02028]","(1) or 0.0","set" +"mrp.template_swing_door_cold_line20","mrp.template_swing_door_cold","[SP02029]","(2) or 0.0","set" +"mrp.template_swing_door_cold_line21","mrp.template_swing_door_cold","[SP03025]","(((line.W+(line.L*2))/1000)) or 0.0","m" +"mrp.template_swing_door_cold_line22","mrp.template_swing_door_cold","[SP03030]","(line.W/100) or 0.0","m" +"mrp.template_swing_door_cold_line23","mrp.template_swing_door_cold","[SP03149]","(2) or 0.0","pcs" +"mrp.template_swing_door_cold_line24","mrp.template_swing_door_cold","[SP03032]","(1) or 0.0","pcs" +"mrp.template_swing_door_cold_line25","mrp.template_swing_door_cold","[SP03007]","(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200*2) or 0.0","roll" +"mrp.template_swing_door_cold_line26","mrp.template_swing_door_cold","[SP03006]","(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200*2) or 0.0","roll" +"mrp.template_swing_door_cold_line27","mrp.template_swing_door_cold","[SP03006]","(line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200*2) or 0.0","roll" diff --git a/sqp_config_bom_formula/12_single_door_cold/mrp.bom.csv b/sqp_config_bom_formula/12_single_door_cold/mrp.bom.csv new file mode 100755 index 0000000..76fb97e --- /dev/null +++ b/sqp_config_bom_formula/12_single_door_cold/mrp.bom.csv @@ -0,0 +1,47 @@ +"id","bom_id/id","product_id","product_qty_formula","product_uom" +"mrp.template_sliding_door_cold_line1","mrp.template_sliding_door_cold","[SP05007]","((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and ((1219*line.L/1000000*3.75*2)) or 0.0","kg" +"mrp.template_sliding_door_cold_line2","mrp.template_sliding_door_cold","[SP05007]","((14+line.W)>1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and ((1219*line.L/1000000*3.75*2)) or 0.0","kg" +"mrp.template_sliding_door_cold_line3","mrp.template_sliding_door_cold","[SP05009]","((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and ((1219*line.L/1000000*3.4*2)) or 0.0","kg" +"mrp.template_sliding_door_cold_line4","mrp.template_sliding_door_cold","[SP05009]","((14+line.W)>1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and ((1219*line.L/1000000*3.4*4)) or 0.0","kg" +"mrp.template_sliding_door_cold_line5","mrp.template_sliding_door_cold","[SP05018]","((14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and ((1219*line.L/1000000*3.2*2)) or 0.0","kg" +"mrp.template_sliding_door_cold_line6","mrp.template_sliding_door_cold","[SP05018]","((14+line.W)>1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and ((1219*line.L/1000000*3.2*4)) or 0.0","kg" +"mrp.template_sliding_door_cold_line7","mrp.template_sliding_door_cold","[SP05013]","((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and ((1219*line.L/1000000*3.9*2)) or 0.0","kg" +"mrp.template_sliding_door_cold_line8","mrp.template_sliding_door_cold","[SP05013]","((14+line.W)>1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and ((1219*line.L/1000000*3.9*4)) or 0.0","kg" +"mrp.template_sliding_door_cold_line9","mrp.template_sliding_door_cold","[SP05002]","(line.mat_insulation_choices.code == 'PU') and ((line.W*line.L*line.T.value/1000000000*80*0.437*1.13)-(line.cut_area*line.T.value*80*0.437*1.13/1000)) or 0.0","kg" +"mrp.template_sliding_door_cold_line10","mrp.template_sliding_door_cold","[SP05003]","(line.mat_insulation_choices.code == 'PU') and ((line.W*line.L*line.T.value/1000000000*80*0.563*1.13)-(line.cut_area*line.T.value*80*0.563*1.13/1000)) or 0.0","kg" +"mrp.template_sliding_door_cold_line11","mrp.template_sliding_door_cold","[SP04007]","(line.T.name=='100') and (round(((line.W+line.L)*2/1000)/3+0.5,0)) or 0.0","pcs" +"mrp.template_sliding_door_cold_line12","mrp.template_sliding_door_cold","[SP04006]","(line.T.name=='75') and (round(((line.W+line.L)*2/1000)/3+0.5,0)) or 0.0","pcs" +"mrp.template_sliding_door_cold_line13","mrp.template_sliding_door_cold","[SP01011]","(round(((line.W+(line.L*2))/1000)/6+0.5,0)) or 0.0","pcs" +"mrp.template_sliding_door_cold_line14","mrp.template_sliding_door_cold","[SP01067]","(round(((line.W+(line.L*2))/1000)/6+0.5,0)) or 0.0","pcs" +"mrp.template_sliding_door_cold_line15","mrp.template_sliding_door_cold","[SP01167]","(round((((line.W*2)+200)/1000)/6+0.5,0)) or 0.0","pcs" +"mrp.template_sliding_door_cold_line16","mrp.template_sliding_door_cold","[SP01227]","(round((((line.W*2)+200)/1000)/6+0.5,0)) or 0.0","pcs" +"mrp.template_sliding_door_cold_line17","mrp.template_sliding_door_cold","[SP01244]","(round((((line.W*2)+200)/1000)/6+0.5,0)) or 0.0","pcs" +"mrp.template_sliding_door_cold_line18","mrp.template_sliding_door_cold","[SP02026]","(((line.W+(line.L*2))/1000)) or 0.0","m" +"mrp.template_sliding_door_cold_line19","mrp.template_sliding_door_cold","[SP02031]","(6) or 0.0","pcs" +"mrp.template_sliding_door_cold_line20","mrp.template_sliding_door_cold","[SP02033]","(1) or 0.0","set" +"mrp.template_sliding_door_cold_line21","mrp.template_sliding_door_cold","[SP02034]","(2) or 0.0","set" +"mrp.template_sliding_door_cold_line22","mrp.template_sliding_door_cold","[SP02035]","(1) or 0.0","set" +"mrp.template_sliding_door_cold_line23","mrp.template_sliding_door_cold","[SP02036]","(1) or 0.0","set" +"mrp.template_sliding_door_cold_line24","mrp.template_sliding_door_cold","[SP02040]","(10) or 0.0","pcs" +"mrp.template_sliding_door_cold_line25","mrp.template_sliding_door_cold","[SP02072]","(10) or 0.0","pcs" +"mrp.template_sliding_door_cold_line26","mrp.template_sliding_door_cold","[SP02041]","(1) or 0.0","pcs" +"mrp.template_sliding_door_cold_line27","mrp.template_sliding_door_cold","[SP02014]","(2) or 0.0","pcs" +"mrp.template_sliding_door_cold_line28","mrp.template_sliding_door_cold","[SP02044]","(6) or 0.0","pcs" +"mrp.template_sliding_door_cold_line29","mrp.template_sliding_door_cold","[SP02050]","(4) or 0.0","pcs" +"mrp.template_sliding_door_cold_line30","mrp.template_sliding_door_cold","[SP02093]","(1) or 0.0","pcs" +"mrp.template_sliding_door_cold_line31","mrp.template_sliding_door_cold","[SP02126]","(1) or 0.0","pcs" +"mrp.template_sliding_door_cold_line32","mrp.template_sliding_door_cold","[SP03005]","(1) or 0.0","pcs" +"mrp.template_sliding_door_cold_line33","mrp.template_sliding_door_cold","[SP03016]","(1) or 0.0","pcs" +"mrp.template_sliding_door_cold_line34","mrp.template_sliding_door_cold","[SP03025]","(((line.W+(line.L*2))/1000)) or 0.0","m" +"mrp.template_sliding_door_cold_line35","mrp.template_sliding_door_cold","[SP03026]","(1) or 0.0","pcs" +"mrp.template_sliding_door_cold_line36","mrp.template_sliding_door_cold","[SP03027]","(1) or 0.0","pcs" +"mrp.template_sliding_door_cold_line37","mrp.template_sliding_door_cold","[SP03028]","(1) or 0.0","pcs" +"mrp.template_sliding_door_cold_line38","mrp.template_sliding_door_cold","[SP03030]","(line.W/1000) or 0.0","m" +"mrp.template_sliding_door_cold_line39","mrp.template_sliding_door_cold","[SP03033]","(1) or 0.0","pcs" +"mrp.template_sliding_door_cold_line40","mrp.template_sliding_door_cold","[SP03046]","(1) or 0.0","pcs" +"mrp.template_sliding_door_cold_line41","mrp.template_sliding_door_cold","[SP03149]","(2) or 0.0","pcs" +"mrp.template_sliding_door_cold_line42","mrp.template_sliding_door_cold","[SP04022]","(1) or 0.0","pcs" +"mrp.template_sliding_door_cold_line43","mrp.template_sliding_door_cold","[SP02227]","(1) or 0.0","pcs" +"mrp.template_sliding_door_cold_line44","mrp.template_sliding_door_cold","[SP03007]","(line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (line.L/1000/200*2) or 0.0","roll" +"mrp.template_sliding_door_cold_line45","mrp.template_sliding_door_cold","[SP03006]","(line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (line.L/1000/200*2) or 0.0","roll" +"mrp.template_sliding_door_cold_line46","mrp.template_sliding_door_cold","[SP03006]","(line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (line.L/1000/200*2) or 0.0","roll" diff --git a/sqp_config_bom_formula/13_window/mrp.bom.csv b/sqp_config_bom_formula/13_window/mrp.bom.csv new file mode 100755 index 0000000..35e0038 --- /dev/null +++ b/sqp_config_bom_formula/13_window/mrp.bom.csv @@ -0,0 +1,12 @@ +id,bom_id/id,product_id,product_qty_formula,product_uom +mrp.template_window_line1,mrp.template_window,[SP02169],"(line.W==1160) and (line.L==900) and (line.T.value in [42,50]) and (line.mat_window_choices.code=='Single') and (1) or 0.0",pcs +mrp.template_window_line2,mrp.template_window,[SP01007],"(line.T.value in [42]) and (line.mat_window_choices.code=='Single') and (round(((line.W+line.L)*2/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_window_line3,mrp.template_window,[SP01095],(line.T.value in [50]) and (line.mat_window_choices.code=='Single') and () or 0.0,pcs +mrp.template_window_line4,mrp.template_window,[SP01035],"(line.T.value in [42,50]) and (line.mat_window_choices.code=='Single') and (round(((line.W+line.L)*2/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_window_line5,mrp.template_window,[SP01039],"(line.T.value in [42,50]) and (line.mat_window_choices.code=='Single') and (round(((line.W+line.L)*2/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_window_line6,mrp.template_window,[SP02022-2],"(line.T.value in [42,50]) and (line.mat_window_choices.code=='Single') and ((line.W+line.L)*2/1000) or 0.0",m +mrp.template_window_line7,mrp.template_window,[SP02023-2],"(line.T.value in [42,50]) and (line.mat_window_choices.code=='Single') and ((line.W+line.L)*2/1000) or 0.0",m +mrp.template_window_line8,mrp.template_window,[SP02169],"(line.W==1160) and (line.L==900) and (line.T.value in [42,50,100]) and (line.mat_window_choices.code=='Double') and (2) or 0.0",pcs +mrp.template_window_line9,mrp.template_window,[SP01436],"(line.T.value in [42]) and (line.mat_window_choices.code=='Double') and (round(((line.W+line.L)*2/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_window_line10,mrp.template_window,[SP01385],"(line.T.value in [50]) and (line.mat_window_choices.code=='Double') and (round(((line.W+line.L)*2/1000/6)+0.5,0)) or 0.0",pcs +mrp.template_window_line11,mrp.template_window,[SP01440],"(line.T.value in [100]) and (line.mat_window_choices.code=='Double') and (round(((line.W+line.L)*2/1000/6)+0.5,0)) or 0.0",pcs diff --git a/sqp_config_bom_formula/14_sinko_ab/mrp.bom.csv b/sqp_config_bom_formula/14_sinko_ab/mrp.bom.csv new file mode 100755 index 0000000..af76fe0 --- /dev/null +++ b/sqp_config_bom_formula/14_sinko_ab/mrp.bom.csv @@ -0,0 +1,391 @@ +id,bom_id/id,product_id,product_qty_formula,product_uom +mrp.template_sinko_ab_line1,mrp.template_sinko_ab,[SP05006],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_sinko_ab_line2,mrp.template_sinko_ab,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_sinko_ab_line3,mrp.template_sinko_ab,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_sinko_ab_line4,mrp.template_sinko_ab,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_sinko_ab_line5,mrp.template_sinko_ab,[SP05007],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_sinko_ab_line6,mrp.template_sinko_ab,[SP05006],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75*2) or 0.0,kg +mrp.template_sinko_ab_line7,mrp.template_sinko_ab,[SP05008],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (457*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_sinko_ab_line8,mrp.template_sinko_ab,[SP05009],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (610*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_sinko_ab_line9,mrp.template_sinko_ab,[SP05008],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_sinko_ab_line10,mrp.template_sinko_ab,[SP05009],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_sinko_ab_line11,mrp.template_sinko_ab,[SP05008],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (1219*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_sinko_ab_line12,mrp.template_sinko_ab,[SP05009],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='AW') and (line.mat_outside_skin_choices.code=='AW') and (914*line.L/1000000*3.4*2) or 0.0,kg +mrp.template_sinko_ab_line13,mrp.template_sinko_ab,[SP05006],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line14,mrp.template_sinko_ab,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line15,mrp.template_sinko_ab,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line16,mrp.template_sinko_ab,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line17,mrp.template_sinko_ab,[SP05007],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line18,mrp.template_sinko_ab,[SP05006],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line19,mrp.template_sinko_ab,[SP05004],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.2) or 0.0,kg +mrp.template_sinko_ab_line20,mrp.template_sinko_ab,[SP05012],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*2.53) or 0.0,kg +mrp.template_sinko_ab_line21,mrp.template_sinko_ab,[SP05004],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_sinko_ab_line22,mrp.template_sinko_ab,[SP05012],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*2.53) or 0.0,kg +mrp.template_sinko_ab_line23,mrp.template_sinko_ab,[SP05004],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_sinko_ab_line24,mrp.template_sinko_ab,[SP05012],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*2.53) or 0.0,kg +mrp.template_sinko_ab_line25,mrp.template_sinko_ab,[SP05013],((14+line.W)<=610) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9) or 0.0,kg +mrp.template_sinko_ab_line26,mrp.template_sinko_ab,[SP05013],((14+line.W)>610 and (14+line.W)<=2384) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_sinko_ab_line27,mrp.template_sinko_ab,[SP05006],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line28,mrp.template_sinko_ab,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line29,mrp.template_sinko_ab,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line30,mrp.template_sinko_ab,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line31,mrp.template_sinko_ab,[SP05007],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line32,mrp.template_sinko_ab,[SP05006],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line33,mrp.template_sinko_ab,[SP05013],((14+line.W)<=610) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.9) or 0.0,kg +mrp.template_sinko_ab_line34,mrp.template_sinko_ab,[SP05013],((14+line.W)>610 and (14+line.W)<=2384) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_sinko_ab_line35,mrp.template_sinko_ab,[SP05006],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line36,mrp.template_sinko_ab,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line37,mrp.template_sinko_ab,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line38,mrp.template_sinko_ab,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line39,mrp.template_sinko_ab,[SP05007],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line40,mrp.template_sinko_ab,[SP05006],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line41,mrp.template_sinko_ab,[SP05013],((14+line.W)<=610) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9) or 0.0,kg +mrp.template_sinko_ab_line42,mrp.template_sinko_ab,[SP05013],((14+line.W)>610 and (14+line.W)<=2384) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_sinko_ab_line43,mrp.template_sinko_ab,[SP05006],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line44,mrp.template_sinko_ab,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line45,mrp.template_sinko_ab,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line46,mrp.template_sinko_ab,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line47,mrp.template_sinko_ab,[SP05007],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line48,mrp.template_sinko_ab,[SP05006],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line49,mrp.template_sinko_ab,[SP05004],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.2) or 0.0,kg +mrp.template_sinko_ab_line50,mrp.template_sinko_ab,[SP05012],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*2.53) or 0.0,kg +mrp.template_sinko_ab_line51,mrp.template_sinko_ab,[SP05004],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_sinko_ab_line52,mrp.template_sinko_ab,[SP05012],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*2.53) or 0.0,kg +mrp.template_sinko_ab_line53,mrp.template_sinko_ab,[SP05004],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_sinko_ab_line54,mrp.template_sinko_ab,[SP05012],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*2.53) or 0.0,kg +mrp.template_sinko_ab_line55,mrp.template_sinko_ab,[SP05004],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_sinko_ab_line56,mrp.template_sinko_ab,[SP05012],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*2.53*2) or 0.0,kg +mrp.template_sinko_ab_line57,mrp.template_sinko_ab,[SP05004],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_sinko_ab_line58,mrp.template_sinko_ab,[SP05012],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*2.53*2) or 0.0,kg +mrp.template_sinko_ab_line59,mrp.template_sinko_ab,[SP05004],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2*2) or 0.0,kg +mrp.template_sinko_ab_line60,mrp.template_sinko_ab,[SP05012],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*2.53*2) or 0.0,kg +mrp.template_sinko_ab_line61,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='ALUZ') and (457*line.L/1000000*3.56*2) or 0.0,kg +mrp.template_sinko_ab_line62,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='ALUZ') and (610*line.L/1000000*3.56*2) or 0.0,kg +mrp.template_sinko_ab_line63,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*3.56*2) or 0.0,kg +mrp.template_sinko_ab_line64,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>914 and (14+line.W)<=1331) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*3.56*3) or 0.0,kg +mrp.template_sinko_ab_line65,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>1331 and (14+line.W)<=1828) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*3.56*4) or 0.0,kg +mrp.template_sinko_ab_line66,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.56) or 0.0,kg +mrp.template_sinko_ab_line67,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>457 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.56) or 0.0,kg +mrp.template_sinko_ab_line68,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>914 and (14+line.W)<=1774) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.56*2) or 0.0,kg +mrp.template_sinko_ab_line69,mrp.template_sinko_ab,[SP05004],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='GI') and (457*line.L/1000000*3.2) or 0.0,kg +mrp.template_sinko_ab_line70,mrp.template_sinko_ab,[SP05012],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='GI') and (610*line.L/1000000*2.53) or 0.0,kg +mrp.template_sinko_ab_line71,mrp.template_sinko_ab,[SP05004],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_sinko_ab_line72,mrp.template_sinko_ab,[SP05012],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*2.53) or 0.0,kg +mrp.template_sinko_ab_line73,mrp.template_sinko_ab,[SP05004],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='GI') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_sinko_ab_line74,mrp.template_sinko_ab,[SP05012],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='GI') and (914*line.L/1000000*2.53) or 0.0,kg +mrp.template_sinko_ab_line75,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='ALUZ') and (457*line.L/1000000*3.56) or 0.0,kg +mrp.template_sinko_ab_line76,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>457 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*3.56) or 0.0,kg +mrp.template_sinko_ab_line77,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>914 and (14+line.W)<=1774) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*3.56*2) or 0.0,kg +mrp.template_sinko_ab_line78,mrp.template_sinko_ab,[SP05004],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='ALUZ') and (457*line.L/1000000*3.2) or 0.0,kg +mrp.template_sinko_ab_line79,mrp.template_sinko_ab,[SP05012],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='ALUZ') and (610*line.L/1000000*2.53) or 0.0,kg +mrp.template_sinko_ab_line80,mrp.template_sinko_ab,[SP05004],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*3.2) or 0.0,kg +mrp.template_sinko_ab_line81,mrp.template_sinko_ab,[SP05012],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='ALUZ') and (1219*line.L/1000000*2.53) or 0.0,kg +mrp.template_sinko_ab_line82,mrp.template_sinko_ab,[SP05004],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='ALUZ') and (1219*line.L/1000000*3.2) or 0.0,kg +mrp.template_sinko_ab_line83,mrp.template_sinko_ab,[SP05012],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='GI') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*2.53) or 0.0,kg +mrp.template_sinko_ab_line84,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.56) or 0.0,kg +mrp.template_sinko_ab_line85,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>457 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.56) or 0.0,kg +mrp.template_sinko_ab_line86,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>914 and (14+line.W)<=1774) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.56*2) or 0.0,kg +mrp.template_sinko_ab_line87,mrp.template_sinko_ab,[SP05006],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='OW') and (457*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line88,mrp.template_sinko_ab,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='OW') and (610*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line89,mrp.template_sinko_ab,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line90,mrp.template_sinko_ab,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line91,mrp.template_sinko_ab,[SP05007],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='OW') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line92,mrp.template_sinko_ab,[SP05006],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='OW') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line93,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='ALUZ') and (457*line.L/1000000*3.56) or 0.0,kg +mrp.template_sinko_ab_line94,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>457 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*3.56) or 0.0,kg +mrp.template_sinko_ab_line95,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>914 and (14+line.W)<=1774) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*3.56*2) or 0.0,kg +mrp.template_sinko_ab_line96,mrp.template_sinko_ab,[SP05006],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='ALUZ') and (457*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line97,mrp.template_sinko_ab,[SP05007],((14+line.W)>457 and (14+line.W)<=610) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='ALUZ') and (610*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line98,mrp.template_sinko_ab,[SP05006],((14+line.W)>610 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line99,mrp.template_sinko_ab,[SP05007],((14+line.W)>914 and (14+line.W)<=1219) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='ALUZ') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line100,mrp.template_sinko_ab,[SP05007],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='ALUZ') and (1219*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line101,mrp.template_sinko_ab,[SP05006],((14+line.W)>1219 and (14+line.W)<=2106) and (line.mat_inside_skin_choices.code=='OW') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*3.75) or 0.0,kg +mrp.template_sinko_ab_line102,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='SS') and (457*line.L/1000000*3.56) or 0.0,kg +mrp.template_sinko_ab_line103,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>457 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.56) or 0.0,kg +mrp.template_sinko_ab_line104,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>914 and (14+line.W)<=1774) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='SS') and (914*line.L/1000000*3.56*2) or 0.0,kg +mrp.template_sinko_ab_line105,mrp.template_sinko_ab,[SP05013],((14+line.W)<=610) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='SS') and (610*line.L/1000000*3.9) or 0.0,kg +mrp.template_sinko_ab_line106,mrp.template_sinko_ab,[SP05013],((14+line.W)>610 and (14+line.W)<=2384) and (line.mat_inside_skin_choices.code=='ALUZ') and (line.mat_outside_skin_choices.code=='SS') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_sinko_ab_line107,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)<=457) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='ALUZ') and (457*line.L/1000000*3.56) or 0.0,kg +mrp.template_sinko_ab_line108,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>457 and (14+line.W)<=914) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*3.56) or 0.0,kg +mrp.template_sinko_ab_line109,mrp.template_sinko_ab,[999-14-SP05001],((14+line.W)>914 and (14+line.W)<=1774) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='ALUZ') and (914*line.L/1000000*3.56*2) or 0.0,kg +mrp.template_sinko_ab_line110,mrp.template_sinko_ab,[SP05013],((14+line.W)<=610) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='ALUZ') and (610*line.L/1000000*3.9) or 0.0,kg +mrp.template_sinko_ab_line111,mrp.template_sinko_ab,[SP05013],((14+line.W)>610 and (14+line.W)<=2384) and (line.mat_inside_skin_choices.code=='SS') and (line.mat_outside_skin_choices.code=='ALUZ') and (1219*line.L/1000000*3.9*2) or 0.0,kg +mrp.template_sinko_ab_line112,mrp.template_sinko_ab,[SP05002],(line.mat_insulation_choices.code == 'PU') and (line.W*line.L*line.T.value/1000000000*40*0.437*1.13-(line.cut_area*line.T.value*40*0.437*1.13/1000)) or 0.0,kg +mrp.template_sinko_ab_line113,mrp.template_sinko_ab,[SP05003],(line.mat_insulation_choices.code == 'PU') and (line.W*line.L*line.T.value/1000000000*40*0.563*1.13-(line.cut_area*line.T.value*40*0.563*1.13/1000)) or 0.0,kg +mrp.template_sinko_ab_line114,mrp.template_sinko_ab,[SP05024],(line.mat_insulation_choices.code == 'PIR') and (line.W*line.L*line.T.value/1000000000*36*0.242*1.2*1.05-(line.cut_area*line.T.value*36*0.242*1.2*1.05/1000)) or 0.0,kg +mrp.template_sinko_ab_line115,mrp.template_sinko_ab,[SP05003],(line.mat_insulation_choices.code == 'PIR') and (line.W*line.L*line.T.value/1000000000*36*0.714*1.2*1.05-(line.cut_area*line.T.value*36*0.714*1.2*1.05/1000)) or 0.0,kg +mrp.template_sinko_ab_line116,mrp.template_sinko_ab,[SP05023],(line.mat_insulation_choices.code == 'PIR') and (line.W*line.L*line.T.value/1000000000*36*0.044*1.2*1.05-(line.cut_area*line.T.value*36*0.044*1.2*1.05/1000)) or 0.0,kg +mrp.template_sinko_ab_line117,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-AA') and (((line.L+line.L+line.W+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.L+line.W+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.L+line.W+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.L+line.W+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.L+line.W+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.L+line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line118,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-AB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line119,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-AB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line120,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-BA') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line121,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-BA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line122,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-BB') and (((line.L+line.L)/2500) < 0.6 and 0.5 or ((line.L+line.L)/2500) < 1.1 and 1.0 or ((line.L+line.L)/2500) < 1.6 and 1.5 or ((line.L+line.L)/2500) < 2.1 and 2.0 or ((line.L+line.L)/2500) < 2.6 and 2.5 or ((line.L+line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line123,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-BB') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line124,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-AA') and (((line.L+line.W+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line125,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-AA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line126,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-AB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line127,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-AB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line128,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-BA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line129,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-BA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line130,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-BB') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line131,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-BB') and (((line.L+line.W+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line132,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-AA') and (((line.L+line.W+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line133,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-AA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line134,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-BB') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line135,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-BB') and (((line.W+line.L+line.L)/2500) < 0.6 and 0.5 or ((line.W+line.L+line.L)/2500) < 1.1 and 1.0 or ((line.W+line.L+line.L)/2500) < 1.6 and 1.5 or ((line.W+line.L+line.L)/2500) < 2.1 and 2.0 or ((line.W+line.L+line.L)/2500) < 2.6 and 2.5 or ((line.W+line.L+line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line136,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-BA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line137,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-BA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line138,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-AB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line139,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-AB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line140,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-BB') and (((line.L+line.L+line.W+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.L+line.W+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.L+line.W+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.L+line.W+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.L+line.W+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.L+line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line141,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-BA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line142,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-BA') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line143,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-AA') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line144,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-AA') and (((line.L+line.L)/2500) < 0.6 and 0.5 or ((line.L+line.L)/2500) < 1.1 and 1.0 or ((line.L+line.L)/2500) < 1.6 and 1.5 or ((line.L+line.L)/2500) < 2.1 and 2.0 or ((line.L+line.L)/2500) < 2.6 and 2.5 or ((line.L+line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line145,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-AB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line146,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-AB') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line147,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == AA-AA') and (((line.L+line.L+line.W+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.L+line.W+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.L+line.W+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.L+line.W+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.L+line.W+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.L+line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line148,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-AB') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line149,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-AB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line150,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-BA') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line151,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-BA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line152,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-BB') and (((line.L+line.L)/2500) < 0.6 and 0.5 or ((line.L+line.L)/2500) < 1.1 and 1.0 or ((line.L+line.L)/2500) < 1.6 and 1.5 or ((line.L+line.L)/2500) < 2.1 and 2.0 or ((line.L+line.L)/2500) < 2.6 and 2.5 or ((line.L+line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line153,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-BB') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line154,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-AA') and (((line.L+line.W+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line155,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-AA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line156,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-AB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line157,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-AB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line158,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-BA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line159,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-BA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line160,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-BB') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line161,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-BB') and (((line.L+line.W+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line162,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-AA') and (((line.L+line.W+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line163,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-AA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line164,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-BB') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line165,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-BB') and (((line.W+line.L+line.L)/2500) < 0.6 and 0.5 or ((line.W+line.L+line.L)/2500) < 1.1 and 1.0 or ((line.W+line.L+line.L)/2500) < 1.6 and 1.5 or ((line.W+line.L+line.L)/2500) < 2.1 and 2.0 or ((line.W+line.L+line.L)/2500) < 2.6 and 2.5 or ((line.W+line.L+line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line166,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-BA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line167,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-BA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line168,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-AB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line169,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-AB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line170,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-BB') and (((line.L+line.L+line.W+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.L+line.W+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.L+line.W+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.L+line.W+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.L+line.W+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.L+line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line171,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-BA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line172,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-BA') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line173,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-AA') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line174,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-AA') and (((line.L+line.L)/2500) < 0.6 and 0.5 or ((line.L+line.L)/2500) < 1.1 and 1.0 or ((line.L+line.L)/2500) < 1.6 and 1.5 or ((line.L+line.L)/2500) < 2.1 and 2.0 or ((line.L+line.L)/2500) < 2.6 and 2.5 or ((line.L+line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line175,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-AB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line176,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-AB') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line177,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-AN') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line178,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line179,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-NA') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line180,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line181,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-NB') and (((line.L+line.L)/2500) < 0.6 and 0.5 or ((line.L+line.L)/2500) < 1.1 and 1.0 or ((line.L+line.L)/2500) < 1.6 and 1.5 or ((line.L+line.L)/2500) < 2.1 and 2.0 or ((line.L+line.L)/2500) < 2.6 and 2.5 or ((line.L+line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line182,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line183,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line184,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-NN') and (((line.L+line.L)/2500) < 0.6 and 0.5 or ((line.L+line.L)/2500) < 1.1 and 1.0 or ((line.L+line.L)/2500) < 1.6 and 1.5 or ((line.L+line.L)/2500) < 2.1 and 2.0 or ((line.L+line.L)/2500) < 2.6 and 2.5 or ((line.L+line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line185,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AA-NN') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line186,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line187,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-AN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line188,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line189,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-BN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line190,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line191,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line192,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line193,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-NA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line194,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line195,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-NB') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line196,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line197,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line198,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line199,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line200,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AB-NN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line201,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AN-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line202,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AN-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line203,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AN-BN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line204,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AN-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line205,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AN-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line206,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AN-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line207,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AN-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line208,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AN-NB') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line209,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'AN-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line210,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AN-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line211,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'AN-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line212,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'AN-NN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line213,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line214,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-AN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line215,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line216,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-BN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line217,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line218,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line219,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line220,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-NA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line221,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line222,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-NB') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line223,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line224,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line225,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line226,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line227,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BA-NN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line228,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line229,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-AN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line230,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line231,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line232,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line233,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line234,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-NA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line235,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line236,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line237,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line238,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line239,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BB-NN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line240,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BN-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line241,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BN-AN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line242,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BN-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line243,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BN-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line244,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BN-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line245,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'BN-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line246,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BN-NA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line247,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BN-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line248,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BN-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line249,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BN-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line250,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'BN-NN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line251,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'BN-NN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line252,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'NA-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line253,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NA-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line254,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'NA-BN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line255,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'NA-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line256,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NA-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line257,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'NA-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line258,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NA-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line259,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'NA-NB') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line260,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'NA-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line261,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NA-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line262,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'NA-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line263,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NA-NN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line264,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'NB-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line265,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'NB-AN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line266,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NB-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line267,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'NB-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line268,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NB-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line269,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'NB-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line270,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'NB-NA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line271,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NB-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line272,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'NB-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line273,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NB-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line274,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'NB-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line275,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NB-NN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line276,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'NN-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line277,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NN-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line278,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'NN-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line279,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NN-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line280,mrp.template_sinko_ab,[SP04111],(line.T.value == 25 and line.mat_joint_choices.code == 'NN-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line281,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NN-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line282,mrp.template_sinko_ab,[SP04112],(line.T.value == 25 and line.mat_joint_choices.code == 'NN-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line283,mrp.template_sinko_ab,[SP04010],(line.T.value == 25 and line.mat_joint_choices.code == 'NN-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line284,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-AN') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line285,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line286,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-AN') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line287,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line288,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-NB') and (((line.L+line.L)/2500) < 0.6 and 0.5 or ((line.L+line.L)/2500) < 1.1 and 1.0 or ((line.L+line.L)/2500) < 1.6 and 1.5 or ((line.L+line.L)/2500) < 2.1 and 2.0 or ((line.L+line.L)/2500) < 2.6 and 2.5 or ((line.L+line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line289,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line290,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line291,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-NN') and (((line.L+line.L)/2500) < 0.6 and 0.5 or ((line.L+line.L)/2500) < 1.1 and 1.0 or ((line.L+line.L)/2500) < 1.6 and 1.5 or ((line.L+line.L)/2500) < 2.1 and 2.0 or ((line.L+line.L)/2500) < 2.6 and 2.5 or ((line.L+line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line292,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AA-NN') and (((line.W+line.W)/2500) < 0.6 and 0.5 or ((line.W+line.W)/2500) < 1.1 and 1.0 or ((line.W+line.W)/2500) < 1.6 and 1.5 or ((line.W+line.W)/2500) < 2.1 and 2.0 or ((line.W+line.W)/2500) < 2.6 and 2.5 or ((line.W+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line293,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line294,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-AN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line295,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line296,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-BN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line297,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line298,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line299,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line300,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-NA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line301,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line302,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-BN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line303,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line304,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line305,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-NA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line306,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-NA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line307,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AB-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line308,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AN-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line309,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AN-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line310,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AN-BN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line311,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AN-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line312,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AN-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line313,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AN-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line314,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AN-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line315,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AN-NB') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line316,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AN-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line317,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AN-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line318,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AN-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line319,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'AN-NN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line320,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line321,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-AN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line322,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line323,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-BN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line324,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line325,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line326,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line327,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-NA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line328,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line329,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-NB') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line330,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line331,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line332,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line333,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line334,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-NN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line335,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line336,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-AN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line337,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line338,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line339,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line340,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line341,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-NA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line342,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line343,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line344,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line345,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line346,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BB-NN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line347,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-NN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line348,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line349,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BA-NN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line350,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BN-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line351,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BN-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line352,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BN-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line353,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BN-NA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line354,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BN-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line355,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BN-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line356,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BN-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line357,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BN-NN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line358,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'BN-NN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line359,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NA-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line360,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NA-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line361,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NA-BN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line362,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NA-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line363,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NA-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line364,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NA-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line365,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NA-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line366,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NA-NB') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line367,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NA-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line368,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NA-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line369,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NA-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line370,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NA-NN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line371,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NB-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line372,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NB-AN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line373,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NB-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line374,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NB-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line375,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NB-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line376,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NB-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line377,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NB-NA') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line378,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NB-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line379,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NB-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line380,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NB-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line381,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NB-NN') and (((line.L)/2500) < 0.6 and 0.5 or ((line.L)/2500) < 1.1 and 1.0 or ((line.L)/2500) < 1.6 and 1.5 or ((line.L)/2500) < 2.1 and 2.0 or ((line.L)/2500) < 2.6 and 2.5 or ((line.L)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line382,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NB-NN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line383,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NN-AN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line384,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NN-AN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line385,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NN-BN') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line386,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NN-BN') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line387,mrp.template_sinko_ab,[SP04040-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NN-NA') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line388,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NN-NA') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line389,mrp.template_sinko_ab,[SP04041-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NN-NB') and (((line.W)/2500) < 0.6 and 0.5 or ((line.W)/2500) < 1.1 and 1.0 or ((line.W)/2500) < 1.6 and 1.5 or ((line.W)/2500) < 2.1 and 2.0 or ((line.W)/2500) < 2.6 and 2.5 or ((line.W)/2500) < 3.1 and 3.0 ) or 0,pcs +mrp.template_sinko_ab_line390,mrp.template_sinko_ab,[SP04005-2],(line.T.value == 50 and line.mat_joint_choices.code == 'NN-NB') and (((line.L+line.W)/2500) < 0.6 and 0.5 or ((line.L+line.W)/2500) < 1.1 and 1.0 or ((line.L+line.W)/2500) < 1.6 and 1.5 or ((line.L+line.W)/2500) < 2.1 and 2.0 or ((line.L+line.W)/2500) < 2.6 and 2.5 or ((line.L+line.W)/2500) < 3.1 and 3.0 ) or 0,pcs diff --git a/sqp_config_bom_formula/BOM_Formula_final.xlsx b/sqp_config_bom_formula/BOM_Formula_final.xlsx new file mode 100755 index 0000000..61eb8d4 Binary files /dev/null and b/sqp_config_bom_formula/BOM_Formula_final.xlsx differ diff --git a/sqp_config_bom_formula/__init__.py b/sqp_config_bom_formula/__init__.py new file mode 100755 index 0000000..a4a5d90 --- /dev/null +++ b/sqp_config_bom_formula/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_config_bom_formula/__openerp__.py b/sqp_config_bom_formula/__openerp__.py new file mode 100755 index 0000000..d477be5 --- /dev/null +++ b/sqp_config_bom_formula/__openerp__.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'Configuration - BOM Formulas', + 'version': '1.0', + 'category': 'Hidden', + 'description': """ + """, + 'author': 'Ecosoft', + 'website': 'http://www.ecosoft.co.th/', + 'depends': [ + 'mrp', + ], + 'data': [ + 'product.product.csv', + 'mrp.bom.csv', + '00_slipjoint_ahu/mrp.bom.csv', + '01_slipjoint_cr_ahu/mrp.bom.csv', + '02_slipjoint_std_ahu/mrp.bom.csv', + '03_slipjoint_rockwool/mrp.bom.csv', + '04_firejoint_rockwool/mrp.bom.csv', + '05_nonprogressive_joint/mrp.bom.csv', + '06_foamslab/mrp.bom.csv', + '07_single_door_flat/mrp.bom.csv', + '08_double_door_unseq/mrp.bom.csv', + '09_double_door_seq/mrp.bom.csv', + '10_single_sliding_door/mrp.bom.csv', + '11_swing_door_cold/mrp.bom.csv', + '12_single_door_cold/mrp.bom.csv', + '13_window/mrp.bom.csv', + '14_sinko_ab/mrp.bom.csv', + ], + 'auto_install': False, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_config_bom_formula/mrp.bom.csv b/sqp_config_bom_formula/mrp.bom.csv new file mode 100755 index 0000000..729bdfa --- /dev/null +++ b/sqp_config_bom_formula/mrp.bom.csv @@ -0,0 +1,16 @@ +id,name,product_id/id,type,product_qty,product_uom,is_bom_template,bom_template_type,bom_product_type,new_name_format,W,L,T,mat_model_choices,mat_joint_choices,mat_insulation_choices,mat_inside_skin_choices,mat_outside_skin_choices,mat_camlock_choices,mat_window_choices +mrp.template_slipjoint_ahu,Slip Joint (AHU & Cold Room),product.template_slipjoint_ahu,normal,1,EA,TRUE,formula,panel,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,"25,42,50,75,100,125,150",,"MF (Male-Female),MM (Male-Male),FF (Female-Female),MN (Male-None),FN (Female-None),NN (None-None)","PU,PIR","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS","AHU 500mm,Cold Room 1000mm", +mrp.template_slipjoint_cr_ahu,Slip Joint (Clean Room),product.template_slipjoint_cr_ahu,normal,1,EA,TRUE,formula,panel,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,"25,42,50,75,100,125,150",,"MF (Male-Female),MM (Male-Male),FF (Female-Female),MN (Male-None),FN (Female-None),NN (None-None)","PU,PIR","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS",, +mrp.template_slipjoint_std_ahu,Standard AHU,product.template_slipjoint_std_ahu,normal,1,EA,TRUE,formula,panel,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,"25,50","Amair AD,Amair AF,Amair AG,Amair AH,Amair AI,Amair AJ,Amair AL,Amair AS,B.Grimm Access,B.Grimm Panel",NN (None-None),"PU,PIR","0.5 mm PP (OW),0.4 mm GI,0.5 mm SS","0.5 mm PP (OW),0.4 mm GI,0.5 mm SS",, +mrp.template_slipjoint_rockwool,Slip Joint (Rockwool),product.template_slipjoint_rockwool,normal,1,EA,TRUE,formula,panel,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,"50,75,100",,"MF (Male-Female),MM (Male-Male),FF (Female-Female),MN (Male-None),FN (Female-None),NN (None-None)",Rockwool,"0.5 mm PP (OW),0.8 mm GI","0.5 mm PP (OW),0.8 mm GI",, +mrp.template_firejoint_rockwool,Fire Joint (Rockwool),product.template_firejoint_rockwool,normal,1,EA,TRUE,formula,panel,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,50100,,"MF (Male-Female),MM (Male-Male),FF (Female-Female)",Rockwool,"0.5 mm PP (OW),0.8 mm GI","0.5 mm PP (OW),0.8 mm GI",, +mrp.template_nonprogressive_joint,Non-Progressive Joint (Rockwool),product.template_nonprogressive_joint,normal,1,EA,TRUE,formula,panel,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,"50,75,100",,MF (Male-Female),Rockwool,0.8 mm GI,0.8 mm GI,, +mrp.template_foamslab,Foam Slab,product.template_foamslab,normal,1,EA,TRUE,formula,panel,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,"25,42,50,75,100,125,150",,,"PU,PIR",,,, +mrp.template_single_door_flat,Single Door (Flat Type),product.template_single_door_flat,normal,1,EA,TRUE,formula,door,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,"42(F42),50(F50),42(F100),50(F100)",,,PU,"0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS",,"None,Single Glass,Double Glass" +mrp.template_double_door_unseq,Double Door (Flat Type / Un-Sequence),product.template_double_door_unseq,normal,1,EA,TRUE,formula,door,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,"42(F42),50(F50),42(F100),50(F100)",,,PU,"0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS",,"None,Single Glass,Double Glass" +mrp.template_double_door_seq,Double Door (Flat Type / Sequence),product.template_double_door_seq,normal,1,EA,TRUE,formula,door,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,"42(F42),50(F50),42(F100),50(F100)",,,PU,"0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS",,"None,Single Glass,Double Glass" +mrp.template_single_sliding_door,Single Sliding Door,product.template_single_sliding_door,normal,1,EA,TRUE,formula,door,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,42,,,PU,"0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS",,"None,Single Glass,Double Glass" +mrp.template_swing_door_cold,Swing Door (Cold Room),product.template_swing_door_cold,normal,1,EA,TRUE,formula,door,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,100,,,PU,"0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS",, +mrp.template_sliding_door_cold,Sliding Door (Cold Room),product.template_sliding_door_cold,normal,1,EA,TRUE,formula,door,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,75100,,,"PU,PIR","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS",, +mrp.template_window,Window,product.template_window,normal,1,EA,TRUE,formula,window,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,"42,50,100",,,,,,,"Single Glass,Double Glass" +mrp.template_sinko_ab,Sinko AB,product.template_sinko_ab,normal,1,EA,TRUE,formula,panel,line.part_name + (object.order_id and ('|' + object.order_id.name) or ''),TRUE,TRUE,"25,50",,"AA-AA (Sinko),AA-AB (Sinko),AA-BA (Sinko),AA-BB (Sinko),AB-AA (Sinko),AB-BA (Sinko),AB-BB (Sinko),BA-AA (Sinko),BA-AB (Sinko),BA-BA (Sinko),BA-BB (Sinko),BB-AA (Sinko),BB-AB (Sinko),BB-BA (Sinko),BB-BB (Sinko)","PU,PIR","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS,0.45 mm Aluzinc","0.5 mm PP (OW),0.45 mm PP (AW),0.4 mm GI,0.5 mm SS,0.45 mm Aluzinc",,"Single Glass,Double Glass" diff --git a/sqp_config_bom_formula/product.product.csv b/sqp_config_bom_formula/product.product.csv new file mode 100755 index 0000000..aff33f9 --- /dev/null +++ b/sqp_config_bom_formula/product.product.csv @@ -0,0 +1,16 @@ +id,name,categ_id/id,sale_ok,purchase_ok,is_one_time_use,uom_id +product.template_slipjoint_ahu,Slip Joint (AHU & Clean Room),product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_slipjoint_cr_ahu,Slip Joint (Clean Room),product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_slipjoint_std_ahu,Standard AHU,product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_slipjoint_rockwool,Slip Joint (Rockwool),product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_firejoint_rockwool,Fire Joint (Rockwool),product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_nonprogressive_joint,Non-Progressive Joint (Rockwool),product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_foamslab,Foam Slab,product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_single_door_flat,Single Door (Flat Type),product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_double_door_unseq,Double Door (Flat Type / Un-Sequence),product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_double_door_seq,Double Door (Flat Type / Sequence),product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_single_sliding_door,Single Sliding Door,product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_swing_door_cold,Swing Door (Cold Room),product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_sliding_door_cold,Sliding Door (Cold Room),product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_window,Window,product.product_category_bom_template,FALSE,FALSE,FALSE,EA +product.template_sinko_ab,Sinko AB,product.product_category_bom_template,FALSE,FALSE,FALSE,EA diff --git a/sqp_config_standard_ahu_create/1_amair/product.rapid.create.line.csv b/sqp_config_standard_ahu_create/1_amair/product.rapid.create.line.csv new file mode 100755 index 0000000..366ac0d --- /dev/null +++ b/sqp_config_standard_ahu_create/1_amair/product.rapid.create.line.csv @@ -0,0 +1,1291 @@ +"id","wizard_id/id","bom_product_type","mat_model_choices","part_name","part_code","bom_template_id","W","L","T","mat_joint_choices","mat_inside_skin_choices","mat_outside_skin_choices","mat_insulation_choices","list_price","partner_id" +"Amair_AG_line_1","Amair_AG","panel","Amair AG","PNL ASSY 25MM 0204 CL/GI","362-1AG0204CLGI","Standard AHU",304,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",514,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_2","Amair_AG","panel","Amair AG","PNL ASSY 25MM 0206 CL/GI","362-1AG0206CLGI","Standard AHU",304,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",737,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_3","Amair_AG","panel","Amair AG","PNL ASSY 25MM 0406 CL/GI","362-1AG0406CLGI","Standard AHU",614,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",949,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_4","Amair_AG","panel","Amair AG","PNL ASSY 25MM 0506 CL/GI","362-1AG0506CLGI","Standard AHU",769,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1300,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_5","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0204 CL/GI","362-2AG0204CLGI","Standard AHU",304,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",616,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_6","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0404 CL/GI","362-2AG0404CLGI","Standard AHU",614,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2274,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_7","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0406 CL/GI","362-2AG0406CLGI","Standard AHU",614,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1005,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_8","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0506 CL/GI","362-2AG0506CLGI","Standard AHU",769,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1281,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_9","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0508 CL/CL","362-2AG0508CLCL","Standard AHU",769,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2111,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_10","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0508 CL/GI","362-2AG0508CLGI","Standard AHU",769,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2061,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_11","Amair_AG","panel","Amair AG","PNL ASSY 25MM 0208 CL/GI","999-1AG0208CLGI","Standard AHU",304,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",633,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_12","Amair_AG","panel","Amair AG","PNL ASSY 25MM 0209 CL/GI","999-1AG0209CLGI","Standard AHU",304,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",683,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_13","Amair_AG","panel","Amair AG","PANEL ASSY 25MM 0307 CL/GI","999-1AG0307CLGI","Standard AHU",459,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",953,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_14","Amair_AG","panel","Amair AG","PANEL ASSY 25MM 0405 CL/GI","999-1AG0405CLGI","Standard AHU",614,769,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",741,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_15","Amair_AG","panel","Amair AG","PANEL ASSY 25MM 0508 CL/GI","999-1AG0508CLGI","Standard AHU",769,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1333,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_16","Amair_AG","panel","Amair AG","PANEL ASSY 25MM 0610 CL/GI","999-1AG0610CLGI","Standard AHU",924,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1589,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_17","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0204 CL/GI","999-2AG0204CLGI","Standard AHU",304,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",586,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_18","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0206 CL/GI","999-2AG0206CLGI","Standard AHU",304,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",732,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_19","Amair_AG","panel","Amair AG","PNL ASSY 25MM 0204 CL/GI 0B","362-1AG0204CLGI0B","Standard AHU",304,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",494,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_20","Amair_AG","panel","Amair AG","PNL ASSY 25MM 0206 CL/GI 0B","362-1AG0206CLGI0B","Standard AHU",304,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",707,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_21","Amair_AG","panel","Amair AG","PNL ASSY 25MM 0406 CL/GI 0B","362-1AG0406CLGI0B","Standard AHU",614,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",911,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_22","Amair_AG","panel","Amair AG","PNL ASSY 25MM 0506 CL/GI 0B","362-1AG0506CLGI0B","Standard AHU",769,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1248,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_23","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0204 CL/GI 0B","362-2AG0204CLGI0B","Standard AHU",304,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",592,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_24","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0404 CL/GI 0B","362-2AG0404CLGI0B","Standard AHU",614,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2183,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_25","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0406 CL/GI 0B","362-2AG0406CLGI0B","Standard AHU",614,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",965,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_26","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0506 CL/GI 0B","362-2AG0506CLGI0B","Standard AHU",769,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1230,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_27","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0508 CL/CL 0B","362-2AG0508CLCL0B","Standard AHU",769,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2027,"บริษัท แอมแอร์ จำกัด" +"Amair_AG_line_28","Amair_AG","panel","Amair AG","PNL ASSY 50MM 0508 CL/GI 0B","362-2AG0508CLGI0B","Standard AHU",769,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1978,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_1","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0306 CL/CL","362-1AH0306CLCL","Standard AHU",459,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2562,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_2","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0404 CL/CL","362-1AH0404CLCL","Standard AHU",614,614,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1934,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_3","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0404 CL/GI","362-1AH0404CLGI","Standard AHU",614,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1825,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_4","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0404 CL/SS","362-1AH0404CLSS","Standard AHU",614,614,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2322,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_5","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0405 CL/CL","362-1AH0405CLCL","Standard AHU",614,769,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2375,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_6","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0406 CL/CL","362-1AH0406CLCL","Standard AHU",614,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2422,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_7","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0406 CL/GI","362-1AH0406CLGI","Standard AHU",614,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2259,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_8","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0406 CL/SS","362-1AH0406CLSS","Standard AHU",614,924,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3005,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_9","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0506 CL/CL","362-1AH0506CLCL","Standard AHU",769,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",3421,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_10","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0506 CL/GI","362-1AH0506CLGI","Standard AHU",769,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",3148,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_11","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0606 CL/CL","362-1AH0606CLCL","Standard AHU",924,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",3885,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_12","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0606 CL/GI","362-1AH0606CLGI","Standard AHU",924,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",3558,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_13","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0404 CL/CL","362-2AH0404CLCL","Standard AHU",614,614,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2250,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_14","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0404 CL/GI","362-2AH0404CLGI","Standard AHU",614,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2141,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_15","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0405 CL/CL","362-2AH0405CLCL","Standard AHU",614,769,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2519,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_16","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0406 CL/CL","362-2AH0406CLCL","Standard AHU",614,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2789,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_17","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0406 CL/GI","362-2AH0406CLGI","Standard AHU",614,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2625,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_18","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0406 CL/SS","362-2AH0406CLSS","Standard AHU",614,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3371,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_19","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0506 CL/CL","362-2AH0506CLCL","Standard AHU",769,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",3474,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_20","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0506 CL/GI","362-2AH0506CLGI","Standard AHU",769,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",3202,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_21","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0506 CL/SS","362-2AH0506CLSS","Standard AHU",769,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",4131,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_22","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0606 CL/CL","362-2AH0606CLCL","Standard AHU",924,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",3917,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_23","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0606 CL/GI","362-2AH0606CLGI","Standard AHU",924,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",3590,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_24","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0306 CL/CL 00","362-1AH0306CLCL00","Standard AHU",459,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2460,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_25","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0404 CL/CL 00","362-1AH0404CLCL00","Standard AHU",614,614,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1857,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_26","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0404 CL/GI 00","362-1AH0404CLGI00","Standard AHU",614,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1752,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_27","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0404 CL/SS 00","362-1AH0404CLSS00","Standard AHU",614,614,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2229,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_28","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0405 CL/CL 00","362-1AH0405CLCL00","Standard AHU",614,769,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2280,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_29","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0406 CL/CL 00","362-1AH0406CLCL00","Standard AHU",614,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2326,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_30","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0406 CL/GI 00","362-1AH0406CLGI00","Standard AHU",614,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2169,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_31","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0406 CL/SS 00","362-1AH0406CLSS00","Standard AHU",614,924,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2884,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_32","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0506 CL/CL 00","362-1AH0506CLCL00","Standard AHU",769,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",3284,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_33","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0506 CL/GI 00","362-1AH0506CLGI00","Standard AHU",769,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",3023,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_34","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0606 CL/CL 00","362-1AH0606CLCL00","Standard AHU",924,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",3730,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_35","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 25MM 0606 CL/GI 00","362-1AH0606CLGI00","Standard AHU",924,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",3416,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_36","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0404 CL/CL 00","362-2AH0404CLCL00","Standard AHU",614,614,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2160,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_37","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0404 CL/GI 00","362-2AH0404CLGI00","Standard AHU",614,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2056,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_38","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0405 CL/CL 00","362-2AH0405CLCL00","Standard AHU",614,769,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2419,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_39","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0406 CL/CL 00","362-2AH0406CLCL00","Standard AHU",614,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2677,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_40","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0406 CL/GI 00","362-2AH0406CLGI00","Standard AHU",614,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2520,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_41","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0406 CL/SS 00","362-2AH0406CLSS00","Standard AHU",614,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3236,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_42","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0506 CL/CL 00","362-2AH0506CLCL00","Standard AHU",769,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",3335,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_43","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0506 CL/GI 00","362-2AH0506CLGI00","Standard AHU",769,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",3074,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_44","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0506 CL/SS 00","362-2AH0506CLSS00","Standard AHU",769,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3965,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_45","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0606 CL/CL 00","362-2AH0606CLCL00","Standard AHU",924,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",3760,"บริษัท แอมแอร์ จำกัด" +"Amair_AH_line_46","Amair_AH","panel","Amair AH","HINGE DOOR ASSY 50MM 0606 CL/GI 00","362-2AH0606CLGI00","Standard AHU",924,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",3446,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_1","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0104 CL/GI","362-2AL0104CLGI","Standard AHU",149,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",131,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_2","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0105 CL/GI","362-2AL0105CLGI","Standard AHU",149,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",159,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_3","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0106 CL/GI","362-2AL0106CLGI","Standard AHU",149,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",189,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_4","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0107 CL/GI","362-2AL0107CLGI","Standard AHU",149,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",220,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_5","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0108 CL/GI","362-2AL0108CLGI","Standard AHU",149,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",250,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_6","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0109 CL/GI","362-2AL0109CLGI","Standard AHU",149,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",281,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_7","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0110 CL/GI","362-2AL0110CLGI","Standard AHU",149,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",310,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_8","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0111 CL/GI","362-2AL0111CLGI","Standard AHU",149,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",341,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_9","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0112 CL/GI","362-2AL0112CLGI","Standard AHU",149,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",371,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_10","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0113 CL/GI","362-2AL0113CLGI","Standard AHU",149,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",402,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_11","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0114 CL/GI","362-2AL0114CLGI","Standard AHU",149,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",431,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_12","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0204 CL/GI","362-2AL0204CLGI","Standard AHU",304,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",225,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_13","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0205 CL/GI","362-2AL0205CLGI","Standard AHU",304,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",277,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_14","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0206 CL/GI","362-2AL0206CLGI","Standard AHU",304,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",330,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_15","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0206 CL/SS","362-2AL0206CLSS","Standard AHU",304,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",696,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_16","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0207 CL/GI","362-2AL0207CLGI","Standard AHU",304,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",382,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_17","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0208 CL/GI","362-2AL0208CLGI","Standard AHU",304,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",433,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_18","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0208 CL/SS","362-2AL0208CLSS","Standard AHU",304,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",930,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_19","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0209 CL/GI","362-2AL0209CLGI","Standard AHU",304,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",486,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_20","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0210 CL/GI","362-2AL0210CLGI","Standard AHU",304,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",538,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_21","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0210 CL/SS","362-2AL0210CLSS","Standard AHU",304,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1153,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_22","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0211 CL/GI","362-2AL0211CLGI","Standard AHU",304,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",588,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_23","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0212 CL/GI","362-2AL0212CLGI","Standard AHU",304,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",640,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_24","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0213 CL/GI","362-2AL0213CLGI","Standard AHU",304,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",692,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_25","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0214 CL/GI","362-2AL0214CLGI","Standard AHU",304,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",745,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_26","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0304 CL/GI","362-2AL0304CLGI","Standard AHU",459,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",320,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_27","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0305 CL/GI","362-2AL0305CLGI","Standard AHU",459,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",393,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_28","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0306 CL/GI","362-2AL0306CLGI","Standard AHU",459,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",469,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_29","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0306 CL/CL","362-2AL0306CLCL","Standard AHU",459,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",590,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_30","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0307 CL/GI","362-2AL0307CLGI","Standard AHU",459,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",543,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_31","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0308 CL/GI","362-2AL0308CLGI","Standard AHU",459,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",614,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_32","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0309 CL/GI","362-2AL0309CLGI","Standard AHU",459,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",688,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_33","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0310 CL/GI","362-2AL0310CLGI","Standard AHU",459,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",764,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_34","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0310 CL/SS","362-2AL0310CLSS","Standard AHU",459,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1470,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_35","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0311 CL/GI","362-2AL0311CLGI","Standard AHU",459,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",836,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_36","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0312 CL/GI","362-2AL0312CLGI","Standard AHU",459,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",910,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_37","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0313 CL/GI","362-2AL0313CLGI","Standard AHU",459,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",985,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_38","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0314 CL/GI","362-2AL0314CLGI","Standard AHU",459,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1058,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_39","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0404 CL/GI","362-2AL0404CLGI","Standard AHU",614,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",416,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_40","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0405 CL/GI","362-2AL0405CLGI","Standard AHU",614,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",512,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_41","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0406 CL/GI","362-2AL0406CLGI","Standard AHU",614,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",607,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_42","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0407 CL/GI","362-2AL0407CLGI","Standard AHU",614,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",704,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_43","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0408 CL/GI","362-2AL0408CLGI","Standard AHU",614,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",797,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_44","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0409 CL/GI","362-2AL0409CLGI","Standard AHU",614,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",893,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_45","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0410 CL/GI","362-2AL0410CLGI","Standard AHU",614,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",989,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_46","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0411 CL/GI","362-2AL0411CLGI","Standard AHU",614,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1084,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_47","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0412 CL/GI","362-2AL0412CLGI","Standard AHU",614,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1180,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_48","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0413 CL/GI","362-2AL0413CLGI","Standard AHU",614,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1274,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_49","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0414 CL/GI","362-2AL0414CLGI","Standard AHU",614,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1370,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_50","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0505 CL/GI","362-2AL0505CLGI","Standard AHU",769,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",628,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_51","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0506 CL/GI","362-2AL0506CLGI","Standard AHU",769,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",747,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_52","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0507 CL/GI","362-2AL0507CLGI","Standard AHU",769,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",863,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_53","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0508 CL/GI","362-2AL0508CLGI","Standard AHU",769,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",980,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_54","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0509 CL/GI","362-2AL0509CLGI","Standard AHU",769,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1097,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_55","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0510 CL/GI","362-2AL0510CLGI","Standard AHU",769,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1215,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_56","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0511 CL/GI","362-2AL0511CLGI","Standard AHU",769,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1332,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_57","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0512 CL/GI","362-2AL0512CLGI","Standard AHU",769,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1449,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_58","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0513 CL/GI","362-2AL0513CLGI","Standard AHU",769,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1566,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_59","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0514 CL/GI","362-2AL0514CLGI","Standard AHU",769,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1683,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_60","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0514 CL/GI","362-2AL0516CLGI","Standard AHU",769,2474,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2098,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_61","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0606 CL/GI","362-2AL0606CLGI","Standard AHU",924,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",886,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_62","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0607 CL/GI","362-2AL0607CLGI","Standard AHU",924,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1024,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_63","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0608 CL/GI","362-2AL0608CLGI","Standard AHU",924,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1162,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_64","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0609 CL/GI","362-2AL0609CLGI","Standard AHU",924,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1302,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_65","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0610 CL/GI","362-2AL0610CLGI","Standard AHU",924,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1441,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_66","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0611 CL/GI","362-2AL0611CLGI","Standard AHU",924,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1580,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_67","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0612 CL/GI","362-2AL0612CLGI","Standard AHU",924,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1719,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_68","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0613 CL/GI","362-2AL0613CLGI","Standard AHU",924,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1858,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_69","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0614 CL/GI","362-2AL0614CLGI","Standard AHU",924,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1996,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_70","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0707 CL/GI","362-2AL0707CLGI","Standard AHU",1079,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1183,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_71","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0708 CL/GI","362-2AL0708CLGI","Standard AHU",1079,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1344,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_72","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0709 CL/GI","362-2AL0709CLGI","Standard AHU",1079,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1507,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_73","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0710 CL/GI","362-2AL0710CLGI","Standard AHU",1079,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1667,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_74","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0711 CL/GI","362-2AL0711CLGI","Standard AHU",1079,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1827,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_75","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0712 CL/GI","362-2AL0712CLGI","Standard AHU",1079,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1989,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_76","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0713 CL/GI","362-2AL0713CLGI","Standard AHU",1079,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2149,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_77","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0714 CL/GI","362-2AL0714CLGI","Standard AHU",1079,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2310,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_78","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0218 CL/GL","999-2AL0218CLGI","Standard AHU",304,2784,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",960,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_79","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0306 CL/GL","999-2AL0306CLGI","Standard AHU",459,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1106,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_80","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0418 CL/GL","999-2AL0418CLGI","Standard AHU",614,2784,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1738,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_81","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0104 CL/GI 0A","362-2AL0104CLGI0A","Standard AHU",149,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",126,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_82","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0105 CL/GI 0A","362-2AL0105CLGI0A","Standard AHU",149,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",153,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_83","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0106 CL/GI 0A","362-2AL0106CLGI0A","Standard AHU",149,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",181,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_84","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0107 CL/GI 0A","362-2AL0107CLGI0A","Standard AHU",149,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",211,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_85","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0108 CL/GI 0A","362-2AL0108CLGI0A","Standard AHU",149,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",240,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_86","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0109 CL/GI 0A","362-2AL0109CLGI0A","Standard AHU",149,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",270,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_87","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0110 CL/GI 0A","362-2AL0110CLGI0A","Standard AHU",149,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",298,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_88","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0111 CL/GI 0A","362-2AL0111CLGI0A","Standard AHU",149,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",328,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_89","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0112 CL/GI 0A","362-2AL0112CLGI0A","Standard AHU",149,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",356,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_90","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0113 CL/GI 0A","362-2AL0113CLGI0A","Standard AHU",149,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",386,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_91","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0114 CL/GI 0A","362-2AL0114CLGI0A","Standard AHU",149,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",414,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_92","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0204 CL/GI 0A","362-2AL0204CLGI0A","Standard AHU",304,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",216,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_93","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0205 CL/GI 0A","362-2AL0205CLGI0A","Standard AHU",304,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",266,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_94","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0206 CL/GI 0A","362-2AL0206CLGI0A","Standard AHU",304,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",317,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_95","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0206 CL/SS 0A","362-2AL0206CLSS0A","Standard AHU",304,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",668,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_96","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0207 CL/GI 0A","362-2AL0207CLGI0A","Standard AHU",304,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",366,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_97","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0208 CL/GI 0A","362-2AL0208CLGI0A","Standard AHU",304,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",416,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_98","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0208 CL/SS 0A","362-2AL0208CLSS0A","Standard AHU",304,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",893,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_99","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0209 CL/GI 0A","362-2AL0209CLGI0A","Standard AHU",304,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",467,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_100","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0210 CL/GI 0A","362-2AL0210CLGI0A","Standard AHU",304,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",516,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_101","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0210 CL/SS 0A","362-2AL0210CLSS0A","Standard AHU",304,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1107,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_102","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0211 CL/GI 0A","362-2AL0211CLGI0A","Standard AHU",304,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",564,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_103","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0212 CL/GI 0A","362-2AL0212CLGI0A","Standard AHU",304,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",615,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_104","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0213 CL/GI 0A","362-2AL0213CLGI0A","Standard AHU",304,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",665,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_105","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0214 CL/GI 0A","362-2AL0214CLGI0A","Standard AHU",304,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",715,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_106","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0304 CL/GI 0A","362-2AL0304CLGI0A","Standard AHU",459,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",308,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_107","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0305 CL/GI 0A","362-2AL0305CLGI0A","Standard AHU",459,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",377,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_108","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0306 CL/GI 0A","362-2AL0306CLGI0A","Standard AHU",459,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",450,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_109","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0306 CL/CL 0A","362-2AL0306CLCL0A","Standard AHU",459,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",567,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_110","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0307 CL/GI 0A","362-2AL0307CLGI0A","Standard AHU",459,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",521,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_111","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0308 CL/GI 0A","362-2AL0308CLGI0A","Standard AHU",459,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",589,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_112","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0309 CL/GI 0A","362-2AL0309CLGI0A","Standard AHU",459,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",661,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_113","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0310 CL/GI 0A","362-2AL0310CLGI0A","Standard AHU",459,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",733,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_114","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0310 CL/SS 0A","362-2AL0310CLSS0A","Standard AHU",459,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1412,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_115","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0311 CL/GI 0A","362-2AL0311CLGI0A","Standard AHU",459,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",803,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_116","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0312 CL/GI 0A","362-2AL0312CLGI0A","Standard AHU",459,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",873,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_117","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0313 CL/GI 0A","362-2AL0313CLGI0A","Standard AHU",459,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",946,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_118","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0314 CL/GI 0A","362-2AL0314CLGI0A","Standard AHU",459,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1015,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_119","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0404 CL/GI 0A","362-2AL0404CLGI0A","Standard AHU",614,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",399,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_120","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0405 CL/GI 0A","362-2AL0405CLGI0A","Standard AHU",614,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",492,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_121","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0406 CL/GI 0A","362-2AL0406CLGI0A","Standard AHU",614,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",583,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_122","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0407 CL/GI 0A","362-2AL0407CLGI0A","Standard AHU",614,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",675,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_123","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0408 CL/GI 0A","362-2AL0408CLGI0A","Standard AHU",614,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",765,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_124","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0409 CL/GI 0A","362-2AL0409CLGI0A","Standard AHU",614,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",857,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_125","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0410 CL/GI 0A","362-2AL0410CLGI0A","Standard AHU",614,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",950,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_126","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0411 CL/GI 0A","362-2AL0411CLGI0A","Standard AHU",614,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1040,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_127","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0412 CL/GI 0A","362-2AL0412CLGI0A","Standard AHU",614,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1133,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_128","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0413 CL/GI 0A","362-2AL0413CLGI0A","Standard AHU",614,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1223,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_129","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0414 CL/GI 0A","362-2AL0414CLGI0A","Standard AHU",614,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1316,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_130","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0505 CL/GI 0A","362-2AL0505CLGI0A","Standard AHU",769,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",603,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_131","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0506 CL/GI 0A","362-2AL0506CLGI0A","Standard AHU",769,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",717,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_132","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0507 CL/GI 0A","362-2AL0507CLGI0A","Standard AHU",769,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",829,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_133","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0508 CL/GI 0A","362-2AL0508CLGI0A","Standard AHU",769,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",941,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_134","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0509 CL/GI 0A","362-2AL0509CLGI0A","Standard AHU",769,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1053,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_135","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0510 CL/GI 0A","362-2AL0510CLGI0A","Standard AHU",769,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1167,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_136","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0511 CL/GI 0A","362-2AL0511CLGI0A","Standard AHU",769,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1279,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_137","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0512 CL/GI 0A","362-2AL0512CLGI0A","Standard AHU",769,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1391,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_138","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0513 CL/GI 0A","362-2AL0513CLGI0A","Standard AHU",769,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1504,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_139","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0514 CL/GI 0A","362-2AL0514CLGI0A","Standard AHU",769,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1616,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_140","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0514 CL/GI 0A","362-2AL0516CLGI0A","Standard AHU",769,2474,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2014,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_141","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0606 CL/GI 0A","362-2AL0606CLGI0A","Standard AHU",924,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",850,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_142","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0607 CL/GI 0A","362-2AL0607CLGI0A","Standard AHU",924,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",983,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_143","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0608 CL/GI 0A","362-2AL0608CLGI0A","Standard AHU",924,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1116,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_144","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0609 CL/GI 0A","362-2AL0609CLGI0A","Standard AHU",924,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1250,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_145","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0610 CL/GI 0A","362-2AL0610CLGI0A","Standard AHU",924,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1383,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_146","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0611 CL/GI 0A","362-2AL0611CLGI0A","Standard AHU",924,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1516,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_147","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0612 CL/GI 0A","362-2AL0612CLGI0A","Standard AHU",924,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1651,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_148","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0613 CL/GI 0A","362-2AL0613CLGI0A","Standard AHU",924,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1784,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_149","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0614 CL/GI 0A","362-2AL0614CLGI0A","Standard AHU",924,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1916,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_150","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0707 CL/GI 0A","362-2AL0707CLGI0A","Standard AHU",1079,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1136,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_151","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0708 CL/GI 0A","362-2AL0708CLGI0A","Standard AHU",1079,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1290,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_152","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0709 CL/GI 0A","362-2AL0709CLGI0A","Standard AHU",1079,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1447,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_153","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0710 CL/GI 0A","362-2AL0710CLGI0A","Standard AHU",1079,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1600,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_154","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0711 CL/GI 0A","362-2AL0711CLGI0A","Standard AHU",1079,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1754,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_155","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0712 CL/GI 0A","362-2AL0712CLGI0A","Standard AHU",1079,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1909,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_156","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0713 CL/GI 0A","362-2AL0713CLGI0A","Standard AHU",1079,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2063,"บริษัท แอมแอร์ จำกัด" +"Amair_AL_line_157","Amair_AL","panel","Amair AL","PNL ASSY 50MM 0714 CL/GI 0A","362-2AL0714CLGI0A","Standard AHU",1079,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2217,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0101 CL/CL","362-1AS0101CLCL","Standard AHU",149,149,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",18,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_2","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0101 CL/GI","362-1AS0101CLGI","Standard AHU",149,149,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",18,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_3","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0101 GI/GI","362-1AS0101GIGI","Standard AHU",149,149,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",18,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_4","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0102 CL/CL","362-1AS0102CLCL","Standard AHU",149,304,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",36,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_5","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0102 CL/GI","362-1AS0102CLGI","Standard AHU",149,304,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",35,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_6","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0102 GI/GI","362-1AS0102GIGI","Standard AHU",149,304,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",35,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_7","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0103 CL/CL","362-1AS0103CLCL","Standard AHU",149,459,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",51,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_8","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0103 CL/GI","362-1AS0103CLGI","Standard AHU",149,459,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",51,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_9","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0103 GI/GI","362-1AS0103GIGI","Standard AHU",149,459,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",51,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_10","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0104 CL/CL","362-1AS0104CLCL","Standard AHU",149,614,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",70,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_11","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0104 CL/GI","362-1AS0104CLGI","Standard AHU",149,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",69,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_12","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0104 GI/GI","362-1AS0104GIGI","Standard AHU",149,614,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",68,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_13","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0104 CL/SS","362-1AS0104CLSS","Standard AHU",149,614,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",200,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_14","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0105 CL/CL","362-1AS0105CLCL","Standard AHU",149,769,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",89,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_15","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0105 CL/GI","362-1AS0105CLGI","Standard AHU",149,769,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",86,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_16","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0105 GI/GI","362-1AS0105GIGI","Standard AHU",149,769,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",86,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_17","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0106 CL/CL","362-1AS0106CLCL","Standard AHU",149,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",106,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_18","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0106 CL/GI","362-1AS0106CLGI","Standard AHU",149,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",104,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_19","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0106 GI/GI","362-1AS0106GIGI","Standard AHU",149,924,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",103,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_20","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0107 CL/CL","362-1AS0107CLCL","Standard AHU",149,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",124,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_21","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0107 CL/GI","362-1AS0107CLGI","Standard AHU",149,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",122,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_22","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0107 GI/GI","362-1AS0107GIGI","Standard AHU",149,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",121,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_23","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0108 CL/CL","362-1AS0108CLCL","Standard AHU",149,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",142,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_24","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0108 CL/GI","362-1AS0108CLGI","Standard AHU",149,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",139,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_25","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0108 GI/GI","362-1AS0108GIGI","Standard AHU",149,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",135,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_26","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0109 CL/CL","362-1AS0109CLCL","Standard AHU",149,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",159,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_27","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0109 CL/GI","362-1AS0109CLGI","Standard AHU",149,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",156,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_28","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0109 GI/GI","362-1AS0109GIGI","Standard AHU",149,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",154,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_29","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0110 CL/CL","362-1AS0110CLCL","Standard AHU",149,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",177,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_30","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0110 CL/GI","362-1AS0110CLGI","Standard AHU",149,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",172,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_31","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0110 GI/GI","362-1AS0110GIGI","Standard AHU",149,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",171,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_32","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0111 CL/CL","362-1AS0111CLCL","Standard AHU",149,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",194,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_33","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0111 CL/GI","362-1AS0111CLGI","Standard AHU",149,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",191,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_34","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0111 GI/GI","362-1AS0111GIGI","Standard AHU",149,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",189,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_35","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0112 CL/CL","362-1AS0112CLCL","Standard AHU",149,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",213,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_36","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0112 CL/GI","362-1AS0112CLGI","Standard AHU",149,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",209,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_37","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0112 GI/GI","362-1AS0112GIGI","Standard AHU",149,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",207,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_38","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0112 CL/SS","362-1AS0112CLSS","Standard AHU",149,1854,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",608,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_39","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0113 CL/CL","362-1AS0113CLCL","Standard AHU",149,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",230,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_40","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0113 CL/GI","362-1AS0113CLGI","Standard AHU",149,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",226,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_41","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0113 GI/GI","362-1AS0113GIGI","Standard AHU",149,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",223,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_42","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0114 CL/CL","362-1AS0114CLCL","Standard AHU",149,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",247,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_43","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0114 CL/GI","362-1AS0114CLGI","Standard AHU",149,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",242,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_44","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0114 GI/GI","362-1AS0114GIGI","Standard AHU",149,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",240,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_45","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0115 CL/GI","362-1AS0115CLGI","Standard AHU",149,2319,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",294,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_46","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0202 CL/CL","362-1AS0202CLCL","Standard AHU",304,304,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",71,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_47","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0202 CL/GI","362-1AS0202CLGI","Standard AHU",304,304,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",70,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_48","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0202 GI/GI","362-1AS0202GIGI","Standard AHU",304,304,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",68,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_49","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0203 CL/CL","362-1AS0203CLCL","Standard AHU",304,459,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",107,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_50","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0203 CL/GI","362-1AS0203CLGI","Standard AHU",304,459,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",105,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_51","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0203 GI/GI","362-1AS0203GIGI","Standard AHU",304,459,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",104,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_52","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0204 CL/CL","362-1AS0204CLCL","Standard AHU",304,614,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",144,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_53","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0204 CL/GI","362-1AS0204CLGI","Standard AHU",304,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",142,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_54","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0204 GI/GI","362-1AS0204GIGI","Standard AHU",304,614,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",138,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_55","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0204 CL/SS","362-1AS0204CLSS","Standard AHU",304,614,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",391,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_56","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0205 CL/CL","362-1AS0205CLCL","Standard AHU",304,769,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",181,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_57","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0205 CL/GI","362-1AS0205CLGI","Standard AHU",304,769,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",175,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_58","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0205 GI/GI","362-1AS0205GIGI","Standard AHU",304,769,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",172,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_59","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0206 CL/CL","362-1AS0206CLCL","Standard AHU",304,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",216,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_60","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0206 CL/GI","362-1AS0206CLGI","Standard AHU",304,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",213,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_61","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0206 GI/GI","362-1AS0206GIGI","Standard AHU",304,924,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",209,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_62","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0207 CL/CL","362-1AS0207CLCL","Standard AHU",304,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",253,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_63","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0207 CL/GI","362-1AS0207CLGI","Standard AHU",304,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",249,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_64","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0207 GI/GI","362-1AS0207GIGI","Standard AHU",304,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",242,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_65","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0208 CL/CL","362-1AS0208CLCL","Standard AHU",304,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",288,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_66","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0208 CL/GI","362-1AS0208CLGI","Standard AHU",304,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",282,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_67","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0208 GI/GI","362-1AS0208GIGI","Standard AHU",304,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",278,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_68","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0209 CL/CL","362-1AS0209CLCL","Standard AHU",304,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",324,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_69","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0209 CL/GI","362-1AS0209CLGI","Standard AHU",304,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",319,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_70","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0209 GI/GI","362-1AS0209GIGI","Standard AHU",304,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",314,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_71","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0210 CL/CL","362-1AS0210CLCL","Standard AHU",304,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",361,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_72","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0210 CL/GI","362-1AS0210CLGI","Standard AHU",304,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",354,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_73","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0210 GI/GI","362-1AS0210GIGI","Standard AHU",304,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",348,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_74","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0210 CL/SS","362-1AS0210CLSS","Standard AHU",304,1544,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",968,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_75","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0211 CL/CL","362-1AS0211CLCL","Standard AHU",304,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",395,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_76","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0211 CL/GI","362-1AS0211CLGI","Standard AHU",304,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",390,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_77","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0211 GI/GI","362-1AS0211GIGI","Standard AHU",304,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",384,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_78","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0212 CL/CL","362-1AS0212CLCL","Standard AHU",304,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",431,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_79","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0212 CL/GI","362-1AS0212CLGI","Standard AHU",304,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",425,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_80","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0212 GI/GI","362-1AS0212GIGI","Standard AHU",304,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",419,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_81","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0212 CL/SS","362-1AS0212CLSS","Standard AHU",304,1854,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1158,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_82","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0213 CL/CL","362-1AS0213CLCL","Standard AHU",304,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",468,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_83","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0213 CL/GI","362-1AS0213CLGI","Standard AHU",304,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",461,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_84","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0213 GI/GI","362-1AS0213GIGI","Standard AHU",304,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",453,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_85","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0214 CL/CL","362-1AS0214CLCL","Standard AHU",304,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",503,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_86","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0214 CL/GI","362-1AS0214CLGI","Standard AHU",304,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",497,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_87","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0214 GI/GI","362-1AS0214GIGI","Standard AHU",304,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",489,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_88","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0303 CL/CL","362-1AS0303CLCL","Standard AHU",459,459,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",161,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_89","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0303 CL/GI","362-1AS0303CLGI","Standard AHU",459,459,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",159,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_90","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0303 GI/GI","362-1AS0303GIGI","Standard AHU",459,459,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",156,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_91","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0304 CL/CL","362-1AS0304CLCL","Standard AHU",459,614,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",216,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_92","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0304 CL/GI","362-1AS0304CLGI","Standard AHU",459,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",214,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_93","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0304 GI/GI","362-1AS0304GIGI","Standard AHU",459,614,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",210,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_94","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0304 CL/SS","362-1AS0304CLSS","Standard AHU",459,614,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",580,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_95","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0305 CL/CL","362-1AS0305CLCL","Standard AHU",459,769,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",271,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_96","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0305 CL/GI","362-1AS0305CLGI","Standard AHU",459,769,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",267,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_97","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0305 GI/GI","362-1AS0305GIGI","Standard AHU",459,769,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",261,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_98","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0306 CL/CL","362-1AS0306CLCL","Standard AHU",459,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",325,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_99","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0306 CL/GI","362-1AS0306CLGI","Standard AHU",459,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",320,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_100","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0306 GI/GI","362-1AS0306GIGI","Standard AHU",459,924,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",315,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_101","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0307 CL/CL","362-1AS0307CLCL","Standard AHU",459,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",381,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_102","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0307 CL/GI","362-1AS0307CLGI","Standard AHU",459,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",373,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_103","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0307 GI/GI","362-1AS0307GIGI","Standard AHU",459,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",366,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_104","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0308 CL/CL","362-1AS0308CLCL","Standard AHU",459,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",433,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_105","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0308 CL/GI","362-1AS0308CLGI","Standard AHU",459,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",428,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_106","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0308 GI/GI","362-1AS0308GIGI","Standard AHU",459,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",420,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_107","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0309 CL/CL","362-1AS0309CLCL","Standard AHU",459,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",489,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_108","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0309 CL/GI","362-1AS0309CLGI","Standard AHU",459,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",480,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_109","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0309 GI/GI","362-1AS0309GIGI","Standard AHU",459,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",473,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_110","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0310 CL/CL","362-1AS0310CLCL","Standard AHU",459,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",544,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_111","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0310 CL/GI","362-1AS0310CLGI","Standard AHU",459,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",534,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_112","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0310 GI/GI","362-1AS0310GIGI","Standard AHU",459,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",527,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_113","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0311 CL/CL","362-1AS0311CLCL","Standard AHU",459,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",598,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_114","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0311 CL/GI","362-1AS0311CLGI","Standard AHU",459,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",588,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_115","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0311 GI/GI","362-1AS0311GIGI","Standard AHU",459,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",578,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_116","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0312 CL/CL","362-1AS0312CLCL","Standard AHU",459,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",653,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_117","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0312 CL/GI","362-1AS0312CLGI","Standard AHU",459,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",641,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_118","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0312 GI/GI","362-1AS0312GIGI","Standard AHU",459,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",631,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_119","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0313 CL/CL","362-1AS0313CLCL","Standard AHU",459,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",707,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_120","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0313 CL/GI","362-1AS0313CLGI","Standard AHU",459,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",695,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_121","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0313 GI/GI","362-1AS0313GIGI","Standard AHU",459,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",683,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_122","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0314 CL/CL","362-1AS0314CLCL","Standard AHU",459,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",762,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_123","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0314 CL/GI","362-1AS0314CLGI","Standard AHU",459,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",749,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_124","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0314 GI/GI","362-1AS0314GIGI","Standard AHU",459,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",737,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_125","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0315 CL/GI","362-1AS0315CLGI","Standard AHU",459,2319,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",905,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_126","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0316 CL/GI","362-1AS0316CLGI","Standard AHU",459,2474,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1014,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_127","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0402 CL/GI","362-1AS0402CLGI","Standard AHU",614,304,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",142,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_128","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0404 CL/CL","362-1AS0404CLCL","Standard AHU",614,614,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",290,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_129","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0404 CL/GI","362-1AS0404CLGI","Standard AHU",614,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",284,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_130","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0404 GI/GI","362-1AS0404GIGI","Standard AHU",614,614,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",280,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_131","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0404 CL/SS","362-1AS0404CLSS","Standard AHU",614,614,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",781,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_132","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0405 CL/CL","362-1AS0405CLCL","Standard AHU",614,769,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",362,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_133","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0405 CL/GI","362-1AS0405CLGI","Standard AHU",614,769,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",358,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_134","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0405 GI/GI","362-1AS0405GIGI","Standard AHU",614,769,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",350,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_135","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0405 CL/SS","362-1AS0405CLSS","Standard AHU",614,769,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1039,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_136","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0406 CL/CL","362-1AS0406CLCL","Standard AHU",614,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",434,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_137","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0406 CL/GI","362-1AS0406CLGI","Standard AHU",614,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",428,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_138","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0406 GI/GI","362-1AS0406GIGI","Standard AHU",614,924,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",421,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_139","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0406 CL/SS","362-1AS0406CLSS","Standard AHU",614,924,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1244,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_140","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0407 CL/CL","362-1AS0407CLCL","Standard AHU",614,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",508,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_141","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0407 CL/GI","362-1AS0407CLGI","Standard AHU",614,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",500,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_142","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0407 GI/GI","362-1AS0407GIGI","Standard AHU",614,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",491,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_143","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0407 CL/SS","362-1AS0407CLSS","Standard AHU",614,1079,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1456,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_144","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0408 CL/CL","362-1AS0408CLCL","Standard AHU",614,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",580,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_145","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0408 CL/GI","362-1AS0408CLGI","Standard AHU",614,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",571,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_146","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0408 GI/GI","362-1AS0408GIGI","Standard AHU",614,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",562,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_147","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0408 CL/SS","362-1AS0408CLSS","Standard AHU",614,1234,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1565,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_148","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0409 CL/CL","362-1AS0409CLCL","Standard AHU",614,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",654,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_149","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0409 CL/GI","362-1AS0409CLGI","Standard AHU",614,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",643,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_150","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0409 GI/GI","362-1AS0409GIGI","Standard AHU",614,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",632,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_151","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0409 CL/SS","362-1AS0409CLSS","Standard AHU",614,1389,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1754,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_152","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0410 CL/CL","362-1AS0410CLCL","Standard AHU",614,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",726,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_153","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0410 CL/GI","362-1AS0410CLGI","Standard AHU",614,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",715,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_154","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0410 GI/GI","362-1AS0410GIGI","Standard AHU",614,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",703,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_155","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0410 CL/SS","362-1AS0410CLSS","Standard AHU",614,1544,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1958,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_156","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0411 CL/CL","362-1AS0411CLCL","Standard AHU",614,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",800,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_157","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0411 CL/GI","362-1AS0411CLGI","Standard AHU",614,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",785,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_158","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0411 GI/GI","362-1AS0411GIGI","Standard AHU",614,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",774,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_159","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0412 CL/CL","362-1AS0412CLCL","Standard AHU",614,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",872,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_160","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0412 CL/GI","362-1AS0412CLGI","Standard AHU",614,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",859,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_161","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0412 GI/GI","362-1AS0412GIGI","Standard AHU",614,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",844,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_162","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0412 CL/SS","362-1AS0412CLSS","Standard AHU",614,1854,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2351,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_163","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0413 CL/CL","362-1AS0413CLCL","Standard AHU",614,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",945,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_164","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0413 CL/GI","362-1AS0413CLGI","Standard AHU",614,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",929,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_165","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0413 GI/GI","362-1AS0413GIGI","Standard AHU",614,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",914,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_166","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0414 CL/CL","362-1AS0414CLCL","Standard AHU",614,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1017,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_167","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0414 CL/GI","362-1AS0414CLGI","Standard AHU",614,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1001,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_168","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0414 GI/GI","362-1AS0414GIGI","Standard AHU",614,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",985,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_169","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0416 GI/GI","362-1AS0416GIGI","Standard AHU",614,2474,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1355,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_170","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0505 CL/CL","362-1AS0505CLCL","Standard AHU",769,769,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",453,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_171","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0505 CL/GI","362-1AS0505CLGI","Standard AHU",769,769,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",447,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_172","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0505 GI/GI","362-1AS0505GIGI","Standard AHU",769,769,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",439,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_173","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0506 CL/CL","362-1AS0506CLCL","Standard AHU",769,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",544,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_174","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0506 CL/GI","362-1AS0506CLGI","Standard AHU",769,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",536,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_175","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0506 GI/GI","362-1AS0506GIGI","Standard AHU",769,924,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",527,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_176","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0506 CL/SS","362-1AS0506CLSS","Standard AHU",769,924,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1562,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_177","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0507 CL/CL","362-1AS0507CLCL","Standard AHU",769,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",635,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_178","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0507 CL/GI","362-1AS0507CLGI","Standard AHU",769,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",627,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_179","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0507 GI/GI","362-1AS0507GIGI","Standard AHU",769,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",616,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_180","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0508 CL/CL","362-1AS0508CLCL","Standard AHU",769,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",726,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_181","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0508 CL/GI","362-1AS0508CLGI","Standard AHU",769,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",715,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_182","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0508 GI/GI","362-1AS0508GIGI","Standard AHU",769,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",703,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_183","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0508 CL/SS","362-1AS0508CLSS","Standard AHU",769,1234,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2085,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_184","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0509 CL/CL","362-1AS0509CLCL","Standard AHU",769,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",820,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_185","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0509 CL/GI","362-1AS0509CLGI","Standard AHU",769,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",805,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_186","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0509 GI/GI","362-1AS0509GIGI","Standard AHU",769,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",792,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_187","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0510 CL/CL","362-1AS0510CLCL","Standard AHU",769,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",910,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_188","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0510 CL/GI","362-1AS0510CLGI","Standard AHU",769,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",895,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_189","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0510 GI/GI","362-1AS0510GIGI","Standard AHU",769,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",881,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_190","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0511 CL/CL","362-1AS0511CLCL","Standard AHU",769,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1000,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_191","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0511 CL/GI","362-1AS0511CLGI","Standard AHU",769,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",985,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_192","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0511 GI/GI","362-1AS0511GIGI","Standard AHU",769,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",970,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_193","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0512 CL/CL","362-1AS0512CLCL","Standard AHU",769,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1094,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_194","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0512 CL/GI","362-1AS0512CLGI","Standard AHU",769,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1075,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_195","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0512 GI/GI","362-1AS0512GIGI","Standard AHU",769,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1057,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_196","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0512 CL/SS","362-1AS0512CLSS","Standard AHU",769,1854,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2946,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_197","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0513 CL/CL","362-1AS0513CLCL","Standard AHU",769,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1183,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_198","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0513 CL/GI","362-1AS0513CLGI","Standard AHU",769,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1163,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_199","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0513 GI/GI","362-1AS0513GIGI","Standard AHU",769,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1146,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_200","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0514 CL/CL","362-1AS0514CLCL","Standard AHU",769,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1274,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_201","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0514 CL/GI","362-1AS0514CLGI","Standard AHU",769,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1253,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_202","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0514 GI/GI","362-1AS0514GIGI","Standard AHU",769,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1233,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_203","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0516 CL/GI","362-1AS0516CLGI","Standard AHU",769,2474,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1570,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_204","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0604 CL/GI","362-1AS0604CLGI","Standard AHU",924,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",428,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_205","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0606 CL/CL","362-1AS0606CLCL","Standard AHU",924,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",654,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_206","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0606 CL/GI","362-1AS0606CLGI","Standard AHU",924,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",644,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_207","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0606 GI/GI","362-1AS0606GIGI","Standard AHU",924,924,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",633,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_208","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0607 CL/CL","362-1AS0607CLCL","Standard AHU",924,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",764,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_209","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0607 CL/GI","362-1AS0607CLGI","Standard AHU",924,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",750,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_210","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0607 GI/GI","362-1AS0607GIGI","Standard AHU",924,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",738,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_211","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0608 CL/CL","362-1AS0608CLCL","Standard AHU",924,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",874,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_212","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0608 CL/GI","362-1AS0608CLGI","Standard AHU",924,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",860,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_213","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0608 GI/GI","362-1AS0608GIGI","Standard AHU",924,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",844,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_214","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0608 CL/SS","362-1AS0608CLSS","Standard AHU",924,1234,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2352,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_215","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0609 CL/CL","362-1AS0609CLCL","Standard AHU",924,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",983,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_216","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0609 CL/GI","362-1AS0609CLGI","Standard AHU",924,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",969,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_217","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0609 GI/GI","362-1AS0609GIGI","Standard AHU",924,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",951,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_218","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0610 CL/CL","362-1AS0610CLCL","Standard AHU",924,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1094,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_219","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0610 CL/GI","362-1AS0610CLGI","Standard AHU",924,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1076,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_220","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0610 GI/GI","362-1AS0610GIGI","Standard AHU",924,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1057,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_221","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0610 CL/SS","362-1AS0610CLSS","Standard AHU",924,1544,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2947,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_222","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0611 CL/CL","362-1AS0611CLCL","Standard AHU",924,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1204,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_223","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0611 CL/GI","362-1AS0611CLGI","Standard AHU",924,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1183,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_224","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0611 GI/GI","362-1AS0611GIGI","Standard AHU",924,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1163,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_225","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0612 CL/CL","362-1AS0612CLCL","Standard AHU",924,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1314,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_226","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0612 CL/GI","362-1AS0612CLGI","Standard AHU",924,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1291,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_227","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0612 GI/GI","362-1AS0612GIGI","Standard AHU",924,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1270,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_228","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0612 CL/SS","362-1AS0612CLSS","Standard AHU",924,1854,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3764,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_229","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0613 CL/CL","362-1AS0613CLCL","Standard AHU",924,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1422,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_230","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0613 CL/GI","362-1AS0613CLGI","Standard AHU",924,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1398,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_231","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0613 GI/GI","362-1AS0613GIGI","Standard AHU",924,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1377,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_232","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0614 CL/CL","362-1AS0614CLCL","Standard AHU",924,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1531,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_233","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0614 CL/GI","362-1AS0614CLGI","Standard AHU",924,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1507,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_234","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0614 GI/GI","362-1AS0614GIGI","Standard AHU",924,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1482,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_235","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0706 CL/GI","362-1AS0706CLGI","Standard AHU",1079,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",750,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_236","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0707 CL/CL","362-1AS0707CLCL","Standard AHU",1079,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",891,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_237","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0707 CL/GI","362-1AS0707CLGI","Standard AHU",1079,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",877,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_238","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0707 GI/GI","362-1AS0707GIGI","Standard AHU",1079,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",863,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_239","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0708 CL/CL","362-1AS0708CLCL","Standard AHU",1079,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1019,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_240","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0708 CL/GI","362-1AS0708CLGI","Standard AHU",1079,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1004,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_241","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0708 GI/GI","362-1AS0708GIGI","Standard AHU",1079,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",986,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_242","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0708 CL/SS","362-1AS0708CLSS","Standard AHU",1079,1234,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2744,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_243","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0709 CL/CL","362-1AS0709CLCL","Standard AHU",1079,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1148,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_244","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0709 CL/GI","362-1AS0709CLGI","Standard AHU",1079,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1128,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_245","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0709 GI/GI","362-1AS0709GIGI","Standard AHU",1079,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1111,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_246","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0710 CL/CL","362-1AS0710CLCL","Standard AHU",1079,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1276,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_247","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0710 CL/GI","362-1AS0710CLGI","Standard AHU",1079,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1256,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_248","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0710 GI/GI","362-1AS0710GIGI","Standard AHU",1079,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1234,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_249","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0711 CL/CL","362-1AS0711CLCL","Standard AHU",1079,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1404,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_250","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0711 CL/GI","362-1AS0711CLGI","Standard AHU",1079,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1382,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_251","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0711 GI/GI","362-1AS0711GIGI","Standard AHU",1079,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1358,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_252","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0712 CL/CL","362-1AS0712CLCL","Standard AHU",1079,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1532,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_253","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0712 CL/GI","362-1AS0712CLGI","Standard AHU",1079,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1507,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_254","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0712 GI/GI","362-1AS0712GIGI","Standard AHU",1079,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1482,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_255","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0712 CL/SS","362-1AS0712CLSS","Standard AHU",1079,1854,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",4123,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_256","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0713 CL/CL","362-1AS0713CLCL","Standard AHU",1079,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1659,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_257","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0713 CL/GI","362-1AS0713CLGI","Standard AHU",1079,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1633,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_258","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0713 GI/GI","362-1AS0713GIGI","Standard AHU",1079,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1607,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_259","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0714 CL/CL","362-1AS0714CLCL","Standard AHU",1079,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1790,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_260","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0714 CL/GI","362-1AS0714CLGI","Standard AHU",1079,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1760,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_261","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0714 GI/GI","362-1AS0714GIGI","Standard AHU",1079,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1730,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_262","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0715 CL/GI","362-1AS0715CLGI","Standard AHU",1079,2319,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2127,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_263","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0101 CL/CL","362-2AS0101CLCL","Standard AHU",149,149,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",21,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_264","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0101 CL/GI","362-2AS0101CLGI","Standard AHU",149,149,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",21,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_265","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0101 GI/GI","362-2AS0101GIGI","Standard AHU",149,149,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",21,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_266","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0102 CL/CL","362-2AS0102CLCL","Standard AHU",149,304,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",42,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_267","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0102 CL/GI","362-2AS0102CLGI","Standard AHU",149,304,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",42,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_268","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0102 GI/GI","362-2AS0102GIGI","Standard AHU",149,304,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",41,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_269","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0103 CL/CL","362-2AS0103CLCL","Standard AHU",149,459,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",63,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_270","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0103 CL/GI","362-2AS0103CLGI","Standard AHU",149,459,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",63,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_271","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0103 GI/GI","362-2AS0103GIGI","Standard AHU",149,459,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",63,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_272","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0104 CL/CL","362-2AS0104CLCL","Standard AHU",149,614,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",110,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_273","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0104 CL/GI","362-2AS0104CLGI","Standard AHU",149,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",84,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_274","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0104 GI/GI","362-2AS0104GIGI","Standard AHU",149,614,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",82,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_275","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0105 CL/CL","362-2AS0105CLCL","Standard AHU",149,769,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",106,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_276","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0105 CL/GI","362-2AS0105CLGI","Standard AHU",149,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",104,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_277","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0105 GI/GI","362-2AS0105GIGI","Standard AHU",149,769,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",104,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_278","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0106 CL/CL","362-2AS0106CLCL","Standard AHU",149,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",128,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_279","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0106 CL/GI","362-2AS0106CLGI","Standard AHU",149,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",126,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_280","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0106 GI/GI","362-2AS0106GIGI","Standard AHU",149,924,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",123,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_281","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0107 CL/CL","362-2AS0107CLCL","Standard AHU",149,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",149,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_282","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0107 CL/GI","362-2AS0107CLGI","Standard AHU",149,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",145,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_283","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0107 GI/GI","362-2AS0107GIGI","Standard AHU",149,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",143,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_284","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0108 CL/CL","362-2AS0108CLCL","Standard AHU",149,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",168,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_285","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0108 CL/GI","362-2AS0108CLGI","Standard AHU",149,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",166,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_286","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0108 GI/GI","362-2AS0108GIGI","Standard AHU",149,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",165,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_287","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0109 CL/CL","362-2AS0109CLCL","Standard AHU",149,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",189,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_288","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0109 CL/GI","362-2AS0109CLGI","Standard AHU",149,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",188,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_289","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0109 GI/GI","362-2AS0109GIGI","Standard AHU",149,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",186,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_290","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0110 CL/CL","362-2AS0110CLCL","Standard AHU",149,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",212,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_291","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0110 CL/GI","362-2AS0110CLGI","Standard AHU",149,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",210,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_292","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0110 GI/GI","362-2AS0110GIGI","Standard AHU",149,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",207,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_293","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0111 CL/CL","362-2AS0111CLCL","Standard AHU",149,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",232,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_294","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0111 CL/GI","362-2AS0111CLGI","Standard AHU",149,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",229,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_295","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0111 GI/GI","362-2AS0111GIGI","Standard AHU",149,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",227,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_296","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0112 CL/CL","362-2AS0112CLCL","Standard AHU",149,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",254,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_297","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0112 CL/GL","362-2AS0112CLGI","Standard AHU",149,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",250,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_298","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0112 GI/GI","362-2AS0112GIGI","Standard AHU",149,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",247,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_299","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0113 CL/CL","362-2AS0113CLCL","Standard AHU",149,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",274,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_300","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0113 CL/GI","362-2AS0113CLGI","Standard AHU",149,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",270,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_301","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0113 GI/GI","362-2AS0113GIGI","Standard AHU",149,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",269,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_302","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0114 CL/CL","362-2AS0114CLCL","Standard AHU",149,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",296,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_303","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0114 CL/GI","362-2AS0114CLGI","Standard AHU",149,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",291,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_304","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0114 GI/GI","362-2AS0114GIGI","Standard AHU",149,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",289,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_305","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0202 CL/CL","362-2AS0202CLCL","Standard AHU",304,304,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",86,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_306","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0202 CL/GI","362-2AS0202CLGI","Standard AHU",304,304,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",84,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_307","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0202 GI/GI","362-2AS0202GIGI","Standard AHU",304,304,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",83,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_308","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0203 CL/CL","362-2AS0203CLCL","Standard AHU",304,459,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",130,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_309","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0203 CL/GI","362-2AS0203CLGI","Standard AHU",304,459,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",128,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_310","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0203 GI/GI","362-2AS0203GIGI","Standard AHU",304,459,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",126,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_311","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0208 CL/CL","362-2AS0204CLCL","Standard AHU",304,614,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",172,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_312","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0204 CL/GI","362-2AS0204CLGI","Standard AHU",304,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",169,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_313","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0204 GI/GI","362-2AS0204GIGI","Standard AHU",304,614,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",166,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_314","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0204 GI/SS","362-2AS0204CLSS","Standard AHU",304,614,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",418,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_315","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0205 CL/CL","362-2AS0205CLCL","Standard AHU",304,769,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",214,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_316","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0205 CL/GI","362-2AS0205CLGI","Standard AHU",304,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",212,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_317","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0205 GI/GI","362-2AS0205GIGI","Standard AHU",304,769,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",210,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_318","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0205 CL/SS","362-2AS0205CLSS","Standard AHU",304,769,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",513,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_319","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0206 CL/CL","362-2AS0206CLCL","Standard AHU",304,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",257,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_320","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0206 CL/GI","362-2AS0206CLGI","Standard AHU",304,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",255,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_321","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0206 GI/GI","362-2AS0206GIGI","Standard AHU",304,924,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",251,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_322","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0206 CL/SS","362-2AS0206CLSS","Standard AHU",304,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",622,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_323","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0207 CL/CL","362-2AS0207CLCL","Standard AHU",304,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",302,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_324","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0207 CL/GI","362-2AS0207CLGI","Standard AHU",304,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",297,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_325","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0207 GI/GI","362-2AS0207GIGI","Standard AHU",304,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",293,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_326","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0208 CL/CL","362-2AS0208CLCL","Standard AHU",304,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",344,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_327","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0208 CL/GI","362-2AS0208CLGI","Standard AHU",304,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",339,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_328","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0208 GI/GI","362-2AS0208GIGI","Standard AHU",304,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",336,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_329","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0208 CL/SS","362-2AS0208CLSS","Standard AHU",304,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",837,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_330","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0209 CL/CL","362-2AS0209CLCL","Standard AHU",304,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",389,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_331","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0209 CL/GI","362-2AS0209CLGI","Standard AHU",304,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",384,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_332","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0209 GI/GI","362-2AS0209GIGI","Standard AHU",304,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",377,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_333","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0210 CL/CL","362-2AS0210CLCL","Standard AHU",304,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",430,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_334","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0210 CL/GI","362-2AS0210CLGI","Standard AHU",304,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",426,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_335","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0210 GI/GI","362-2AS0210GIGI","Standard AHU",304,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",419,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_336","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0210 CL/SS","362-2AS0210CLSS","Standard AHU",304,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1040,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_337","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0211 CL/CL","362-2AS0211CLCL","Standard AHU",304,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",475,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_338","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0211 CL/GI","362-2AS0211CLGI","Standard AHU",304,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",469,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_339","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0211 GI/GI","362-2AS0211GIGI","Standard AHU",304,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",462,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_340","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0212 CL/CL","362-2AS0212CLCL","Standard AHU",304,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",517,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_341","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0212 CL/GI","362-2AS0212CLGI","Standard AHU",304,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",509,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_342","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0212 CL/SS","362-2AS0212CLSS","Standard AHU",304,1854,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1176,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_343","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0212 GI/GI","362-2AS0212GIGI","Standard AHU",304,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",504,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_344","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0213 CL/CL","362-2AS0213CLCL","Standard AHU",304,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",561,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_345","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0213 CL/GI","362-2AS0213CLGI","Standard AHU",304,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",553,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_346","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0213 GI/GI","362-2AS0213GIGI","Standard AHU",304,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",546,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_347","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0214 CL/CL","362-2AS0214CLCL","Standard AHU",304,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",604,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_348","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0214 CL/GI","362-2AS0214CLGI","Standard AHU",304,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",596,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_349","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0214 GI/GI","362-2AS0214GIGI","Standard AHU",304,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",588,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_350","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0216 CL/GI","362-2AS0216CLGI","Standard AHU",304,2474,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",754,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_351","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0303 CL/CL","362-2AS0303CLCL","Standard AHU",459,459,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",192,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_352","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0303 CL/GI","362-2AS0303CLGI","Standard AHU",459,459,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",190,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_353","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0303 GI/GI","362-2AS0303GIGI","Standard AHU",459,459,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",189,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_354","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0304 CL/CL","362-2AS0304CLCL","Standard AHU",459,614,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",258,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_355","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0304 CL/GI","362-2AS0304CLGI","Standard AHU",459,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",255,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_356","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0304 GI/GI","362-2AS0304GIGI","Standard AHU",459,614,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",252,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_357","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0305 CL/CL","362-2AS0305CLCL","Standard AHU",459,769,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",324,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_358","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0305 CL/GI","362-2AS0305CLGI","Standard AHU",459,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",319,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_359","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0305 GI/GI","362-2AS0305GIGI","Standard AHU",459,769,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",315,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_360","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0306 CL/CL","362-2AS0306CLCL","Standard AHU",459,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",389,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_361","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0306 CL/GI","362-2AS0306CLGI","Standard AHU",459,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",385,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_362","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0306 GI/GI","362-2AS0306GIGI","Standard AHU",459,924,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",378,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_363","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0306 CL/SS","362-2AS0306CLSS","Standard AHU",459,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",934,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_364","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0307 CL/CL","362-2AS0307CLCL","Standard AHU",459,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",454,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_365","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0307 CL/GI","362-2AS0307CLGI","Standard AHU",459,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",448,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_366","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0307 GI/GI","362-2AS0307GIGI","Standard AHU",459,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",444,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_367","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0308 CL/CL","362-2AS0308CLCL","Standard AHU",459,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",520,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_368","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0308 CL/GI","362-2AS0308CLGI","Standard AHU",459,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",514,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_369","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0308 GI/GI","362-2AS0308GIGI","Standard AHU",459,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",506,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_370","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0308 CL/SS","362-2AS0308CLSS","Standard AHU",459,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1259,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_371","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0309 CL/CL","362-2AS0309CLCL","Standard AHU",459,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",586,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_372","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0309 CL/GI","362-2AS0309CLGI","Standard AHU",459,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",578,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_373","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0309 GI/GI","362-2AS0309GIGI","Standard AHU",459,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",570,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_374","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0310 CL/CL","362-2AS0310CLCL","Standard AHU",459,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",651,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_375","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0310 CL/GI","362-2AS0310CLGI","Standard AHU",459,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",643,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_376","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0310 GI/GI","362-2AS0310GIGI","Standard AHU",459,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",633,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_377","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0310 CL/SS","362-2AS0310CLSS","Standard AHU",459,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1571,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_378","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0311 CL/CL","362-2AS0311CLCL","Standard AHU",459,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",715,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_379","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0311 CL/GI","362-2AS0311CLGI","Standard AHU",459,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",707,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_380","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0311 GI/GI","362-2AS0311GIGI","Standard AHU",459,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",697,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_381","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0312 CL/CL","362-2AS0312CLCL","Standard AHU",459,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",782,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_382","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0312 CL/GL","362-2AS0312CLGI","Standard AHU",459,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",770,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_383","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0312 GI/GI","362-2AS0312GIGI","Standard AHU",459,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",762,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_384","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0313 CL/CL","362-2AS0313CLCL","Standard AHU",459,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",845,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_385","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0313 CL/GI","362-2AS0313CLGI","Standard AHU",459,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",835,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_386","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0313 GI/GI","362-2AS0313GIGI","Standard AHU",459,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",825,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_387","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0314 CL/CL","362-2AS0314CLCL","Standard AHU",459,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",911,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_388","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0314 CL/GL","362-2AS0314CLGI","Standard AHU",459,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",899,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_389","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0314 GI/GI","362-2AS0314GIGI","Standard AHU",459,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",887,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_390","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0404 CL/CL","362-2AS0404CLCL","Standard AHU",614,614,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",346,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_391","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0404 CL/GI","362-2AS0404CLGI","Standard AHU",614,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",341,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_392","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0404 GI/GI","362-2AS0404GIGI","Standard AHU",614,614,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",338,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_393","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0404 CL/SS","362-2AS0404CLSS","Standard AHU",614,614,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",839,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_394","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0405 CL/CL","362-2AS0405CLCL","Standard AHU",614,769,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",434,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_395","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0405 CL/GI","362-2AS0405CLGI","Standard AHU",614,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",428,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_396","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0405 GI/GI","362-2AS0405GIGI","Standard AHU",614,769,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",422,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_397","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0405 CL/SS","362-2AS0405CLSS","Standard AHU",614,769,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1043,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_398","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0406 CL/CL","362-2AS0406CLCL","Standard AHU",614,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",655,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_399","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0406 CL/GL","362-2AS0406CLGI","Standard AHU",614,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",515,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_400","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0406 GI/GI","362-2AS0406GIGI","Standard AHU",614,924,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",507,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_401","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0407 CL/CL","362-2AS0407CLCL","Standard AHU",614,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",608,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_402","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0407 CL/GI","362-2AS0407CLGI","Standard AHU",614,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",601,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_403","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0407 GI/GI","362-2AS0407GIGI","Standard AHU",614,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",592,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_404","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0408 CL/CL","362-2AS0408CLCL","Standard AHU",614,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",695,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_405","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0408 CL/GI","362-2AS0408CLGI","Standard AHU",614,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",686,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_406","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0408 GI/GI","362-2AS0408GIGI","Standard AHU",614,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",678,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_407","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0408 CL/SS","362-2AS0408CLSS","Standard AHU",614,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1680,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_408","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0409 CL/CL","362-2AS0409CLCL","Standard AHU",614,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",784,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_409","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0409 CL/GI","362-2AS0409CLGI","Standard AHU",614,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",771,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_410","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0409 GI/GI","362-2AS0409GIGI","Standard AHU",614,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",763,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_411","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0410 CL/CL","362-2AS0410CLCL","Standard AHU",614,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",869,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_412","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0410 CL/GI","362-2AS0410CLGI","Standard AHU",614,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",860,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_413","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0410 GI/GI","362-2AS0410GIGI","Standard AHU",614,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",847,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_414","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0410 CL/SS","362-2AS0410CLSS","Standard AHU",614,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2103,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_415","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0411 CL/CL","362-2AS0411CLCL","Standard AHU",614,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",957,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_416","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0411 CL/GI","362-2AS0411CLGI","Standard AHU",614,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",945,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_417","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0411 GI/GI","362-2AS0411GIGI","Standard AHU",614,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",931,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_418","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0412 CL/CL","362-2AS0412CLCL","Standard AHU",614,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1044,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_419","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0412 CL/GI","362-2AS0412CLGI","Standard AHU",614,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1031,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_420","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0412 GI/GI","362-2AS0412GIGI","Standard AHU",614,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1017,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_421","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0412 CL/SS","362-2AS0412CLSS","Standard AHU",614,1854,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2522,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_422","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0413 CL/CL","362-2AS0413CLCL","Standard AHU",614,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1131,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_423","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0413 CL/GI","362-2AS0413CLGI","Standard AHU",614,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1117,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_424","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0413 GI/GI","362-2AS0413GIGI","Standard AHU",614,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1103,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_425","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0414 CL/CL","362-2AS0414CLCL","Standard AHU",614,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1219,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_426","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0414 CL/GL","362-2AS0414CLGI","Standard AHU",614,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1204,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_427","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0414 GI/GI","362-2AS0414GIGI","Standard AHU",614,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1186,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_428","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0416 CL/GL","362-2AS0416CLGI","Standard AHU",614,2474,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1433,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_429","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0505 CL/CL","362-2AS0505CLCL","Standard AHU",769,769,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",544,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_430","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0505 CL/GI","362-2AS0505CLGI","Standard AHU",769,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",535,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_431","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0505 GI/GI","362-2AS0505GIGI","Standard AHU",769,769,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",529,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_432","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0506 CL/CL","362-2AS0506CLCL","Standard AHU",769,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",653,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_433","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0506 CL/GI","362-2AS0506CLGI","Standard AHU",769,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",644,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_434","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0506 GI/GI","362-2AS0506GIGI","Standard AHU",769,924,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",634,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_435","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0506 CL/SS","362-2AS0506CLSS","Standard AHU",769,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1572,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_436","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0507 CL/CL","362-2AS0507CLCL","Standard AHU",769,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",762,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_437","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0507 CL/GI","362-2AS0507CLGI","Standard AHU",769,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",750,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_438","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0507 GI/GI","362-2AS0507GIGI","Standard AHU",769,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",742,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_439","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0508 CL/CL","362-2AS0508CLCL","Standard AHU",769,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",870,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_440","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0508 CL/GI","362-2AS0508CLGI","Standard AHU",769,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",860,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_441","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0508 GI/GI","362-2AS0508GIGI","Standard AHU",769,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",847,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_442","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0508 CL/SS","362-2AS0508CLSS","Standard AHU",769,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2103,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_443","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0509 CL/CL","362-2AS0509CLCL","Standard AHU",769,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",980,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_444","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0509 CL/GI","362-2AS0509CLGI","Standard AHU",769,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",967,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_445","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0509 GI/GI","362-2AS0509GIGI","Standard AHU",769,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",954,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_446","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0510 CL/CL","362-2AS0510CLCL","Standard AHU",769,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1090,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_447","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0510 CL/GI","362-2AS0510CLGI","Standard AHU",769,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1074,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_448","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0510 GI/GI","362-2AS0510GIGI","Standard AHU",769,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1062,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_449","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0510 CL/SS","362-2AS0510CLSS","Standard AHU",769,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2631,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_450","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0511 CL/CL","362-2AS0511CLCL","Standard AHU",769,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1200,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_451","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0511 CL/GI","362-2AS0511CLGI","Standard AHU",769,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1183,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_452","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0511 GI/GI","362-2AS0511GIGI","Standard AHU",769,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1168,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_453","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0512 CL/CL","362-2AS0512CLCL","Standard AHU",769,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1308,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_454","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0512 CL/GL","362-2AS0512CLGI","Standard AHU",769,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1290,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_455","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0512 GI/GI","362-2AS0512GIGI","Standard AHU",769,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1274,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_456","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0513 CL/CL","362-2AS0513CLCL","Standard AHU",769,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1418,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_457","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0513 CL/GI","362-2AS0513CLGI","Standard AHU",769,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1398,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_458","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0513 GI/GI","362-2AS0513GIGI","Standard AHU",769,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1381,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_459","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0514 CL/CL","362-2AS0514CLCL","Standard AHU",769,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1525,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_460","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0514 CL/GL","362-2AS0514CLGI","Standard AHU",769,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1507,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_461","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0514 GI/GI","362-2AS0514GIGI","Standard AHU",769,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1487,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_462","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0516 CL/GL","362-2AS0516CLGI","Standard AHU",769,2474,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1885,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_463","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0606 CL/CL","362-2AS0606CLCL","Standard AHU",924,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",982,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_464","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0606 CL/GI","362-2AS0606CLGI","Standard AHU",924,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",773,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_465","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0606 GI/GI","362-2AS0606GIGI","Standard AHU",924,924,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",764,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_466","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0606 CL/SS","362-2AS0606CLSS","Standard AHU",924,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1885,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_467","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0607 CL/CL","362-2AS0607CLCL","Standard AHU",924,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",915,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_468","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0607 CL/GI","362-2AS0607CLGI","Standard AHU",924,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",903,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_469","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0607 GI/GI","362-2AS0607GIGI","Standard AHU",924,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",890,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_470","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0607 CL/SS","362-2AS0607CLSS","Standard AHU",924,1079,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2211,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_471","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0608 CL/CL","362-2AS0608CLCL","Standard AHU",924,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1045,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_472","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0608 CL/GI","362-2AS0608CLGI","Standard AHU",924,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1033,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_473","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0608 GI/GI","362-2AS0608GIGI","Standard AHU",924,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1019,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_474","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0608 CL/SS","362-2AS0608CLSS","Standard AHU",924,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2524,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_475","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0609 CL/CL","362-2AS0609CLCL","Standard AHU",924,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1178,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_476","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0609 CL/GI","362-2AS0609CLGI","Standard AHU",924,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1162,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_477","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0609 GI/GI","362-2AS0609GIGI","Standard AHU",924,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1148,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_478","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0609 CL/SS","362-2AS0609CLSS","Standard AHU",924,1389,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2837,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_479","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0610 CL/CL","362-2AS0610CLCL","Standard AHU",924,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1309,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_480","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0610 CL/GL","362-2AS0610CLGI","Standard AHU",924,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1291,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_481","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0610 GI/GI","362-2AS0610GIGI","Standard AHU",924,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1274,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_482","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0610 CL/SS","362-2AS0610CLSS","Standard AHU",924,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3161,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_483","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0611 CL/CL","362-2AS0611CLCL","Standard AHU",924,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1582,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_484","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0611 CL/GL","362-2AS0611CLGI","Standard AHU",924,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1422,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_485","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0611 GI/GI","362-2AS0611GIGI","Standard AHU",924,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1403,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_486","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0612 CL/CL","362-2AS0612CLCL","Standard AHU",924,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1571,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_487","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0612 CL/GI","362-2AS0612CLGI","Standard AHU",924,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1550,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_488","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0612 GI/GI","362-2AS0612GIGI","Standard AHU",924,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1530,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_489","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0612 CL/SS","362-2AS0612CLSS","Standard AHU",924,1854,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3786,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_490","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0613 CL/CL","362-2AS0613CLCL","Standard AHU",924,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1702,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_491","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0613 CL/GI","362-2AS0613CLGI","Standard AHU",924,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1680,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_492","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0613 GI/GI","362-2AS0613GIGI","Standard AHU",924,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1658,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_493","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0614 CL/CL","362-2AS0614CLCL","Standard AHU",924,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1835,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_494","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0614 CL/GL","362-2AS0614CLGI","Standard AHU",924,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1811,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_495","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0614 GI/GI","362-2AS0614GIGI","Standard AHU",924,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1786,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_496","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0707 CL/CL","362-2AS0707CLCL","Standard AHU",1079,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1200,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_497","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0707 CL/GI","362-2AS0707CLGI","Standard AHU",1079,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1055,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_498","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0707 GI/GI","362-2AS0707GIGI","Standard AHU",1079,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1040,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_499","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0708 CL/CL","362-2AS0708CLCL","Standard AHU",1079,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1222,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_500","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0708 CL/GL","362-2AS0708CLGI","Standard AHU",1079,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1205,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_501","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0708 GI/GI","362-2AS0708GIGI","Standard AHU",1079,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1190,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_502","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0708 CL/SS","362-2AS0708CLSS","Standard AHU",1079,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2945,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_503","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0709 CL/CL","362-2AS0709CLCL","Standard AHU",1079,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1515,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_504","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0709 CL/GI","362-2AS0709CLGI","Standard AHU",1079,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1357,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_505","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0709 GI/GI","362-2AS0709GIGI","Standard AHU",1079,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1339,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_506","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0710 CL/CL","362-2AS0710CLCL","Standard AHU",1079,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1527,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_507","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0710 CL/GI","362-2AS0710CLGI","Standard AHU",1079,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1508,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_508","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0710 GI/GI","362-2AS0710GIGI","Standard AHU",1079,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1489,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_509","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0710 CL/SS","362-2AS0710CLSS","Standard AHU",1079,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3692,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_510","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0711 CL/CL","362-2AS0711CLCL","Standard AHU",1079,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1681,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_511","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0711 CL/GI","362-2AS0711CLGI","Standard AHU",1079,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1659,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_512","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0711 GI/GI","362-2AS0711GIGI","Standard AHU",1079,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1639,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_513","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0712 CL/CL","362-2AS0712CLCL","Standard AHU",1079,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1835,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_514","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0712 CL/GL","362-2AS0712CLGI","Standard AHU",1079,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1811,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_515","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0712 GI/GI","362-2AS0712GIGI","Standard AHU",1079,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1787,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_516","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0712 CL/SS","362-2AS0712CLSS","Standard AHU",1079,1854,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",4427,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_517","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0713 CL/CL","362-2AS0713CLCL","Standard AHU",1079,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1989,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_518","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0713 CL/GI","362-2AS0713CLGI","Standard AHU",1079,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1962,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_519","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0713 GI/GI","362-2AS0713GIGI","Standard AHU",1079,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1937,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_520","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0714 CL/CL","362-2AS0714CLCL","Standard AHU",1079,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2142,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_521","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0714 CL/GL","362-2AS0714CLGI","Standard AHU",1079,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2114,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_522","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0714 GI/GI","362-2AS0714GIGI","Standard AHU",1079,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",2086,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_523","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0118 CL/GL","999-1AS0118CLGI","Standard AHU",149,2784,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",314,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_524","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0204 CL/GI","999-1AS0204CLGI","Standard AHU",304,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",405,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_525","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0304 CL/GI","999-1AS0304CLGI","Standard AHU",459,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",280,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_526","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0406 CL/GI","999-1AS0406CLGI","Standard AHU",614,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",689,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_527","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0118 CL/GL","999-1AS0418CLGI","Standard AHU",614,2784,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1288,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_528","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0518 CL/GL","999-1AS0518CLGI","Standard AHU",769,2784,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1617,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_529","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0118 CL/GL","999-2AS0118CLGI","Standard AHU",149,2784,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",370,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_530","Amair_AS","panel","Amair AS","PAL ASSY 50MM 0204 CL/GI","999-2AS0204CLGI","Standard AHU",304,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",573,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_531","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0218 CL/GL","999-2AS0218CLGI","Standard AHU",304,2784,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",769,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_532","Amair_AS","panel","Amair AS","PAL ASSY 50MM 0404 CL/GI","999-2AS0404CLGI","Standard AHU",614,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",745,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_533","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0406 CL/GI","999-2AS0406CLGI","Standard AHU",614,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",916,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_534","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0408 CL/GI","999-2AS0408CLGI","Standard AHU",614,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1458,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_535","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0418 CL/GL","999-2AS0418CLGI","Standard AHU",614,2784,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1548,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_536","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0518 CL/GL","999-2AS0518CLGI","Standard AHU",769,2784,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1938,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_537","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0618 CL/GL","999-2AS0618CLGI","Standard AHU",924,2784,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2327,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_538","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0101 CL/CL 0B","362-1AS0101CLCL0B","Standard AHU",149,149,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",17,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_539","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0101 CL/GI 0B","362-1AS0101CLGI0B","Standard AHU",149,149,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",17,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_540","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0101 GI/GI 0B","362-1AS0101GIGI0B","Standard AHU",149,149,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",17,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_541","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0102 CL/CL 0B","362-1AS0102CLCL0B","Standard AHU",149,304,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",34,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_542","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0102 CL/GI 0B","362-1AS0102CLGI0B","Standard AHU",149,304,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",33,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_543","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0102 GI/GI 0B","362-1AS0102GIGI0B","Standard AHU",149,304,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",33,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_544","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0103 CL/CL 0B","362-1AS0103CLCL0B","Standard AHU",149,459,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",49,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_545","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0103 CL/GI 0B","362-1AS0103CLGI0B","Standard AHU",149,459,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",49,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_546","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0103 GI/GI 0B","362-1AS0103GIGI0B","Standard AHU",149,459,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",49,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_547","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0104 CL/CL 0B","362-1AS0104CLCL0B","Standard AHU",149,614,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",67,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_548","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0104 CL/GI 0B","362-1AS0104CLGI0B","Standard AHU",149,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",66,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_549","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0104 GI/GI 0B","362-1AS0104GIGI0B","Standard AHU",149,614,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",65,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_550","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0104 CL/SS 0B","362-1AS0104CLSS0B","Standard AHU",149,614,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",192,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_551","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0105 CL/CL 0B","362-1AS0105CLCL0B","Standard AHU",149,769,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",85,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_552","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0105 CL/GI 0B","362-1AS0105CLGI0B","Standard AHU",149,769,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",83,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_553","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0105 GI/GI 0B","362-1AS0105GIGI0B","Standard AHU",149,769,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",83,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_554","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0106 CL/CL 0B","362-1AS0106CLCL0B","Standard AHU",149,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",102,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_555","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0106 CL/GI 0B","362-1AS0106CLGI0B","Standard AHU",149,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",100,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_556","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0106 GI/GI 0B","362-1AS0106GIGI0B","Standard AHU",149,924,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",99,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_557","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0107 CL/CL 0B","362-1AS0107CLCL0B","Standard AHU",149,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",119,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_558","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0107 CL/GI 0B","362-1AS0107CLGI0B","Standard AHU",149,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",117,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_559","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0107 GI/GI 0B","362-1AS0107GIGI0B","Standard AHU",149,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",116,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_560","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0108 CL/CL 0B","362-1AS0108CLCL0B","Standard AHU",149,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",137,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_561","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0108 CL/GI 0B","362-1AS0108CLGI0B","Standard AHU",149,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",134,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_562","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0108 GI/GI 0B","362-1AS0108GIGI0B","Standard AHU",149,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",130,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_563","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0109 CL/CL 0B","362-1AS0109CLCL0B","Standard AHU",149,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",153,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_564","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0109 CL/GI 0B","362-1AS0109CLGI0B","Standard AHU",149,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",150,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_565","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0109 GI/GI 0B","362-1AS0109GIGI0B","Standard AHU",149,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",148,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_566","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0110 CL/CL 0B","362-1AS0110CLCL0B","Standard AHU",149,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",169,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_567","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0110 CL/GI 0B","362-1AS0110CLGI0B","Standard AHU",149,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",166,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_568","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0110 GI/GI 0B","362-1AS0110GIGI0B","Standard AHU",149,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",165,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_569","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0111 CL/CL 0B","362-1AS0111CLCL0B","Standard AHU",149,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",186,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_570","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0111 CL/GI 0B","362-1AS0111CLGI0B","Standard AHU",149,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",183,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_571","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0111 GI/GI 0B","362-1AS0111GIGI0B","Standard AHU",149,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",181,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_572","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0112 CL/CL 0B","362-1AS0112CLCL0B","Standard AHU",149,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",204,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_573","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0112 CL/GI 0B","362-1AS0112CLGI0B","Standard AHU",149,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",200,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_574","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0112 GI/GI 0B","362-1AS0112GIGI0B","Standard AHU",149,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",198,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_575","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0112 CL/SS 0B","362-1AS0112CLSS0B","Standard AHU",149,1854,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",583,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_576","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0113 CL/CL 0B","362-1AS0113CLCL0B","Standard AHU",149,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",221,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_577","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0113 CL/GI 0B","362-1AS0113CLGI0B","Standard AHU",149,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",217,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_578","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0113 GI/GI 0B","362-1AS0113GIGI0B","Standard AHU",149,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",214,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_579","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0114 CL/CL 0B","362-1AS0114CLCL0B","Standard AHU",149,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",237,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_580","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0114 CL/GI 0B","362-1AS0114CLGI0B","Standard AHU",149,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",232,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_581","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0114 GI/GI 0B","362-1AS0114GIGI0B","Standard AHU",149,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",230,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_582","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0115 CL/GI 0B","362-1AS0115CLGI0B","Standard AHU",149,2319,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",282,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_583","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0202 CL/CL 0B","362-1AS0202CLCL0B","Standard AHU",304,304,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",68,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_584","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0202 CL/GI 0B","362-1AS0202CLGI0B","Standard AHU",304,304,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",67,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_585","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0202 GI/GI 0B","362-1AS0202GIGI0B","Standard AHU",304,304,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",65,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_586","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0203 CL/CL 0B","362-1AS0203CLCL0B","Standard AHU",304,459,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",103,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_587","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0203 CL/GI 0B","362-1AS0203CLGI0B","Standard AHU",304,459,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",101,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_588","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0203 GI/GI 0B","362-1AS0203GIGI0B","Standard AHU",304,459,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",100,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_589","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0204 CL/CL 0B","362-1AS0204CLCL0B","Standard AHU",304,614,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",139,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_590","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0204 CL/GI 0B","362-1AS0204CLGI0B","Standard AHU",304,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",137,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_591","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0204 GI/GI 0B","362-1AS0204GIGI0B","Standard AHU",304,614,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",133,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_592","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0204 CL/SS 0B","362-1AS0204CLSS0B","Standard AHU",304,614,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",375,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_593","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0205 CL/CL 0B","362-1AS0205CLCL0B","Standard AHU",304,769,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",173,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_594","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0205 CL/GI 0B","362-1AS0205CLGI0B","Standard AHU",304,769,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",168,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_595","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0205 GI/GI 0B","362-1AS0205GIGI0B","Standard AHU",304,769,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",166,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_596","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0206 CL/CL 0B","362-1AS0206CLCL0B","Standard AHU",304,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",207,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_597","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0206 CL/GI 0B","362-1AS0206CLGI0B","Standard AHU",304,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",204,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_598","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0206 GI/GI 0B","362-1AS0206GIGI0B","Standard AHU",304,924,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",200,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_599","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0207 CL/CL 0B","362-1AS0207CLCL0B","Standard AHU",304,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",243,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_600","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0207 CL/GI 0B","362-1AS0207CLGI0B","Standard AHU",304,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",239,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_601","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0207 GI/GI 0B","362-1AS0207GIGI0B","Standard AHU",304,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",232,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_602","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0208 CL/CL 0B","362-1AS0208CLCL0B","Standard AHU",304,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",277,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_603","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0208 CL/GI 0B","362-1AS0208CLGI0B","Standard AHU",304,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",271,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_604","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0208 GI/GI 0B","362-1AS0208GIGI0B","Standard AHU",304,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",267,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_605","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0209 CL/CL 0B","362-1AS0209CLCL0B","Standard AHU",304,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",311,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_606","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0209 CL/GI 0B","362-1AS0209CLGI0B","Standard AHU",304,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",307,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_607","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0209 GI/GI 0B","362-1AS0209GIGI0B","Standard AHU",304,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",302,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_608","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0210 CL/CL 0B","362-1AS0210CLCL0B","Standard AHU",304,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",346,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_609","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0210 CL/GI 0B","362-1AS0210CLGI0B","Standard AHU",304,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",339,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_610","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0210 GI/GI 0B","362-1AS0210GIGI0B","Standard AHU",304,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",335,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_611","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0210 CL/SS 0B","362-1AS0210CLSS0B","Standard AHU",304,1544,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",930,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_612","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0211 CL/CL 0B","362-1AS0211CLCL0B","Standard AHU",304,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",379,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_613","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0211 CL/GI 0B","362-1AS0211CLGI0B","Standard AHU",304,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",374,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_614","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0211 GI/GI 0B","362-1AS0211GIGI0B","Standard AHU",304,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",368,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_615","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0212 CL/CL 0B","362-1AS0212CLCL0B","Standard AHU",304,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",414,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_616","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0212 CL/GI 0B","362-1AS0212CLGI0B","Standard AHU",304,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",408,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_617","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0212 GI/GI 0B","362-1AS0212GIGI0B","Standard AHU",304,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",402,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_618","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0212 CL/SS 0B","362-1AS0212CLSS0B","Standard AHU",304,1854,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1112,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_619","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0213 CL/CL 0B","362-1AS0213CLCL0B","Standard AHU",304,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",449,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_620","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0213 CL/GI 0B","362-1AS0213CLGI0B","Standard AHU",304,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",443,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_621","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0213 GI/GI 0B","362-1AS0213GIGI0B","Standard AHU",304,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",435,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_622","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0214 CL/CL 0B","362-1AS0214CLCL0B","Standard AHU",304,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",483,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_623","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0214 CL/GI 0B","362-1AS0214CLGI0B","Standard AHU",304,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",477,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_624","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0214 GI/GI 0B","362-1AS0214GIGI0B","Standard AHU",304,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",470,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_625","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0303 CL/CL 0B","362-1AS0303CLCL0B","Standard AHU",459,459,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",155,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_626","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0303 CL/GI 0B","362-1AS0303CLGI0B","Standard AHU",459,459,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",153,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_627","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0303 GI/GI 0B","362-1AS0303GIGI0B","Standard AHU",459,459,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",150,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_628","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0304 CL/CL 0B","362-1AS0304CLCL0B","Standard AHU",459,614,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",207,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_629","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0304 CL/GI 0B","362-1AS0304CLGI0B","Standard AHU",459,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",205,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_630","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0304 GI/GI 0B","362-1AS0304GIGI0B","Standard AHU",459,614,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",201,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_631","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0304 CL/SS 0B","362-1AS0304CLSS0B","Standard AHU",459,614,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",557,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_632","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0305 CL/CL 0B","362-1AS0305CLCL0B","Standard AHU",459,769,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",260,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_633","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0305 CL/GI 0B","362-1AS0305CLGI0B","Standard AHU",459,769,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",256,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_634","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0305 GI/GI 0B","362-1AS0305GIGI0B","Standard AHU",459,769,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",251,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_635","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0306 CL/CL 0B","362-1AS0306CLCL0B","Standard AHU",459,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",312,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_636","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0306 CL/GI 0B","362-1AS0306CLGI0B","Standard AHU",459,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",308,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_637","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0306 GI/GI 0B","362-1AS0306GIGI0B","Standard AHU",459,924,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",303,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_638","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0307 CL/CL 0B","362-1AS0307CLCL0B","Standard AHU",459,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",365,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_639","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0307 CL/GI 0B","362-1AS0307CLGI0B","Standard AHU",459,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",358,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_640","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0307 GI/GI 0B","362-1AS0307GIGI0B","Standard AHU",459,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",351,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_641","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0308 CL/CL 0B","362-1AS0308CLCL0B","Standard AHU",459,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",416,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_642","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0308 CL/GI 0B","362-1AS0308CLGI0B","Standard AHU",459,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",411,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_643","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0308 GI/GI 0B","362-1AS0308GIGI0B","Standard AHU",459,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",403,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_644","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0309 CL/CL 0B","362-1AS0309CLCL0B","Standard AHU",459,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",470,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_645","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0309 CL/GI 0B","362-1AS0309CLGI0B","Standard AHU",459,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",461,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_646","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0309 GI/GI 0B","362-1AS0309GIGI0B","Standard AHU",459,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",454,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_647","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0310 CL/CL 0B","362-1AS0310CLCL0B","Standard AHU",459,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",522,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_648","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0310 CL/GI 0B","362-1AS0310CLGI0B","Standard AHU",459,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",512,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_649","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0310 GI/GI 0B","362-1AS0310GIGI0B","Standard AHU",459,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",505,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_650","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0311 CL/CL 0B","362-1AS0311CLCL0B","Standard AHU",459,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",574,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_651","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0311 CL/GI 0B","362-1AS0311CLGI0B","Standard AHU",459,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",564,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_652","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0311 GI/GI 0B","362-1AS0311GIGI0B","Standard AHU",459,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",555,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_653","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0312 CL/CL 0B","362-1AS0312CLCL0B","Standard AHU",459,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",627,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_654","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0312 CL/GI 0B","362-1AS0312CLGI0B","Standard AHU",459,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",616,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_655","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0312 GI/GI 0B","362-1AS0312GIGI0B","Standard AHU",459,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",606,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_656","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0313 CL/CL 0B","362-1AS0313CLCL0B","Standard AHU",459,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",678,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_657","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0313 CL/GI 0B","362-1AS0313CLGI0B","Standard AHU",459,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",668,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_658","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0313 GI/GI 0B","362-1AS0313GIGI0B","Standard AHU",459,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",656,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_659","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0314 CL/CL 0B","362-1AS0314CLCL0B","Standard AHU",459,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",731,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_660","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0314 CL/GI 0B","362-1AS0314CLGI0B","Standard AHU",459,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",719,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_661","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0314 GI/GI 0B","362-1AS0314GIGI0B","Standard AHU",459,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",707,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_662","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0315 CL/GI 0B","362-1AS0315CLGI0B","Standard AHU",459,2319,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",869,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_663","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0316 CL/GI 0B","362-1AS0316CLGI0B","Standard AHU",459,2474,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",974,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_664","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0402 CL/GI 0B","362-1AS0402CLGI0B","Standard AHU",614,304,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",137,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_665","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0404 CL/CL 0B","362-1AS0404CLCL0B","Standard AHU",614,614,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",279,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_666","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0404 CL/GI 0B","362-1AS0404CLGI0B","Standard AHU",614,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",273,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_667","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0404 GI/GI 0B","362-1AS0404GIGI0B","Standard AHU",614,614,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",269,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_668","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0404 CL/SS 0B","362-1AS0404CLSS0B","Standard AHU",614,614,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",750,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_669","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0405 CL/CL 0B","362-1AS0405CLCL0B","Standard AHU",614,769,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",347,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_670","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0405 CL/GI 0B","362-1AS0405CLGI0B","Standard AHU",614,769,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",343,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_671","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0405 GI/GI 0B","362-1AS0405GIGI0B","Standard AHU",614,769,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",336,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_672","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0405 CL/SS 0B","362-1AS0405CLSS0B","Standard AHU",614,769,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",998,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_673","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0406 CL/CL 0B","362-1AS0406CLCL0B","Standard AHU",614,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",417,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_674","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0406 CL/GI 0B","362-1AS0406CLGI0B","Standard AHU",614,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",411,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_675","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0406 GI/GI 0B","362-1AS0406GIGI0B","Standard AHU",614,924,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",404,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_676","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0406 CL/SS 0B","362-1AS0406CLSS0B","Standard AHU",614,924,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1194,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_677","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0407 CL/CL 0B","362-1AS0407CLCL0B","Standard AHU",614,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",488,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_678","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0407 CL/GI 0B","362-1AS0407CLGI0B","Standard AHU",614,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",480,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_679","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0407 GI/GI 0B","362-1AS0407GIGI0B","Standard AHU",614,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",472,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_680","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0407 CL/SS 0B","362-1AS0407CLSS0B","Standard AHU",614,1079,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1397,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_681","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0408 CL/CL 0B","362-1AS0408CLCL0B","Standard AHU",614,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",557,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_682","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0408 CL/GI 0B","362-1AS0408CLGI0B","Standard AHU",614,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",548,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_683","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0408 GI/GI 0B","362-1AS0408GIGI0B","Standard AHU",614,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",539,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_684","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0408 CL/SS 0B","362-1AS0408CLSS0B","Standard AHU",614,1234,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1502,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_685","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0409 CL/CL 0B","362-1AS0409CLCL0B","Standard AHU",614,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",628,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_686","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0409 CL/GI 0B","362-1AS0409CLGI0B","Standard AHU",614,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",617,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_687","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0409 GI/GI 0B","362-1AS0409GIGI0B","Standard AHU",614,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",607,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_688","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0409 CL/SS 0B","362-1AS0409CLSS0B","Standard AHU",614,1389,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1684,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_689","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0410 CL/CL 0B","362-1AS0410CLCL0B","Standard AHU",614,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",697,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_690","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0410 CL/GI 0B","362-1AS0410CLGI0B","Standard AHU",614,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",686,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_691","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0410 GI/GI 0B","362-1AS0410GIGI0B","Standard AHU",614,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",674,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_692","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0410 CL/SS 0B","362-1AS0410CLSS0B","Standard AHU",614,1544,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1880,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_693","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0411 CL/CL 0B","362-1AS0411CLCL0B","Standard AHU",614,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",768,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_694","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0411 CL/GI 0B","362-1AS0411CLGI0B","Standard AHU",614,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",754,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_695","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0411 GI/GI 0B","362-1AS0411GIGI0B","Standard AHU",614,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",743,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_696","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0412 CL/CL 0B","362-1AS0412CLCL0B","Standard AHU",614,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",838,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_697","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0412 CL/GI 0B","362-1AS0412CLGI0B","Standard AHU",614,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",825,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_698","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0412 GI/GI 0B","362-1AS0412GIGI0B","Standard AHU",614,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",811,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_699","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0412 CL/SS 0B","362-1AS0412CLSS0B","Standard AHU",614,1854,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2257,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_700","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0413 CL/CL 0B","362-1AS0413CLCL0B","Standard AHU",614,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",907,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_701","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0413 CL/GI 0B","362-1AS0413CLGI0B","Standard AHU",614,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",892,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_702","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0413 GI/GI 0B","362-1AS0413GIGI0B","Standard AHU",614,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",877,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_703","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0414 CL/CL 0B","362-1AS0414CLCL0B","Standard AHU",614,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",977,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_704","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0414 CL/GI 0B","362-1AS0414CLGI0B","Standard AHU",614,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",961,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_705","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0414 GI/GI 0B","362-1AS0414GIGI0B","Standard AHU",614,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",946,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_706","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0416 GI/GI 0B","362-1AS0416GIGI0B","Standard AHU",614,2474,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1301,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_707","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0505 CL/CL 0B","362-1AS0505CLCL0B","Standard AHU",769,769,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",435,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_708","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0505 CL/GI 0B","362-1AS0505CLGI0B","Standard AHU",769,769,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",429,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_709","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0505 GI/GI 0B","362-1AS0505GIGI0B","Standard AHU",769,769,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",421,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_710","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0506 CL/CL 0B","362-1AS0506CLCL0B","Standard AHU",769,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",522,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_711","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0506 CL/GI 0B","362-1AS0506CLGI0B","Standard AHU",769,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",514,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_712","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0506 GI/GI 0B","362-1AS0506GIGI0B","Standard AHU",769,924,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",505,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_713","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0506 CL/SS 0B","362-1AS0506CLSS0B","Standard AHU",769,924,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1500,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_714","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0507 CL/CL 0B","362-1AS0507CLCL0B","Standard AHU",769,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",610,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_715","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0507 CL/GI 0B","362-1AS0507CLGI0B","Standard AHU",769,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",602,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_716","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0507 GI/GI 0B","362-1AS0507GIGI0B","Standard AHU",769,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",591,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_717","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0508 CL/CL 0B","362-1AS0508CLCL0B","Standard AHU",769,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",697,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_718","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0508 CL/GI 0B","362-1AS0508CLGI0B","Standard AHU",769,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",686,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_719","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0508 GI/GI 0B","362-1AS0508GIGI0B","Standard AHU",769,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",674,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_720","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0508 CL/SS 0B","362-1AS0508CLSS0B","Standard AHU",769,1234,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2001,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_721","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0509 CL/CL 0B","362-1AS0509CLCL0B","Standard AHU",769,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",787,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_722","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0509 CL/GI 0B","362-1AS0509CLGI0B","Standard AHU",769,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",773,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_723","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0509 GI/GI 0B","362-1AS0509GIGI0B","Standard AHU",769,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",760,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_724","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0510 CL/CL 0B","362-1AS0510CLCL0B","Standard AHU",769,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",873,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_725","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0510 CL/GI 0B","362-1AS0510CLGI0B","Standard AHU",769,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",859,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_726","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0510 GI/GI 0B","362-1AS0510GIGI0B","Standard AHU",769,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",845,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_727","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0511 CL/CL 0B","362-1AS0511CLCL0B","Standard AHU",769,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",960,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_728","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0511 CL/GI 0B","362-1AS0511CLGI0B","Standard AHU",769,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",946,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_729","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0511 GI/GI 0B","362-1AS0511GIGI0B","Standard AHU",769,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",931,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_730","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0512 CL/CL 0B","362-1AS0512CLCL0B","Standard AHU",769,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1050,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_731","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0512 CL/GI 0B","362-1AS0512CLGI0B","Standard AHU",769,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1032,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_732","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0512 GI/GI 0B","362-1AS0512GIGI0B","Standard AHU",769,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1014,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_733","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0512 CL/SS 0B","362-1AS0512CLSS0B","Standard AHU",769,1854,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2828,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_734","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0513 CL/CL 0B","362-1AS0513CLCL0B","Standard AHU",769,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1136,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_735","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0513 CL/GI 0B","362-1AS0513CLGI0B","Standard AHU",769,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1117,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_736","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0513 GI/GI 0B","362-1AS0513GIGI0B","Standard AHU",769,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1100,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_737","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0514 CL/CL 0B","362-1AS0514CLCL0B","Standard AHU",769,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1223,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_738","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0514 CL/GI 0B","362-1AS0514CLGI0B","Standard AHU",769,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1203,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_739","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0514 GI/GI 0B","362-1AS0514GIGI0B","Standard AHU",769,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1183,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_740","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0516 CL/GI 0B","362-1AS0516CLGI0B","Standard AHU",769,2474,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1507,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_741","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0604 CL/GI 0B","362-1AS0604CLGI0B","Standard AHU",924,614,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",411,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_742","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0606 CL/CL 0B","362-1AS0606CLCL0B","Standard AHU",924,924,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",628,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_743","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0606 CL/GI 0B","362-1AS0606CLGI0B","Standard AHU",924,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",618,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_744","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0606 GI/GI 0B","362-1AS0606GIGI0B","Standard AHU",924,924,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",608,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_745","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0607 CL/CL 0B","362-1AS0607CLCL0B","Standard AHU",924,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",733,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_746","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0607 CL/GI 0B","362-1AS0607CLGI0B","Standard AHU",924,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",720,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_747","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0607 GI/GI 0B","362-1AS0607GIGI0B","Standard AHU",924,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",708,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_748","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0608 CL/CL 0B","362-1AS0608CLCL0B","Standard AHU",924,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",840,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_749","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0608 CL/GI 0B","362-1AS0608CLGI0B","Standard AHU",924,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",826,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_750","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0608 GI/GI 0B","362-1AS0608GIGI0B","Standard AHU",924,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",811,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_751","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0608 CL/SS 0B","362-1AS0608CLSS0B","Standard AHU",924,1234,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2258,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_752","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0609 CL/CL 0B","362-1AS0609CLCL0B","Standard AHU",924,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",944,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_753","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0609 CL/GI 0B","362-1AS0609CLGI0B","Standard AHU",924,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",930,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_754","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0609 GI/GI 0B","362-1AS0609GIGI0B","Standard AHU",924,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",913,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_755","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0610 CL/CL 0B","362-1AS0610CLCL0B","Standard AHU",924,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1050,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_756","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0610 CL/GI 0B","362-1AS0610CLGI0B","Standard AHU",924,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1033,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_757","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0610 GI/GI 0B","362-1AS0610GIGI0B","Standard AHU",924,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1014,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_758","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0610 CL/SS 0B","362-1AS0610CLSS0B","Standard AHU",924,1544,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2829,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_759","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0611 CL/CL 0B","362-1AS0611CLCL0B","Standard AHU",924,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1156,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_760","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0611 CL/GI 0B","362-1AS0611CLGI0B","Standard AHU",924,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1136,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_761","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0611 GI/GI 0B","362-1AS0611GIGI0B","Standard AHU",924,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1117,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_762","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0612 CL/CL 0B","362-1AS0612CLCL0B","Standard AHU",924,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1261,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_763","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0612 CL/GI 0B","362-1AS0612CLGI0B","Standard AHU",924,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1239,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_764","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0612 GI/GI 0B","362-1AS0612GIGI0B","Standard AHU",924,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1219,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_765","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0612 CL/SS 0B","362-1AS0612CLSS0B","Standard AHU",924,1854,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3614,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_766","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0613 CL/CL 0B","362-1AS0613CLCL0B","Standard AHU",924,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1365,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_767","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0613 CL/GI 0B","362-1AS0613CLGI0B","Standard AHU",924,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1343,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_768","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0613 GI/GI 0B","362-1AS0613GIGI0B","Standard AHU",924,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1322,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_769","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0614 CL/CL 0B","362-1AS0614CLCL0B","Standard AHU",924,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1470,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_770","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0614 CL/GI 0B","362-1AS0614CLGI0B","Standard AHU",924,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1447,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_771","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0614 GI/GI 0B","362-1AS0614GIGI0B","Standard AHU",924,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1423,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_772","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0706 CL/GI 0B","362-1AS0706CLGI0B","Standard AHU",1079,924,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",720,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_773","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0707 CL/CL 0B","362-1AS0707CLCL0B","Standard AHU",1079,1079,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",855,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_774","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0707 CL/GI 0B","362-1AS0707CLGI0B","Standard AHU",1079,1079,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",841,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_775","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0707 GI/GI 0B","362-1AS0707GIGI0B","Standard AHU",1079,1079,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",829,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_776","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0708 CL/CL 0B","362-1AS0708CLCL0B","Standard AHU",1079,1234,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",979,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_777","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0708 CL/GI 0B","362-1AS0708CLGI0B","Standard AHU",1079,1234,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",964,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_778","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0708 GI/GI 0B","362-1AS0708GIGI0B","Standard AHU",1079,1234,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",947,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_779","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0708 CL/SS 0B","362-1AS0708CLSS0B","Standard AHU",1079,1234,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2634,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_780","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0709 CL/CL 0B","362-1AS0709CLCL0B","Standard AHU",1079,1389,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1102,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_781","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0709 CL/GI 0B","362-1AS0709CLGI0B","Standard AHU",1079,1389,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1083,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_782","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0709 GI/GI 0B","362-1AS0709GIGI0B","Standard AHU",1079,1389,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1066,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_783","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0710 CL/CL 0B","362-1AS0710CLCL0B","Standard AHU",1079,1544,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1225,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_784","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0710 CL/GI 0B","362-1AS0710CLGI0B","Standard AHU",1079,1544,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1205,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_785","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0710 GI/GI 0B","362-1AS0710GIGI0B","Standard AHU",1079,1544,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1184,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_786","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0711 CL/CL 0B","362-1AS0711CLCL0B","Standard AHU",1079,1699,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1347,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_787","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0711 CL/GI 0B","362-1AS0711CLGI0B","Standard AHU",1079,1699,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1327,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_788","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0711 GI/GI 0B","362-1AS0711GIGI0B","Standard AHU",1079,1699,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1304,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_789","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0712 CL/CL 0B","362-1AS0712CLCL0B","Standard AHU",1079,1854,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1471,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_790","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0712 CL/GI 0B","362-1AS0712CLGI0B","Standard AHU",1079,1854,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1447,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_791","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0712 GI/GI 0B","362-1AS0712GIGI0B","Standard AHU",1079,1854,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1423,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_792","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0712 CL/SS 0B","362-1AS0712CLSS0B","Standard AHU",1079,1854,25,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3958,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_793","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0713 CL/CL 0B","362-1AS0713CLCL0B","Standard AHU",1079,2009,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1593,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_794","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0713 CL/GI 0B","362-1AS0713CLGI0B","Standard AHU",1079,2009,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1568,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_795","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0713 GI/GI 0B","362-1AS0713GIGI0B","Standard AHU",1079,2009,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1542,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_796","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0714 CL/CL 0B","362-1AS0714CLCL0B","Standard AHU",1079,2164,25,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1718,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_797","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0714 CL/GI 0B","362-1AS0714CLGI0B","Standard AHU",1079,2164,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1689,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_798","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0714 GI/GI 0B","362-1AS0714GIGI0B","Standard AHU",1079,2164,25,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1661,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_799","Amair_AS","panel","Amair AS","PNL ASSY 25MM 0715 CL/GI 0B","362-1AS0715CLGI0B","Standard AHU",1079,2319,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2042,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_800","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0101 CL/CL 0B","362-2AS0101CLCL0B","Standard AHU",149,149,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",20,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_801","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0101 CL/GI 0B","362-2AS0101CLGI0B","Standard AHU",149,149,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",20,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_802","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0101 GI/GI 0B","362-2AS0101GIGI0B","Standard AHU",149,149,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",20,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_803","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0102 CL/CL 0B","362-2AS0102CLCL0B","Standard AHU",149,304,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",40,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_804","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0102 CL/GI 0B","362-2AS0102CLGI0B","Standard AHU",149,304,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",40,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_805","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0102 GI/GI 0B","362-2AS0102GIGI0B","Standard AHU",149,304,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",39,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_806","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0103 CL/CL 0B","362-2AS0103CLCL0B","Standard AHU",149,459,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",60,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_807","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0103 CL/GI 0B","362-2AS0103CLGI0B","Standard AHU",149,459,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",60,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_808","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0103 GI/GI 0B","362-2AS0103GIGI0B","Standard AHU",149,459,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",60,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_809","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0104 CL/CL 0B","362-2AS0104CLCL0B","Standard AHU",149,614,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",106,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_810","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0104 CL/GI 0B","362-2AS0104CLGI0B","Standard AHU",149,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",81,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_811","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0104 GI/GI 0B","362-2AS0104GIGI0B","Standard AHU",149,614,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",79,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_812","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0105 CL/CL 0B","362-2AS0105CLCL0B","Standard AHU",149,769,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",102,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_813","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0105 CL/GI 0B","362-2AS0105CLGI0B","Standard AHU",149,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",100,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_814","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0105 GI/GI 0B","362-2AS0105GIGI0B","Standard AHU",149,769,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",100,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_815","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0106 CL/CL 0B","362-2AS0106CLCL0B","Standard AHU",149,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",123,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_816","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0106 CL/GI 0B","362-2AS0106CLGI0B","Standard AHU",149,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",121,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_817","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0106 GI/GI 0B","362-2AS0106GIGI0B","Standard AHU",149,924,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",118,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_818","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0107 CL/CL 0B","362-2AS0107CLCL0B","Standard AHU",149,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",143,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_819","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0107 CL/GI 0B","362-2AS0107CLGI0B","Standard AHU",149,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",140,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_820","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0107 GI/GI 0B","362-2AS0107GIGI0B","Standard AHU",149,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",138,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_821","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0108 CL/CL 0B","362-2AS0108CLCL0B","Standard AHU",149,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",162,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_822","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0108 CL/GI 0B","362-2AS0108CLGI0B","Standard AHU",149,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",160,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_823","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0108 GI/GI 0B","362-2AS0108GIGI0B","Standard AHU",149,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",159,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_824","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0109 CL/CL 0B","362-2AS0109CLCL0B","Standard AHU",149,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",181,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_825","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0109 CL/GI 0B","362-2AS0109CLGI0B","Standard AHU",149,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",180,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_826","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0109 GI/GI 0B","362-2AS0109GIGI0B","Standard AHU",149,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",178,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_827","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0110 CL/CL 0B","362-2AS0110CLCL0B","Standard AHU",149,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",203,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_828","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0110 CL/GI 0B","362-2AS0110CLGI0B","Standard AHU",149,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",201,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_829","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0110 GI/GI 0B","362-2AS0110GIGI0B","Standard AHU",149,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",198,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_830","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0111 CL/CL 0B","362-2AS0111CLCL0B","Standard AHU",149,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",223,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_831","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0111 CL/GI 0B","362-2AS0111CLGI0B","Standard AHU",149,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",220,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_832","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0111 GI/GI 0B","362-2AS0111GIGI0B","Standard AHU",149,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",218,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_833","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0112 CL/CL 0B","362-2AS0112CLCL0B","Standard AHU",149,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",244,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_834","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0112 CL/GI 0B","362-2AS0112CLGI0B","Standard AHU",149,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",240,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_835","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0112 GI/GI 0B","362-2AS0112GIGI0B","Standard AHU",149,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",237,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_836","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0113 CL/CL 0B","362-2AS0113CLCL0B","Standard AHU",149,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",263,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_837","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0113 CL/GI 0B","362-2AS0113CLGI0B","Standard AHU",149,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",259,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_838","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0113 GI/GI 0B","362-2AS0113GIGI0B","Standard AHU",149,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",258,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_839","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0114 CL/CL 0B","362-2AS0114CLCL0B","Standard AHU",149,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",284,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_840","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0114 CL/GI 0B","362-2AS0114CLGI0B","Standard AHU",149,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",280,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_841","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0114 GI/GI 0B","362-2AS0114GIGI0B","Standard AHU",149,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",278,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_842","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0202 CL/CL 0B","362-2AS0202CLCL0B","Standard AHU",304,304,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",83,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_843","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0202 CL/GI 0B","362-2AS0202CLGI0B","Standard AHU",304,304,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",81,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_844","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0202 GI/GI 0B","362-2AS0202GIGI0B","Standard AHU",304,304,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",80,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_845","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0203 CL/CL 0B","362-2AS0203CLCL0B","Standard AHU",304,459,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",125,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_846","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0203 CL/GI 0B","362-2AS0203CLGI0B","Standard AHU",304,459,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",123,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_847","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0203 GI/GI 0B","362-2AS0203GIGI0B","Standard AHU",304,459,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",121,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_848","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0208 CL/CL 0B","362-2AS0204CLCL0B","Standard AHU",304,614,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",166,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_849","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0204 CL/GI 0B","362-2AS0204CLGI0B","Standard AHU",304,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",163,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_850","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0204 GI/GI 0B","362-2AS0204GIGI0B","Standard AHU",304,614,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",160,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_851","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0204 CL/SS 0B","362-2AS0204CLSS0B","Standard AHU",304,614,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",401,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_852","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0205 CL/CL 0B","362-2AS0205CLCL0B","Standard AHU",304,769,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",205,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_853","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0205 CL/GI 0B","362-2AS0205CLGI0B","Standard AHU",304,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",203,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_854","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0205 GI/GI 0B","362-2AS0205GIGI0B","Standard AHU",304,769,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",201,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_855","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0205 CL/SS 0B","362-2AS0205CLSS0B","Standard AHU",304,769,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",492,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_856","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0206 CL/CL 0B","362-2AS0206CLCL0B","Standard AHU",304,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",247,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_857","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0206 CL/GI 0B","362-2AS0206CLGI0B","Standard AHU",304,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",245,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_858","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0206 GI/GI 0B","362-2AS0206GIGI0B","Standard AHU",304,924,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",241,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_859","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0206 CL/SS 0B","362-2AS0206CLSS0B","Standard AHU",304,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",597,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_860","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0207 CL/CL 0B","362-2AS0207CLCL0B","Standard AHU",304,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",290,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_861","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0207 CL/GI 0B","362-2AS0207CLGI0B","Standard AHU",304,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",285,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_862","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0207 GI/GI 0B","362-2AS0207GIGI0B","Standard AHU",304,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",281,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_863","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0208 CL/CL 0B","362-2AS0208CLCL0B","Standard AHU",304,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",331,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_864","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0208 CL/GI 0B","362-2AS0208CLGI0B","Standard AHU",304,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",326,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_865","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0208 GI/GI 0B","362-2AS0208GIGI0B","Standard AHU",304,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",323,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_866","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0208 CL/SS 0B","362-2AS0208CLSS0B","Standard AHU",304,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",803,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_867","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0209 CL/CL 0B","362-2AS0209CLCL0B","Standard AHU",304,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",373,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_868","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0209 CL/GI 0B","362-2AS0209CLGI0B","Standard AHU",304,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",368,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_869","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0209 GI/GI 0B","362-2AS0209GIGI0B","Standard AHU",304,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",362,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_870","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0210 CL/CL 0B","362-2AS0210CLCL0B","Standard AHU",304,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",413,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_871","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0210 CL/GI 0B","362-2AS0210CLGI0B","Standard AHU",304,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",409,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_872","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0210 GI/GI 0B","362-2AS0210GIGI0B","Standard AHU",304,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",402,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_873","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0210 CL/SS 0B","362-2AS0210CLSS0B","Standard AHU",304,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",999,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_874","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0211 CL/CL 0B","362-2AS0211CLCL0B","Standard AHU",304,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",456,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_875","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0211 CL/GI 0B","362-2AS0211CLGI0B","Standard AHU",304,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",450,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_876","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0211 GI/GI 0B","362-2AS0211GIGI0B","Standard AHU",304,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",444,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_877","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0212 CL/CL 0B","362-2AS0212CLCL0B","Standard AHU",304,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",497,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_878","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0212 CL/GI 0B","362-2AS0212CLGI0B","Standard AHU",304,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",489,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_879","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0212 CL/SS 0B","362-2AS0212CLSS0B","Standard AHU",304,1854,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1129,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_880","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0212 GI/GI 0B","362-2AS0212GIGI0B","Standard AHU",304,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",484,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_881","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0213 CL/CL 0B","362-2AS0213CLCL0B","Standard AHU",304,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",538,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_882","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0213 CL/GI 0B","362-2AS0213CLGI0B","Standard AHU",304,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",531,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_883","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0213 GI/GI 0B","362-2AS0213GIGI0B","Standard AHU",304,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",524,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_884","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0214 CL/CL 0B","362-2AS0214CLCL0B","Standard AHU",304,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",580,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_885","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0214 CL/GI 0B","362-2AS0214CLGI0B","Standard AHU",304,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",572,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_886","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0214 GI/GI 0B","362-2AS0214GIGI0B","Standard AHU",304,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",564,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_887","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0216 CL/GI 0B","362-2AS0216CLGI0B","Standard AHU",304,2474,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",724,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_888","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0303 CL/CL 0B","362-2AS0303CLCL0B","Standard AHU",459,459,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",184,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_889","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0303 CL/GI 0B","362-2AS0303CLGI0B","Standard AHU",459,459,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",182,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_890","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0303 GI/GI 0B","362-2AS0303GIGI0B","Standard AHU",459,459,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",181,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_891","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0304 CL/CL 0B","362-2AS0304CLCL0B","Standard AHU",459,614,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",248,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_892","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0304 CL/GI 0B","362-2AS0304CLGI0B","Standard AHU",459,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",245,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_893","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0304 GI/GI 0B","362-2AS0304GIGI0B","Standard AHU",459,614,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",242,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_894","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0305 CL/CL 0B","362-2AS0305CLCL0B","Standard AHU",459,769,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",311,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_895","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0305 CL/GI 0B","362-2AS0305CLGI0B","Standard AHU",459,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",307,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_896","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0305 GI/GI 0B","362-2AS0305GIGI0B","Standard AHU",459,769,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",303,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_897","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0306 CL/CL 0B","362-2AS0306CLCL0B","Standard AHU",459,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",373,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_898","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0306 CL/GI 0B","362-2AS0306CLGI0B","Standard AHU",459,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",369,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_899","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0306 GI/GI 0B","362-2AS0306GIGI0B","Standard AHU",459,924,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",363,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_900","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0306 CL/SS 0B","362-2AS0306CLSS0B","Standard AHU",459,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",896,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_901","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0307 CL/CL 0B","362-2AS0307CLCL0B","Standard AHU",459,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",436,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_902","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0307 CL/GI 0B","362-2AS0307CLGI0B","Standard AHU",459,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",430,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_903","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0307 GI/GI 0B","362-2AS0307GIGI0B","Standard AHU",459,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",426,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_904","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0308 CL/CL 0B","362-2AS0308CLCL0B","Standard AHU",459,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",500,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_905","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0308 CL/GI 0B","362-2AS0308CLGI0B","Standard AHU",459,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",494,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_906","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0308 GI/GI 0B","362-2AS0308GIGI0B","Standard AHU",459,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",486,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_907","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0308 CL/SS 0B","362-2AS0308CLSS0B","Standard AHU",459,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1209,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_908","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0309 CL/CL 0B","362-2AS0309CLCL0B","Standard AHU",459,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",562,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_909","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0309 CL/GI 0B","362-2AS0309CLGI0B","Standard AHU",459,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",555,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_910","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0309 GI/GI 0B","362-2AS0309GIGI0B","Standard AHU",459,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",547,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_911","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0310 CL/CL 0B","362-2AS0310CLCL0B","Standard AHU",459,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",625,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_912","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0310 CL/GI 0B","362-2AS0310CLGI0B","Standard AHU",459,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",617,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_913","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0310 GI/GI 0B","362-2AS0310GIGI0B","Standard AHU",459,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",608,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_914","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0310 CL/SS 0B","362-2AS0310CLSS0B","Standard AHU",459,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1508,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_915","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0311 CL/CL 0B","362-2AS0311CLCL0B","Standard AHU",459,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",686,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_916","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0311 CL/GI 0B","362-2AS0311CLGI0B","Standard AHU",459,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",678,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_917","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0311 GI/GI 0B","362-2AS0311GIGI0B","Standard AHU",459,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",670,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_918","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0312 CL/CL 0B","362-2AS0312CLCL0B","Standard AHU",459,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",751,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_919","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0312 CL/GI 0B","362-2AS0312CLGI0B","Standard AHU",459,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",739,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_920","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0312 GI/GI 0B","362-2AS0312GIGI0B","Standard AHU",459,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",731,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_921","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0313 CL/CL 0B","362-2AS0313CLCL0B","Standard AHU",459,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",812,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_922","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0313 CL/GI 0B","362-2AS0313CLGI0B","Standard AHU",459,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",802,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_923","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0313 GI/GI 0B","362-2AS0313GIGI0B","Standard AHU",459,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",792,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_924","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0314 CL/CL 0B","362-2AS0314CLCL0B","Standard AHU",459,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",874,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_925","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0314 CL/GI 0B","362-2AS0314CLGI0B","Standard AHU",459,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",863,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_926","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0314 GI/GI 0B","362-2AS0314GIGI0B","Standard AHU",459,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",851,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_927","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0404 CL/CL 0B","362-2AS0404CLCL0B","Standard AHU",614,614,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",333,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_928","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0404 CL/GI 0B","362-2AS0404CLGI0B","Standard AHU",614,614,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",328,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_929","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0404 GI/GI 0B","362-2AS0404GIGI0B","Standard AHU",614,614,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",325,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_930","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0404 CL/SS 0B","362-2AS0404CLSS0B","Standard AHU",614,614,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",805,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_931","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0405 CL/CL 0B","362-2AS0405CLCL0B","Standard AHU",614,769,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",417,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_932","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0405 CL/GI 0B","362-2AS0405CLGI0B","Standard AHU",614,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",411,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_933","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0405 GI/GI 0B","362-2AS0405GIGI0B","Standard AHU",614,769,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",405,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_934","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0405 CL/SS 0B","362-2AS0405CLSS0B","Standard AHU",614,769,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1001,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_935","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0406 CL/CL 0B","362-2AS0406CLCL0B","Standard AHU",614,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",629,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_936","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0406 CL/GI 0B","362-2AS0406CLGI0B","Standard AHU",614,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",495,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_937","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0406 GI/GI 0B","362-2AS0406GIGI0B","Standard AHU",614,924,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",487,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_938","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0407 CL/CL 0B","362-2AS0407CLCL0B","Standard AHU",614,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",584,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_939","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0407 CL/GI 0B","362-2AS0407CLGI0B","Standard AHU",614,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",577,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_940","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0407 GI/GI 0B","362-2AS0407GIGI0B","Standard AHU",614,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",568,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_941","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0408 CL/CL 0B","362-2AS0408CLCL0B","Standard AHU",614,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",668,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_942","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0408 CL/GI 0B","362-2AS0408CLGI0B","Standard AHU",614,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",659,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_943","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0408 GI/GI 0B","362-2AS0408GIGI0B","Standard AHU",614,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",651,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_944","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0408 CL/SS 0B","362-2AS0408CLSS0B","Standard AHU",614,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1613,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_945","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0409 CL/CL 0B","362-2AS0409CLCL0B","Standard AHU",614,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",753,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_946","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0409 CL/GI 0B","362-2AS0409CLGI0B","Standard AHU",614,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",740,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_947","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0409 GI/GI 0B","362-2AS0409GIGI0B","Standard AHU",614,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",732,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_948","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0410 CL/CL 0B","362-2AS0410CLCL0B","Standard AHU",614,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",835,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_949","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0410 CL/GI 0B","362-2AS0410CLGI0B","Standard AHU",614,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",826,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_950","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0410 GI/GI 0B","362-2AS0410GIGI0B","Standard AHU",614,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",813,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_951","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0410 CL/SS 0B","362-2AS0410CLSS0B","Standard AHU",614,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2019,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_952","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0411 CL/CL 0B","362-2AS0411CLCL0B","Standard AHU",614,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",919,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_953","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0411 CL/GI 0B","362-2AS0411CLGI0B","Standard AHU",614,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",907,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_954","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0411 GI/GI 0B","362-2AS0411GIGI0B","Standard AHU",614,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",894,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_955","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0412 CL/CL 0B","362-2AS0412CLCL0B","Standard AHU",614,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1003,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_956","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0412 CL/GI 0B","362-2AS0412CLGI0B","Standard AHU",614,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",990,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_957","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0412 GI/GI 0B","362-2AS0412GIGI0B","Standard AHU",614,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",977,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_958","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0412 CL/SS 0B","362-2AS0412CLSS0B","Standard AHU",614,1854,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2421,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_959","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0413 CL/CL 0B","362-2AS0413CLCL0B","Standard AHU",614,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1086,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_960","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0413 CL/GI 0B","362-2AS0413CLGI0B","Standard AHU",614,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1072,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_961","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0413 GI/GI 0B","362-2AS0413GIGI0B","Standard AHU",614,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1059,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_962","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0414 CL/CL 0B","362-2AS0414CLCL0B","Standard AHU",614,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1171,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_963","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0414 CL/GI 0B","362-2AS0414CLGI0B","Standard AHU",614,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1156,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_964","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0414 GI/GI 0B","362-2AS0414GIGI0B","Standard AHU",614,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1139,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_965","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0416 CL/GI 0B","362-2AS0416CLGI0B","Standard AHU",614,2474,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1375,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_966","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0505 CL/CL 0B","362-2AS0505CLCL0B","Standard AHU",769,769,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",522,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_967","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0505 CL/GI 0B","362-2AS0505CLGI0B","Standard AHU",769,769,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",513,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_968","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0505 GI/GI 0B","362-2AS0505GIGI0B","Standard AHU",769,769,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",507,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_969","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0506 CL/CL 0B","362-2AS0506CLCL0B","Standard AHU",769,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",627,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_970","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0506 CL/GI 0B","362-2AS0506CLGI0B","Standard AHU",769,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",618,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_971","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0506 GI/GI 0B","362-2AS0506GIGI0B","Standard AHU",769,924,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",609,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_972","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0506 CL/SS 0B","362-2AS0506CLSS0B","Standard AHU",769,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1509,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_973","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0507 CL/CL 0B","362-2AS0507CLCL0B","Standard AHU",769,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",731,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_974","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0507 CL/GI 0B","362-2AS0507CLGI0B","Standard AHU",769,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",720,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_975","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0507 GI/GI 0B","362-2AS0507GIGI0B","Standard AHU",769,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",712,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_976","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0508 CL/CL 0B","362-2AS0508CLCL0B","Standard AHU",769,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",836,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_977","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0508 CL/GI 0B","362-2AS0508CLGI0B","Standard AHU",769,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",826,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_978","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0508 GI/GI 0B","362-2AS0508GIGI0B","Standard AHU",769,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",813,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_979","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0508 CL/SS 0B","362-2AS0508CLSS0B","Standard AHU",769,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2019,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_980","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0509 CL/CL 0B","362-2AS0509CLCL0B","Standard AHU",769,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",941,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_981","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0509 CL/GI 0B","362-2AS0509CLGI0B","Standard AHU",769,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",928,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_982","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0509 GI/GI 0B","362-2AS0509GIGI0B","Standard AHU",769,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",916,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_983","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0510 CL/CL 0B","362-2AS0510CLCL0B","Standard AHU",769,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1046,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_984","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0510 CL/GI 0B","362-2AS0510CLGI0B","Standard AHU",769,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1031,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_985","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0510 GI/GI 0B","362-2AS0510GIGI0B","Standard AHU",769,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1019,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_986","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0510 CL/SS 0B","362-2AS0510CLSS0B","Standard AHU",769,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2525,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_987","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0511 CL/CL 0B","362-2AS0511CLCL0B","Standard AHU",769,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1152,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_988","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0511 CL/GI 0B","362-2AS0511CLGI0B","Standard AHU",769,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1136,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_989","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0511 GI/GI 0B","362-2AS0511GIGI0B","Standard AHU",769,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1121,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_990","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0512 CL/CL 0B","362-2AS0512CLCL0B","Standard AHU",769,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1256,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_991","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0512 CL/GI 0B","362-2AS0512CLGI0B","Standard AHU",769,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1238,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_992","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0512 GI/GI 0B","362-2AS0512GIGI0B","Standard AHU",769,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1223,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_993","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0513 CL/CL 0B","362-2AS0513CLCL0B","Standard AHU",769,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1361,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_994","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0513 CL/GI 0B","362-2AS0513CLGI0B","Standard AHU",769,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1343,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_995","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0513 GI/GI 0B","362-2AS0513GIGI0B","Standard AHU",769,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1326,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_996","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0514 CL/CL 0B","362-2AS0514CLCL0B","Standard AHU",769,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1464,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_997","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0514 CL/GI 0B","362-2AS0514CLGI0B","Standard AHU",769,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1447,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_998","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0514 GI/GI 0B","362-2AS0514GIGI0B","Standard AHU",769,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1428,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_999","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0516 CL/GI 0B","362-2AS0516CLGI0B","Standard AHU",769,2474,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1810,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1000","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0606 CL/CL 0B","362-2AS0606CLCL0B","Standard AHU",924,924,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",943,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1001","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0606 CL/GI 0B","362-2AS0606CLGI0B","Standard AHU",924,924,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",742,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1002","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0606 GI/GI 0B","362-2AS0606GIGI0B","Standard AHU",924,924,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",733,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1003","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0606 CL/SS 0B","362-2AS0606CLSS0B","Standard AHU",924,924,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",1810,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1004","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0607 CL/CL 0B","362-2AS0607CLCL0B","Standard AHU",924,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",878,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1005","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0607 CL/GI 0B","362-2AS0607CLGI0B","Standard AHU",924,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",867,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1006","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0607 GI/GI 0B","362-2AS0607GIGI0B","Standard AHU",924,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",854,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1007","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0607 CL/SS 0B","362-2AS0607CLSS0B","Standard AHU",924,1079,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2123,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1008","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0608 CL/CL 0B","362-2AS0608CLCL0B","Standard AHU",924,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1004,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1009","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0608 CL/GI 0B","362-2AS0608CLGI0B","Standard AHU",924,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",992,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1010","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0608 GI/GI 0B","362-2AS0608GIGI0B","Standard AHU",924,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",979,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1011","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0608 CL/SS 0B","362-2AS0608CLSS0B","Standard AHU",924,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2423,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1012","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0609 CL/CL 0B","362-2AS0609CLCL0B","Standard AHU",924,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1131,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1013","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0609 CL/GI 0B","362-2AS0609CLGI0B","Standard AHU",924,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1116,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1014","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0609 GI/GI 0B","362-2AS0609GIGI0B","Standard AHU",924,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1102,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1015","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0609 CL/SS 0B","362-2AS0609CLSS0B","Standard AHU",924,1389,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2723,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1016","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0610 CL/CL 0B","362-2AS0610CLCL0B","Standard AHU",924,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1257,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1017","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0610 CL/GI 0B","362-2AS0610CLGI0B","Standard AHU",924,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1239,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1018","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0610 GI/GI 0B","362-2AS0610GIGI0B","Standard AHU",924,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1223,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1019","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0610 CL/SS 0B","362-2AS0610CLSS0B","Standard AHU",924,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3035,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1020","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0611 CL/CL 0B","362-2AS0611CLCL0B","Standard AHU",924,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1518,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1021","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0611 CL/GI 0B","362-2AS0611CLGI0B","Standard AHU",924,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1365,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1022","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0611 GI/GI 0B","362-2AS0611GIGI0B","Standard AHU",924,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1346,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1023","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0612 CL/CL 0B","362-2AS0612CLCL0B","Standard AHU",924,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1509,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1024","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0612 CL/GI 0B","362-2AS0612CLGI0B","Standard AHU",924,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1488,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1025","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0612 GI/GI 0B","362-2AS0612GIGI0B","Standard AHU",924,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1469,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1026","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0612 CL/SS 0B","362-2AS0612CLSS0B","Standard AHU",924,1854,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3635,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1027","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0613 CL/CL 0B","362-2AS0613CLCL0B","Standard AHU",924,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1634,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1028","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0613 CL/GI 0B","362-2AS0613CLGI0B","Standard AHU",924,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1613,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1029","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0613 GI/GI 0B","362-2AS0613GIGI0B","Standard AHU",924,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1592,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1030","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0614 CL/CL 0B","362-2AS0614CLCL0B","Standard AHU",924,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1762,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1031","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0614 CL/GI 0B","362-2AS0614CLGI0B","Standard AHU",924,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1738,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1032","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0614 GI/GI 0B","362-2AS0614GIGI0B","Standard AHU",924,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1714,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1033","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0707 CL/CL 0B","362-2AS0707CLCL0B","Standard AHU",1079,1079,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1152,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1034","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0707 CL/GI 0B","362-2AS0707CLGI0B","Standard AHU",1079,1079,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1012,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1035","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0707 GI/GI 0B","362-2AS0707GIGI0B","Standard AHU",1079,1079,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",999,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1036","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0708 CL/CL 0B","362-2AS0708CLCL0B","Standard AHU",1079,1234,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1174,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1037","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0708 CL/GI 0B","362-2AS0708CLGI0B","Standard AHU",1079,1234,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1157,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1038","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0708 GI/GI 0B","362-2AS0708GIGI0B","Standard AHU",1079,1234,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1143,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1039","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0708 CL/SS 0B","362-2AS0708CLSS0B","Standard AHU",1079,1234,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",2827,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1040","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0709 CL/CL 0B","362-2AS0709CLCL0B","Standard AHU",1079,1389,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1455,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1041","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0709 CL/GI 0B","362-2AS0709CLGI0B","Standard AHU",1079,1389,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1303,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1042","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0709 GI/GI 0B","362-2AS0709GIGI0B","Standard AHU",1079,1389,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1286,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1043","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0710 CL/CL 0B","362-2AS0710CLCL0B","Standard AHU",1079,1544,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1466,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1044","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0710 CL/GI 0B","362-2AS0710CLGI0B","Standard AHU",1079,1544,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1448,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1045","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0710 GI/GI 0B","362-2AS0710GIGI0B","Standard AHU",1079,1544,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1429,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1046","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0710 CL/SS 0B","362-2AS0710CLSS0B","Standard AHU",1079,1544,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",3545,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1047","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0711 CL/CL 0B","362-2AS0711CLCL0B","Standard AHU",1079,1699,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1614,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1048","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0711 CL/GI 0B","362-2AS0711CLGI0B","Standard AHU",1079,1699,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1593,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1049","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0711 GI/GI 0B","362-2AS0711GIGI0B","Standard AHU",1079,1699,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1573,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1050","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0712 CL/CL 0B","362-2AS0712CLCL0B","Standard AHU",1079,1854,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1762,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1051","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0712 CL/GI 0B","362-2AS0712CLGI0B","Standard AHU",1079,1854,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1738,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1052","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0712 GI/GI 0B","362-2AS0712GIGI0B","Standard AHU",1079,1854,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1715,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1053","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0712 CL/SS 0B","362-2AS0712CLSS0B","Standard AHU",1079,1854,50,"NN (None-None)","0.5 mm SS","0.5 mm PP (OW)","PU",4250,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1054","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0713 CL/CL 0B","362-2AS0713CLCL0B","Standard AHU",1079,2009,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",1909,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1055","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0713 CL/GI 0B","362-2AS0713CLGI0B","Standard AHU",1079,2009,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1883,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1056","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0713 GI/GI 0B","362-2AS0713GIGI0B","Standard AHU",1079,2009,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",1859,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1057","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0714 CL/CL 0B","362-2AS0714CLCL0B","Standard AHU",1079,2164,50,"NN (None-None)","0.5 mm PP (OW)","0.5 mm PP (OW)","PU",2056,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1058","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0714 CL/GI 0B","362-2AS0714CLGI0B","Standard AHU",1079,2164,50,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2029,"บริษัท แอมแอร์ จำกัด" +"Amair_AS_line_1059","Amair_AS","panel","Amair AS","PNL ASSY 50MM 0714 GI/GI 0B","362-2AS0714GIGI0B","Standard AHU",1079,2164,50,"NN (None-None)","0.4 mm GI","0.4 mm GI","PU",2003,"บริษัท แอมแอร์ จำกัด" diff --git a/sqp_config_standard_ahu_create/2_bgrimm/product.rapid.create.line.csv b/sqp_config_standard_ahu_create/2_bgrimm/product.rapid.create.line.csv new file mode 100755 index 0000000..5b30601 --- /dev/null +++ b/sqp_config_standard_ahu_create/2_bgrimm/product.rapid.create.line.csv @@ -0,0 +1,641 @@ +"id","wizard_id/id","bom_product_type","mat_model_choices","part_name","part_code","bom_template_id","W","L","T","mat_joint_choices","mat_inside_skin_choices","mat_outside_skin_choices","mat_insulation_choices","list_price","partner_id" +"B_Grimm_Access_line_1","B_Grimm_Access","panel","B.Grimm Access","39GAP02-05 ACCESS DOOR 013007","463P0001","Standard AHU",196,496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",109,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_2","B_Grimm_Access","panel","B.Grimm Access","39GAP02-06 ACCESS DOOR 013008","463P0002","Standard AHU",196,596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",131,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_3","B_Grimm_Access","panel","B.Grimm Access","39GAP02-07 ACCESS DOOR 013009","463P0003","Standard AHU",196,696,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",153,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_4","B_Grimm_Access","panel","B.Grimm Access","39GAP02-08 ACCESS DOOR 013010","463P0004","Standard AHU",196,796,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",174,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_5","B_Grimm_Access","panel","B.Grimm Access","39GAP02-09 ACCESS DOOR 013011","463P0005","Standard AHU",196,896,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",196,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_6","B_Grimm_Access","panel","B.Grimm Access","39GAP02-10 ACCESS DOOR 013012","463P0006","Standard AHU",196,996,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",218,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_7","B_Grimm_Access","panel","B.Grimm Access","39GAP02-11 ACCESS DOOR 013013","463P0007","Standard AHU",196,1096,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",240,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_8","B_Grimm_Access","panel","B.Grimm Access","39GAP02-12 ACCESS DOOR 013014","463P0008","Standard AHU",196,1196,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",261,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_9","B_Grimm_Access","panel","B.Grimm Access","39GAP02-13 ACCESS DOOR 013015","463P0009","Standard AHU",196,1296,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",283,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_10","B_Grimm_Access","panel","B.Grimm Access","39GAP02-14 ACCESS DOOR 013016","463P0010","Standard AHU",196,1396,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",305,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_11","B_Grimm_Access","panel","B.Grimm Access","39GAP02-15 ACCESS DOOR 013017","463P0011","Standard AHU",196,1496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",327,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_12","B_Grimm_Access","panel","B.Grimm Access","39GAP02-16 ACCESS DOOR 013018","463P0012","Standard AHU",196,1596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",349,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_13","B_Grimm_Access","panel","B.Grimm Access","39GAP02-17 ACCESS DOOR 013019","463P0013","Standard AHU",196,1696,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",370,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_14","B_Grimm_Access","panel","B.Grimm Access","39GAP02-18 ACCESS DOOR 013020","463P0014","Standard AHU",196,1796,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",392,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_15","B_Grimm_Access","panel","B.Grimm Access","39GAP02-19 ACCESS DOOR 013021","463P0015","Standard AHU",196,1896,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",414,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_16","B_Grimm_Access","panel","B.Grimm Access","39GAP02-20 ACCESS DOOR 013022","463P0016","Standard AHU",196,1996,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",436,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_17","B_Grimm_Access","panel","B.Grimm Access","39GAP02-21 ACCESS DOOR 013023","463P0017","Standard AHU",196,2096,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",457,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_18","B_Grimm_Access","panel","B.Grimm Access","39GAP02-22 ACCESS DOOR 013024","463P0018","Standard AHU",196,2196,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",479,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_19","B_Grimm_Access","panel","B.Grimm Access","39GAP02-23 ACCESS DOOR 013025","463P0019","Standard AHU",196,2296,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",501,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_20","B_Grimm_Access","panel","B.Grimm Access","39GAP02-24 ACCESS DOOR 013026","463P0020","Standard AHU",196,2396,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",523,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_21","B_Grimm_Access","panel","B.Grimm Access","39GAP02-25 ACCESS DOOR 013027","463P0021","Standard AHU",196,2496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",545,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_22","B_Grimm_Access","panel","B.Grimm Access","39GAP02-26 ACCESS DOOR 013028","463P0022","Standard AHU",196,2596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",566,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_23","B_Grimm_Access","panel","B.Grimm Access","39GAP03-05 ACCESS DOOR 013029","463P0023","Standard AHU",296,496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",164,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_24","B_Grimm_Access","panel","B.Grimm Access","39GAP03-06 ACCESS DOOR 013030","463P0024","Standard AHU",296,596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",197,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_25","B_Grimm_Access","panel","B.Grimm Access","39GAP03-07 ACCESS DOOR 013031","463P0025","Standard AHU",296,696,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",229,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_26","B_Grimm_Access","panel","B.Grimm Access","39GAP03-08 ACCESS DOOR 013032","463P0026","Standard AHU",296,796,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",262,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_27","B_Grimm_Access","panel","B.Grimm Access","39GAP03-09 ACCESS DOOR 013033","463P0027","Standard AHU",296,896,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",295,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_28","B_Grimm_Access","panel","B.Grimm Access","39GAP03-10 ACCESS DOOR 013034","463P0028","Standard AHU",296,996,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",328,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_29","B_Grimm_Access","panel","B.Grimm Access","39GAP03-11 ACCESS DOOR 013035","463P0029","Standard AHU",296,1096,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",360,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_30","B_Grimm_Access","panel","B.Grimm Access","39GAP03-12 ACCESS DOOR 013036","463P0030","Standard AHU",296,1196,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",393,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_31","B_Grimm_Access","panel","B.Grimm Access","39GAP03-13 ACCESS DOOR 013037","463P0031","Standard AHU",296,1296,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",426,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_32","B_Grimm_Access","panel","B.Grimm Access","39GAP03-14 ACCESS DOOR 013038","463P0032","Standard AHU",296,1396,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",459,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_33","B_Grimm_Access","panel","B.Grimm Access","39GAP03-15 ACCESS DOOR 013039","463P0033","Standard AHU",296,1496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",492,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_34","B_Grimm_Access","panel","B.Grimm Access","39GAP03-16 ACCESS DOOR 013040","463P0034","Standard AHU",296,1596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",524,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_35","B_Grimm_Access","panel","B.Grimm Access","39GAP03-17 ACCESS DOOR 013041","463P0035","Standard AHU",296,1696,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",557,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_36","B_Grimm_Access","panel","B.Grimm Access","39GAP03-18 ACCESS DOOR 013042","463P0036","Standard AHU",296,1796,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",590,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_37","B_Grimm_Access","panel","B.Grimm Access","39GAP03-19 ACCESS DOOR 013043","463P0037","Standard AHU",296,1896,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",623,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_38","B_Grimm_Access","panel","B.Grimm Access","39GAP03-20 ACCESS DOOR 013044","463P0038","Standard AHU",296,1996,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",655,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_39","B_Grimm_Access","panel","B.Grimm Access","39GAP03-21 ACCESS DOOR 013045","463P0039","Standard AHU",296,2096,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",688,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_40","B_Grimm_Access","panel","B.Grimm Access","39GAP03-22 ACCESS DOOR 013046","463P0040","Standard AHU",296,2196,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",721,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_41","B_Grimm_Access","panel","B.Grimm Access","39GAP03-23 ACCESS DOOR 013047","463P0041","Standard AHU",296,2296,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",754,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_42","B_Grimm_Access","panel","B.Grimm Access","39GAP03-24 ACCESS DOOR 013048","463P0042","Standard AHU",296,2396,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",787,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_43","B_Grimm_Access","panel","B.Grimm Access","39GAP03-25 ACCESS DOOR 013049","463P0043","Standard AHU",296,2496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",819,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_44","B_Grimm_Access","panel","B.Grimm Access","39GAP03-26 ACCESS DOOR 013050","463P0044","Standard AHU",296,2596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",852,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_45","B_Grimm_Access","panel","B.Grimm Access","39GAP05-05 ACCESS DOOR 013051","463P0045","Standard AHU",496,496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",273,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_46","B_Grimm_Access","panel","B.Grimm Access","39GAP05-06 ACCESS DOOR 013052","463P0046","Standard AHU",496,596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",328,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_47","B_Grimm_Access","panel","B.Grimm Access","39GAP05-07 ACCESS DOOR 013053","463P0047","Standard AHU",496,696,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",383,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_48","B_Grimm_Access","panel","B.Grimm Access","39GAP05-08 ACCESS DOOR 013054","463P0048","Standard AHU",496,796,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",438,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_49","B_Grimm_Access","panel","B.Grimm Access","39GAP05-09 ACCESS DOOR 013055","463P0049","Standard AHU",496,896,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",492,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_50","B_Grimm_Access","panel","B.Grimm Access","39GAP05-10 ACCESS DOOR 013056","463P0050","Standard AHU",496,996,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",547,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_51","B_Grimm_Access","panel","B.Grimm Access","39GAP05-11 ACCESS DOOR 013057","463P0051","Standard AHU",496,1096,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",602,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_52","B_Grimm_Access","panel","B.Grimm Access","39GAP05-12 ACCESS DOOR 013058","463P0052","Standard AHU",496,1196,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",657,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_53","B_Grimm_Access","panel","B.Grimm Access","39GAP05-13 ACCESS DOOR 013059","463P0053","Standard AHU",496,1296,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",712,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_54","B_Grimm_Access","panel","B.Grimm Access","39GAP05-14 ACCESS DOOR 013060","463P0054","Standard AHU",496,1396,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",766,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_55","B_Grimm_Access","panel","B.Grimm Access","39GAP05-15 ACCESS DOOR 013061","463P0055","Standard AHU",496,1496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",821,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_56","B_Grimm_Access","panel","B.Grimm Access","39GAP05-16 ACCESS DOOR 013062","463P0056","Standard AHU",496,1596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",876,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_57","B_Grimm_Access","panel","B.Grimm Access","39GAP05-17 ACCESS DOOR 013063","463P0057","Standard AHU",496,1696,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",931,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_58","B_Grimm_Access","panel","B.Grimm Access","39GAP05-18 ACCESS DOOR 013064","463P0058","Standard AHU",496,1796,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",985,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_59","B_Grimm_Access","panel","B.Grimm Access","39GAP05-19 ACCESS DOOR 013065","463P0059","Standard AHU",496,1896,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1040,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_60","B_Grimm_Access","panel","B.Grimm Access","39GAP05-20 ACCESS DOOR 013066","463P0060","Standard AHU",496,1996,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1095,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_61","B_Grimm_Access","panel","B.Grimm Access","39GAP05-21 ACCESS DOOR 013067","463P0061","Standard AHU",496,2096,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1150,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_62","B_Grimm_Access","panel","B.Grimm Access","39GAP05-22 ACCESS DOOR 013068","463P0062","Standard AHU",496,2196,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1205,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_63","B_Grimm_Access","panel","B.Grimm Access","39GAP05-23 ACCESS DOOR 013069","463P0063","Standard AHU",496,2296,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1259,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_64","B_Grimm_Access","panel","B.Grimm Access","39GAP05-24 ACCESS DOOR 013070","463P0064","Standard AHU",496,2396,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1314,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_65","B_Grimm_Access","panel","B.Grimm Access","39GAP05-25 ACCESS DOOR 013071","463P0065","Standard AHU",496,2496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1369,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_66","B_Grimm_Access","panel","B.Grimm Access","39GAP05-26 ACCESS DOOR 013072","463P0066","Standard AHU",496,2596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1424,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_67","B_Grimm_Access","panel","B.Grimm Access","39GAP06-05 ACCESS DOOR 013073","463P0067","Standard AHU",596,496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",328,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_68","B_Grimm_Access","panel","B.Grimm Access","39GAP06-06 ACCESS DOOR 013074","463P0068","Standard AHU",596,596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",394,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_69","B_Grimm_Access","panel","B.Grimm Access","39GAP06-07 ACCESS DOOR 013075","463P0069","Standard AHU",596,696,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",460,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_70","B_Grimm_Access","panel","B.Grimm Access","39GAP06-08 ACCESS DOOR 013076","463P0070","Standard AHU",596,796,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",525,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_71","B_Grimm_Access","panel","B.Grimm Access","39GAP06-09 ACCESS DOOR 013077","463P0071","Standard AHU",596,896,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",591,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_72","B_Grimm_Access","panel","B.Grimm Access","39GAP06-10 ACCESS DOOR 013078","463P0072","Standard AHU",596,996,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",657,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_73","B_Grimm_Access","panel","B.Grimm Access","39GAP06-11 ACCESS DOOR 013079","463P0073","Standard AHU",596,1096,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",723,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_74","B_Grimm_Access","panel","B.Grimm Access","39GAP06-12 ACCESS DOOR 013080","463P0074","Standard AHU",596,1196,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",789,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_75","B_Grimm_Access","panel","B.Grimm Access","39GAP06-13 ACCESS DOOR 013081","463P0075","Standard AHU",596,1296,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",854,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_76","B_Grimm_Access","panel","B.Grimm Access","39GAP06-14 ACCESS DOOR 013082","463P0076","Standard AHU",596,1396,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",920,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_77","B_Grimm_Access","panel","B.Grimm Access","39GAP06-15 ACCESS DOOR 013083","463P0077","Standard AHU",596,1496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",986,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_78","B_Grimm_Access","panel","B.Grimm Access","39GAP06-16 ACCESS DOOR 013084","463P0078","Standard AHU",596,1596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1052,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_79","B_Grimm_Access","panel","B.Grimm Access","39GAP06-17 ACCESS DOOR 013085","463P0079","Standard AHU",596,1696,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1117,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_80","B_Grimm_Access","panel","B.Grimm Access","39GAP06-18 ACCESS DOOR 013086","463P0080","Standard AHU",596,1796,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1183,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_81","B_Grimm_Access","panel","B.Grimm Access","39GAP06-19 ACCESS DOOR 013087","463P0081","Standard AHU",596,1896,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1249,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_82","B_Grimm_Access","panel","B.Grimm Access","39GAP06-20 ACCESS DOOR 013088","463P0082","Standard AHU",596,1996,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1315,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_83","B_Grimm_Access","panel","B.Grimm Access","39GAP06-21 ACCESS DOOR 013089","463P0083","Standard AHU",596,2096,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1381,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_84","B_Grimm_Access","panel","B.Grimm Access","39GAP06-22 ACCESS DOOR 013090","463P0084","Standard AHU",596,2196,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1446,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_85","B_Grimm_Access","panel","B.Grimm Access","39GAP06-23 ACCESS DOOR 013091","463P0085","Standard AHU",596,2296,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1512,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_86","B_Grimm_Access","panel","B.Grimm Access","39GAP06-24 ACCESS DOOR 013092","463P0086","Standard AHU",596,2396,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1578,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_87","B_Grimm_Access","panel","B.Grimm Access","39GAP06-25 ACCESS DOOR 013093","463P0087","Standard AHU",596,2496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1644,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_88","B_Grimm_Access","panel","B.Grimm Access","39GAP06-26 ACCESS DOOR 013094","463P0088","Standard AHU",596,2596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1709,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_89","B_Grimm_Access","panel","B.Grimm Access","39GAP07-05 ACCESS DOOR 013095","463P0089","Standard AHU",696,496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",383,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_90","B_Grimm_Access","panel","B.Grimm Access","39GAP07-06 ACCESS DOOR 013096","463P0090","Standard AHU",696,596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",460,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_91","B_Grimm_Access","panel","B.Grimm Access","39GAP07-07 ACCESS DOOR 013097","463P0091","Standard AHU",696,696,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",536,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_92","B_Grimm_Access","panel","B.Grimm Access","39GAP07-08 ACCESS DOOR 013098","463P0092","Standard AHU",696,796,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",613,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_93","B_Grimm_Access","panel","B.Grimm Access","39GAP07-09 ACCESS DOOR 013099","463P0093","Standard AHU",696,896,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",690,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_94","B_Grimm_Access","panel","B.Grimm Access","39GAP07-10 ACCESS DOOR 013100","463P0094","Standard AHU",696,996,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",767,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_95","B_Grimm_Access","panel","B.Grimm Access","39GAP07-11 ACCESS DOOR 013101","463P0095","Standard AHU",696,1096,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",844,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_96","B_Grimm_Access","panel","B.Grimm Access","39GAP07-12 ACCESS DOOR 013102","463P0096","Standard AHU",696,1196,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",920,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_97","B_Grimm_Access","panel","B.Grimm Access","39GAP07-13 ACCESS DOOR 013103","463P0097","Standard AHU",696,1296,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",997,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_98","B_Grimm_Access","panel","B.Grimm Access","39GAP07-14 ACCESS DOOR 013104","463P0098","Standard AHU",696,1396,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1074,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_99","B_Grimm_Access","panel","B.Grimm Access","39GAP07-15 ACCESS DOOR 013105","463P0099","Standard AHU",696,1496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1151,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_100","B_Grimm_Access","panel","B.Grimm Access","39GAP07-16 ACCESS DOOR 013106","463P0100","Standard AHU",696,1596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1227,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_101","B_Grimm_Access","panel","B.Grimm Access","39GAP07-17 ACCESS DOOR 013107","463P0101","Standard AHU",696,1696,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1304,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_102","B_Grimm_Access","panel","B.Grimm Access","39GAP07-18 ACCESS DOOR 013108","463P0102","Standard AHU",696,1796,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1381,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_103","B_Grimm_Access","panel","B.Grimm Access","39GAP07-19 ACCESS DOOR 013109","463P0103","Standard AHU",696,1896,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1458,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_104","B_Grimm_Access","panel","B.Grimm Access","39GAP07-20 ACCESS DOOR 013110","463P0104","Standard AHU",696,1996,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1535,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_105","B_Grimm_Access","panel","B.Grimm Access","39GAP07-21 ACCESS DOOR 013111","463P0105","Standard AHU",696,2096,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1611,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_106","B_Grimm_Access","panel","B.Grimm Access","39GAP07-22 ACCESS DOOR 013112","463P0106","Standard AHU",696,2196,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1688,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_107","B_Grimm_Access","panel","B.Grimm Access","39GAP07-23 ACCESS DOOR 013113","463P0107","Standard AHU",696,2296,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1765,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_108","B_Grimm_Access","panel","B.Grimm Access","39GAP07-24 ACCESS DOOR 013114","463P0108","Standard AHU",696,2396,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1842,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_109","B_Grimm_Access","panel","B.Grimm Access","39GAP07-25 ACCESS DOOR 013115","463P0109","Standard AHU",696,2496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1918,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_110","B_Grimm_Access","panel","B.Grimm Access","39GAP07-26 ACCESS DOOR 013116","463P0110","Standard AHU",696,2596,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1995,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_111","B_Grimm_Access","panel","B.Grimm Access","39GAP04-15 ACCESS DOOR 016473","463P0639","Standard AHU",396,1496,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",477,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Access_line_112","B_Grimm_Access","panel","B.Grimm Access","39GAP09-09 ACCESS DOOR 016577","463P0640","Standard AHU",896,896,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",600,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_1","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-05 PANEL 013117","463P0111","Standard AHU",98,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",49,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_2","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-06 PANEL 013118","463P0112","Standard AHU",98,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",59,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_3","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-07 PANEL 013119","463P0113","Standard AHU",98,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",68,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_4","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-08 PANEL 013120","463P0114","Standard AHU",98,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",78,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_5","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-09 PANEL 013121","463P0115","Standard AHU",98,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",88,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_6","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-10 PANEL 013122","463P0116","Standard AHU",98,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",97,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_7","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-11 PANEL 013123","463P0117","Standard AHU",98,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",107,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_8","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-12 PANEL 013124","463P0118","Standard AHU",98,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",117,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_9","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-13 PANEL 013125","463P0119","Standard AHU",98,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",126,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_10","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-14 PANEL 013126","463P0120","Standard AHU",98,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",136,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_11","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-15 PANEL 013127","463P0121","Standard AHU",98,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",146,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_12","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-16 PANEL 013128","463P0122","Standard AHU",98,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",156,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_13","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-17 PANEL 013129","463P0123","Standard AHU",98,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",165,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_14","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-18 PANEL 013130","463P0124","Standard AHU",98,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",175,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_15","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-19 PANEL 013131","463P0125","Standard AHU",98,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",185,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_16","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-20 PANEL 013132","463P0126","Standard AHU",98,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",194,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_17","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-21 PANEL 013133","463P0127","Standard AHU",98,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",204,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_18","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-22 PANEL 013134","463P0128","Standard AHU",98,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",214,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_19","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-23 PANEL 013135","463P0129","Standard AHU",98,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",223,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_20","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-24 PANEL 013136","463P0130","Standard AHU",98,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",233,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_21","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-25 PANEL 013137","463P0131","Standard AHU",98,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",243,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_22","B_Grimm_Panel","panel","B.Grimm Panel","39GPN01-26 PANEL 013138","463P0132","Standard AHU",98,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",253,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_23","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-05 PANEL 013139","463P0133","Standard AHU",198,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",87,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_24","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-06 PANEL 013140","463P0134","Standard AHU",198,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",105,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_25","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-07 PANEL 013141","463P0135","Standard AHU",198,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",122,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_26","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-08 PANEL 013142","463P0136","Standard AHU",198,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",140,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_27","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-09 PANEL 013143","463P0137","Standard AHU",198,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",157,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_28","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-10 PANEL 013144","463P0138","Standard AHU",198,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",174,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_29","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-11 PANEL 013145","463P0139","Standard AHU",198,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",192,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_30","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-12 PANEL 013146","463P0140","Standard AHU",198,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",209,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_31","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-13 PANEL 013147","463P0141","Standard AHU",198,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",227,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_32","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-14 PANEL 013148","463P0142","Standard AHU",198,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",244,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_33","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-15 PANEL 013149","463P0143","Standard AHU",198,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",262,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_34","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-16 PANEL 013150","463P0144","Standard AHU",198,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",279,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_35","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-17 PANEL 013151","463P0145","Standard AHU",198,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",296,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_36","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-18 PANEL 013152","463P0146","Standard AHU",198,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",314,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_37","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-19 PANEL 013153","463P0147","Standard AHU",198,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",331,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_38","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-20 PANEL 013154","463P0148","Standard AHU",198,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",349,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_39","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-21 PANEL 013155","463P0149","Standard AHU",198,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",366,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_40","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-22 PANEL 013156","463P0150","Standard AHU",198,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",383,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_41","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-23 PANEL 013157","463P0151","Standard AHU",198,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",401,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_42","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-24 PANEL 013158","463P0152","Standard AHU",198,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",418,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_43","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-25 PANEL 013159","463P0153","Standard AHU",198,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",436,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_44","B_Grimm_Panel","panel","B.Grimm Panel","39GPN02-26 PANEL 013160","463P0154","Standard AHU",198,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",453,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_45","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-05 PANEL 013161","463P0155","Standard AHU",298,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",131,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_46","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-06 PANEL 013162","463P0156","Standard AHU",298,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",157,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_47","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-07 PANEL 013163","463P0157","Standard AHU",298,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",184,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_48","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-08 PANEL 013164","463P0158","Standard AHU",298,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",210,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_49","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-09 PANEL 013165","463P0159","Standard AHU",298,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",236,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_50","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-10 PANEL 013166","463P0160","Standard AHU",298,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",262,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_51","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-11 PANEL 013167","463P0161","Standard AHU",298,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",288,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_52","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-12 PANEL 013168","463P0162","Standard AHU",298,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",315,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_53","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-13 PANEL 013169","463P0163","Standard AHU",298,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",341,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_54","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-14 PANEL 013170","463P0164","Standard AHU",298,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",367,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_55","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-15 PANEL 013171","463P0165","Standard AHU",298,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",393,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_56","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-16 PANEL 013172","463P0166","Standard AHU",298,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",420,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_57","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-17 PANEL 013173","463P0167","Standard AHU",298,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",446,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_58","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-18 PANEL 013174","463P0168","Standard AHU",298,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",472,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_59","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-19 PANEL 013175","463P0169","Standard AHU",298,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",498,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_60","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-20 PANEL 013176","463P0170","Standard AHU",298,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",524,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_61","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-21 PANEL 013177","463P0171","Standard AHU",298,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",551,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_62","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-22 PANEL 013178","463P0172","Standard AHU",298,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",577,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_63","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-23 PANEL 013179","463P0173","Standard AHU",298,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",603,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_64","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-24 PANEL 013180","463P0174","Standard AHU",298,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",629,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_65","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-25 PANEL 013181","463P0175","Standard AHU",298,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",656,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_66","B_Grimm_Panel","panel","B.Grimm Panel","39GPN03-26 PANEL 013182","463P0176","Standard AHU",298,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",682,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_67","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-05 PANEL 013183","463P0177","Standard AHU",398,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",175,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_68","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-06 PANEL 013184","463P0178","Standard AHU",398,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",210,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_69","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-07 PANEL 013185","463P0179","Standard AHU",398,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",245,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_70","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-08 PANEL 013186","463P0180","Standard AHU",398,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",280,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_71","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-09 PANEL 013187","463P0181","Standard AHU",398,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",315,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_72","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-10 PANEL 013188","463P0182","Standard AHU",398,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",350,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_73","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-11 PANEL 013189","463P0183","Standard AHU",398,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",385,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_74","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-12 PANEL 013190","463P0184","Standard AHU",398,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",420,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_75","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-13 PANEL 013191","463P0185","Standard AHU",398,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",455,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_76","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-14 PANEL 013192","463P0186","Standard AHU",398,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",490,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_77","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-15 PANEL 013193","463P0187","Standard AHU",398,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",525,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_78","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-16 PANEL 013194","463P0188","Standard AHU",398,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",560,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_79","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-17 PANEL 013195","463P0189","Standard AHU",398,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",595,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_80","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-18 PANEL 013196","463P0190","Standard AHU",398,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",630,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_81","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-19 PANEL 013197","463P0191","Standard AHU",398,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",665,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_82","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-20 PANEL 013198","463P0192","Standard AHU",398,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",700,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_83","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-21 PANEL 013199","463P0193","Standard AHU",398,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",735,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_84","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-22 PANEL 013200","463P0194","Standard AHU",398,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",770,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_85","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-23 PANEL 013201","463P0195","Standard AHU",398,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",805,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_86","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-24 PANEL 013202","463P0196","Standard AHU",398,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",840,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_87","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-25 PANEL 013203","463P0197","Standard AHU",398,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",875,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_88","B_Grimm_Panel","panel","B.Grimm Panel","39GPN04-26 PANEL 013204","463P0198","Standard AHU",398,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",910,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_89","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-05 PANEL 013205","463P0199","Standard AHU",498,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",219,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_90","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-06 PANEL 013206","463P0200","Standard AHU",498,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",263,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_91","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-07 PANEL 013207","463P0201","Standard AHU",498,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",306,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_92","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-08 PANEL 013208","463P0202","Standard AHU",498,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",350,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_93","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-09 PANEL 013209","463P0203","Standard AHU",498,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",394,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_94","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-10 PANEL 013210","463P0204","Standard AHU",498,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",438,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_95","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-11 PANEL 013211","463P0205","Standard AHU",498,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",482,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_96","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-12 PANEL 013212","463P0206","Standard AHU",498,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",526,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_97","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-13 PANEL 013213","463P0207","Standard AHU",498,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",569,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_98","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-14 PANEL 013214","463P0208","Standard AHU",498,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",613,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_99","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-15 PANEL 013215","463P0209","Standard AHU",498,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",657,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_100","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-16 PANEL 013216","463P0210","Standard AHU",498,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",701,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_101","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-17 PANEL 013217","463P0211","Standard AHU",498,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",745,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_102","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-18 PANEL 013218","463P0212","Standard AHU",498,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",788,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_103","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-19 PANEL 013219","463P0213","Standard AHU",498,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",832,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_104","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-20 PANEL 013220","463P0214","Standard AHU",498,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",876,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_105","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-21 PANEL 013221","463P0215","Standard AHU",498,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",920,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_106","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-22 PANEL 013222","463P0216","Standard AHU",498,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",964,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_107","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-23 PANEL 013223","463P0217","Standard AHU",498,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1008,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_108","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-24 PANEL 013224","463P0218","Standard AHU",498,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1051,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_109","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-25 PANEL 013225","463P0219","Standard AHU",498,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1095,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_110","B_Grimm_Panel","panel","B.Grimm Panel","39GPN05-26 PANEL 013226","463P0220","Standard AHU",498,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1139,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_111","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-05 PANEL 013227","463P0221","Standard AHU",598,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",263,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_112","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-06 PANEL 013228","463P0222","Standard AHU",598,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",315,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_113","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-07 PANEL 013229","463P0223","Standard AHU",598,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",368,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_114","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-08 PANEL 013230","463P0224","Standard AHU",598,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",420,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_115","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-09 PANEL 013231","463P0225","Standard AHU",598,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",473,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_116","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-10 PANEL 013232","463P0226","Standard AHU",598,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",526,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_117","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-11 PANEL 013233","463P0227","Standard AHU",598,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",578,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_118","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-12 PANEL 013234","463P0228","Standard AHU",598,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",631,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_119","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-13 PANEL 013235","463P0229","Standard AHU",598,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",684,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_120","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-14 PANEL 013236","463P0230","Standard AHU",598,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",736,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_121","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-15 PANEL 013237","463P0231","Standard AHU",598,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",789,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_122","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-16 PANEL 013238","463P0232","Standard AHU",598,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",841,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_123","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-17 PANEL 013239","463P0233","Standard AHU",598,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",894,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_124","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-18 PANEL 013240","463P0234","Standard AHU",598,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",947,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_125","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-19 PANEL 013241","463P0235","Standard AHU",598,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",999,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_126","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-20 PANEL 013242","463P0236","Standard AHU",598,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1052,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_127","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-21 PANEL 013243","463P0237","Standard AHU",598,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1105,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_128","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-22 PANEL 013244","463P0238","Standard AHU",598,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1157,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_129","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-23 PANEL 013245","463P0239","Standard AHU",598,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1210,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_130","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-24 PANEL 013246","463P0240","Standard AHU",598,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1262,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_131","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-25 PANEL 013247","463P0241","Standard AHU",598,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1315,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_132","B_Grimm_Panel","panel","B.Grimm Panel","39GPN06-26 PANEL 013248","463P0242","Standard AHU",598,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1368,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_133","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-05 PANEL 013249","463P0243","Standard AHU",698,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",306,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_134","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-06 PANEL 013250","463P0244","Standard AHU",698,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",368,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_135","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-07 PANEL 013251","463P0245","Standard AHU",698,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",429,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_136","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-08 PANEL 013252","463P0246","Standard AHU",698,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",491,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_137","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-09 PANEL 013253","463P0247","Standard AHU",698,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",552,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_138","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-10 PANEL 013254","463P0248","Standard AHU",698,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",614,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_139","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-11 PANEL 013255","463P0249","Standard AHU",698,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",675,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_140","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-12 PANEL 013256","463P0250","Standard AHU",698,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",736,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_141","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-13 PANEL 013257","463P0251","Standard AHU",698,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",798,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_142","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-14 PANEL 013258","463P0252","Standard AHU",698,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",859,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_143","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-15 PANEL 013259","463P0253","Standard AHU",698,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",921,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_144","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-16 PANEL 013260","463P0254","Standard AHU",698,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",982,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_145","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-17 PANEL 013261","463P0255","Standard AHU",698,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1043,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_146","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-18 PANEL 013262","463P0256","Standard AHU",698,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1105,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_147","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-19 PANEL 013263","463P0257","Standard AHU",698,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1166,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_148","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-20 PANEL 013264","463P0258","Standard AHU",698,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1228,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_149","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-21 PANEL 013265","463P0259","Standard AHU",698,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1289,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_150","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-22 PANEL 013266","463P0260","Standard AHU",698,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1351,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_151","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-23 PANEL 013267","463P0261","Standard AHU",698,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1412,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_152","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-24 PANEL 013268","463P0262","Standard AHU",698,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1473,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_153","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-25 PANEL 013269","463P0263","Standard AHU",698,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1535,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_154","B_Grimm_Panel","panel","B.Grimm Panel","39GPN07-26 PANEL 013270","463P0264","Standard AHU",698,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1596,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_155","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-05 PANEL 013271","463P0265","Standard AHU",798,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",350,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_156","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-06 PANEL 013272","463P0266","Standard AHU",798,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",420,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_157","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-07 PANEL 013273","463P0267","Standard AHU",798,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",491,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_158","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-08 PANEL 013274","463P0268","Standard AHU",798,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",561,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_159","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-09 PANEL 013275","463P0269","Standard AHU",798,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",631,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_160","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-10 PANEL 013276","463P0270","Standard AHU",798,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",701,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_161","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-11 PANEL 013277","463P0271","Standard AHU",798,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",772,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_162","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-12 PANEL 013278","463P0272","Standard AHU",798,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",842,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_163","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-13 PANEL 013279","463P0273","Standard AHU",798,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",912,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_164","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-14 PANEL 013280","463P0274","Standard AHU",798,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",982,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_165","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-15 PANEL 013281","463P0275","Standard AHU",798,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1052,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_166","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-16 PANEL 013282","463P0276","Standard AHU",798,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1123,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_167","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-17 PANEL 013283","463P0277","Standard AHU",798,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1193,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_168","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-18 PANEL 013284","463P0278","Standard AHU",798,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1263,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_169","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-19 PANEL 013285","463P0279","Standard AHU",798,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1333,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_170","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-20 PANEL 013286","463P0280","Standard AHU",798,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1404,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_171","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-21 PANEL 013287","463P0281","Standard AHU",798,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1474,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_172","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-22 PANEL 013288","463P0282","Standard AHU",798,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1544,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_173","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-23 PANEL 013289","463P0283","Standard AHU",798,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1614,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_174","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-24 PANEL 013290","463P0284","Standard AHU",798,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1684,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_175","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-25 PANEL 013291","463P0285","Standard AHU",798,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1755,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_176","B_Grimm_Panel","panel","B.Grimm Panel","39GPN08-26 PANEL 013292","463P0286","Standard AHU",798,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1825,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_177","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-05 PANEL 013293","463P0287","Standard AHU",898,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",394,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_178","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-06 PANEL 013294","463P0288","Standard AHU",898,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",473,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_179","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-07 PANEL 013295","463P0289","Standard AHU",898,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",552,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_180","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-08 PANEL 013296","463P0290","Standard AHU",898,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",631,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_181","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-09 PANEL 013297","463P0291","Standard AHU",898,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",710,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_182","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-10 PANEL 013298","463P0292","Standard AHU",898,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",789,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_183","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-11 PANEL 013299","463P0293","Standard AHU",898,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",868,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_184","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-12 PANEL 013300","463P0294","Standard AHU",898,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",947,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_185","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-13 PANEL 013301","463P0295","Standard AHU",898,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1026,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_186","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-14 PANEL 013302","463P0296","Standard AHU",898,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1105,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_187","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-15 PANEL 013303","463P0297","Standard AHU",898,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1184,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_188","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-16 PANEL 013304","463P0298","Standard AHU",898,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1263,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_189","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-17 PANEL 013305","463P0299","Standard AHU",898,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1342,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_190","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-18 PANEL 013306","463P0300","Standard AHU",898,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1421,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_191","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-19 PANEL 013307","463P0301","Standard AHU",898,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1500,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_192","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-20 PANEL 013308","463P0302","Standard AHU",898,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1579,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_193","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-21 PANEL 013309","463P0303","Standard AHU",898,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1658,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_194","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-22 PANEL 013310","463P0304","Standard AHU",898,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1737,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_195","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-23 PANEL 013311","463P0305","Standard AHU",898,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1816,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_196","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-24 PANEL 013312","463P0306","Standard AHU",898,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1895,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_197","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-25 PANEL 013313","463P0307","Standard AHU",898,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1975,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_198","B_Grimm_Panel","panel","B.Grimm Panel","39GPN09-26 PANEL 013314","463P0308","Standard AHU",898,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2054,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_199","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-05 PANEL 013315","463P0309","Standard AHU",998,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",438,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_200","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-06 PANEL 013316","463P0310","Standard AHU",998,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",526,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_201","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-07 PANEL 013317","463P0311","Standard AHU",998,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",614,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_202","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-08 PANEL 013318","463P0312","Standard AHU",998,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",701,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_203","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-09 PANEL 013319","463P0313","Standard AHU",998,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",789,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_204","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-10 PANEL 013320","463P0314","Standard AHU",998,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",877,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_205","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-11 PANEL 013321","463P0315","Standard AHU",998,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",965,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_206","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-12 PANEL 013322","463P0316","Standard AHU",998,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1053,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_207","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-13 PANEL 013323","463P0317","Standard AHU",998,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1140,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_208","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-14 PANEL 013324","463P0318","Standard AHU",998,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1228,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_209","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-15 PANEL 013325","463P0319","Standard AHU",998,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1316,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_210","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-16 PANEL 013326","463P0320","Standard AHU",998,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1404,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_211","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-17 PANEL 013327","463P0321","Standard AHU",998,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1492,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_212","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-18 PANEL 013328","463P0322","Standard AHU",998,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1580,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_213","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-19 PANEL 013329","463P0323","Standard AHU",998,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1667,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_214","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-20 PANEL 013330","463P0324","Standard AHU",998,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1755,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_215","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-21 PANEL 013331","463P0325","Standard AHU",998,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1843,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_216","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-22 PANEL 013332","463P0326","Standard AHU",998,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1931,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_217","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-23 PANEL 013333","463P0327","Standard AHU",998,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2019,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_218","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-24 PANEL 013334","463P0328","Standard AHU",998,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2107,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_219","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-25 PANEL 013335","463P0329","Standard AHU",998,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2194,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_220","B_Grimm_Panel","panel","B.Grimm Panel","39GPN10-26 PANEL 013336","463P0330","Standard AHU",998,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2282,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_221","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-05 PANEL 013337","463P0331","Standard AHU",1098,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",482,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_222","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-06 PANEL 013338","463P0332","Standard AHU",1098,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",578,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_223","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-07 PANEL 013339","463P0333","Standard AHU",1098,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",675,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_224","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-08 PANEL 013340","463P0334","Standard AHU",1098,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",772,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_225","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-09 PANEL 013341","463P0335","Standard AHU",1098,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",868,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_226","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-10 PANEL 013342","463P0336","Standard AHU",1098,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",965,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_227","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-11 PANEL 013343","463P0337","Standard AHU",1098,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1061,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_228","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-12 PANEL 013344","463P0338","Standard AHU",1098,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1158,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_229","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-13 PANEL 013345","463P0339","Standard AHU",1098,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1255,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_230","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-14 PANEL 013346","463P0340","Standard AHU",1098,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1351,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_231","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-15 PANEL 013347","463P0341","Standard AHU",1098,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1448,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_232","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-16 PANEL 013348","463P0342","Standard AHU",1098,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1545,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_233","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-17 PANEL 013349","463P0343","Standard AHU",1098,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1641,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_234","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-18 PANEL 013350","463P0344","Standard AHU",1098,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1738,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_235","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-19 PANEL 013351","463P0345","Standard AHU",1098,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1834,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_236","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-20 PANEL 013352","463P0346","Standard AHU",1098,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1931,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_237","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-21 PANEL 013353","463P0347","Standard AHU",1098,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2028,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_238","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-22 PANEL 013354","463P0348","Standard AHU",1098,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2124,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_239","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-23 PANEL 013355","463P0349","Standard AHU",1098,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2221,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_240","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-24 PANEL 013356","463P0350","Standard AHU",1098,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2318,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_241","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-25 PANEL 013357","463P0351","Standard AHU",1098,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2414,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_242","B_Grimm_Panel","panel","B.Grimm Panel","39GPN11-26 PANEL 013358","463P0352","Standard AHU",1098,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2511,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_243","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-05 PANEL 013359","463P0353","Standard AHU",98,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",49,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_244","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-06 PANEL 013360","463P0354","Standard AHU",98,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",59,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_245","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-07 PANEL 013361","463P0355","Standard AHU",98,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",68,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_246","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-08 PANEL 013362","463P0356","Standard AHU",98,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",78,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_247","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-09 PANEL 013363","463P0357","Standard AHU",98,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",88,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_248","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-10 PANEL 013364","463P0358","Standard AHU",98,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",97,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_249","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-11 PANEL 013365","463P0359","Standard AHU",98,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",107,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_250","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-12 PANEL 013366","463P0360","Standard AHU",98,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",117,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_251","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-13 PANEL 013367","463P0361","Standard AHU",98,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",126,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_252","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-14 PANEL 013368","463P0362","Standard AHU",98,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",136,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_253","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-15 PANEL 013369","463P0363","Standard AHU",98,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",146,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_254","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-16 PANEL 013370","463P0364","Standard AHU",98,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",156,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_255","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-17 PANEL 013371","463P0365","Standard AHU",98,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",165,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_256","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-18 PANEL 013372","463P0366","Standard AHU",98,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",175,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_257","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-19 PANEL 013373","463P0367","Standard AHU",98,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",185,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_258","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-20 PANEL 013374","463P0368","Standard AHU",98,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",194,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_259","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-21 PANEL 013375","463P0369","Standard AHU",98,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",204,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_260","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-22 PANEL 013376","463P0370","Standard AHU",98,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",214,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_261","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-23 PANEL 013377","463P0371","Standard AHU",98,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",223,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_262","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-24 PANEL 013378","463P0372","Standard AHU",98,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",233,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_263","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-25 PANEL 013379","463P0373","Standard AHU",98,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",243,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_264","B_Grimm_Panel","panel","B.Grimm Panel","39GPF01-26 PANEL 013380","463P0374","Standard AHU",98,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",253,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_265","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-05 PANEL 013381","463P0375","Standard AHU",198,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",87,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_266","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-06 PANEL 013382","463P0376","Standard AHU",198,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",105,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_267","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-07 PANEL 013383","463P0377","Standard AHU",198,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",122,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_268","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-08 PANEL 013384","463P0378","Standard AHU",198,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",140,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_269","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-09 PANEL 013385","463P0379","Standard AHU",198,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",157,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_270","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-10 PANEL 013386","463P0380","Standard AHU",198,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",174,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_271","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-11 PANEL 013387","463P0381","Standard AHU",198,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",192,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_272","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-12 PANEL 013388","463P0382","Standard AHU",198,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",209,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_273","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-13 PANEL 013389","463P0383","Standard AHU",198,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",227,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_274","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-14 PANEL 013390","463P0384","Standard AHU",198,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",244,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_275","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-15 PANEL 013391","463P0385","Standard AHU",198,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",262,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_276","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-16 PANEL 013392","463P0386","Standard AHU",198,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",279,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_277","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-17 PANEL 013393","463P0387","Standard AHU",198,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",296,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_278","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-18 PANEL 013394","463P0388","Standard AHU",198,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",314,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_279","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-19 PANEL 013395","463P0389","Standard AHU",198,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",331,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_280","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-20 PANEL 013396","463P0390","Standard AHU",198,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",349,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_281","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-21 PANEL 013397","463P0391","Standard AHU",198,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",366,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_282","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-22 PANEL 013398","463P0392","Standard AHU",198,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",383,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_283","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-23 PANEL 013399","463P0393","Standard AHU",198,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",401,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_284","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-24 PANEL 013400","463P0394","Standard AHU",198,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",418,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_285","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-25 PANEL 013401","463P0395","Standard AHU",198,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",436,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_286","B_Grimm_Panel","panel","B.Grimm Panel","39GPF02-26 PANEL 013402","463P0396","Standard AHU",198,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",453,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_287","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-05 PANEL 013403","463P0397","Standard AHU",298,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",131,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_288","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-06 PANEL 013404","463P0398","Standard AHU",298,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",157,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_289","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-07 PANEL 013405","463P0399","Standard AHU",298,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",184,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_290","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-08 PANEL 013406","463P0400","Standard AHU",298,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",210,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_291","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-09 PANEL 013407","463P0401","Standard AHU",298,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",236,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_292","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-10 PANEL 013408","463P0402","Standard AHU",298,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",262,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_293","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-11 PANEL 013409","463P0403","Standard AHU",298,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",288,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_294","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-12 PANEL 013410","463P0404","Standard AHU",298,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",315,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_295","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-13 PANEL 013411","463P0405","Standard AHU",298,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",341,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_296","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-14 PANEL 013412","463P0406","Standard AHU",298,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",367,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_297","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-15 PANEL 013413","463P0407","Standard AHU",298,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",393,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_298","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-16 PANEL 013414","463P0408","Standard AHU",298,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",420,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_299","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-17 PANEL 013415","463P0409","Standard AHU",298,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",446,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_300","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-18 PANEL 013416","463P0410","Standard AHU",298,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",472,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_301","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-19 PANEL 013417","463P0411","Standard AHU",298,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",498,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_302","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-20 PANEL 013418","463P0412","Standard AHU",298,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",524,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_303","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-21 PANEL 013419","463P0413","Standard AHU",298,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",551,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_304","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-22 PANEL 013420","463P0414","Standard AHU",298,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",577,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_305","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-23 PANEL 013421","463P0415","Standard AHU",298,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",603,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_306","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-24 PANEL 013422","463P0416","Standard AHU",298,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",629,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_307","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-25 PANEL 013423","463P0417","Standard AHU",298,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",656,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_308","B_Grimm_Panel","panel","B.Grimm Panel","39GPF03-26 PANEL 013424","463P0418","Standard AHU",298,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",682,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_309","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-05 PANEL 013425","463P0419","Standard AHU",398,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",175,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_310","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-06 PANEL 013426","463P0420","Standard AHU",398,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",210,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_311","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-07 PANEL 013427","463P0421","Standard AHU",398,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",245,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_312","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-08 PANEL 013428","463P0422","Standard AHU",398,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",280,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_313","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-09 PANEL 013429","463P0423","Standard AHU",398,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",315,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_314","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-10 PANEL 013430","463P0424","Standard AHU",398,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",350,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_315","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-11 PANEL 013431","463P0425","Standard AHU",398,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",385,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_316","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-12 PANEL 013432","463P0426","Standard AHU",398,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",420,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_317","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-13 PANEL 013433","463P0427","Standard AHU",398,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",455,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_318","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-14 PANEL 013434","463P0428","Standard AHU",398,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",490,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_319","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-15 PANEL 013435","463P0429","Standard AHU",398,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",525,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_320","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-16 PANEL 013436","463P0430","Standard AHU",398,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",560,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_321","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-17 PANEL 013437","463P0431","Standard AHU",398,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",595,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_322","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-18 PANEL 013438","463P0432","Standard AHU",398,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",630,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_323","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-19 PANEL 013439","463P0433","Standard AHU",398,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",665,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_324","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-20 PANEL 013440","463P0434","Standard AHU",398,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",700,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_325","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-21 PANEL 013441","463P0435","Standard AHU",398,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",735,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_326","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-22 PANEL 013442","463P0436","Standard AHU",398,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",770,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_327","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-23 PANEL 013443","463P0437","Standard AHU",398,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",805,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_328","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-24 PANEL 013444","463P0438","Standard AHU",398,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",840,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_329","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-25 PANEL 013445","463P0439","Standard AHU",398,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",875,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_330","B_Grimm_Panel","panel","B.Grimm Panel","39GPF04-26 PANEL 013446","463P0440","Standard AHU",398,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",910,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_331","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-05 PANEL 013447","463P0441","Standard AHU",498,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",219,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_332","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-06 PANEL 013448","463P0442","Standard AHU",498,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",263,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_333","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-07 PANEL 013449","463P0443","Standard AHU",498,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",306,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_334","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-08 PANEL 013450","463P0444","Standard AHU",498,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",350,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_335","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-09 PANEL 013451","463P0445","Standard AHU",498,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",394,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_336","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-10 PANEL 013452","463P0446","Standard AHU",498,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",438,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_337","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-11 PANEL 013453","463P0447","Standard AHU",498,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",482,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_338","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-12 PANEL 013454","463P0448","Standard AHU",498,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",526,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_339","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-13 PANEL 013455","463P0449","Standard AHU",498,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",569,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_340","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-14 PANEL 013456","463P0450","Standard AHU",498,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",613,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_341","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-15 PANEL 013457","463P0451","Standard AHU",498,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",657,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_342","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-16 PANEL 013458","463P0452","Standard AHU",498,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",701,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_343","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-17 PANEL 013459","463P0453","Standard AHU",498,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",745,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_344","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-18 PANEL 013460","463P0454","Standard AHU",498,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",788,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_345","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-19 PANEL 013461","463P0455","Standard AHU",498,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",832,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_346","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-20 PANEL 013462","463P0456","Standard AHU",498,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",876,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_347","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-21 PANEL 013463","463P0457","Standard AHU",498,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",920,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_348","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-22 PANEL 013464","463P0458","Standard AHU",498,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",964,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_349","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-23 PANEL 013465","463P0459","Standard AHU",498,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1008,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_350","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-24 PANEL 013466","463P0460","Standard AHU",498,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1051,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_351","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-25 PANEL 013467","463P0461","Standard AHU",498,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1095,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_352","B_Grimm_Panel","panel","B.Grimm Panel","39GPF05-26 PANEL 013468","463P0462","Standard AHU",498,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1139,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_353","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-05 PANEL 013469","463P0463","Standard AHU",598,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",263,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_354","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-06 PANEL 013470","463P0464","Standard AHU",598,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",315,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_355","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-07 PANEL 013471","463P0465","Standard AHU",598,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",368,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_356","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-08 PANEL 013472","463P0466","Standard AHU",598,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",420,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_357","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-09 PANEL 013473","463P0467","Standard AHU",598,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",473,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_358","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-10 PANEL 013474","463P0468","Standard AHU",598,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",526,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_359","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-11 PANEL 013475","463P0469","Standard AHU",598,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",578,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_360","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-12 PANEL 013476","463P0470","Standard AHU",598,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",631,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_361","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-13 PANEL 013477","463P0471","Standard AHU",598,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",684,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_362","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-14 PANEL 013478","463P0472","Standard AHU",598,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",736,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_363","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-15 PANEL 013479","463P0473","Standard AHU",598,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",789,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_364","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-16 PANEL 013480","463P0474","Standard AHU",598,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",841,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_365","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-17 PANEL 013481","463P0475","Standard AHU",598,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",894,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_366","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-18 PANEL 013482","463P0476","Standard AHU",598,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",947,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_367","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-19 PANEL 013483","463P0477","Standard AHU",598,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",999,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_368","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-20 PANEL 013484","463P0478","Standard AHU",598,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1052,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_369","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-21 PANEL 013485","463P0479","Standard AHU",598,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1105,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_370","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-22 PANEL 013486","463P0480","Standard AHU",598,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1157,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_371","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-23 PANEL 013487","463P0481","Standard AHU",598,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1210,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_372","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-24 PANEL 013488","463P0482","Standard AHU",598,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1262,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_373","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-25 PANEL 013489","463P0483","Standard AHU",598,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1315,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_374","B_Grimm_Panel","panel","B.Grimm Panel","39GPF06-26 PANEL 013490","463P0484","Standard AHU",598,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1368,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_375","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-05 PANEL 013491","463P0485","Standard AHU",698,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",306,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_376","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-06 PANEL 013492","463P0486","Standard AHU",698,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",368,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_377","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-07 PANEL 013493","463P0487","Standard AHU",698,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",429,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_378","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-08 PANEL 013494","463P0488","Standard AHU",698,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",491,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_379","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-09 PANEL 013495","463P0489","Standard AHU",698,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",552,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_380","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-10 PANEL 013496","463P0490","Standard AHU",698,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",614,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_381","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-11 PANEL 013497","463P0491","Standard AHU",698,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",675,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_382","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-12 PANEL 013498","463P0492","Standard AHU",698,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",736,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_383","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-13 PANEL 013499","463P0493","Standard AHU",698,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",798,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_384","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-14 PANEL 013500","463P0494","Standard AHU",698,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",859,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_385","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-15 PANEL 013501","463P0495","Standard AHU",698,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",921,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_386","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-16 PANEL 013502","463P0496","Standard AHU",698,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",982,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_387","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-17 PANEL 013503","463P0497","Standard AHU",698,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1043,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_388","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-18 PANEL 013504","463P0498","Standard AHU",698,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1105,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_389","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-19 PANEL 013505","463P0499","Standard AHU",698,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1166,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_390","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-20 PANEL 013506","463P0500","Standard AHU",698,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1228,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_391","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-21 PANEL 013507","463P0501","Standard AHU",698,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1289,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_392","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-22 PANEL 013508","463P0502","Standard AHU",698,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1351,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_393","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-23 PANEL 013509","463P0503","Standard AHU",698,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1412,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_394","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-24 PANEL 013510","463P0504","Standard AHU",698,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1473,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_395","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-25 PANEL 013511","463P0505","Standard AHU",698,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1535,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_396","B_Grimm_Panel","panel","B.Grimm Panel","39GPF07-26 PANEL 013512","463P0506","Standard AHU",698,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1596,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_397","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-05 PANEL 013513","463P0507","Standard AHU",798,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",350,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_398","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-06 PANEL 013514","463P0508","Standard AHU",798,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",420,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_399","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-07 PANEL 013515","463P0509","Standard AHU",798,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",491,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_400","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-08 PANEL 013516","463P0510","Standard AHU",798,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",561,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_401","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-09 PANEL 013517","463P0511","Standard AHU",798,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",631,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_402","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-10 PANEL 013518","463P0512","Standard AHU",798,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",701,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_403","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-11 PANEL 013519","463P0513","Standard AHU",798,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",772,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_404","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-12 PANEL 013520","463P0514","Standard AHU",798,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",842,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_405","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-13 PANEL 013521","463P0515","Standard AHU",798,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",912,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_406","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-14 PANEL 013522","463P0516","Standard AHU",798,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",982,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_407","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-15 PANEL 013523","463P0517","Standard AHU",798,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1052,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_408","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-16 PANEL 013524","463P0518","Standard AHU",798,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1123,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_409","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-17 PANEL 013525","463P0519","Standard AHU",798,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1193,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_410","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-18 PANEL 013526","463P0520","Standard AHU",798,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1263,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_411","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-19 PANEL 013527","463P0521","Standard AHU",798,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1333,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_412","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-20 PANEL 013528","463P0522","Standard AHU",798,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1404,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_413","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-21 PANEL 013529","463P0523","Standard AHU",798,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1474,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_414","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-22 PANEL 013530","463P0524","Standard AHU",798,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1544,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_415","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-23 PANEL 013531","463P0525","Standard AHU",798,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1614,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_416","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-24 PANEL 013532","463P0526","Standard AHU",798,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1684,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_417","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-25 PANEL 013533","463P0527","Standard AHU",798,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1755,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_418","B_Grimm_Panel","panel","B.Grimm Panel","39GPF08-26 PANEL 013534","463P0528","Standard AHU",798,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1825,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_419","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-05 PANEL 013535","463P0529","Standard AHU",898,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",394,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_420","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-06 PANEL 013536","463P0530","Standard AHU",898,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",473,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_421","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-07 PANEL 013537","463P0531","Standard AHU",898,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",552,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_422","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-08 PANEL 013538","463P0532","Standard AHU",898,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",631,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_423","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-09 PANEL 013539","463P0533","Standard AHU",898,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",710,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_424","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-10 PANEL 013540","463P0534","Standard AHU",898,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",789,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_425","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-11 PANEL 013541","463P0535","Standard AHU",898,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",868,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_426","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-12 PANEL 013542","463P0536","Standard AHU",898,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",947,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_427","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-13 PANEL 013543","463P0537","Standard AHU",898,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1026,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_428","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-14 PANEL 013544","463P0538","Standard AHU",898,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1105,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_429","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-15 PANEL 013545","463P0539","Standard AHU",898,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1184,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_430","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-16 PANEL 013546","463P0540","Standard AHU",898,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1263,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_431","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-17 PANEL 013547","463P0541","Standard AHU",898,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1342,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_432","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-18 PANEL 013548","463P0542","Standard AHU",898,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1421,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_433","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-19 PANEL 013549","463P0543","Standard AHU",898,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1500,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_434","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-20 PANEL 013550","463P0544","Standard AHU",898,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1579,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_435","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-21 PANEL 013551","463P0545","Standard AHU",898,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1658,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_436","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-22 PANEL 013552","463P0546","Standard AHU",898,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1737,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_437","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-23 PANEL 013553","463P0547","Standard AHU",898,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1816,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_438","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-24 PANEL 013554","463P0548","Standard AHU",898,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1895,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_439","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-25 PANEL 013555","463P0549","Standard AHU",898,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1975,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_440","B_Grimm_Panel","panel","B.Grimm Panel","39GPF09-26 PANEL 013556","463P0550","Standard AHU",898,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2054,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_441","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-05 PANEL 013557","463P0551","Standard AHU",998,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",438,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_442","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-06 PANEL 013558","463P0552","Standard AHU",998,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",526,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_443","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-07 PANEL 013559","463P0553","Standard AHU",998,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",614,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_444","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-08 PANEL 013560","463P0554","Standard AHU",998,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",701,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_445","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-09 PANEL 013561","463P0555","Standard AHU",998,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",789,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_446","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-10 PANEL 013562","463P0556","Standard AHU",998,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",877,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_447","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-11 PANEL 013563","463P0557","Standard AHU",998,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",965,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_448","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-12 PANEL 013564","463P0558","Standard AHU",998,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1053,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_449","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-13 PANEL 013565","463P0559","Standard AHU",998,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1140,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_450","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-14 PANEL 013566","463P0560","Standard AHU",998,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1228,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_451","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-15 PANEL 013567","463P0561","Standard AHU",998,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1316,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_452","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-16 PANEL 013568","463P0562","Standard AHU",998,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1404,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_453","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-17 PANEL 013569","463P0563","Standard AHU",998,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1492,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_454","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-18 PANEL 013570","463P0564","Standard AHU",998,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1580,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_455","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-19 PANEL 013571","463P0565","Standard AHU",998,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1667,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_456","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-20 PANEL 013572","463P0566","Standard AHU",998,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1755,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_457","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-21 PANEL 013573","463P0567","Standard AHU",998,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1843,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_458","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-22 PANEL 013574","463P0568","Standard AHU",998,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1931,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_459","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-23 PANEL 013575","463P0569","Standard AHU",998,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2019,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_460","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-24 PANEL 013576","463P0570","Standard AHU",998,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2107,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_461","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-25 PANEL 013577","463P0571","Standard AHU",998,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2194,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_462","B_Grimm_Panel","panel","B.Grimm Panel","39GPF10-26 PANEL 013578","463P0572","Standard AHU",998,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2282,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_463","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-05 PANEL 013579","463P0573","Standard AHU",1098,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",482,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_464","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-06 PANEL 013580","463P0574","Standard AHU",1098,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",578,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_465","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-07 PANEL 013581","463P0575","Standard AHU",1098,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",675,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_466","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-08 PANEL 013582","463P0576","Standard AHU",1098,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",772,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_467","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-09 PANEL 013583","463P0577","Standard AHU",1098,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",868,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_468","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-10 PANEL 013584","463P0578","Standard AHU",1098,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",965,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_469","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-11 PANEL 013585","463P0579","Standard AHU",1098,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1061,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_470","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-12 PANEL 013586","463P0580","Standard AHU",1098,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1158,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_471","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-13 PANEL 013587","463P0581","Standard AHU",1098,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1255,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_472","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-14 PANEL 013588","463P0582","Standard AHU",1098,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1351,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_473","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-15 PANEL 013589","463P0583","Standard AHU",1098,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1448,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_474","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-16 PANEL 013590","463P0584","Standard AHU",1098,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1545,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_475","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-17 PANEL 013591","463P0585","Standard AHU",1098,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1641,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_476","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-18 PANEL 013592","463P0586","Standard AHU",1098,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1738,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_477","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-19 PANEL 013593","463P0587","Standard AHU",1098,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1834,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_478","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-20 PANEL 013594","463P0588","Standard AHU",1098,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1931,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_479","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-21 PANEL 013595","463P0589","Standard AHU",1098,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2028,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_480","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-22 PANEL 013596","463P0590","Standard AHU",1098,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2124,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_481","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-23 PANEL 013597","463P0591","Standard AHU",1098,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2221,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_482","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-24 PANEL 013598","463P0592","Standard AHU",1098,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2318,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_483","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-25 PANEL 013599","463P0593","Standard AHU",1098,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2414,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_484","B_Grimm_Panel","panel","B.Grimm Panel","39GPF11-26 PANEL 013600","463P0594","Standard AHU",1098,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2511,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_485","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-05 PANEL 013635","463P0595","Standard AHU",1198,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",526,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_486","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-06 PANEL 013636","463P0596","Standard AHU",1198,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",631,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_487","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-07 PANEL 013637","463P0597","Standard AHU",1198,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",736,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_488","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-08 PANEL 013638","463P0598","Standard AHU",1198,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",842,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_489","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-09 PANEL 013639","463P0599","Standard AHU",1198,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",947,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_490","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-10 PANEL 013640","463P0600","Standard AHU",1198,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1053,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_491","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-11 PANEL 013641","463P0601","Standard AHU",1198,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1158,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_492","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-12 PANEL 013642","463P0602","Standard AHU",1198,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1263,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_493","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-13 PANEL 013643","463P0603","Standard AHU",1198,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1369,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_494","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-14 PANEL 013644","463P0604","Standard AHU",1198,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1474,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_495","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-15 PANEL 013645","463P0605","Standard AHU",1198,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1580,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_496","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-16 PANEL 013646","463P0606","Standard AHU",1198,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1685,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_497","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-17 PANEL 013647","463P0607","Standard AHU",1198,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1791,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_498","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-18 PANEL 013648","463P0608","Standard AHU",1198,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1896,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_499","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-19 PANEL 013649","463P0609","Standard AHU",1198,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2001,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_500","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-20 PANEL 013650","463P0610","Standard AHU",1198,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2107,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_501","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-21 PANEL 013651","463P0611","Standard AHU",1198,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2212,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_502","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-22 PANEL 013652","463P0612","Standard AHU",1198,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2318,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_503","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-23 PANEL 013653","463P0613","Standard AHU",1198,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2423,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_504","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-24 PANEL 013654","463P0614","Standard AHU",1198,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2529,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_505","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-25 PANEL 013655","463P0615","Standard AHU",1198,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2634,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_506","B_Grimm_Panel","panel","B.Grimm Panel","39GPF12-26 PANEL 013656","463P0616","Standard AHU",1198,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2739,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_507","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-05 PANEL 014721","463P0617","Standard AHU",1198,498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",526,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_508","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-06 PANEL 014722","463P0618","Standard AHU",1198,598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",631,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_509","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-07 PANEL 014723","463P0619","Standard AHU",1198,698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",736,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_510","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-08 PANEL 014724","463P0620","Standard AHU",1198,798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",842,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_511","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-09 PANEL 014725","463P0621","Standard AHU",1198,898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",947,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_512","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-10 PANEL 014726","463P0622","Standard AHU",1198,998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1053,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_513","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-11 PANEL 014727","463P0623","Standard AHU",1198,1098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1158,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_514","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-12 PANEL 014728","463P0624","Standard AHU",1198,1198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1263,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_515","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-13 PANEL 014729","463P0625","Standard AHU",1198,1298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1369,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_516","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-14 PANEL 014730","463P0626","Standard AHU",1198,1398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1474,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_517","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-15 PANEL 014731","463P0627","Standard AHU",1198,1498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1580,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_518","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-16 PANEL 014732","463P0628","Standard AHU",1198,1598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1685,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_519","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-17 PANEL 014733","463P0629","Standard AHU",1198,1698,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1791,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_520","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-18 PANEL 014734","463P0630","Standard AHU",1198,1798,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",1896,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_521","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-19 PANEL 014735","463P0631","Standard AHU",1198,1898,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2001,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_522","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-20 PANEL 014736","463P0632","Standard AHU",1198,1998,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2107,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_523","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-21 PANEL 014737","463P0633","Standard AHU",1198,2098,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2212,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_524","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-22 PANEL 014738","463P0634","Standard AHU",1198,2198,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2318,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_525","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-23 PANEL 014739","463P0635","Standard AHU",1198,2298,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2423,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_526","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-24 PANEL 014740","463P0636","Standard AHU",1198,2398,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2529,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_527","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-25 PANEL 014741","463P0637","Standard AHU",1198,2498,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2634,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" +"B_Grimm_Panel_line_528","B_Grimm_Panel","panel","B.Grimm Panel","39GPN12-26 PANEL 014742","463P0638","Standard AHU",1198,2598,25,"NN (None-None)","0.4 mm GI","0.5 mm PP (OW)","PU",2739,"บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด" diff --git a/sqp_config_standard_ahu_create/__init__.py b/sqp_config_standard_ahu_create/__init__.py new file mode 100755 index 0000000..a4a5d90 --- /dev/null +++ b/sqp_config_standard_ahu_create/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_config_standard_ahu_create/__openerp__.py b/sqp_config_standard_ahu_create/__openerp__.py new file mode 100755 index 0000000..3dca773 --- /dev/null +++ b/sqp_config_standard_ahu_create/__openerp__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'Configuration - Prepare for Standard AHU Creation', + 'version': '1.0', + 'category': 'Hidden', + 'description': """ + """, + 'author': 'Ecosoft', + 'website': 'http://www.ecosoft.co.th/', + 'depends': [ + #'mrp', 'product_bom_template' + ], + 'data': [ + 'product.rapid.create.csv', + '1_amair/product.rapid.create.line.csv', + '2_bgrimm/product.rapid.create.line.csv', + ], + 'auto_install': False, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_config_standard_ahu_create/product.rapid.create.csv b/sqp_config_standard_ahu_create/product.rapid.create.csv new file mode 100755 index 0000000..b909cc7 --- /dev/null +++ b/sqp_config_standard_ahu_create/product.rapid.create.csv @@ -0,0 +1,11 @@ +id,tag_ids,is_one_time_use,sale_ok,description,product_categ_id +Amair_AD,Standard AHU,FALSE,TRUE,Amair AD (Std AHU),Standard AHU +Amair_AF,Standard AHU,FALSE,TRUE,Amair AF (Std AHU),Standard AHU +Amair_AG,Standard AHU,FALSE,TRUE,Amair AG (Std AHU),Standard AHU +Amair_AH,Standard AHU,FALSE,TRUE,Amair AH (Std AHU),Standard AHU +Amair_AI,Standard AHU,FALSE,TRUE,Amair AI (Std AHU),Standard AHU +Amair_AJ,Standard AHU,FALSE,TRUE,Amair AJ (Std AHU),Standard AHU +Amair_AL,Standard AHU,FALSE,TRUE,Amair AL (Std AHU),Standard AHU +Amair_AS,Standard AHU,FALSE,TRUE,Amair AS (Std AHU),Standard AHU +B_Grimm_Access,Standard AHU,FALSE,TRUE,B.Grimm Access (Std AHU),Standard AHU +B_Grimm_Panel,Standard AHU,FALSE,TRUE,B.Grimm Panel (Std AHU),Standard AHU diff --git a/sqp_config_standard_ahu_create_july15/2_bgrimm/product.rapid.create.line.csv b/sqp_config_standard_ahu_create_july15/2_bgrimm/product.rapid.create.line.csv new file mode 100644 index 0000000..270ee07 --- /dev/null +++ b/sqp_config_standard_ahu_create_july15/2_bgrimm/product.rapid.create.line.csv @@ -0,0 +1,1073 @@ +id,wizard_id/id,bom_product_type,mat_model_choices,part_name,part_code,bom_template_id,W,L,T,mat_joint_choices,mat_inside_skin_choices,mat_outside_skin_choices,mat_insulation_choices,list_price,partner_id +B_Grimm_Access_line_1,B_Grimm_Access,panel,B.Grimm Access,39GBP04-05 ACCESS DOOR,464P0001,Standard AHU,395,495,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,247,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_2,B_Grimm_Access,panel,B.Grimm Access,39GBP04-06 ACCESS DOOR,464P0002,Standard AHU,395,595,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,292,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_3,B_Grimm_Access,panel,B.Grimm Access,39GBP04-07 ACCESS DOOR,464P0003,Standard AHU,395,695,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,337,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_4,B_Grimm_Access,panel,B.Grimm Access,39GBP04-08 ACCESS DOOR,464P0004,Standard AHU,395,795,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,382,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_5,B_Grimm_Access,panel,B.Grimm Access,39GBP04-09 ACCESS DOOR,464P0005,Standard AHU,395,895,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,427,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_6,B_Grimm_Access,panel,B.Grimm Access,39GBP04-10 ACCESS DOOR,464P0006,Standard AHU,395,995,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,472,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_7,B_Grimm_Access,panel,B.Grimm Access,39GBP04-11 ACCESS DOOR,464P0007,Standard AHU,395,1095,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,518,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_8,B_Grimm_Access,panel,B.Grimm Access,39GBP04-12 ACCESS DOOR,464P0008,Standard AHU,395,1195,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,563,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_9,B_Grimm_Access,panel,B.Grimm Access,39GBP04-13 ACCESS DOOR,464P0009,Standard AHU,395,1295,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,608,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_10,B_Grimm_Access,panel,B.Grimm Access,39GBP04-14 ACCESS DOOR,464P0010,Standard AHU,395,1395,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,653,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_11,B_Grimm_Access,panel,B.Grimm Access,39GBP04-15 ACCESS DOOR,464P0011,Standard AHU,395,1495,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,698,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_12,B_Grimm_Access,panel,B.Grimm Access,39GBP05-05 ACCESS DOOR,464P0012,Standard AHU,495,495,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,302,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_13,B_Grimm_Access,panel,B.Grimm Access,39GBP05-06 ACCESS DOOR,464P0013,Standard AHU,495,595,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,357,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_14,B_Grimm_Access,panel,B.Grimm Access,39GBP05-07 ACCESS DOOR,464P0014,Standard AHU,495,695,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,412,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_15,B_Grimm_Access,panel,B.Grimm Access,39GBP05-08 ACCESS DOOR,464P0015,Standard AHU,495,795,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,467,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_16,B_Grimm_Access,panel,B.Grimm Access,39GBP05-09 ACCESS DOOR,464P0016,Standard AHU,495,895,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,522,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_17,B_Grimm_Access,panel,B.Grimm Access,39GBP05-10 ACCESS DOOR,464P0017,Standard AHU,495,995,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,577,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_18,B_Grimm_Access,panel,B.Grimm Access,39GBP05-11 ACCESS DOOR,464P0018,Standard AHU,495,1095,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,632,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_19,B_Grimm_Access,panel,B.Grimm Access,39GBP05-12 ACCESS DOOR,464P0019,Standard AHU,495,1195,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,687,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_20,B_Grimm_Access,panel,B.Grimm Access,39GBP05-13 ACCESS DOOR,464P0020,Standard AHU,495,1295,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,742,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_21,B_Grimm_Access,panel,B.Grimm Access,39GBP05-14 ACCESS DOOR,464P0021,Standard AHU,495,1395,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,797,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_22,B_Grimm_Access,panel,B.Grimm Access,39GBP05-15 ACCESS DOOR,464P0022,Standard AHU,495,1495,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,852,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_23,B_Grimm_Access,panel,B.Grimm Access,39GBP06-06 ACCESS DOOR,464P0023,Standard AHU,595,595,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,422,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_24,B_Grimm_Access,panel,B.Grimm Access,39GBP06-07 ACCESS DOOR,464P0024,Standard AHU,595,695,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,487,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_25,B_Grimm_Access,panel,B.Grimm Access,39GBP06-08 ACCESS DOOR,464P0025,Standard AHU,595,795,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,552,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_26,B_Grimm_Access,panel,B.Grimm Access,39GBP06-09 ACCESS DOOR,464P0026,Standard AHU,595,895,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,617,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_27,B_Grimm_Access,panel,B.Grimm Access,39GBP06-10 ACCESS DOOR,464P0027,Standard AHU,595,995,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,682,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_28,B_Grimm_Access,panel,B.Grimm Access,39GBP06-11 ACCESS DOOR,464P0028,Standard AHU,595,1095,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,746,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_29,B_Grimm_Access,panel,B.Grimm Access,39GBP06-12 ACCESS DOOR,464P0029,Standard AHU,595,1195,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,811,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_30,B_Grimm_Access,panel,B.Grimm Access,39GBP06-13 ACCESS DOOR,464P0030,Standard AHU,595,1295,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,876,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_31,B_Grimm_Access,panel,B.Grimm Access,39GBP06-14 ACCESS DOOR,464P0031,Standard AHU,595,1395,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,941,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_32,B_Grimm_Access,panel,B.Grimm Access,39GBP06-15 ACCESS DOOR,464P0032,Standard AHU,595,1495,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1006,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_33,B_Grimm_Access,panel,B.Grimm Access,39GBP07-14 ACCESS DOOR,464P0033,Standard AHU,695,1395,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1085,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Access_line_34,B_Grimm_Access,panel,B.Grimm Access,39GBP07-15 ACCESS DOOR,464P0034,Standard AHU,695,1495,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1160,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-08 PANEL,464P0035,Standard AHU,48,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,38,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_2,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-09 PANEL,464P0036,Standard AHU,48,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,43,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_3,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-10 PANEL,464P0037,Standard AHU,48,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,47,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_4,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-11 PANEL,464P0038,Standard AHU,48,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,52,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_5,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-12 PANEL,464P0039,Standard AHU,48,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,57,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_6,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-13 PANEL,464P0040,Standard AHU,48,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,62,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_7,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-14 PANEL,464P0041,Standard AHU,48,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,66,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_8,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-15 PANEL,464P0042,Standard AHU,48,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,71,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_9,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-16 PANEL,464P0043,Standard AHU,48,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,76,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_10,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-17 PANEL,464P0044,Standard AHU,48,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,81,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_11,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-18 PANEL,464P0045,Standard AHU,48,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,85,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_12,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-19 PANEL,464P0046,Standard AHU,48,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,90,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_13,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-20 PANEL,464P0047,Standard AHU,48,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,95,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_14,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-21 PANEL,464P0048,Standard AHU,48,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,100,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_15,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-22 PANEL,464P0049,Standard AHU,48,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,104,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_16,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-23 PANEL,464P0050,Standard AHU,48,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,109,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_17,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-24 PANEL,464P0051,Standard AHU,48,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,114,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_18,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-25 PANEL,464P0052,Standard AHU,48,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,119,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_19,B_Grimm_Panel,panel,B.Grimm Panel,39GBN0.5-26 PANEL,464P0053,Standard AHU,48,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,123,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_20,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-05 PANEL,464P0054,Standard AHU,98,498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,48,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_21,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-06 PANEL,464P0055,Standard AHU,98,598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,58,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_22,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-07 PANEL,464P0056,Standard AHU,98,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,68,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_23,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-08 PANEL,464P0057,Standard AHU,98,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,77,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_24,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-09 PANEL,464P0058,Standard AHU,98,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,87,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_25,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-10 PANEL,464P0059,Standard AHU,98,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,97,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_26,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-11 PANEL,464P0060,Standard AHU,98,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,107,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_27,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-12 PANEL,464P0061,Standard AHU,98,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,116,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_28,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-13 PANEL,464P0062,Standard AHU,98,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,126,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_29,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-14 PANEL,464P0063,Standard AHU,98,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,136,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_30,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-15 PANEL,464P0064,Standard AHU,98,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,145,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_31,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-16 PANEL,464P0065,Standard AHU,98,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,155,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_32,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-17 PANEL,464P0066,Standard AHU,98,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,165,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_33,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-18 PANEL,464P0067,Standard AHU,98,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,174,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_34,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-19 PANEL,464P0068,Standard AHU,98,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,184,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_35,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-20 PANEL,464P0069,Standard AHU,98,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,194,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_36,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-21 PANEL,464P0070,Standard AHU,98,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,204,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_37,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-22 PANEL,464P0071,Standard AHU,98,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,213,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_38,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-23 PANEL,464P0072,Standard AHU,98,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,223,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_39,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-24 PANEL,464P0073,Standard AHU,98,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,233,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_40,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-25 PANEL,464P0074,Standard AHU,98,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,242,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_41,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-26 PANEL,464P0075,Standard AHU,98,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,252,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_42,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-27 PANEL,464P0076,Standard AHU,98,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,262,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_43,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-28 PANEL,464P0077,Standard AHU,98,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,271,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_44,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-29 PANEL,464P0078,Standard AHU,98,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,281,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_45,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-30 PANEL,464P0079,Standard AHU,98,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,291,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_46,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-31 PANEL,464P0080,Standard AHU,98,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,301,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_47,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-32 PANEL,464P0081,Standard AHU,98,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,310,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_48,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-33 PANEL,464P0082,Standard AHU,98,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,320,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_49,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-34 PANEL,464P0083,Standard AHU,98,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,330,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_50,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-35 PANEL,464P0084,Standard AHU,98,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,339,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_51,B_Grimm_Panel,panel,B.Grimm Panel,39GBN01-36 PANEL,464P0085,Standard AHU,98,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,349,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_52,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-04 PANEL,464P0086,Standard AHU,148,398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,58,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_53,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-05 PANEL,464P0087,Standard AHU,148,498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,73,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_54,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-06 PANEL,464P0088,Standard AHU,148,598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,88,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_55,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-07 PANEL,464P0089,Standard AHU,148,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,102,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_56,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-08 PANEL,464P0090,Standard AHU,148,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,117,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_57,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-09 PANEL,464P0091,Standard AHU,148,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,132,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_58,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-10 PANEL,464P0092,Standard AHU,148,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,146,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_59,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-11 PANEL,464P0093,Standard AHU,148,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,161,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_60,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-12 PANEL,464P0094,Standard AHU,148,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,176,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_61,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-13 PANEL,464P0095,Standard AHU,148,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,190,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_62,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-14 PANEL,464P0096,Standard AHU,148,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,205,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_63,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-15 PANEL,464P0097,Standard AHU,148,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,219,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_64,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-16 PANEL,464P0098,Standard AHU,148,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,234,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_65,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-17 PANEL,464P0099,Standard AHU,148,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,249,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_66,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-18 PANEL,464P0100,Standard AHU,148,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,263,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_67,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-19 PANEL,464P0101,Standard AHU,148,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,278,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_68,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-20 PANEL,464P0102,Standard AHU,148,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,293,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_69,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-21 PANEL,464P0103,Standard AHU,148,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,307,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_70,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-22 PANEL,464P0104,Standard AHU,148,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,322,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_71,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-23 PANEL,464P0105,Standard AHU,148,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,337,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_72,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-24 PANEL,464P0106,Standard AHU,148,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,351,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_73,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-25 PANEL,464P0107,Standard AHU,148,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,366,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_74,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-26 PANEL,464P0108,Standard AHU,148,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,381,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_75,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-27 PANEL,464P0109,Standard AHU,148,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,395,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_76,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-28 PANEL,464P0110,Standard AHU,148,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,410,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_77,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-29 PANEL,464P0111,Standard AHU,148,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,425,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_78,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-30 PANEL,464P0112,Standard AHU,148,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,439,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_79,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-31 PANEL,464P0113,Standard AHU,148,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,454,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_80,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-32 PANEL,464P0114,Standard AHU,148,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,469,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_81,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-33 PANEL,464P0115,Standard AHU,148,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,483,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_82,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-34 PANEL,464P0116,Standard AHU,148,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,498,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_83,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-35 PANEL,464P0117,Standard AHU,148,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,513,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_84,B_Grimm_Panel,panel,B.Grimm Panel,39GBN1.5-36 PANEL,464P0118,Standard AHU,148,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,527,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_85,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-04 PANEL,464P0119,Standard AHU,198,398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,78,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_86,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-4.5 PANEL,464P0120,Standard AHU,198,448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,88,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_87,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-05 PANEL,464P0121,Standard AHU,198,498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,98,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_88,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-5.5 PANEL,464P0122,Standard AHU,198,548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,107,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_89,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-06 PANEL,464P0123,Standard AHU,198,598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,117,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_90,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-6.5 PANEL,464P0124,Standard AHU,198,648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,127,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_91,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-07 PANEL,464P0125,Standard AHU,198,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,137,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_92,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-7.5 PANEL,464P0126,Standard AHU,198,748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,147,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_93,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-08 PANEL,464P0127,Standard AHU,198,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,156,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_94,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-8.5 PANEL,464P0128,Standard AHU,198,848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,166,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_95,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-09 PANEL,464P0129,Standard AHU,198,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,176,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_96,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-9.5 PANEL,464P0130,Standard AHU,198,948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,186,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_97,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-10 PANEL,464P0131,Standard AHU,198,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,196,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_98,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-10.5 PANEL,464P0132,Standard AHU,198,1048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,205,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_99,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-11 PANEL,464P0133,Standard AHU,198,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,215,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_100,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-11.5 PANEL,464P0134,Standard AHU,198,1148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,225,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_101,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-12 PANEL,464P0135,Standard AHU,198,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,235,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_102,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-12.5 PANEL,464P0136,Standard AHU,198,1248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,245,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_103,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-13 PANEL,464P0137,Standard AHU,198,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,254,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_104,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-13.5 PANEL,464P0138,Standard AHU,198,1348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,264,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_105,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-14 PANEL,464P0139,Standard AHU,198,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,274,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_106,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-14.5 PANEL,464P0140,Standard AHU,198,1448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,284,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_107,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-15 PANEL,464P0141,Standard AHU,198,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,294,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_108,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-15.5 PANEL,464P0142,Standard AHU,198,1548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,303,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_109,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-16 PANEL,464P0143,Standard AHU,198,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,313,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_110,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-16.5 PANEL,464P0144,Standard AHU,198,1648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,323,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_111,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-17 PANEL,464P0145,Standard AHU,198,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,333,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_112,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-17.5 PANEL,464P0146,Standard AHU,198,1748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,343,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_113,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-18 PANEL,464P0147,Standard AHU,198,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,352,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_114,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-18.5 PANEL,464P0148,Standard AHU,198,1848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,362,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_115,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-19 PANEL,464P0149,Standard AHU,198,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,372,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_116,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-19.5 PANEL,464P0150,Standard AHU,198,1948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,382,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_117,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-20 PANEL,464P0151,Standard AHU,198,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,392,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_118,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-20.5 PANEL,464P0152,Standard AHU,198,2048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,401,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_119,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-21 PANEL,464P0153,Standard AHU,198,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,411,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_120,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-21.5 PANEL,464P0154,Standard AHU,198,2148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,421,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_121,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-22 PANEL,464P0155,Standard AHU,198,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,431,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_122,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-22.5 PANEL,464P0156,Standard AHU,198,2248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,441,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_123,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-23 PANEL,464P0157,Standard AHU,198,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,450,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_124,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-23.5 PANEL,464P0158,Standard AHU,198,2348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,460,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_125,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-24 PANEL,464P0159,Standard AHU,198,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,470,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_126,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-24.5 PANEL,464P0160,Standard AHU,198,2448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,480,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_127,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-25 PANEL,464P0161,Standard AHU,198,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,490,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_128,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-25.5 PANEL,464P0162,Standard AHU,198,2548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,499,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_129,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-26 PANEL,464P0163,Standard AHU,198,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,509,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_130,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-27 PANEL,464P0164,Standard AHU,198,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,529,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_131,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-28 PANEL,464P0165,Standard AHU,198,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,548,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_132,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-29 PANEL,464P0166,Standard AHU,198,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,568,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_133,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-30 PANEL,464P0167,Standard AHU,198,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,588,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_134,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-31 PANEL,464P0168,Standard AHU,198,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,607,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_135,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-32 PANEL,464P0169,Standard AHU,198,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,627,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_136,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-33 PANEL,464P0170,Standard AHU,198,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,646,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_137,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-34 PANEL,464P0171,Standard AHU,198,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,666,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_138,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-35 PANEL,464P0172,Standard AHU,198,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,686,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_139,B_Grimm_Panel,panel,B.Grimm Panel,39GBN02-36 PANEL,464P0173,Standard AHU,198,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,705,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_140,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-04 PANEL,464P0174,Standard AHU,248,398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,98,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_141,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-05 PANEL,464P0175,Standard AHU,248,498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,122,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_142,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-06 PANEL,464P0176,Standard AHU,248,598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,147,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_143,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-07 PANEL,464P0177,Standard AHU,248,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,171,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_144,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-08 PANEL,464P0178,Standard AHU,248,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,196,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_145,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-09 PANEL,464P0179,Standard AHU,248,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,220,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_146,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-10 PANEL,464P0180,Standard AHU,248,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,245,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_147,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-11 PANEL,464P0181,Standard AHU,248,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,270,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_148,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-12 PANEL,464P0182,Standard AHU,248,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,294,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_149,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-13 PANEL,464P0183,Standard AHU,248,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,319,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_150,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-14 PANEL,464P0184,Standard AHU,248,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,343,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_151,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-15 PANEL,464P0185,Standard AHU,248,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,368,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_152,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-16 PANEL,464P0186,Standard AHU,248,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,392,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_153,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-17 PANEL,464P0187,Standard AHU,248,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,417,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_154,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-18 PANEL,464P0188,Standard AHU,248,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,441,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_155,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-19 PANEL,464P0189,Standard AHU,248,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,466,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_156,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-20 PANEL,464P0190,Standard AHU,248,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,491,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_157,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-21 PANEL,464P0191,Standard AHU,248,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,515,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_158,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-22 PANEL,464P0192,Standard AHU,248,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,540,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_159,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-23 PANEL,464P0193,Standard AHU,248,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,564,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_160,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-24 PANEL,464P0194,Standard AHU,248,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,589,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_161,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-25 PANEL,464P0195,Standard AHU,248,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,613,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_162,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-26 PANEL,464P0196,Standard AHU,248,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,638,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_163,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-27 PANEL,464P0197,Standard AHU,248,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,662,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_164,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-28 PANEL,464P0198,Standard AHU,248,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,687,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_165,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-29 PANEL,464P0199,Standard AHU,248,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,712,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_166,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-30 PANEL,464P0200,Standard AHU,248,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,736,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_167,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-31 PANEL,464P0201,Standard AHU,248,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,761,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_168,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-32 PANEL,464P0202,Standard AHU,248,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,785,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_169,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-33 PANEL,464P0203,Standard AHU,248,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,810,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_170,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-34 PANEL,464P0204,Standard AHU,248,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,834,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_171,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-35 PANEL,464P0205,Standard AHU,248,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,859,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_172,B_Grimm_Panel,panel,B.Grimm Panel,39GBN2.5-36 PANEL,464P0206,Standard AHU,248,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,883,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_173,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-04 PANEL,464P0207,Standard AHU,298,398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,117,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_174,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-4.5 PANEL,464P0208,Standard AHU,298,448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,132,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_175,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-05 PANEL,464P0209,Standard AHU,298,498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,147,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_176,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-5.5 PANEL,464P0210,Standard AHU,298,548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,162,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_177,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-06 PANEL,464P0211,Standard AHU,298,598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,176,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_178,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-6.5 PANEL,464P0212,Standard AHU,298,648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,191,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_179,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-07 PANEL,464P0213,Standard AHU,298,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,206,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_180,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-7.5 PANEL,464P0214,Standard AHU,298,748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,221,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_181,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-08 PANEL,464P0215,Standard AHU,298,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,235,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_182,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-8.5 PANEL,464P0216,Standard AHU,298,848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,250,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_183,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-09 PANEL,464P0217,Standard AHU,298,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,265,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_184,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-9.5 PANEL,464P0218,Standard AHU,298,948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,280,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_185,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-10 PANEL,464P0219,Standard AHU,298,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,294,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_186,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-10.5 PANEL,464P0220,Standard AHU,298,1048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,309,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_187,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-11 PANEL,464P0221,Standard AHU,298,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,324,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_188,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-11.5 PANEL,464P0222,Standard AHU,298,1148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,339,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_189,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-12 PANEL,464P0223,Standard AHU,298,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,353,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_190,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-12.5 PANEL,464P0224,Standard AHU,298,1248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,368,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_191,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-13 PANEL,464P0225,Standard AHU,298,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,383,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_192,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-13.5 PANEL,464P0226,Standard AHU,298,1348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,398,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_193,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-14 PANEL,464P0227,Standard AHU,298,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,412,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_194,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-14.5 PANEL,464P0228,Standard AHU,298,1448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,427,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_195,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-15 PANEL,464P0229,Standard AHU,298,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,442,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_196,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-15.5 PANEL,464P0230,Standard AHU,298,1548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,457,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_197,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-16 PANEL,464P0231,Standard AHU,298,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,471,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_198,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-16.5 PANEL,464P0232,Standard AHU,298,1648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,486,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_199,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-17 PANEL,464P0233,Standard AHU,298,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,501,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_200,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-17.5 PANEL,464P0234,Standard AHU,298,1748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,516,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_201,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-18 PANEL,464P0235,Standard AHU,298,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,530,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_202,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-18.5 PANEL,464P0236,Standard AHU,298,1848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,545,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_203,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-19 PANEL,464P0237,Standard AHU,298,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,560,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_204,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-19.5 PANEL,464P0238,Standard AHU,298,1948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,575,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_205,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-20 PANEL,464P0239,Standard AHU,298,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,589,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_206,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-20.5 PANEL,464P0240,Standard AHU,298,2048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,604,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_207,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-21 PANEL,464P0241,Standard AHU,298,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,619,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_208,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-21.5 PANEL,464P0242,Standard AHU,298,2148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,634,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_209,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-22 PANEL,464P0243,Standard AHU,298,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,648,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_210,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-22.5 PANEL,464P0244,Standard AHU,298,2248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,663,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_211,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-23 PANEL,464P0245,Standard AHU,298,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,678,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_212,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-23.5 PANEL,464P0246,Standard AHU,298,2348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,693,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_213,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-24 PANEL,464P0247,Standard AHU,298,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,707,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_214,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-24.5 PANEL,464P0248,Standard AHU,298,2448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,722,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_215,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-25 PANEL,464P0249,Standard AHU,298,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,737,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_216,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-25.5 PANEL,464P0250,Standard AHU,298,2548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,752,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_217,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-26 PANEL,464P0251,Standard AHU,298,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,766,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_218,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-27 PANEL,464P0252,Standard AHU,298,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,796,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_219,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-28 PANEL,464P0253,Standard AHU,298,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,825,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_220,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-29 PANEL,464P0254,Standard AHU,298,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,855,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_221,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-30 PANEL,464P0255,Standard AHU,298,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,884,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_222,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-31 PANEL,464P0256,Standard AHU,298,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,914,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_223,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-32 PANEL,464P0257,Standard AHU,298,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,943,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_224,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-33 PANEL,464P0258,Standard AHU,298,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,973,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_225,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-34 PANEL,464P0259,Standard AHU,298,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1002,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_226,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-35 PANEL,464P0260,Standard AHU,298,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1032,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_227,B_Grimm_Panel,panel,B.Grimm Panel,39GBN03-36 PANEL,464P0261,Standard AHU,298,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1061,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_228,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-04 PANEL,464P0262,Standard AHU,348,398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,137,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_229,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-05 PANEL,464P0263,Standard AHU,348,498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,172,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_230,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-06 PANEL,464P0264,Standard AHU,348,598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,206,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_231,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-07 PANEL,464P0265,Standard AHU,348,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,240,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_232,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-08 PANEL,464P0266,Standard AHU,348,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,275,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_233,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-09 PANEL,464P0267,Standard AHU,348,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,309,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_234,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-10 PANEL,464P0268,Standard AHU,348,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,344,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_235,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-11 PANEL,464P0269,Standard AHU,348,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,378,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_236,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-12 PANEL,464P0270,Standard AHU,348,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,413,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_237,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-13 PANEL,464P0271,Standard AHU,348,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,447,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_238,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-14 PANEL,464P0272,Standard AHU,348,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,482,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_239,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-15 PANEL,464P0273,Standard AHU,348,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,516,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_240,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-16 PANEL,464P0274,Standard AHU,348,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,551,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_241,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-17 PANEL,464P0275,Standard AHU,348,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,585,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_242,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-18 PANEL,464P0276,Standard AHU,348,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,619,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_243,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-19 PANEL,464P0277,Standard AHU,348,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,654,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_244,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-20 PANEL,464P0278,Standard AHU,348,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,688,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_245,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-21 PANEL,464P0279,Standard AHU,348,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,723,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_246,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-22 PANEL,464P0280,Standard AHU,348,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,757,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_247,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-23 PANEL,464P0281,Standard AHU,348,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,792,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_248,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-24 PANEL,464P0282,Standard AHU,348,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,826,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_249,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-25 PANEL,464P0283,Standard AHU,348,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,861,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_250,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-26 PANEL,464P0284,Standard AHU,348,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,895,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_251,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-27 PANEL,464P0285,Standard AHU,348,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,930,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_252,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-28 PANEL,464P0286,Standard AHU,348,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,964,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_253,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-29 PANEL,464P0287,Standard AHU,348,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,998,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_254,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-30 PANEL,464P0288,Standard AHU,348,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1033,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_255,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-31 PANEL,464P0289,Standard AHU,348,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1067,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_256,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-32 PANEL,464P0290,Standard AHU,348,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1102,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_257,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-33 PANEL,464P0291,Standard AHU,348,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1136,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_258,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-34 PANEL,464P0292,Standard AHU,348,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1171,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_259,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-35 PANEL,464P0293,Standard AHU,348,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1205,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_260,B_Grimm_Panel,panel,B.Grimm Panel,39GBN3.5-36 PANEL,464P0294,Standard AHU,348,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1240,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_261,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-04 PANEL,464P0295,Standard AHU,398,398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,157,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_262,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-4.5 PANEL,464P0296,Standard AHU,398,448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,177,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_263,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-05 PANEL,464P0297,Standard AHU,398,498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,196,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_264,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-5.5 PANEL,464P0298,Standard AHU,398,548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,216,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_265,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-06 PANEL,464P0299,Standard AHU,398,598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,236,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_266,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-6.5 PANEL,464P0300,Standard AHU,398,648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,255,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_267,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-07 PANEL,464P0301,Standard AHU,398,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,275,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_268,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-7.5 PANEL,464P0302,Standard AHU,398,748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,295,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_269,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-08 PANEL,464P0303,Standard AHU,398,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,314,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_270,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-8.5 PANEL,464P0304,Standard AHU,398,848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,334,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_271,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-09 PANEL,464P0305,Standard AHU,398,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,354,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_272,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-9.5 PANEL,464P0306,Standard AHU,398,948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,374,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_273,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-10 PANEL,464P0307,Standard AHU,398,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,393,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_274,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-10.5 PANEL,464P0308,Standard AHU,398,1048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,413,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_275,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-11 PANEL,464P0309,Standard AHU,398,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,433,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_276,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-11.5 PANEL,464P0310,Standard AHU,398,1148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,452,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_277,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-12 PANEL,464P0311,Standard AHU,398,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,472,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_278,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-12.5 PANEL,464P0312,Standard AHU,398,1248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,492,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_279,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-13 PANEL,464P0313,Standard AHU,398,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,511,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_280,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-13.5 PANEL,464P0314,Standard AHU,398,1348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,531,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_281,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-14 PANEL,464P0315,Standard AHU,398,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,551,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_282,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-14.5 PANEL,464P0316,Standard AHU,398,1448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,571,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_283,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-15 PANEL,464P0317,Standard AHU,398,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,590,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_284,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-15.5 PANEL,464P0318,Standard AHU,398,1548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,610,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_285,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-16 PANEL,464P0319,Standard AHU,398,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,630,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_286,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-16.5 PANEL,464P0320,Standard AHU,398,1648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,649,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_287,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-17 PANEL,464P0321,Standard AHU,398,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,669,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_288,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-17.5 PANEL,464P0322,Standard AHU,398,1748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,689,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_289,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-18 PANEL,464P0323,Standard AHU,398,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,708,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_290,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-18.5 PANEL,464P0324,Standard AHU,398,1848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,728,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_291,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-19 PANEL,464P0325,Standard AHU,398,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,748,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_292,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-19.5 PANEL,464P0326,Standard AHU,398,1948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,768,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_293,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-20 PANEL,464P0327,Standard AHU,398,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,787,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_294,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-20.5 PANEL,464P0328,Standard AHU,398,2048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,807,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_295,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-21 PANEL,464P0329,Standard AHU,398,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,827,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_296,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-21.5 PANEL,464P0330,Standard AHU,398,2148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,846,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_297,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-22 PANEL,464P0331,Standard AHU,398,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,866,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_298,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-22.5 PANEL,464P0332,Standard AHU,398,2248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,886,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_299,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-23 PANEL,464P0333,Standard AHU,398,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,905,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_300,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-23.5 PANEL,464P0334,Standard AHU,398,2348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,925,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_301,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-24 PANEL,464P0335,Standard AHU,398,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,945,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_302,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-24.5 PANEL,464P0336,Standard AHU,398,2448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,965,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_303,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-25 PANEL,464P0337,Standard AHU,398,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,984,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_304,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-25.5 PANEL,464P0338,Standard AHU,398,2548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1004,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_305,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-26 PANEL,464P0339,Standard AHU,398,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1024,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_306,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-27 PANEL,464P0340,Standard AHU,398,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1063,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_307,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-28 PANEL,464P0341,Standard AHU,398,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1102,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_308,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-29 PANEL,464P0342,Standard AHU,398,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1142,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_309,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-30 PANEL,464P0343,Standard AHU,398,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1181,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_310,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-31 PANEL,464P0344,Standard AHU,398,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1221,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_311,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-32 PANEL,464P0345,Standard AHU,398,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1260,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_312,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-33 PANEL,464P0346,Standard AHU,398,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1299,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_313,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-34 PANEL,464P0347,Standard AHU,398,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1339,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_314,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-35 PANEL,464P0348,Standard AHU,398,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1378,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_315,B_Grimm_Panel,panel,B.Grimm Panel,39GBN04-36 PANEL,464P0349,Standard AHU,398,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1418,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_316,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-05 PANEL,464P0350,Standard AHU,448,498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,221,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_317,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-06 PANEL,464P0351,Standard AHU,448,598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,265,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_318,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-07 PANEL,464P0352,Standard AHU,448,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,310,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_319,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-08 PANEL,464P0353,Standard AHU,448,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,354,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_320,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-09 PANEL,464P0354,Standard AHU,448,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,398,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_321,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-10 PANEL,464P0355,Standard AHU,448,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,443,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_322,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-11 PANEL,464P0356,Standard AHU,448,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,487,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_323,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-12 PANEL,464P0357,Standard AHU,448,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,531,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_324,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-13 PANEL,464P0358,Standard AHU,448,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,576,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_325,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-14 PANEL,464P0359,Standard AHU,448,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,620,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_326,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-15 PANEL,464P0360,Standard AHU,448,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,664,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_327,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-16 PANEL,464P0361,Standard AHU,448,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,709,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_328,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-17 PANEL,464P0362,Standard AHU,448,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,753,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_329,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-18 PANEL,464P0363,Standard AHU,448,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,797,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_330,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-19 PANEL,464P0364,Standard AHU,448,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,842,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_331,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-20 PANEL,464P0365,Standard AHU,448,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,886,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_332,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-21 PANEL,464P0366,Standard AHU,448,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,931,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_333,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-22 PANEL,464P0367,Standard AHU,448,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,975,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_334,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-23 PANEL,464P0368,Standard AHU,448,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1019,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_335,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-24 PANEL,464P0369,Standard AHU,448,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1064,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_336,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-25 PANEL,464P0370,Standard AHU,448,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1108,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_337,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-26 PANEL,464P0371,Standard AHU,448,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1152,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_338,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-27 PANEL,464P0372,Standard AHU,448,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1197,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_339,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-28 PANEL,464P0373,Standard AHU,448,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1241,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_340,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-29 PANEL,464P0374,Standard AHU,448,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1285,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_341,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-30 PANEL,464P0375,Standard AHU,448,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1330,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_342,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-31 PANEL,464P0376,Standard AHU,448,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1374,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_343,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-32 PANEL,464P0377,Standard AHU,448,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1418,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_344,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-33 PANEL,464P0378,Standard AHU,448,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1463,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_345,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-34 PANEL,464P0379,Standard AHU,448,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1507,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_346,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-35 PANEL,464P0380,Standard AHU,448,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1551,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_347,B_Grimm_Panel,panel,B.Grimm Panel,39GBN4.5-36 PANEL,464P0381,Standard AHU,448,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1596,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_348,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-05 PANEL,464P0382,Standard AHU,498,498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,246,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_349,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-5.5 PANEL,464P0383,Standard AHU,498,548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,270,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_350,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-06 PANEL,464P0384,Standard AHU,498,598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,295,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_351,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-6.5 PANEL,464P0385,Standard AHU,498,648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,319,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_352,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-07 PANEL,464P0386,Standard AHU,498,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,344,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_353,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-7.5 PANEL,464P0387,Standard AHU,498,748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,369,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_354,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-08 PANEL,464P0388,Standard AHU,498,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,393,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_355,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-8.5 PANEL,464P0389,Standard AHU,498,848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,418,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_356,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-09 PANEL,464P0390,Standard AHU,498,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,443,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_357,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-9.5 PANEL,464P0391,Standard AHU,498,948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,467,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_358,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-10 PANEL,464P0392,Standard AHU,498,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,492,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_359,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-10.5 PANEL,464P0393,Standard AHU,498,1048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,517,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_360,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-11 PANEL,464P0394,Standard AHU,498,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,541,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_361,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-11.5 PANEL,464P0395,Standard AHU,498,1148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,566,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_362,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-12 PANEL,464P0396,Standard AHU,498,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,591,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_363,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-12.5 PANEL,464P0397,Standard AHU,498,1248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,615,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_364,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-13 PANEL,464P0398,Standard AHU,498,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,640,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_365,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-13.5 PANEL,464P0399,Standard AHU,498,1348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,665,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_366,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-14 PANEL,464P0400,Standard AHU,498,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,689,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_367,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-14.5 PANEL,464P0401,Standard AHU,498,1448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,714,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_368,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-15 PANEL,464P0402,Standard AHU,498,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,739,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_369,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-15.5 PANEL,464P0403,Standard AHU,498,1548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,763,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_370,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-16 PANEL,464P0404,Standard AHU,498,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,788,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_371,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-16.5 PANEL,464P0405,Standard AHU,498,1648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,812,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_372,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-17 PANEL,464P0406,Standard AHU,498,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,837,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_373,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-17.5 PANEL,464P0407,Standard AHU,498,1748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,862,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_374,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-18 PANEL,464P0408,Standard AHU,498,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,886,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_375,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-18.5 PANEL,464P0409,Standard AHU,498,1848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,911,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_376,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-19 PANEL,464P0410,Standard AHU,498,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,936,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_377,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-19.5 PANEL,464P0411,Standard AHU,498,1948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,960,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_378,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-20 PANEL,464P0412,Standard AHU,498,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,985,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_379,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-20.5 PANEL,464P0413,Standard AHU,498,2048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1010,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_380,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-21 PANEL,464P0414,Standard AHU,498,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1034,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_381,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-21.5 PANEL,464P0415,Standard AHU,498,2148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1059,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_382,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-22 PANEL,464P0416,Standard AHU,498,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1084,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_383,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-22.5 PANEL,464P0417,Standard AHU,498,2248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1108,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_384,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-23 PANEL,464P0418,Standard AHU,498,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1133,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_385,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-23.5 PANEL,464P0419,Standard AHU,498,2348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1158,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_386,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-24 PANEL,464P0420,Standard AHU,498,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1182,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_387,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-24.5 PANEL,464P0421,Standard AHU,498,2448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1207,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_388,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-25 PANEL,464P0422,Standard AHU,498,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1232,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_389,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-25.5 PANEL,464P0423,Standard AHU,498,2548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1256,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_390,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-26 PANEL,464P0424,Standard AHU,498,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1281,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_391,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-27 PANEL,464P0425,Standard AHU,498,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1330,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_392,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-28 PANEL,464P0426,Standard AHU,498,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1379,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_393,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-29 PANEL,464P0427,Standard AHU,498,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1429,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_394,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-30 PANEL,464P0428,Standard AHU,498,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1478,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_395,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-31 PANEL,464P0429,Standard AHU,498,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1527,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_396,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-32 PANEL,464P0430,Standard AHU,498,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1577,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_397,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-33 PANEL,464P0431,Standard AHU,498,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1626,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_398,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-34 PANEL,464P0432,Standard AHU,498,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1675,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_399,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-35 PANEL,464P0433,Standard AHU,498,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1725,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_400,B_Grimm_Panel,panel,B.Grimm Panel,39GBN05-36 PANEL,464P0434,Standard AHU,498,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1774,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_401,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-06 PANEL,464P0435,Standard AHU,548,598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,324,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_402,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-07 PANEL,464P0436,Standard AHU,548,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,379,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_403,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-08 PANEL,464P0437,Standard AHU,548,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,433,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_404,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-09 PANEL,464P0438,Standard AHU,548,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,487,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_405,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-10 PANEL,464P0439,Standard AHU,548,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,541,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_406,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-11 PANEL,464P0440,Standard AHU,548,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,596,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_407,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-12 PANEL,464P0441,Standard AHU,548,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,650,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_408,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-13 PANEL,464P0442,Standard AHU,548,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,704,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_409,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-14 PANEL,464P0443,Standard AHU,548,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,758,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_410,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-15 PANEL,464P0444,Standard AHU,548,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,813,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_411,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-16 PANEL,464P0445,Standard AHU,548,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,867,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_412,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-17 PANEL,464P0446,Standard AHU,548,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,921,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_413,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-18 PANEL,464P0447,Standard AHU,548,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,975,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_414,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-19 PANEL,464P0448,Standard AHU,548,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1030,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_415,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-20 PANEL,464P0449,Standard AHU,548,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1084,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_416,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-21 PANEL,464P0450,Standard AHU,548,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1138,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_417,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-22 PANEL,464P0451,Standard AHU,548,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1192,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_418,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-23 PANEL,464P0452,Standard AHU,548,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1247,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_419,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-24 PANEL,464P0453,Standard AHU,548,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1301,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_420,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-25 PANEL,464P0454,Standard AHU,548,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1355,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_421,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-26 PANEL,464P0455,Standard AHU,548,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1409,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_422,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-27 PANEL,464P0456,Standard AHU,548,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1464,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_423,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-28 PANEL,464P0457,Standard AHU,548,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1518,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_424,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-29 PANEL,464P0458,Standard AHU,548,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1572,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_425,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-30 PANEL,464P0459,Standard AHU,548,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1626,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_426,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-31 PANEL,464P0460,Standard AHU,548,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1681,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_427,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-32 PANEL,464P0461,Standard AHU,548,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1735,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_428,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-33 PANEL,464P0462,Standard AHU,548,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1789,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_429,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-34 PANEL,464P0463,Standard AHU,548,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1843,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_430,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-35 PANEL,464P0464,Standard AHU,548,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1898,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_431,B_Grimm_Panel,panel,B.Grimm Panel,39GBN5.5-36 PANEL,464P0465,Standard AHU,548,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1952,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_432,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-06 PANEL,464P0466,Standard AHU,598,598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,354,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_433,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-6.5 PANEL,464P0467,Standard AHU,598,648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,384,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_434,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-07 PANEL,464P0468,Standard AHU,598,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,413,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_435,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-7.5 PANEL,464P0469,Standard AHU,598,748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,443,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_436,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-08 PANEL,464P0470,Standard AHU,598,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,472,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_437,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-8.5 PANEL,464P0471,Standard AHU,598,848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,502,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_438,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-09 PANEL,464P0472,Standard AHU,598,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,532,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_439,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-9.5 PANEL,464P0473,Standard AHU,598,948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,561,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_440,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-10 PANEL,464P0474,Standard AHU,598,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,591,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_441,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-10.5 PANEL,464P0475,Standard AHU,598,1048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,620,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_442,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-11 PANEL,464P0476,Standard AHU,598,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,650,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_443,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-11.5 PANEL,464P0477,Standard AHU,598,1148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,680,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_444,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-12 PANEL,464P0478,Standard AHU,598,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,709,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_445,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-12.5 PANEL,464P0479,Standard AHU,598,1248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,739,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_446,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-13 PANEL,464P0480,Standard AHU,598,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,768,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_447,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-13.5 PANEL,464P0481,Standard AHU,598,1348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,798,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_448,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-14 PANEL,464P0482,Standard AHU,598,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,828,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_449,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-14.5 PANEL,464P0483,Standard AHU,598,1448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,857,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_450,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-15 PANEL,464P0484,Standard AHU,598,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,887,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_451,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-15.5 PANEL,464P0485,Standard AHU,598,1548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,916,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_452,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-16 PANEL,464P0486,Standard AHU,598,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,946,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_453,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-16.5 PANEL,464P0487,Standard AHU,598,1648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,976,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_454,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-17 PANEL,464P0488,Standard AHU,598,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1005,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_455,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-17.5 PANEL,464P0489,Standard AHU,598,1748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1035,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_456,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-18 PANEL,464P0490,Standard AHU,598,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1064,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_457,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-18.5 PANEL,464P0491,Standard AHU,598,1848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1094,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_458,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-19 PANEL,464P0492,Standard AHU,598,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1124,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_459,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-19.5 PANEL,464P0493,Standard AHU,598,1948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1153,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_460,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-20 PANEL,464P0494,Standard AHU,598,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1183,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_461,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-20.5 PANEL,464P0495,Standard AHU,598,2048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1212,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_462,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-21 PANEL,464P0496,Standard AHU,598,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1242,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_463,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-21.5 PANEL,464P0497,Standard AHU,598,2148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1272,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_464,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-22 PANEL,464P0498,Standard AHU,598,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1301,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_465,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-22.5 PANEL,464P0499,Standard AHU,598,2248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1331,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_466,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-23 PANEL,464P0500,Standard AHU,598,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1360,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_467,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-23.5 PANEL,464P0501,Standard AHU,598,2348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1390,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_468,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-24 PANEL,464P0502,Standard AHU,598,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1420,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_469,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-24.5 PANEL,464P0503,Standard AHU,598,2448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1449,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_470,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-25 PANEL,464P0504,Standard AHU,598,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1479,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_471,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-25.5 PANEL,464P0505,Standard AHU,598,2548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1508,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_472,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-26 PANEL,464P0506,Standard AHU,598,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1538,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_473,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-27 PANEL,464P0507,Standard AHU,598,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1597,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_474,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-28 PANEL,464P0508,Standard AHU,598,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1656,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_475,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-29 PANEL,464P0509,Standard AHU,598,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1716,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_476,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-30 PANEL,464P0510,Standard AHU,598,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1775,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_477,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-31 PANEL,464P0511,Standard AHU,598,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1242,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_478,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-32 PANEL,464P0512,Standard AHU,598,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1893,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_479,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-33 PANEL,464P0513,Standard AHU,598,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1952,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_480,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-34 PANEL,464P0514,Standard AHU,598,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2012,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_481,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-35 PANEL,464P0515,Standard AHU,598,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2071,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_482,B_Grimm_Panel,panel,B.Grimm Panel,39GBN06-36 PANEL,464P0516,Standard AHU,598,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2130,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_483,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-07 PANEL,464P0517,Standard AHU,648,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,448,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_484,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-08 PANEL,464P0518,Standard AHU,648,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,512,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_485,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-09 PANEL,464P0519,Standard AHU,648,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,576,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_486,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-10 PANEL,464P0520,Standard AHU,648,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,640,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_487,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-11 PANEL,464P0521,Standard AHU,648,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,704,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_488,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-12 PANEL,464P0522,Standard AHU,648,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,769,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_489,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-13 PANEL,464P0523,Standard AHU,648,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,833,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_490,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-14 PANEL,464P0524,Standard AHU,648,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,897,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_491,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-15 PANEL,464P0525,Standard AHU,648,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,961,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_492,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-16 PANEL,464P0526,Standard AHU,648,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1025,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_493,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-17 PANEL,464P0527,Standard AHU,648,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1089,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_494,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-18 PANEL,464P0528,Standard AHU,648,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1153,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_495,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-19 PANEL,464P0529,Standard AHU,648,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1218,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_496,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-20 PANEL,464P0530,Standard AHU,648,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1282,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_497,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-21 PANEL,464P0531,Standard AHU,648,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1346,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_498,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-22 PANEL,464P0532,Standard AHU,648,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1410,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_499,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-23 PANEL,464P0533,Standard AHU,648,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1474,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_500,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-24 PANEL,464P0534,Standard AHU,648,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1538,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_501,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-25 PANEL,464P0535,Standard AHU,648,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1603,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_502,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-26 PANEL,464P0536,Standard AHU,648,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1667,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_503,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-27 PANEL,464P0537,Standard AHU,648,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1731,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_504,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-28 PANEL,464P0538,Standard AHU,648,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1795,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_505,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-29 PANEL,464P0539,Standard AHU,648,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1859,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_506,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-30 PANEL,464P0540,Standard AHU,648,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1923,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_507,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-31 PANEL,464P0541,Standard AHU,648,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1987,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_508,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-32 PANEL,464P0542,Standard AHU,648,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2052,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_509,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-33 PANEL,464P0543,Standard AHU,648,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2116,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_510,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-34 PANEL,464P0544,Standard AHU,648,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2180,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_511,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-35 PANEL,464P0545,Standard AHU,648,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2244,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_512,B_Grimm_Panel,panel,B.Grimm Panel,39GBN6.5-36 PANEL,464P0546,Standard AHU,648,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2308,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_513,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-07 PANEL,464P0547,Standard AHU,698,698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,482,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_514,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-7.5 PANEL,464P0548,Standard AHU,698,748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,517,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_515,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-08 PANEL,464P0549,Standard AHU,698,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,551,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_516,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-8.5 PANEL,464P0550,Standard AHU,698,848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,586,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_517,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-09 PANEL,464P0551,Standard AHU,698,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,621,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_518,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-9.5 PANEL,464P0552,Standard AHU,698,948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,655,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_519,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-10 PANEL,464P0553,Standard AHU,698,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,690,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_520,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-10.5 PANEL,464P0554,Standard AHU,698,1048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,724,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_521,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-11 PANEL,464P0555,Standard AHU,698,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,759,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_522,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-11.5 PANEL,464P0556,Standard AHU,698,1148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,793,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_523,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-12 PANEL,464P0557,Standard AHU,698,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,828,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_524,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-12.5 PANEL,464P0558,Standard AHU,698,1248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,862,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_525,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-13 PANEL,464P0559,Standard AHU,698,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,897,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_526,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-13.5 PANEL,464P0560,Standard AHU,698,1348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,931,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_527,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-14 PANEL,464P0561,Standard AHU,698,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,966,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_528,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-14.5 PANEL,464P0562,Standard AHU,698,1448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1001,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_529,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-15 PANEL,464P0563,Standard AHU,698,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1035,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_530,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-15.5 PANEL,464P0564,Standard AHU,698,1548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1070,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_531,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-16 PANEL,464P0565,Standard AHU,698,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1104,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_532,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-16.5 PANEL,464P0566,Standard AHU,698,1648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1139,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_533,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-17 PANEL,464P0567,Standard AHU,698,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1173,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_534,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-17.5 PANEL,464P0568,Standard AHU,698,1748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1208,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_535,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-18 PANEL,464P0569,Standard AHU,698,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1242,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_536,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-18.5 PANEL,464P0570,Standard AHU,698,1848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1277,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_537,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-19 PANEL,464P0571,Standard AHU,698,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1312,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_538,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-19.5 PANEL,464P0572,Standard AHU,698,1948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1346,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_539,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-20 PANEL,464P0573,Standard AHU,698,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1381,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_540,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-20.5 PANEL,464P0574,Standard AHU,698,2048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1415,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_541,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-21 PANEL,464P0575,Standard AHU,698,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1450,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_542,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-21.5 PANEL,464P0576,Standard AHU,698,2148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1484,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_543,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-22 PANEL,464P0577,Standard AHU,698,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1519,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_544,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-22.5 PANEL,464P0578,Standard AHU,698,2248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1553,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_545,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-23 PANEL,464P0579,Standard AHU,698,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1588,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_546,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-23.5 PANEL,464P0580,Standard AHU,698,2348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1623,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_547,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-24 PANEL,464P0581,Standard AHU,698,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1657,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_548,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-24.5 PANEL,464P0582,Standard AHU,698,2448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1692,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_549,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-25 PANEL,464P0583,Standard AHU,698,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1726,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_550,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-25.5 PANEL,464P0584,Standard AHU,698,2548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1761,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_551,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-26 PANEL,464P0585,Standard AHU,698,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1795,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_552,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-27 PANEL,464P0586,Standard AHU,698,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1864,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_553,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-28 PANEL,464P0587,Standard AHU,698,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1933,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_554,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-29 PANEL,464P0588,Standard AHU,698,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2003,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_555,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-30 PANEL,464P0589,Standard AHU,698,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2072,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_556,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-31 PANEL,464P0590,Standard AHU,698,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2141,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_557,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-32 PANEL,464P0591,Standard AHU,698,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2210,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_558,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-33 PANEL,464P0592,Standard AHU,698,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2279,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_559,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-34 PANEL,464P0593,Standard AHU,698,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2348,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_560,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-35 PANEL,464P0594,Standard AHU,698,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2417,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_561,B_Grimm_Panel,panel,B.Grimm Panel,39GBN07-36 PANEL,464P0595,Standard AHU,698,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2486,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_562,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-08 PANEL,464P0596,Standard AHU,748,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,591,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_563,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-09 PANEL,464P0597,Standard AHU,748,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,665,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_564,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-10 PANEL,464P0598,Standard AHU,748,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,739,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_565,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-11 PANEL,464P0599,Standard AHU,748,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,813,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_566,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-12 PANEL,464P0600,Standard AHU,748,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,887,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_567,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-13 PANEL,464P0601,Standard AHU,748,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,961,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_568,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-14 PANEL,464P0602,Standard AHU,748,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1035,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_569,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-15 PANEL,464P0603,Standard AHU,748,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1109,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_570,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-16 PANEL,464P0604,Standard AHU,748,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1183,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_571,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-17 PANEL,464P0605,Standard AHU,748,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1257,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_572,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-18 PANEL,464P0606,Standard AHU,748,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1331,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_573,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-19 PANEL,464P0607,Standard AHU,748,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1406,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_574,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-20 PANEL,464P0608,Standard AHU,748,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1480,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_575,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-21 PANEL,464P0609,Standard AHU,748,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1554,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_576,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-22 PANEL,464P0610,Standard AHU,748,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1628,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_577,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-23 PANEL,464P0611,Standard AHU,748,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1702,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_578,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-24 PANEL,464P0612,Standard AHU,748,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1776,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_579,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-25 PANEL,464P0613,Standard AHU,748,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1850,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_580,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-26 PANEL,464P0614,Standard AHU,748,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1924,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_581,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-27 PANEL,464P0615,Standard AHU,748,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1998,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_582,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-28 PANEL,464P0616,Standard AHU,748,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2072,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_583,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-29 PANEL,464P0617,Standard AHU,748,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2146,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_584,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-30 PANEL,464P0618,Standard AHU,748,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2220,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_585,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-31 PANEL,464P0619,Standard AHU,748,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2294,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_586,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-32 PANEL,464P0620,Standard AHU,748,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2368,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_587,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-33 PANEL,464P0621,Standard AHU,748,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2442,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_588,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-34 PANEL,464P0622,Standard AHU,748,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2516,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_589,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-35 PANEL,464P0623,Standard AHU,748,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2590,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_590,B_Grimm_Panel,panel,B.Grimm Panel,39GBN7.5-36 PANEL,464P0624,Standard AHU,748,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2664,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_591,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-08 PANEL,464P0625,Standard AHU,798,798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,630,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_592,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-8.5 PANEL,464P0626,Standard AHU,798,848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,670,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_593,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-09 PANEL,464P0627,Standard AHU,798,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,709,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_594,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-9.5 PANEL,464P0628,Standard AHU,798,948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,749,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_595,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-10 PANEL,464P0629,Standard AHU,798,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,788,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_596,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-10.5 PANEL,464P0630,Standard AHU,798,1048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,828,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_597,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-11 PANEL,464P0631,Standard AHU,798,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,867,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_598,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-11.5 PANEL,464P0632,Standard AHU,798,1148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,907,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_599,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-12 PANEL,464P0633,Standard AHU,798,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,946,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_600,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-12.5 PANEL,464P0634,Standard AHU,798,1248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,986,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_601,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-13 PANEL,464P0635,Standard AHU,798,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1025,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_602,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-13.5 PANEL,464P0636,Standard AHU,798,1348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1065,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_603,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-14 PANEL,464P0637,Standard AHU,798,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1104,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_604,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-14.5 PANEL,464P0638,Standard AHU,798,1448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1144,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_605,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-15 PANEL,464P0639,Standard AHU,798,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1183,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_606,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-15.5 PANEL,464P0640,Standard AHU,798,1548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1223,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_607,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-16 PANEL,464P0641,Standard AHU,798,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1262,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_608,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-16.5 PANEL,464P0642,Standard AHU,798,1648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1302,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_609,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-17 PANEL,464P0643,Standard AHU,798,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1341,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_610,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-17.5 PANEL,464P0644,Standard AHU,798,1748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1381,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_611,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-18 PANEL,464P0645,Standard AHU,798,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1420,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_612,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-18.5 PANEL,464P0646,Standard AHU,798,1848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1460,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_613,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-19 PANEL,464P0647,Standard AHU,798,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1499,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_614,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-19.5 PANEL,464P0648,Standard AHU,798,1948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1539,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_615,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-20 PANEL,464P0649,Standard AHU,798,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1578,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_616,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-20.5 PANEL,464P0650,Standard AHU,798,2048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1618,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_617,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-21 PANEL,464P0651,Standard AHU,798,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1657,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_618,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-21.5 PANEL,464P0652,Standard AHU,798,2148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1697,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_619,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-22 PANEL,464P0653,Standard AHU,798,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1736,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_620,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-22.5 PANEL,464P0654,Standard AHU,798,2248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1776,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_621,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-23 PANEL,464P0655,Standard AHU,798,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1815,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_622,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-23.5 PANEL,464P0656,Standard AHU,798,2348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1855,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_623,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-24 PANEL,464P0657,Standard AHU,798,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1894,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_624,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-24.5 PANEL,464P0658,Standard AHU,798,2448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1934,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_625,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-25 PANEL,464P0659,Standard AHU,798,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1973,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_626,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-25.5 PANEL,464P0660,Standard AHU,798,2548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2013,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_627,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-26 PANEL,464P0661,Standard AHU,798,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2052,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_628,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-27 PANEL,464P0662,Standard AHU,798,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2131,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_629,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-28 PANEL,464P0663,Standard AHU,798,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2210,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_630,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-29 PANEL,464P0664,Standard AHU,798,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2289,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_631,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-30 PANEL,464P0665,Standard AHU,798,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2368,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_632,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-31 PANEL,464P0666,Standard AHU,798,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2447,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_633,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-32 PANEL,464P0667,Standard AHU,798,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2526,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_634,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-33 PANEL,464P0668,Standard AHU,798,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2605,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_635,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-34 PANEL,464P0669,Standard AHU,798,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2684,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_636,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-35 PANEL,464P0670,Standard AHU,798,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2763,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_637,B_Grimm_Panel,panel,B.Grimm Panel,39GBN08-36 PANEL,464P0671,Standard AHU,798,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2842,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_638,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-09 PANEL,464P0672,Standard AHU,848,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,754,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_639,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-9.5 PANEL,464P0673,Standard AHU,848,948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,796,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_640,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-10 PANEL,464P0674,Standard AHU,848,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,838,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_641,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-10.5 PANEL,464P0675,Standard AHU,848,1048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,880,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_642,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-11 PANEL,464P0676,Standard AHU,848,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,922,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_643,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-11.5 PANEL,464P0677,Standard AHU,848,1148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,964,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_644,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-12 PANEL,464P0678,Standard AHU,848,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1006,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_645,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-12.5 PANEL,464P0679,Standard AHU,848,1248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1048,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_646,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-13 PANEL,464P0680,Standard AHU,848,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1090,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_647,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-13.5 PANEL,464P0681,Standard AHU,848,1348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1132,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_648,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-14 PANEL,464P0682,Standard AHU,848,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1174,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_649,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-14.5 PANEL,464P0683,Standard AHU,848,1448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1216,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_650,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-15 PANEL,464P0684,Standard AHU,848,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1258,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_651,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-15.5 PANEL,464P0685,Standard AHU,848,1548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1300,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_652,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-16 PANEL,464P0686,Standard AHU,848,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1342,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_653,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-16.5 PANEL,464P0687,Standard AHU,848,1648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1384,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_654,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-17 PANEL,464P0688,Standard AHU,848,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1426,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_655,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-17.5 PANEL,464P0689,Standard AHU,848,1748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1467,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_656,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-18 PANEL,464P0690,Standard AHU,848,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1509,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_657,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-18.5 PANEL,464P0691,Standard AHU,848,1848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1551,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_658,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-19 PANEL,464P0692,Standard AHU,848,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1593,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_659,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-19.5 PANEL,464P0693,Standard AHU,848,1948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1635,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_660,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-20 PANEL,464P0694,Standard AHU,848,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1677,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_661,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-20.5 PANEL,464P0695,Standard AHU,848,2048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1719,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_662,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-21 PANEL,464P0696,Standard AHU,848,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1761,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_663,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-21.5 PANEL,464P0697,Standard AHU,848,2148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1803,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_664,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-22 PANEL,464P0698,Standard AHU,848,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1845,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_665,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-22.5 PANEL,464P0699,Standard AHU,848,2248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1887,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_666,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-23 PANEL,464P0700,Standard AHU,848,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1929,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_667,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-23.5 PANEL,464P0701,Standard AHU,848,2348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1971,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_668,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-24 PANEL,464P0702,Standard AHU,848,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2013,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_669,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-24.5 PANEL,464P0703,Standard AHU,848,2448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2055,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_670,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-25 PANEL,464P0704,Standard AHU,848,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2097,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_671,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-25.5 PANEL,464P0705,Standard AHU,848,2548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2139,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_672,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-26 PANEL,464P0706,Standard AHU,848,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2181,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_673,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-27 PANEL,464P0707,Standard AHU,848,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2265,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_674,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-28 PANEL,464P0708,Standard AHU,848,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2349,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_675,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-29 PANEL,464P0709,Standard AHU,848,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2433,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_676,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-30 PANEL,464P0710,Standard AHU,848,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2517,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_677,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-31 PANEL,464P0711,Standard AHU,848,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2601,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_678,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-32 PANEL,464P0712,Standard AHU,848,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2685,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_679,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-33 PANEL,464P0713,Standard AHU,848,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2769,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_680,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-34 PANEL,464P0714,Standard AHU,848,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2853,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_681,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-35 PANEL,464P0715,Standard AHU,848,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2937,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_682,B_Grimm_Panel,panel,B.Grimm Panel,39GBN8.5-36 PANEL,464P0716,Standard AHU,848,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3021,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_683,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-09 PANEL,464P0717,Standard AHU,898,898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,798,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_684,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-9.5 PANEL,464P0718,Standard AHU,898,948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,843,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_685,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-10 PANEL,464P0719,Standard AHU,898,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,887,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_686,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-10.5 PANEL,464P0720,Standard AHU,898,1048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,932,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_687,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-11 PANEL,464P0721,Standard AHU,898,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,976,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_688,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-11.5 PANEL,464P0722,Standard AHU,898,1148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1021,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_689,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-12 PANEL,464P0723,Standard AHU,898,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1065,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_690,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-12.5 PANEL,464P0724,Standard AHU,898,1248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1109,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_691,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-13 PANEL,464P0725,Standard AHU,898,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1154,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_692,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-13.5 PANEL,464P0726,Standard AHU,898,1348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1198,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_693,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-14 PANEL,464P0727,Standard AHU,898,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1243,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_694,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-14.5 PANEL,464P0728,Standard AHU,898,1448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1287,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_695,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-15 PANEL,464P0729,Standard AHU,898,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1332,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_696,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-15.5 PANEL,464P0730,Standard AHU,898,1548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1376,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_697,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-16 PANEL,464P0731,Standard AHU,898,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1421,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_698,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-16.5 PANEL,464P0732,Standard AHU,898,1648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1465,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_699,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-17 PANEL,464P0733,Standard AHU,898,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1510,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_700,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-17.5 PANEL,464P0734,Standard AHU,898,1748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1554,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_701,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-18 PANEL,464P0735,Standard AHU,898,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1598,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_702,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-18.5 PANEL,464P0736,Standard AHU,898,1848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1643,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_703,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-19 PANEL,464P0737,Standard AHU,898,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1687,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_704,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-19.5 PANEL,464P0738,Standard AHU,898,1948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1732,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_705,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-20 PANEL,464P0739,Standard AHU,898,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1776,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_706,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-20.5 PANEL,464P0740,Standard AHU,898,2048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1821,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_707,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-21 PANEL,464P0741,Standard AHU,898,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1865,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_708,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-21.5 PANEL,464P0742,Standard AHU,898,2148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1910,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_709,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-22 PANEL,464P0743,Standard AHU,898,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1954,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_710,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-22.5 PANEL,464P0744,Standard AHU,898,2248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1999,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_711,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-23 PANEL,464P0745,Standard AHU,898,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2043,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_712,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-23.5 PANEL,464P0746,Standard AHU,898,2348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2087,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_713,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-24 PANEL,464P0747,Standard AHU,898,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2132,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_714,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-24.5 PANEL,464P0748,Standard AHU,898,2448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2176,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_715,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-25 PANEL,464P0749,Standard AHU,898,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2221,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_716,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-25.5 PANEL,464P0750,Standard AHU,898,2548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2265,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_717,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-26 PANEL,464P0751,Standard AHU,898,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2310,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_718,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-27 PANEL,464P0752,Standard AHU,898,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2399,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_719,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-28 PANEL,464P0753,Standard AHU,898,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2487,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_720,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-29 PANEL,464P0754,Standard AHU,898,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2576,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_721,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-30 PANEL,464P0755,Standard AHU,898,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2665,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_722,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-31 PANEL,464P0756,Standard AHU,898,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2754,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_723,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-32 PANEL,464P0757,Standard AHU,898,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2843,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_724,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-33 PANEL,464P0758,Standard AHU,898,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2932,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_725,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-34 PANEL,464P0759,Standard AHU,898,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3021,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_726,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-35 PANEL,464P0760,Standard AHU,898,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3110,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_727,B_Grimm_Panel,panel,B.Grimm Panel,39GBN09-36 PANEL,464P0761,Standard AHU,898,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3199,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_728,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-10 PANEL,464P0762,Standard AHU,948,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,937,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_729,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-11 PANEL,464P0763,Standard AHU,948,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1030,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_730,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-12 PANEL,464P0764,Standard AHU,948,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1124,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_731,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-13 PANEL,464P0765,Standard AHU,948,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1218,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_732,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-14 PANEL,464P0766,Standard AHU,948,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1312,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_733,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-15 PANEL,464P0767,Standard AHU,948,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1406,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_734,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-16 PANEL,464P0768,Standard AHU,948,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1500,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_735,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-17 PANEL,464P0769,Standard AHU,948,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1594,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_736,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-18 PANEL,464P0770,Standard AHU,948,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1687,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_737,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-19 PANEL,464P0771,Standard AHU,948,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1781,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_738,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-20 PANEL,464P0772,Standard AHU,948,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1875,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_739,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-21 PANEL,464P0773,Standard AHU,948,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1969,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_740,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-22 PANEL,464P0774,Standard AHU,948,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2063,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_741,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-23 PANEL,464P0775,Standard AHU,948,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2157,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_742,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-24 PANEL,464P0776,Standard AHU,948,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2251,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_743,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-25 PANEL,464P0777,Standard AHU,948,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2344,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_744,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-26 PANEL,464P0778,Standard AHU,948,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2438,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_745,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-27 PANEL,464P0779,Standard AHU,948,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2532,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_746,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-28 PANEL,464P0780,Standard AHU,948,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2626,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_747,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-29 PANEL,464P0781,Standard AHU,948,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2720,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_748,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-30 PANEL,464P0782,Standard AHU,948,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2814,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_749,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-31 PANEL,464P0783,Standard AHU,948,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2908,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_750,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-32 PANEL,464P0784,Standard AHU,948,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3001,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_751,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-33 PANEL,464P0785,Standard AHU,948,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3095,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_752,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-34 PANEL,464P0786,Standard AHU,948,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3189,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_753,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-35 PANEL,464P0787,Standard AHU,948,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3283,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_754,B_Grimm_Panel,panel,B.Grimm Panel,39GBN9.5-36 PANEL,464P0788,Standard AHU,948,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3377,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_755,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-10 PANEL,464P0789,Standard AHU,998,998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,986,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_756,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-10.5 PANEL,464P0790,Standard AHU,998,1048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1035,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_757,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-11 PANEL,464P0791,Standard AHU,998,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1085,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_758,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-11.5 PANEL,464P0792,Standard AHU,998,1148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1134,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_759,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-12 PANEL,464P0793,Standard AHU,998,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1184,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_760,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-12.5 PANEL,464P0794,Standard AHU,998,1248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1233049,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_761,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-13 PANEL,464P0795,Standard AHU,998,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1282,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_762,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-13.5 PANEL,464P0796,Standard AHU,998,1348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1332,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_763,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-14 PANEL,464P0797,Standard AHU,998,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1381,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_764,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-14.5 PANEL,464P0798,Standard AHU,998,1448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1431,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_765,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-15 PANEL,464P0799,Standard AHU,998,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1480,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_766,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-15.5 PANEL,464P0800,Standard AHU,998,1548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1529,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_767,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-16 PANEL,464P0801,Standard AHU,998,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1579,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_768,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-16.5 PANEL,464P0802,Standard AHU,998,1648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1628,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_769,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-17 PANEL,464P0803,Standard AHU,998,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1678,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_770,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-17.5 PANEL,464P0804,Standard AHU,998,1748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1727,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_771,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-18 PANEL,464P0805,Standard AHU,998,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1776,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_772,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-18.5 PANEL,464P0806,Standard AHU,998,1848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1826,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_773,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-19 PANEL,464P0807,Standard AHU,998,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1875,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_774,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-19.5 PANEL,464P0808,Standard AHU,998,1948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1925,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_775,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-20 PANEL,464P0809,Standard AHU,998,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1974,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_776,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-20.5 PANEL,464P0810,Standard AHU,998,2048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2023,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_777,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-21 PANEL,464P0811,Standard AHU,998,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2073,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_778,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-21.5 PANEL,464P0812,Standard AHU,998,2148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2122,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_779,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-22 PANEL,464P0813,Standard AHU,998,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2172,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_780,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-22.5 PANEL,464P0814,Standard AHU,998,2248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2221,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_781,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-23 PANEL,464P0815,Standard AHU,998,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2270,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_782,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-23.5 PANEL,464P0816,Standard AHU,998,2348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2320,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_783,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-24 PANEL,464P0817,Standard AHU,998,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2369,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_784,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-24.5 PANEL,464P0818,Standard AHU,998,2448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2419,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_785,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-25 PANEL,464P0819,Standard AHU,998,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2468,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_786,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-25.5 PANEL,464P0820,Standard AHU,998,2548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2517,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_787,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-26 PANEL,464P0821,Standard AHU,998,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2567,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_788,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-27 PANEL,464P0822,Standard AHU,998,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2666,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_789,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-28 PANEL,464P0823,Standard AHU,998,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2764,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_790,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-29 PANEL,464P0824,Standard AHU,998,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2863,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_791,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-30 PANEL,464P0825,Standard AHU,998,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2962,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_792,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-31 PANEL,464P0826,Standard AHU,998,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3061,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_793,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-32 PANEL,464P0827,Standard AHU,998,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3160,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_794,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-33 PANEL,464P0828,Standard AHU,998,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3258,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_795,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-34 PANEL,464P0829,Standard AHU,998,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3357,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_796,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-35 PANEL,464P0830,Standard AHU,998,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3456,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_797,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10-36 PANEL,464P0831,Standard AHU,998,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3555,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_798,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-11 PANEL,464P0832,Standard AHU,1048,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1139,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_799,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-12 PANEL,464P0833,Standard AHU,1048,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1243,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_800,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-13 PANEL,464P0834,Standard AHU,1048,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1347,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_801,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-14 PANEL,464P0835,Standard AHU,1048,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1450,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_802,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-15 PANEL,464P0836,Standard AHU,1048,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1554,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_803,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-16 PANEL,464P0837,Standard AHU,1048,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1658,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_804,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-17 PANEL,464P0838,Standard AHU,1048,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1762,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_805,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-18 PANEL,464P0839,Standard AHU,1048,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1865,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_806,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-19 PANEL,464P0840,Standard AHU,1048,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1969,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_807,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-20 PANEL,464P0841,Standard AHU,1048,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2073,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_808,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-21 PANEL,464P0842,Standard AHU,1048,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2177,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_809,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-22 PANEL,464P0843,Standard AHU,1048,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2280,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_810,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-23 PANEL,464P0844,Standard AHU,1048,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2384,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_811,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-24 PANEL,464P0845,Standard AHU,1048,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2488,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_812,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-25 PANEL,464P0846,Standard AHU,1048,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2592,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_813,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-26 PANEL,464P0847,Standard AHU,1048,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2695,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_814,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-27 PANEL,464P0848,Standard AHU,1048,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2799,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_815,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-28 PANEL,464P0849,Standard AHU,1048,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2903,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_816,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-29 PANEL,464P0850,Standard AHU,1048,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3007,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_817,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-30 PANEL,464P0851,Standard AHU,1048,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3110,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_818,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-31 PANEL,464P0852,Standard AHU,1048,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3214,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_819,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-32 PANEL,464P0853,Standard AHU,1048,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3318,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_820,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-33 PANEL,464P0854,Standard AHU,1048,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3422,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_821,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-34 PANEL,464P0855,Standard AHU,1048,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3525,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_822,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-35 PANEL,464P0856,Standard AHU,1048,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3629,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_823,B_Grimm_Panel,panel,B.Grimm Panel,39GBN10.5-36 PANEL,464P0857,Standard AHU,1048,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3733,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_824,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-11 PANEL,464P0858,Standard AHU,1098,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1194,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_825,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-11.5 PANEL,464P0859,Standard AHU,1098,1148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1248,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_826,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-12 PANEL,464P0860,Standard AHU,1098,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1302,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_827,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-12.5 PANEL,464P0861,Standard AHU,1098,1248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1357,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_828,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-13 PANEL,464P0862,Standard AHU,1098,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1411,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_829,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-13.5 PANEL,464P0863,Standard AHU,1098,1348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1465,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_830,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-14 PANEL,464P0864,Standard AHU,1098,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1520,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_831,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-14.5 PANEL,464P0865,Standard AHU,1098,1448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1574,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_832,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-15 PANEL,464P0866,Standard AHU,1098,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1628,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_833,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-15.5 PANEL,464P0867,Standard AHU,1098,1548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1683,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_834,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-16 PANEL,464P0868,Standard AHU,1098,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1737,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_835,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-16.5 PANEL,464P0869,Standard AHU,1098,1648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1791,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_836,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-17 PANEL,464P0870,Standard AHU,1098,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1846,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_837,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-17.5 PANEL,464P0871,Standard AHU,1098,1748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1900,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_838,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-18 PANEL,464P0872,Standard AHU,1098,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1954,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_839,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-18.5 PANEL,464P0873,Standard AHU,1098,1848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2009,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_840,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-19 PANEL,464P0874,Standard AHU,1098,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2063,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_841,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-19.5 PANEL,464P0875,Standard AHU,1098,1948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2118,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_842,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-20 PANEL,464P0876,Standard AHU,1098,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2172,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_843,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-20.5 PANEL,464P0877,Standard AHU,1098,2048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2226,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_844,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-21 PANEL,464P0878,Standard AHU,1098,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2281,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_845,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-21.5 PANEL,464P0879,Standard AHU,1098,2148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2335,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_846,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-22 PANEL,464P0880,Standard AHU,1098,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2389,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_847,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-22.5 PANEL,464P0881,Standard AHU,1098,2248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2444,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_848,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-23 PANEL,464P0882,Standard AHU,1098,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2498,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_849,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-23.5 PANEL,464P0883,Standard AHU,1098,2348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2552,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_850,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-24 PANEL,464P0884,Standard AHU,1098,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2607,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_851,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-24.5 PANEL,464P0885,Standard AHU,1098,2448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2661,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_852,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-25 PANEL,464P0886,Standard AHU,1098,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2715,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_853,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-25.5 PANEL,464P0887,Standard AHU,1098,2548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2770,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_854,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-26 PANEL,464P0888,Standard AHU,1098,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2824,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_855,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-27 PANEL,464P0889,Standard AHU,1098,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2933,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_856,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-28 PANEL,464P0890,Standard AHU,1098,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3041,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_857,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-29 PANEL,464P0891,Standard AHU,1098,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3150,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_858,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-30 PANEL,464P0892,Standard AHU,1098,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3259,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_859,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-31 PANEL,464P0893,Standard AHU,1098,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3368,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_860,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-32 PANEL,464P0894,Standard AHU,1098,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3476,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_861,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-33 PANEL,464P0895,Standard AHU,1098,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3585,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_862,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-34 PANEL,464P0896,Standard AHU,1098,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3694,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_863,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-35 PANEL,464P0897,Standard AHU,1098,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3802,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_864,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11-36 PANEL,464P0898,Standard AHU,1098,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3911,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_865,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-12 PANEL,464P0899,Standard AHU,1148,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1362,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_866,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-13 PANEL,464P0900,Standard AHU,1148,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1475,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_867,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-14 PANEL,464P0901,Standard AHU,1148,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1589,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_868,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-15 PANEL,464P0902,Standard AHU,1148,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1703,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_869,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-16 PANEL,464P0903,Standard AHU,1148,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1816,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_870,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-17 PANEL,464P0904,Standard AHU,1148,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1930,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_871,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-18 PANEL,464P0905,Standard AHU,1148,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2043,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_872,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-19 PANEL,464P0906,Standard AHU,1148,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2157,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_873,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-20 PANEL,464P0907,Standard AHU,1148,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2271,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_874,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-21 PANEL,464P0908,Standard AHU,1148,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2384,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_875,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-22 PANEL,464P0909,Standard AHU,1148,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2498,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_876,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-23 PANEL,464P0910,Standard AHU,1148,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2612,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_877,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-24 PANEL,464P0911,Standard AHU,1148,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2725,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_878,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-25 PANEL,464P0912,Standard AHU,1148,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2839,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_879,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-26 PANEL,464P0913,Standard AHU,1148,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2953,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_880,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-27 PANEL,464P0914,Standard AHU,1148,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3066,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_881,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-28 PANEL,464P0915,Standard AHU,1148,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3180,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_882,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-29 PANEL,464P0916,Standard AHU,1148,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3294,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_883,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-30 PANEL,464P0917,Standard AHU,1148,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3407,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_884,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-31 PANEL,464P0918,Standard AHU,1148,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3521,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_885,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-32 PANEL,464P0919,Standard AHU,1148,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3635,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_886,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-33 PANEL,464P0920,Standard AHU,1148,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3748,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_887,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-34 PANEL,464P0921,Standard AHU,1148,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3862,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_888,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-35 PANEL,464P0922,Standard AHU,1148,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3976,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_889,B_Grimm_Panel,panel,B.Grimm Panel,39GBN11.5-36 PANEL,464P0923,Standard AHU,1148,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,4089,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_890,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-12 PANEL,464P0924,Standard AHU,1198,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1421,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_891,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-12.5 PANEL,464P0925,Standard AHU,1198,1248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1480,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_892,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-13 PANEL,464P0926,Standard AHU,1198,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1539,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_893,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-13.5 PANEL,464P0927,Standard AHU,1198,1348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1599,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_894,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-14 PANEL,464P0928,Standard AHU,1198,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1658,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_895,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-14.5 PANEL,464P0929,Standard AHU,1198,1448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1717,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_896,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-15 PANEL,464P0930,Standard AHU,1198,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1777,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_897,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-15.5 PANEL,464P0931,Standard AHU,1198,1548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1836,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_898,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-16 PANEL,464P0932,Standard AHU,1198,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1895,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_899,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-16.5 PANEL,464P0933,Standard AHU,1198,1648,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1955,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_900,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-17 PANEL,464P0934,Standard AHU,1198,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2014,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_901,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-17.5 PANEL,464P0935,Standard AHU,1198,1748,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2073,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_902,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-18 PANEL,464P0936,Standard AHU,1198,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2132,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_903,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-18.5 PANEL,464P0937,Standard AHU,1198,1848,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2192,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_904,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-19 PANEL,464P0938,Standard AHU,1198,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2251,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_905,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-19.5 PANEL,464P0939,Standard AHU,1198,1948,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2310,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_906,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-20 PANEL,464P0940,Standard AHU,1198,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2370,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_907,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-20.5 PANEL,464P0941,Standard AHU,1198,2048,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2429,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_908,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-21 PANEL,464P0942,Standard AHU,1198,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2488,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_909,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-21.5 PANEL,464P0943,Standard AHU,1198,2148,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2548,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_910,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-22 PANEL,464P0944,Standard AHU,1198,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2607,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_911,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-22.5 PANEL,464P0945,Standard AHU,1198,2248,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2666,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_912,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-23 PANEL,464P0946,Standard AHU,1198,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2725,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_913,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-23.5 PANEL,464P0947,Standard AHU,1198,2348,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2785,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_914,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-24 PANEL,464P0948,Standard AHU,1198,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2844,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_915,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-24.5 PANEL,464P0949,Standard AHU,1198,2448,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2903,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_916,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-25 PANEL,464P0950,Standard AHU,1198,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2963,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_917,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-25.5 PANEL,464P0951,Standard AHU,1198,2548,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3022,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_918,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-26 PANEL,464P0952,Standard AHU,1198,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3081,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_919,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-27 PANEL,464P0953,Standard AHU,1198,2698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3200,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_920,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-28 PANEL,464P0954,Standard AHU,1198,2798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3318,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_921,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-29 PANEL,464P0955,Standard AHU,1198,2898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3437,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_922,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-30 PANEL,464P0956,Standard AHU,1198,2998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3556,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_923,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-31 PANEL,464P0957,Standard AHU,1198,3098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3674,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_924,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-32 PANEL,464P0958,Standard AHU,1198,3198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3793,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_925,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-33 PANEL,464P0959,Standard AHU,1198,3298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,3911,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_926,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-34 PANEL,464P0960,Standard AHU,1198,3398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,4030,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_927,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-35 PANEL,464P0961,Standard AHU,1198,3498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,4149,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_928,B_Grimm_Panel,panel,B.Grimm Panel,39GBN12-36 PANEL,464P0962,Standard AHU,1198,3598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,4267,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_929,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-11 PANEL,464P0963,Standard AHU,498,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,541,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_930,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-12 PANEL,464P0964,Standard AHU,498,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,591,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_931,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-13 PANEL,464P0965,Standard AHU,498,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,640,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_932,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-14 PANEL,464P0966,Standard AHU,498,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,689,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_933,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-15 PANEL,464P0967,Standard AHU,498,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,739,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_934,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-16 PANEL,464P0968,Standard AHU,498,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,788,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_935,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-17 PANEL,464P0969,Standard AHU,498,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,837,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_936,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-18 PANEL,464P0970,Standard AHU,498,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,886,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_937,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-19 PANEL,464P0971,Standard AHU,498,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,936,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_938,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-20 PANEL,464P0972,Standard AHU,498,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,985,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_939,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-21 PANEL,464P0973,Standard AHU,498,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1034,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_940,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-22 PANEL,464P0974,Standard AHU,498,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1084,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_941,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-23 PANEL,464P0975,Standard AHU,498,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1133,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_942,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-24 PANEL,464P0976,Standard AHU,498,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1182,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_943,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-25 PANEL,464P0977,Standard AHU,498,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1232,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_944,B_Grimm_Panel,panel,B.Grimm Panel,39GBF05-26 PANEL,464P0978,Standard AHU,498,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1281,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_945,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-11 PANEL,464P0979,Standard AHU,598,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,650,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_946,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-12 PANEL,464P0980,Standard AHU,598,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,709,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_947,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-13 PANEL,464P0981,Standard AHU,598,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,768,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_948,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-14 PANEL,464P0982,Standard AHU,598,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,828,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_949,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-15 PANEL,464P0983,Standard AHU,598,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,887,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_950,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-16 PANEL,464P0984,Standard AHU,598,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,946,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_951,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-17 PANEL,464P0985,Standard AHU,598,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1005,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_952,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-18 PANEL,464P0986,Standard AHU,598,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1064,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_953,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-19 PANEL,464P0987,Standard AHU,598,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1124,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_954,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-20 PANEL,464P0988,Standard AHU,598,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1183,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_955,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-21 PANEL,464P0989,Standard AHU,598,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1242,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_956,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-22 PANEL,464P0990,Standard AHU,598,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1301,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_957,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-23 PANEL,464P0991,Standard AHU,598,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1360,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_958,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-24 PANEL,464P0992,Standard AHU,598,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1420,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_959,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-25 PANEL,464P0993,Standard AHU,598,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1479,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_960,B_Grimm_Panel,panel,B.Grimm Panel,39GBF06-26 PANEL,464P0994,Standard AHU,598,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1538,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_961,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-11 PANEL,464P0995,Standard AHU,698,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,759,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_962,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-12 PANEL,464P0996,Standard AHU,698,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,828,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_963,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-13 PANEL,464P0997,Standard AHU,698,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,897,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_964,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-14 PANEL,464P0998,Standard AHU,698,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,966,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_965,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-15 PANEL,464P0999,Standard AHU,698,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1035,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_966,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-16 PANEL,464P1000,Standard AHU,698,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1104,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_967,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-17 PANEL,464P1001,Standard AHU,698,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1173,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_968,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-18 PANEL,464P1002,Standard AHU,698,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1242,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_969,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-19 PANEL,464P1003,Standard AHU,698,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1312,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_970,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-20 PANEL,464P1004,Standard AHU,698,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1381,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_971,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-21 PANEL,464P1005,Standard AHU,698,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1450,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_972,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-22 PANEL,464P1006,Standard AHU,698,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1519,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_973,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-23 PANEL,464P1007,Standard AHU,698,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1588,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_974,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-24 PANEL,464P1008,Standard AHU,698,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1657,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_975,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-25 PANEL,464P1009,Standard AHU,698,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1726,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_976,B_Grimm_Panel,panel,B.Grimm Panel,39GBF07-26 PANEL,464P1010,Standard AHU,698,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1795,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_977,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-11 PANEL,464P1011,Standard AHU,798,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,867,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_978,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-12 PANEL,464P1012,Standard AHU,798,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,946,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_979,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-13 PANEL,464P1013,Standard AHU,798,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1025,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_980,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-14 PANEL,464P1014,Standard AHU,798,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1104,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_981,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-15 PANEL,464P1015,Standard AHU,798,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1183,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_982,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-16 PANEL,464P1016,Standard AHU,798,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1262,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_983,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-17 PANEL,464P1017,Standard AHU,798,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1341,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_984,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-18 PANEL,464P1018,Standard AHU,798,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1420,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_985,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-19 PANEL,464P1019,Standard AHU,798,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1499,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_986,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-20 PANEL,464P1020,Standard AHU,798,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1578,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_987,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-21 PANEL,464P1021,Standard AHU,798,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1657,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_988,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-22 PANEL,464P1022,Standard AHU,798,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1736,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_989,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-23 PANEL,464P1023,Standard AHU,798,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1815,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_990,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-24 PANEL,464P1024,Standard AHU,798,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1894,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_991,B_Grimm_Panel,panel,B.Grimm Panel,39GBF08-25 PANEL,464P1025,Standard AHU,798,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1973,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_992,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-11 PANEL,464P1026,Standard AHU,898,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,976,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_993,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-12 PANEL,464P1027,Standard AHU,898,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1065,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_994,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-13 PANEL,464P1028,Standard AHU,898,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1154,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_995,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-14 PANEL,464P1029,Standard AHU,898,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1243,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_996,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-15 PANEL,464P1030,Standard AHU,898,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1332,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_997,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-16 PANEL,464P1031,Standard AHU,898,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1421,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_998,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-17 PANEL,464P1032,Standard AHU,898,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1510,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_999,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-18 PANEL,464P1033,Standard AHU,898,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1598,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1000,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-19 PANEL,464P1034,Standard AHU,898,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1687,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1001,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-20 PANEL,464P1035,Standard AHU,898,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1776,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1002,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-21 PANEL,464P1036,Standard AHU,898,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1865,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1003,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-22 PANEL,464P1037,Standard AHU,898,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1954,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1004,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-23 PANEL,464P1038,Standard AHU,898,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2043,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1005,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-24 PANEL,464P1039,Standard AHU,898,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2132,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1006,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-25 PANEL,464P1040,Standard AHU,898,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2221,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1007,B_Grimm_Panel,panel,B.Grimm Panel,39GBF09-26 PANEL,464P1041,Standard AHU,898,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2310,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1008,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-11 PANEL,464P1042,Standard AHU,998,1098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1085,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1009,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-12 PANEL,464P1043,Standard AHU,998,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1184,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1010,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-13 PANEL,464P1044,Standard AHU,998,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1282,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1011,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-14 PANEL,464P1045,Standard AHU,998,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1381,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1012,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-15 PANEL,464P1046,Standard AHU,998,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1480,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1013,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-16 PANEL,464P1047,Standard AHU,998,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1579,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1014,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-17 PANEL,464P1048,Standard AHU,998,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1678,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1015,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-18 PANEL,464P1049,Standard AHU,998,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1776,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1016,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-19 PANEL,464P1050,Standard AHU,998,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1875,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1017,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-20 PANEL,464P1051,Standard AHU,998,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1974,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1018,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-21 PANEL,464P1052,Standard AHU,998,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2073,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1019,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-22 PANEL,464P1053,Standard AHU,998,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2172,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1020,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-23 PANEL,464P1054,Standard AHU,998,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2270,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1021,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-24 PANEL,464P1055,Standard AHU,998,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2369,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1022,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-25 PANEL,464P1056,Standard AHU,998,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2468,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1023,B_Grimm_Panel,panel,B.Grimm Panel,39GBF10-26 PANEL,464P1057,Standard AHU,998,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2567,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1024,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-12 PANEL,464P1058,Standard AHU,1098,1198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1302,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1025,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-13 PANEL,464P1059,Standard AHU,1098,1298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1411,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1026,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-14 PANEL,464P1060,Standard AHU,1098,1398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1520,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1027,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-15 PANEL,464P1061,Standard AHU,1098,1498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1628,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1028,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-16 PANEL,464P1062,Standard AHU,1098,1598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1737,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1029,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-17 PANEL,464P1063,Standard AHU,1098,1698,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1846,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1030,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-18 PANEL,464P1064,Standard AHU,1098,1798,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,1954,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1031,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-19 PANEL,464P1065,Standard AHU,1098,1898,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2063,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1032,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-20 PANEL,464P1066,Standard AHU,1098,1998,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2172,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1033,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-21 PANEL,464P1067,Standard AHU,1098,2098,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2281,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1034,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-22 PANEL,464P1068,Standard AHU,1098,2198,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2389,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1035,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-23 PANEL,464P1069,Standard AHU,1098,2298,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2498,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1036,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-24 PANEL,464P1070,Standard AHU,1098,2398,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2607,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1037,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-25 PANEL,464P1071,Standard AHU,1098,2498,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2715,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด +B_Grimm_Panel_line_1038,B_Grimm_Panel,panel,B.Grimm Panel,39GBF11-26 PANEL,464P1072,Standard AHU,1098,2598,25,NN (None-None),0.4 mm GI,0.5 mm PP (OW),PU,2824,บริษัท บี.กริม แอร์คอนดิชั่นนิ่ง จำกัด diff --git a/sqp_config_standard_ahu_create_july15/__init__.py b/sqp_config_standard_ahu_create_july15/__init__.py new file mode 100755 index 0000000..a4a5d90 --- /dev/null +++ b/sqp_config_standard_ahu_create_july15/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_config_standard_ahu_create_july15/__openerp__.py b/sqp_config_standard_ahu_create_july15/__openerp__.py new file mode 100755 index 0000000..b2f1ede --- /dev/null +++ b/sqp_config_standard_ahu_create_july15/__openerp__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'Configuration - Prepare for Standard AHU Creation (july 2015)', + 'version': '1.0', + 'category': 'Hidden', + 'description': """ + """, + 'author': 'Ecosoft', + 'website': 'http://www.ecosoft.co.th/', + 'depends': [ + #'mrp', 'product_bom_template' + ], + 'data': [ + 'product.rapid.create.csv', + #'1_amair/product.rapid.create.line.csv', + '2_bgrimm/product.rapid.create.line.csv', + ], + 'auto_install': False, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_config_standard_ahu_create_july15/product.rapid.create.csv b/sqp_config_standard_ahu_create_july15/product.rapid.create.csv new file mode 100644 index 0000000..18c1cd0 --- /dev/null +++ b/sqp_config_standard_ahu_create_july15/product.rapid.create.csv @@ -0,0 +1,3 @@ +id,tag_ids,is_one_time_use,sale_ok,description,product_categ_id,temp_no_order_ref,sale_ok,is_one_time_use +B_Grimm_Access,Standard Product,FALSE,TRUE,B.Grimm Access (Std AHU),Standard Product,TRUE,TRUE,FALSE +B_Grimm_Panel,Standard Product,FALSE,TRUE,B.Grimm Panel (Std AHU),Standard Product,TRUE,TRUE,FALSE diff --git a/sqp_job_cost_sheet/__init__.py b/sqp_job_cost_sheet/__init__.py new file mode 100755 index 0000000..3b30bbd --- /dev/null +++ b/sqp_job_cost_sheet/__init__.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import sqp_job_book +import product +import sale +import report + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_job_cost_sheet/__openerp__.py b/sqp_job_cost_sheet/__openerp__.py new file mode 100755 index 0000000..30026ab --- /dev/null +++ b/sqp_job_cost_sheet/__openerp__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 Ecosoft Co., Ltd. (http://ecosoft.co.th). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +{ + 'name': 'SQP Job Cost Sheet', + 'version': '1.0', + 'author': 'Ecosoft', + 'summary': '', + 'description': """ + + """, + 'category': 'Sales Management', + 'website': 'http://www.ecosoft.co.th', + 'images': [], + 'depends': ['web_m2x_options', + 'account', + 'sale'], + 'demo': [], + 'data': ['sqp_job_book_view.xml', + 'product_view.xml', + 'sale_view.xml', + 'report/sqp_job_cost_sheet_view.xml'], + 'test': [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_job_cost_sheet/product.py b/sqp_job_cost_sheet/product.py new file mode 100755 index 0000000..bf402c8 --- /dev/null +++ b/sqp_job_cost_sheet/product.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import osv, fields + + +class product_product(osv.osv): + + _inherit = 'product.product' + _columns = { + 'main_material': fields.boolean('Main Material'), + 'job_cost_type': fields.selection([ + ('plane_ticket', 'Plane Ticket'), + ('comm_install', 'Commission / Installation'), ], + 'Job Cost Type', + help="Project assigned Cost Type here, will be show as cost in Job Cost Sheet Report for its specified type",), + } + _defaults = { + 'main_material': False + } + +product_product() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_job_cost_sheet/product_view.xml b/sqp_job_cost_sheet/product_view.xml new file mode 100755 index 0000000..a27ffd9 --- /dev/null +++ b/sqp_job_cost_sheet/product_view.xml @@ -0,0 +1,19 @@ + + + + + + product.normal.form.view.ext + product.product + + 26 + + + + + + + + + + diff --git a/sqp_job_cost_sheet/report/__init__.py b/sqp_job_cost_sheet/report/__init__.py new file mode 100755 index 0000000..e876d1e --- /dev/null +++ b/sqp_job_cost_sheet/report/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import sqp_job_cost_sheet + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_job_cost_sheet/report/sqp_job_cost_sheet.py b/sqp_job_cost_sheet/report/sqp_job_cost_sheet.py new file mode 100755 index 0000000..98d383f --- /dev/null +++ b/sqp_job_cost_sheet/report/sqp_job_cost_sheet.py @@ -0,0 +1,736 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp import tools +from openerp.osv import fields, osv + + +class sqp_job_cost_sheet(osv.osv): + + _name = "sqp.job.cost.sheet" + _description = "Job Cost Sheet" + _auto = False + + def _amount_all(self, cr, uid, ids, field_name, arg, context=None): + res = dict.fromkeys(ids, False) + for order in self.browse(cr, uid, ids, context=context): + res[order.id] = { + 'mrp_main_rm_amount': 0.0, + 'mrp_rm_amount': 0.0, + 'labor_amount': 0.0, + 'transport_amount': 0.0, + 'electric_amount': 0.0, + 'supply_list_amount': 0.0, + 'subcontract_amount': 0.0, + 'commission_amount': 0.0, + 'expense_list_amount': 0.0, + 'plane_ticket_invoice_list_amount': 0.0, + 'comm_install_invoice_list_amount': 0.0, + 'other_invoice_list_amount': 0.0, + 'total_cost_amount': 0.0, + 'profit_amount': 0.0, + 'total_cost_percent': 0.0, + 'profit_percent': 0.0, + } + + cr.execute("""select sum(price_subtotal) from sqp_job_cost_sheet_mrp_rm_list a + join product_product b on b.id = a.product_id + where a.order_id = %s and b.main_material = %s""", (order.id, True)) + res[order.id]['mrp_main_rm_amount'] = cr.fetchone()[0] or 0.0 + + cr.execute("""select sum(price_subtotal) from sqp_job_cost_sheet_mrp_rm_list a + join product_product b on b.id = a.product_id + where a.order_id = %s and b.main_material = %s""", (order.id, False)) + res[order.id]['mrp_rm_amount'] = cr.fetchone()[0] or 0.0 + + cr.execute("""select sum(amount) from sqp_job_book_labor + where order_id = %s""", (order.id,)) + res[order.id]['labor_amount'] = cr.fetchone()[0] or 0.0 + + cr.execute("""select sum(amount) from sqp_job_book_transport + where order_id = %s""", (order.id,)) + res[order.id]['transport_amount'] = cr.fetchone()[0] or 0.0 + + cr.execute("""select sum(amount) from sqp_job_book_electric + where order_id = %s""", (order.id,)) + res[order.id]['electric_amount'] = cr.fetchone()[0] or 0.0 + + cr.execute("""select sum(price_subtotal) from sqp_job_cost_sheet_supply_list + where order_id = %s""", (order.id,)) + res[order.id]['supply_list_amount'] = cr.fetchone()[0] or 0.0 + + cr.execute("""select sum(price_subtotal) from sqp_job_cost_sheet_po_subcontract + where order_id = %s""", (order.id,)) + res[order.id]['subcontract_amount'] = cr.fetchone()[0] or 0.0 + + cr.execute("""select sum(price_subtotal) from sqp_job_cost_sheet_expense_list + where order_id = %s""", (order.id,)) + res[order.id]['expense_list_amount'] = cr.fetchone()[0] or 0.0 + + cr.execute("""select sum(price_subtotal) from sqp_job_cost_sheet_invoice_list a + join product_product b on b.id = a.product_id + where a.order_id = %s and b.job_cost_type = %s""", (order.id, 'plane_ticket')) + res[order.id]['plane_ticket_invoice_list_amount'] = cr.fetchone()[0] or 0.0 + + cr.execute("""select sum(price_subtotal) from sqp_job_cost_sheet_invoice_list a + join product_product b on b.id = a.product_id + where a.order_id = %s and b.job_cost_type = %s""", (order.id, 'comm_install')) + res[order.id]['comm_install_invoice_list_amount'] = cr.fetchone()[0] or 0.0 + + cr.execute("""select sum(price_subtotal) from sqp_job_cost_sheet_invoice_list a + join product_product b on b.id = a.product_id + where a.order_id = %s and b.job_cost_type is %s""", (order.id, None)) + res[order.id]['other_invoice_list_amount'] = cr.fetchone()[0] or 0.0 + + # Commisison Amount + cwl_ids = self.pool.get('commission.worksheet.line').search(cr, uid, [('order_id', '=', order.id), ('commission_state', 'in', ('valid', 'done'))]) + for cwl in self.pool.get('commission.worksheet.line').read(cr, uid, cwl_ids, ['commission_amt']): + res[order.id]['commission_amount'] = cwl['commission_amt'] + break + # Finalize + res[order.id]['total_cost_amount'] = res[order.id]['commission_amount'] + res[order.id]['mrp_main_rm_amount'] + res[order.id]['mrp_rm_amount'] \ + + res[order.id]['labor_amount'] + res[order.id]['transport_amount'] + res[order.id]['electric_amount'] \ + + res[order.id]['supply_list_amount'] + res[order.id]['subcontract_amount'] \ + + res[order.id]['expense_list_amount'] + res[order.id]['plane_ticket_invoice_list_amount'] \ + + res[order.id]['comm_install_invoice_list_amount'] + res[order.id]['other_invoice_list_amount'] + res[order.id]['profit_amount'] = order.amount_net - res[order.id]['total_cost_amount'] + res[order.id]['profit_percent'] = order.amount_net and (res[order.id]['profit_amount'] / order.amount_net) * 100 or 100 + res[order.id]['total_cost_percent'] = order.amount_net and (res[order.id]['total_cost_amount'] / order.amount_net) * 100 or 100 + return res + + def _search_amount(self, cr, uid, obj, name, args, query, context): + ids = set() + for cond in args: + amount = cond[2] + if isinstance(cond[2], (list, tuple)): + if cond[1] in ['in', 'not in']: + amount = tuple(cond[2]) + else: + continue + else: + if cond[1] in ['=like', 'like', 'not like', 'ilike', 'not ilike', 'in', 'not in', 'child_of']: + continue + cr.execute("select id from (" + query + ") a where a.amount %s %%s" % (cond[1]), (amount,)) + res_ids = set(id[0] for id in cr.fetchall()) + ids = ids and (ids & res_ids) or res_ids + if ids: + return [('id', 'in', tuple(ids))] + return [('id', '=', '0')] + + # ============ SEARCH FUNCTIONS ============ + # main_material = True + QUERY_MAIN_RM_AMOUNT = """ + (select so.id, sum(case when coalesce(pp.main_material, false) = true then coalesce(rm.price_subtotal, 0.0) else 0 end) amount + from sale_order so + left outer join sqp_job_cost_sheet_mrp_rm_list rm on so.id = rm.order_id + left outer join product_product pp on pp.id = rm.product_id + group by so.id) + """ + + def _search_mrp_main_rm_amount(self, cr, uid, obj, name, args, context): + return self._search_amount(cr, uid, obj, name, args, self.QUERY_MAIN_RM_AMOUNT, context=context) + + # main_material = False + QUERY_RM_AMOUNT = """ + (select so.id, sum(case when coalesce(pp.main_material, false) = false then coalesce(rm.price_subtotal, 0.0) else 0 end) amount + from sale_order so + left outer join sqp_job_cost_sheet_mrp_rm_list rm on so.id = rm.order_id + left outer join product_product pp on pp.id = rm.product_id + group by so.id) + """ + + def _search_mrp_rm_amount(self, cr, uid, obj, name, args, context): + return self._search_amount(cr, uid, obj, name, args, self.QUERY_RM_AMOUNT, context=context) + + QUERY_LABOR_AMOUNT = """ + (select so.id, sum(coalesce(labor.amount, 0)) amount + from sale_order so + left outer join sqp_job_book_labor labor on so.id = labor.order_id + group by so.id) + """ + + def _search_labor_amount(self, cr, uid, obj, name, args, context): + return self._search_amount(cr, uid, obj, name, args, self.QUERY_LABOR_AMOUNT, context=context) + + QUERY_TRANSPORT_AMOUNT = """ + (select so.id, sum(coalesce(transport.amount, 0)) amount + from sale_order so + left outer join sqp_job_book_transport transport on so.id = transport.order_id + group by so.id) + """ + + def _search_transport_amount(self, cr, uid, obj, name, args, context): + return self._search_amount(cr, uid, obj, name, args, self.QUERY_TRANSPORT_AMOUNT, context=context) + + QUERY_ELECTRIC_AMOUNT = """ + (select so.id, sum(coalesce(electric.amount, 0)) amount + from sale_order so + left outer join sqp_job_book_electric electric on so.id = electric.order_id + group by so.id) + """ + + def _search_electric_amount(self, cr, uid, obj, name, args, context): + return self._search_amount(cr, uid, obj, name, args, self.QUERY_ELECTRIC_AMOUNT, context=context) + + QUERY_SUPPLY_LIST_AMOUNT = """ + (select so.id, sum(coalesce(supply_list.price_subtotal, 0)) amount + from sale_order so + left outer join sqp_job_cost_sheet_supply_list supply_list on so.id = supply_list.order_id + group by so.id) + """ + + def _search_supply_list_amount(self, cr, uid, obj, name, args, context): + return self._search_amount(cr, uid, obj, name, args, self.QUERY_SUPPLY_LIST_AMOUNT, context=context) + + QUERY_SUBCONTRACT_AMOUNT = """ + (select so.id, sum(coalesce(po_subcontract.price_subtotal, 0)) amount + from sale_order so + left outer join sqp_job_cost_sheet_po_subcontract po_subcontract on so.id = po_subcontract.order_id + group by so.id) + """ + + def _search_subcontract_amount(self, cr, uid, obj, name, args, context): + return self._search_amount(cr, uid, obj, name, args, self.QUERY_SUBCONTRACT_AMOUNT, context=context) + + QUERY_EXPENSE_LIST_AMOUNT = """ + (select so.id, sum(coalesce(expense_list.price_subtotal, 0)) amount + from sale_order so + left outer join sqp_job_cost_sheet_expense_list expense_list on so.id = expense_list.order_id + group by so.id) + """ + + def _search_expense_list_amount(self, cr, uid, obj, name, args, context): + return self._search_amount(cr, uid, obj, name, args, self.QUERY_EXPENSE_LIST_AMOUNT, context=context) + + QUERY_PLANE_TICKET_AMOUNT = """ + (select so.id, sum(case when pp.job_cost_type = 'plane_ticket' then coalesce(invoice_list.price_subtotal, 0) else 0 end) amount + from sale_order so + join sqp_job_cost_sheet_invoice_list invoice_list on so.id = invoice_list.order_id + join product_product pp on pp.id = invoice_list.product_id + group by so.id) + """ + + def _search_plane_ticket_amount(self, cr, uid, obj, name, args, context): + return self._search_amount(cr, uid, obj, name, args, self.QUERY_PLANE_TICKET_AMOUNT, context=context) + + QUERY_COMM_INSTALL_AMOUNT = """ + (select so.id, sum(case when pp.job_cost_type = 'comm_install' then coalesce(invoice_list.price_subtotal, 0) else 0 end) amount + from sale_order so + join sqp_job_cost_sheet_invoice_list invoice_list on so.id = invoice_list.order_id + join product_product pp on pp.id = invoice_list.product_id + group by so.id) + """ + + def _search_comm_install_amount(self, cr, uid, obj, name, args, context): + return self._search_amount(cr, uid, obj, name, args, self.QUERY_COMM_INSTALL_AMOUNT, context=context) + + QUERY_OTHER_AMOUNT = """ + (select so.id, sum(case when pp.job_cost_type is null then coalesce(invoice_list.price_subtotal, 0) else 0 end) amount + from sale_order so + join sqp_job_cost_sheet_invoice_list invoice_list on so.id = invoice_list.order_id + join product_product pp on pp.id = invoice_list.product_id + group by so.id) + """ + + def _search_other_amount(self, cr, uid, obj, name, args, context): + return self._search_amount(cr, uid, obj, name, args, self.QUERY_OTHER_AMOUNT, context=context) + + QUERY_COMMISSION_AMOUNT = """ + (select so.id, sum(coalesce(comm_line.commission_amt, 0)) amount + from sale_order so + left outer join commission_worksheet_line comm_line on so.id = comm_line.order_id + group by so.id) + """ + + def _search_commission_amount(self, cr, uid, obj, name, args, context): + return self._search_amount(cr, uid, obj, name, args, self.QUERY_COMMISSION_AMOUNT, context=context) + + QUERY_TOTAL_COST_AMOUNT = QUERY_MAIN_RM_AMOUNT + ' union ' \ + + QUERY_RM_AMOUNT + ' union ' \ + + QUERY_LABOR_AMOUNT + ' union ' \ + + QUERY_TRANSPORT_AMOUNT + ' union ' \ + + QUERY_ELECTRIC_AMOUNT + ' union ' \ + + QUERY_SUPPLY_LIST_AMOUNT + ' union ' \ + + QUERY_SUBCONTRACT_AMOUNT + ' union ' \ + + QUERY_EXPENSE_LIST_AMOUNT + ' union ' \ + + QUERY_PLANE_TICKET_AMOUNT + ' union ' \ + + QUERY_COMM_INSTALL_AMOUNT + ' union ' \ + + QUERY_OTHER_AMOUNT + ' union ' \ + + QUERY_COMMISSION_AMOUNT + + def _search_total_cost_amount(self, cr, uid, obj, name, args, context): + QUERY = '(select id, sum(amount) amount from ( ' + self.QUERY_TOTAL_COST_AMOUNT + ' ) b group by id)' + return self._search_amount(cr, uid, obj, name, args, QUERY, context=context) + + def _search_total_cost_percent(self, cr, uid, obj, name, args, context): + QUERY = """(select c.id, case when coalesce(sale_order.amount_net, 0) = 0 then 100 else c.amount / sale_order.amount_net * 100 end amount + from sale_order left outer join + (select id, sum(amount) amount from ( """ + self.QUERY_TOTAL_COST_AMOUNT + """ ) b group by id) c on sale_order.id = c.id)""" + return self._search_amount(cr, uid, obj, name, args, QUERY, context=context) + + def _search_profit_amount(self, cr, uid, obj, name, args, context): + QUERY = """(select c.id, sale_order.amount_net - c.amount amount + from sale_order left outer join + (select id, sum(amount) amount from ( """ + self.QUERY_TOTAL_COST_AMOUNT + """ ) b group by id) c on sale_order.id = c.id)""" + return self._search_amount(cr, uid, obj, name, args, QUERY, context=context) + + def _search_profit_percent(self, cr, uid, obj, name, args, context): + QUERY = """(select c.id, case when coalesce(sale_order.amount_net, 0) = 0 then 100 else (sale_order.amount_net - c.amount) / sale_order.amount_net * 100 end amount + from sale_order left outer join + (select id, sum(amount) amount from ( """ + self.QUERY_TOTAL_COST_AMOUNT + """ ) b group by id) c on sale_order.id = c.id)""" + print QUERY + return self._search_amount(cr, uid, obj, name, args, QUERY, context=context) + + def _area_so(self, cursor, user, ids, name, arg, context=None): + res = {} + for sheet in self.browse(cursor, user, ids, context=context): + area = sheet.order_id.area_so +# for line in sheet.order_id.order_line: +# if line.product_uom and line.product_uom.name.lower() == 'sqm': +# area += line.product_uom_qty + res[sheet.id] = area + return res + + def _area_mo(self, cursor, user, ids, name, arg, context=None): + res = {} + for sheet in self.browse(cursor, user, ids, context=context): + area = 0.0 + for mo in sheet.order_id.ref_mo_ids: + for line in mo.product_lines: + area += (line.L/1000 * line.W/1000) - line.cut_area + res[sheet.id] = area + return res + + _columns = { + 'name': fields.char('Name', readonly=True), + 'order_id': fields.many2one('sale.order', 'Sales Order', readonly=True), + 'state': fields.selection([ + ('draft', 'Draft Quotation'), + ('sent', 'Quotation Sent'), + ('cancel', 'Cancelled'), + ('waiting_date', 'Waiting Schedule'), + ('progress', 'Sales Order'), + ('manual', 'Sale to Invoice'), + ('invoice_except', 'Invoice Exception'), + ('done', 'Done'), + ], 'Status', readonly=True), + 'ref_project_name': fields.char('Ref Project Name', readonly=True), + 'product_tag_id': fields.many2one('product.tag', 'Product Tag', readonly=True), + 'user_id': fields.many2one('res.users', 'Salesperson', readonly=True), + 'partner_id': fields.many2one('res.partner', 'Customer', readonly=True), + 'date': fields.date('Date', readonly=True), + 'year': fields.char('Year', size=4, readonly=True), + 'day': fields.char('Day', size=128, readonly=True), + 'month': fields.selection([('01', 'January'), ('02', 'February'), ('03', 'March'), ('04', 'April'), + ('05', 'May'), ('06', 'June'), ('07', 'July'), ('08', 'August'), ('09', 'September'), + ('10', 'October'), ('11', 'November'), ('12', 'December')], 'Month', readonly=True), + 'add_disc': fields.float('Final Discount (%)', readonly=True), + 'amount_net': fields.float('Final Order Amount', readonly=True), + 'mrp_main_rm_amount': fields.function(_amount_all, string='Material', multi="sums", fnct_search=_search_mrp_main_rm_amount), + 'mrp_rm_amount': fields.function(_amount_all, string='Supply', multi="sums", fnct_search=_search_mrp_rm_amount), + 'labor_amount': fields.function(_amount_all, string='Labor', multi="sums", fnct_search=_search_labor_amount), + 'transport_amount': fields.function(_amount_all, string='Transport', multi="sums", fnct_search=_search_transport_amount), + 'electric_amount': fields.function(_amount_all, string='Electric', multi="sums", fnct_search=_search_electric_amount), + 'supply_list_amount': fields.function(_amount_all, string='Supply List', multi="sums", fnct_search=_search_supply_list_amount), + 'subcontract_amount': fields.function(_amount_all, string='Subcontract', multi="sums", fnct_search=_search_subcontract_amount), + 'commission_amount': fields.function(_amount_all, string='Sales Commission', multi="sums", fnct_search=_search_commission_amount), + 'expense_list_amount': fields.function(_amount_all, string='Expenses', multi="sums", fnct_search=_search_expense_list_amount), + 'plane_ticket_invoice_list_amount': fields.function(_amount_all, string='Plane Ticket', multi="sums", fnct_search=_search_plane_ticket_amount), + 'comm_install_invoice_list_amount': fields.function(_amount_all, string='Commission / Installation', multi="sums", fnct_search=_search_comm_install_amount), + 'other_invoice_list_amount': fields.function(_amount_all, string='Others', multi="sums", fnct_search=_search_other_amount), + 'total_cost_amount': fields.function(_amount_all, string='Total Cost', multi="sums", fnct_search=_search_total_cost_amount), + 'total_cost_percent': fields.function(_amount_all, string='Percent Total Cost', multi="sums", fnct_search=_search_total_cost_percent), + 'profit_amount': fields.function(_amount_all, string='Profit Amount', multi="sums", fnct_search=_search_profit_amount), + 'profit_percent': fields.function(_amount_all, string='Percent Profit', multi="sums", fnct_search=_search_profit_percent), + # Tabs + 'order_line': fields.one2many('sqp.job.cost.sheet.order.line', 'order_id', 'Order Lines', readonly=True), + 'mrp_main_rm_list': fields.one2many('sqp.job.cost.sheet.mrp.rm.list', 'order_id', 'Main Material', domain=[('product_id.main_material', '=', 'True')], readonly=True), + 'mrp_rm_list': fields.one2many('sqp.job.cost.sheet.mrp.rm.list', 'order_id', 'Supply Material', domain=[('product_id.main_material', '!=', 'True')], readonly=True), + 'labor_list': fields.one2many('sqp.job.book.labor', 'order_id', 'Labor List', readonly=True), + 'transport_list': fields.one2many('sqp.job.book.transport', 'order_id', 'Transport List', readonly=True), + 'electric_list': fields.one2many('sqp.job.book.electric', 'order_id', 'Electric List', readonly=True), + 'supply_list': fields.one2many('sqp.job.cost.sheet.supply.list', 'order_id', 'Supply List', readonly=True), + 'po_subcontract': fields.one2many('sqp.job.cost.sheet.po.subcontract', 'order_id', 'PO Subcontract', readonly=True), + 'expense_list': fields.one2many('sqp.job.cost.sheet.expense.list', 'order_id', 'Expense', readonly=True), + 'plane_ticket_invoice_list': fields.one2many('sqp.job.cost.sheet.invoice.list', 'order_id', 'Plane Ticket', domain=[('product_id.job_cost_type', '=', 'plane_ticket')], readonly=True), + 'comm_install_invoice_list': fields.one2many('sqp.job.cost.sheet.invoice.list', 'order_id', 'Commission / Installation', domain=[('product_id.job_cost_type', '=', 'comm_install')], readonly=True), + 'other_invoice_list': fields.one2many('sqp.job.cost.sheet.invoice.list', 'order_id', 'Others', domain=[('product_id.job_cost_type', '=', False)], readonly=True), + 'area_so': fields.function(_area_so, string='Area (sqm) from SO', help="From sales order line with UoM = 'sqm' only"), + 'area_mo': fields.function(_area_mo, string='Area (sqm) from MO', help="From manufacturing order's product line with formula L/1000 * W/1000 - cut_area") + } + _order = 'date' + + def init(self, cr): + # Order + tools.drop_view_if_exists(cr, self._table) + cr.execute("""CREATE or REPLACE VIEW %s as ( + select sub.id, sub.order_id, sub.state, sub.name, sub.ref_project_name, sub.product_tag_id, + sub.user_id, sub.partner_id, sub.date, sub.year, sub.month, sub.day, sub.add_disc, + case when curr.type_ref_base = 'smaller' then + sub.amount_net / cr.rate_sell else sub.amount_net * cr.rate_sell + end AS amount_net + from + (select so.id as id, + so.id as order_id, + price.currency_id, + so.state, + so.name, + so.ref_project_name, + so.product_tag_id, + so.user_id, + so.partner_id, + so.date_order as date, + to_char(so.date_order::timestamp with time zone, 'YYYY'::text) AS year, + to_char(so.date_order::timestamp with time zone, 'MM'::text) AS month, + to_char(so.date_order::timestamp with time zone, 'YYYY-MM-DD'::text) AS day, + so.add_disc, + case when coalesce(so.amount_final, 0) = 0 then so.amount_net else so.amount_final end as amount_net + from + sale_order so join product_pricelist price on so.pricelist_id = price.id + where so.state not in ('draft', 'cancel')) sub + -- currency + JOIN res_currency_rate cr ON cr.currency_id = sub.currency_id + JOIN res_currency curr ON curr.id = cr.currency_id + WHERE cr.id IN ( + SELECT cr2.id + FROM res_currency_rate cr2 + WHERE cr2.currency_id = sub.currency_id AND (sub.date IS NOT NULL AND cr2.name <= sub.date OR sub.date IS NULL AND cr2.name <= now()) + ORDER BY name DESC LIMIT 1) + )""" % (self._table,)) + +sqp_job_cost_sheet() + + +class sqp_job_cost_sheet_order_line(osv.osv): + + _name = "sqp.job.cost.sheet.order.line" + _description = "Job Cost Sheet's Order Line" + _auto = False + + _columns = { + 'order_id': fields.many2one('sqp.job.cost.sheet', 'Sales Order'), + 'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of sales order lines."), + 'product_id': fields.many2one('product.product', 'Product'), + 'name': fields.text('Description'), + 'product_uom_qty': fields.float('Quantity'), + 'product_uom': fields.many2one('product.uom', 'Unit of Measure'), + 'price_unit': fields.float('Unit Price'), + 'discount': fields.float('Discount (%)'), + 'price_subtotal': fields.float('Sub Total'), + } + _order = 'sequence' + + def init(self, cr): + # Order Lines + tools.drop_view_if_exists(cr, self._table) + cr.execute("""CREATE or REPLACE VIEW %s as ( + select id, sequence, order_id, product_id, name, product_uom_qty, product_uom, price_unit, discount, + (product_uom_qty * price_unit) * (1-discount/100) as price_subtotal + from sale_order_line + order by order_id, sequence + )""" % (self._table,)) + +sqp_job_cost_sheet_order_line() + + +class sqp_job_cost_sheet_mrp_rm_list(osv.osv): + + _name = "sqp.job.cost.sheet.mrp.rm.list" + _description = "Job Cost Sheet's Raw Material List" + _auto = False + + _columns = { + 'order_id': fields.many2one('sqp.job.cost.sheet', 'Sales Order'), + 'product_id': fields.many2one('product.product', 'Product'), + 'product_code': fields.char('Product Code'), + 'planned_qty': fields.float('Planned Quantity'), + 'actual_qty': fields.float('Actual Quantity'), + 'product_uom': fields.many2one('product.uom', 'Unit of Measure'), + 'price_unit': fields.float('Unit Price'), + 'price_subtotal': fields.float('Sub Total'), + } + _order = 'product_code' + + def init(self, cr): + # Order Lines + tools.drop_view_if_exists(cr, self._table) + cr.execute("""CREATE or REPLACE VIEW %s as ( + select min(id) id, order_id, product_id, product_code, product_uom, sum(planned_qty) planned_qty, sum(actual_qty) actual_qty, avg(price_unit) price_unit, sum(price_subtotal) price_subtotal + from ( + select a.id, a.order_id, a.product_id, pp.default_code product_code, a.product_uom, a.planned_qty, a.actual_qty, (pt.standard_price * uom.factor) as price_unit, (pt.standard_price * uom.factor * a.actual_qty) price_subtotal + from (select id, x.order_id, x.product_id, product_uom, planned_qty, actual_qty from + (select plan.id, plan.order_id, plan.product_id, plan.product_uom, plan.planned_qty, actual.actual_qty from + -- Planned + (select mrp.order_id, mpl.product_id, mpl.product_uom, min(mpl.id) as id, sum(mpl.product_qty) as planned_qty + from mrp_production_product_line mpl + join mrp_production mrp on mrp.id = mpl.production_id + and mrp.state = 'done' and mrp.parent_id is not null + group by mrp.order_id, mpl.product_id, mpl.product_uom) plan + join + -- Actual + (select mrp.order_id, sm.product_id, sum(coalesce(sm.product_qty, 0.0)) as actual_qty from stock_move sm + join mrp_production_move_ids rel on rel.move_id = sm.id and sm.state = 'done' + join mrp_production mrp on mrp.id = rel.production_id + and mrp.state = 'done' and mrp.parent_id is not null + group by mrp.order_id, sm.product_id) actual + on actual.product_id = plan.product_id and actual.order_id = plan.order_id) x + -- Not include those in internal move + left join (select sp.ref_order_id, product_id + from stock_picking sp + join stock_move sm on sm.picking_id = sp.id + where sp.type = 'internal' and sp.state = 'done' and sp.ref_order_id is not null) y + on x.order_id = y.ref_order_id and x.product_id = y.product_id + where y.ref_order_id is null and y.product_id is null + -- Union Internal Move + --- (It might be possible also for internal move to join with planned, to get the planned amount. + --- But it might cause even more performance drop) + union + (select sm.id, sp.ref_order_id order_id, product_id, product_uom, 0 as planned_qty, product_qty actual_qty + from stock_picking sp + join stock_move sm on sm.picking_id = sp.id + where sp.type = 'internal' and sp.state = 'done' and sp.ref_order_id is not null)) a + join product_uom uom on uom.id = a.product_uom + join product_product pp on pp.id = a.product_id + join product_template pt on pt.id = pp.product_tmpl_id + order by pp.default_code) b + group by order_id, product_id, product_code, product_uom + )""" % (self._table,)) + +sqp_job_cost_sheet_mrp_rm_list() + + +class sqp_job_cost_sheet_supply_list(osv.osv): + + _name = "sqp.job.cost.sheet.supply.list" + _description = "Job Cost Sheet's Supply List" + _auto = False + + _columns = { + 'order_id': fields.many2one('sqp.job.cost.sheet', 'Sales Order'), + 'supply_list_id': fields.many2one('stock.picking', 'Supply List'), + 'product_id': fields.many2one('product.product', 'Product'), + 'product_code': fields.char('Product Code'), + 'planned_qty': fields.float('Planned Quantity'), + 'actual_qty': fields.float('Actual Quantity'), + 'product_uom': fields.many2one('product.uom', 'Unit of Measure'), + 'price_unit': fields.float('Unit Price'), + 'price_subtotal': fields.float('Sub Total'), + } + _order = 'product_code' + + def init(self, cr): + # Order Lines + tools.drop_view_if_exists(cr, self._table) + cr.execute("""CREATE or REPLACE VIEW %s as ( + select min(id) id, supply_list_id, order_id, product_id, product_code, product_uom, sum(planned_qty) planned_qty, sum(actual_qty) actual_qty, avg(price_unit) price_unit, sum(price_subtotal) price_subtotal + from ( + select a.id, a.supply_list_id, a.order_id, a.product_id, pp.default_code as product_code, a.product_uom, a.planned_qty, a.actual_qty, (pt.standard_price * uom.factor) as price_unit, (pt.standard_price * uom.factor * a.actual_qty) price_subtotal + from (select sm.id, sp.id as supply_list_id, sp.ref_order_id as order_id, sm.product_id, sm.product_uom, + case when type='out' then sm.order_qty else 0.0 end as planned_qty, + case when type='out' then sm.product_qty else -sm.product_qty end as actual_qty from stock_picking sp + join stock_move sm on sm.picking_id = sp.id + where sp.is_supply_list = True + and sp.state = 'done') a + join product_uom uom on uom.id = a.product_uom + join product_product pp on pp.id = a.product_id + join product_template pt on pt.id = pp.product_tmpl_id + order by pp.default_code) b + group by supply_list_id, order_id, product_id, product_code, product_uom + )""" % (self._table,)) + +sqp_job_cost_sheet_supply_list() + + +class sqp_job_cost_sheet_po_subcontract(osv.osv): + + _name = "sqp.job.cost.sheet.po.subcontract" + _description = "Job Cost Sheet's PO Subcontract" + _auto = False + + _columns = { + 'order_id': fields.many2one('sqp.job.cost.sheet', 'Sales Order'), + 'purchase_id': fields.many2one('purchase.order', 'Purchase Order'), + 'invoice_id': fields.many2one('account.invoice', 'Supplier Invoice'), + 'product_id': fields.many2one('product.product', 'Product'), + 'name': fields.text('Description'), + 'product_qty': fields.float('Quantity'), + 'product_uom': fields.many2one('product.uom', 'Unit of Measure'), + 'price_unit': fields.float('Unit Price'), + 'price_subtotal': fields.float('Sub Total'), + } + _order = 'id' + + def init(self, cr): + # Order Lines + tools.drop_view_if_exists(cr, self._table) + cr.execute("""CREATE or REPLACE VIEW %s as ( + select sub.id, purchase_id, invoice_id, product_id, sub.name, order_id, product_qty, product_uom, + case when curr.type_ref_base = 'smaller' then + sub.price_unit / (case when sub.type in ('in_invoice', 'in_refund') then cr.rate else cr.rate_sell end) + else + sub.price_unit * (case when sub.type in ('in_invoice', 'in_refund') then cr.rate else cr.rate_sell end) + end AS price_unit, + case when curr.type_ref_base = 'smaller' then + sub.price_subtotal / (case when sub.type in ('in_invoice', 'in_refund') then cr.rate else cr.rate_sell end) + else + sub.price_subtotal * (case when sub.type in ('in_invoice', 'in_refund') then cr.rate else cr.rate_sell end) + end AS price_subtotal + from + (select ai.type, ai.date_invoice, ai.currency_id, ail.id, po.id as purchase_id, ail.invoice_id, po.ref_order_id as order_id, ail.product_id, ail.name, + case when ai.type = 'in_invoice' then ail.quantity else -ail.quantity end as product_qty, + ail.uos_id product_uom, ail.price_unit, + case when ai.type = 'in_invoice' then price_subtotal else -price_subtotal end as price_subtotal + from account_invoice ai + join (select purchase_id purchase_id, invoice_id from purchase_invoice_rel) pil + on pil.invoice_id = ai.id + join purchase_order po on po.id = pil.purchase_id and po.is_subcontract = True and po.ref_order_id is not null + join account_invoice_line ail on ail.invoice_id = ai.id + where ai.state not in ('draft', 'cancel') and ai.type in ('in_invoice', 'in_refund')) sub + -- currency + JOIN res_currency_rate cr ON cr.currency_id = sub.currency_id + JOIN res_currency curr ON curr.id = cr.currency_id + WHERE cr.id IN ( + SELECT cr2.id + FROM res_currency_rate cr2 + WHERE cr2.currency_id = sub.currency_id AND (sub.date_invoice IS NOT NULL AND cr2.name <= sub.date_invoice OR sub.date_invoice IS NULL AND cr2.name <= now()) + ORDER BY name DESC LIMIT 1) + )""" % (self._table,)) + +sqp_job_cost_sheet_po_subcontract() + + +class sqp_job_cost_sheet_inovice_list(osv.osv): + + _name = "sqp.job.cost.sheet.invoice.list" + _description = "Job Cost Sheet's Supplier Invoice" + _auto = False + + _columns = { + 'order_id': fields.many2one('sqp.job.cost.sheet', 'Sales Order'), + 'invoice_id': fields.many2one('account.invoice', 'Supplier Invoice'), + 'account_id': fields.many2one('account.account', 'Account'), + 'product_id': fields.many2one('product.product', 'Product'), + 'name': fields.text('Description'), + 'product_qty': fields.float('Quantity'), + 'product_uom': fields.many2one('product.uom', 'Unit of Measure'), + 'price_unit': fields.float('Unit Price'), + 'price_subtotal': fields.float('Sub Total'), + } + _order = 'id' + + def init(self, cr): + # Order Lines + tools.drop_view_if_exists(cr, self._table) + cr.execute("""CREATE or REPLACE VIEW %s as ( + select * from ( + select sub.id, account_id, invoice_id, product_id, sub.name, order_id, product_qty, product_uom, + case when curr.type_ref_base = 'smaller' then + sub.price_unit / (case when sub.type in ('in_invoice', 'in_refund') then cr.rate else cr.rate_sell end) + else + sub.price_unit * (case when sub.type in ('in_invoice', 'in_refund') then cr.rate else cr.rate_sell end) + end AS price_unit, + case when curr.type_ref_base = 'smaller' then + sub.price_subtotal / (case when sub.type in ('in_invoice', 'in_refund') then cr.rate else cr.rate_sell end) + else + sub.price_subtotal * (case when sub.type in ('in_invoice', 'in_refund') then cr.rate else cr.rate_sell end) + end AS price_subtotal + from + (select ai.type, ai.date_invoice, ai.currency_id, ail.id, ail.invoice_id, ail.account_id, ail.product_id, ail.name, inv_so.order_id, + case when ai.type = 'in_invoice' then ail.quantity else -ail.quantity end as product_qty, + ail.uos_id product_uom, ail.price_unit, + case when ai.type = 'in_invoice' then price_subtotal else -price_subtotal end as price_subtotal + from account_invoice ai + join account_invoice_line ail on ail.invoice_id = ai.id + join (select invoice_id, order_id from ( + -- Invoice with Reference to PO (non-Subcontract) + (select pil.invoice_id, po.ref_order_id as order_id from purchase_order po + join (select purchase_id, invoice_id from purchase_invoice_rel) pil + on po.id = pil.purchase_id + where po.is_subcontract = False and po.ref_order_id is not null) + union -- Invoice with direct reference to PO + (select ai.id as invoice_id, ai.cost_order_id as order_id from account_invoice ai + where ai.cost_order_id is not null)) base_inv_so) inv_so on inv_so.invoice_id = ai.id + where ai.state not in ('draft', 'cancel') and ai.type in ('in_invoice', 'in_refund')) sub + -- currency + JOIN res_currency_rate cr ON cr.currency_id = sub.currency_id + JOIN res_currency curr ON curr.id = cr.currency_id + WHERE cr.id IN ( + SELECT cr2.id + FROM res_currency_rate cr2 + WHERE cr2.currency_id = sub.currency_id AND (sub.date_invoice IS NOT NULL AND cr2.name <= sub.date_invoice OR sub.date_invoice IS NULL AND cr2.name <= now()) + ORDER BY name DESC LIMIT 1) + -- also exclude those in Supply List + ) a where a.product_id not in (select product_id from sqp_job_cost_sheet_supply_list b where b.product_id = a.product_id and b.order_id = a.order_id) + )""" % (self._table,)) + +sqp_job_cost_sheet_inovice_list() + + +class sqp_job_cost_sheet_expense_list(osv.osv): + + _name = "sqp.job.cost.sheet.expense.list" + _description = "Job Cost Sheet's Expenses" + _auto = False + + _columns = { + 'order_id': fields.many2one('sqp.job.cost.sheet', 'Sales Order'), + 'expense_id': fields.many2one('hr.expense.expense', 'Expense'), + 'product_id': fields.many2one('product.product', 'Product'), + 'name': fields.text('Description'), + 'product_qty': fields.float('Quantity'), + 'product_uom': fields.many2one('product.uom', 'Unit of Measure'), + 'price_unit': fields.float('Unit Price'), + 'price_subtotal': fields.float('Sub Total'), + } + _order = 'id' + + def init(self, cr): + # Order Lines + tools.drop_view_if_exists(cr, self._table) + cr.execute("""CREATE or REPLACE VIEW %s as ( + select sub.id, sub.expense_id, sub.product_id, sub.name, sub.order_id, sub.unit_quantity product_qty, sub.uom_id product_uom, + case when curr.type_ref_base = 'smaller' then + sub.unit_amount / cr.rate + else + sub.unit_amount * cr.rate + end AS price_unit, + case when curr.type_ref_base = 'smaller' then + sub.price_subtotal / cr.rate + else + sub.price_subtotal * cr.rate + end AS price_subtotal + from (select x.date, x.currency_id, xl.id, expense_id, product_id, xl.name, cost_order_id as order_id, unit_quantity, + uom_id, unit_amount, unit_quantity*unit_amount as price_subtotal + from hr_expense_line xl + join hr_expense_expense x on xl.expense_id = x.id + where xl.cost_order_id is not null) sub + -- currency + JOIN res_currency_rate cr ON cr.currency_id = sub.currency_id + JOIN res_currency curr ON curr.id = cr.currency_id + WHERE cr.id IN ( + SELECT cr2.id + FROM res_currency_rate cr2 + WHERE cr2.currency_id = sub.currency_id AND (sub.date IS NOT NULL AND cr2.name <= sub.date OR sub.date IS NULL AND cr2.name <= now()) + ORDER BY name DESC LIMIT 1) + )""" % (self._table,)) + +sqp_job_cost_sheet_expense_list() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_job_cost_sheet/report/sqp_job_cost_sheet_view.xml b/sqp_job_cost_sheet/report/sqp_job_cost_sheet_view.xml new file mode 100755 index 0000000..26327fa --- /dev/null +++ b/sqp_job_cost_sheet/report/sqp_job_cost_sheet_view.xml @@ -0,0 +1,345 @@ + + + + + sqp.job.cost.sheet.tree + sqp.job.cost.sheet + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sqp.job.cost.sheet.form + sqp.job.cost.sheet + + +
    +
    + +
    + +

    +

    + + + + + + + + + + + + + + + +

    +

    +
    +
    + + + + + + + + + + + + + + + + + +

    +

    +
    +
    + + + + + + + + + + + + + + +

    + This tab contain the detail order revenue of the Sales Order. +

    +
    + + + + + + + + + + + +

    + Data from the Actual "Main" Material Usage of all Sub-MO of Manufacturing Order that products for this Sales Order +

    +
    + + + + + + + + + + + +

    + Data from the Actual "Non-Main" Material Usage of all Sub-MO of Manufacturing Order that products for this Sales Order +

    +
    + + + + + + + + + + + +

    + Data from Supply List specific for this Sales Order. +

    +
    + + + + + + + + + + + + + +

    + Data from Supplier Invoices that referenced to this Sales Order, but excluded those created from PO Subcontract. + And only from invoice lines, whose Product's Job Cost Type is not set. +
    Note: product job cost type can be set in Product > Produrement window. +

    +
    + + + + + + + + + + + + +

    + Data from Supplier Invoices created from PO Subcontract specific for this Sales Order. +

    +
    + + + + + + + + +

    + Data from Labor Booking information manually entered in menu Job Booking specific for this Sales Order. +

    +
    + + + + + + + + +

    + Data from Transport Booking information manually entered in menu Job Booking specific for this Sales Order. +

    +
    + + + + + + + + + + + + + +

    + Data from Supplier Invoices that referenced to this Sales Order, but excluded those created from PO Subcontract. + And only from invoice lines, whose Product's Job Cost Type is set as Plane Ticket. +
    Note: product job cost type can be set in Product > Produrement window. +

    +
    + + + + + + + + + + + + + +

    + Data from Supplier Invoices that referenced to this Sales Order, but excluded those created from PO Subcontract. + And only from invoice lines, whose Product's Job Cost Type is set as Commission / Installation. +
    Note: product job cost type can be set in Product > Produrement window. +

    +
    + + + + + + + + + + + + +

    + Data from HR Expense Line that been assigned for this Sales Order. +

    +
    + + + + + + + + +

    + Data from Electric Booking information manually entered in menu Job Booking specific for this Sales Order. +

    +
    +
    + +
    +
    +
    + + + sqp.job.cost.sheet.graph + sqp.job.cost.sheet + + + + + + + + + + sqp.job.cost.sheet.search + sqp.job.cost.sheet + + + + + + + + + + + + + + + + + + + + + + + + + + + Job Cost Sheet + sqp.job.cost.sheet + form + tree,form,graph + {'group_by':[], 'group_by_no_leaf':0,} + + From this report, you can have an overview of cost sheet by Sales order + 10 + + + + +
    +
    diff --git a/sqp_job_cost_sheet/sale.py b/sqp_job_cost_sheet/sale.py new file mode 100644 index 0000000..0f5d4f1 --- /dev/null +++ b/sqp_job_cost_sheet/sale.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import osv, fields + + +class sale_order(osv.osv): + + _inherit = 'sale.order' + _columns = { + 'main_material': fields.boolean('Main Material'), + 'job_cost_type': fields.selection([ + ('plane_ticket', 'Plane Ticket'), + ('comm_install', 'Commission / Installation'), ], + 'Job Cost Type', + help="Project assigned Cost Type here, will be show as cost in Job Cost Sheet Report for its specified type",), + 'area_so': fields.float('Area') + } + _defaults = { + 'main_material': False + } + +sale_order() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_job_cost_sheet/sale_view.xml b/sqp_job_cost_sheet/sale_view.xml new file mode 100644 index 0000000..4419a69 --- /dev/null +++ b/sqp_job_cost_sheet/sale_view.xml @@ -0,0 +1,19 @@ + + + + + view.order.form.ext + sale.order + + + + + + + + + + + + + \ No newline at end of file diff --git a/sqp_job_cost_sheet/sqp_job_book.py b/sqp_job_cost_sheet/sqp_job_book.py new file mode 100755 index 0000000..e998c43 --- /dev/null +++ b/sqp_job_cost_sheet/sqp_job_book.py @@ -0,0 +1,85 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp import netsvc +from openerp.osv import osv, fields + + +class sqp_job_book(osv.osv): + + _description = 'Job Booking' + _name = 'sqp.job.book' + _columns = { + 'sale_order_id': fields.many2one('sale.order', 'Sales Order', required="True"), + 'labor_line': fields.one2many('sqp.job.book.labor', 'book_id', 'Labor Lines'), + 'transport_line': fields.one2many('sqp.job.book.transport', 'book_id', 'Transport Lines'), + 'electric_line': fields.one2many('sqp.job.book.electric', 'book_id', 'Transport Lines'), + } + _sql_constraints = [ + ('order_uniq', 'unique (sale_order_id)', 'This Sales Order has been used!') + ] + +sqp_job_book() + + +class sqp_job_book_labor(osv.osv): + _description = 'Job Labor Line' + _name = 'sqp.job.book.labor' + _columns = { + 'book_id': fields.many2one('sqp.job.book', 'Sales Order'), + 'order_id': fields.related('book_id', 'sale_order_id', type="many2one", relation="sale.order", string='Sales Order', store=True), + 'name': fields.text('Description'), + 'date': fields.date('Date'), + 'amount': fields.float('Amount'), + } + +sqp_job_book_labor() + + +class sqp_job_book_transport(osv.osv): + + _description = 'Job Transport Line' + _name = 'sqp.job.book.transport' + _columns = { + 'book_id': fields.many2one('sqp.job.book', 'Sales Order'), + 'order_id': fields.related('book_id', 'sale_order_id', type="many2one", relation="sale.order", string='Sales Order', store=True), + 'name': fields.text('Description'), + 'date': fields.date('Date'), + 'amount': fields.float('Amount'), + } + +sqp_job_book_transport() + + +class sqp_job_book_electric(osv.osv): + + _description = 'Job Electric Line' + _name = 'sqp.job.book.electric' + _columns = { + 'book_id': fields.many2one('sqp.job.book', 'Sales Order'), + 'order_id': fields.related('book_id', 'sale_order_id', type="many2one", relation="sale.order", string='Sales Order', store=True), + 'name': fields.text('Description'), + 'date': fields.date('Date'), + 'amount': fields.float('Amount'), + } + +sqp_job_book_electric() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_job_cost_sheet/sqp_job_book_view.xml b/sqp_job_cost_sheet/sqp_job_book_view.xml new file mode 100755 index 0000000..2f7baee --- /dev/null +++ b/sqp_job_cost_sheet/sqp_job_book_view.xml @@ -0,0 +1,80 @@ + + + + + + + view.sqp.job.book.tree + sqp.job.book + + + + + + + + view.sqp.job.book.form + sqp.job.book + +
    + +

    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + + Job Booking + ir.actions.act_window + sqp.job.book + form + tree,form + +

    + Click to add a new Job Booking. +

    +
    +
    + + +
    +
    \ No newline at end of file diff --git a/sqp_production_report/__init__.py b/sqp_production_report/__init__.py new file mode 100755 index 0000000..9a7cf54 --- /dev/null +++ b/sqp_production_report/__init__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import wizard +import sqp_report_production_status_parser +import sqp_report_production_daily_parser + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_production_report/__openerp__.py b/sqp_production_report/__openerp__.py new file mode 100755 index 0000000..4fa5e37 --- /dev/null +++ b/sqp_production_report/__openerp__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 Ecosoft Co., Ltd. (http://ecosoft.co.th). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'SQP :: Production Reports', + 'version': '1.0', + 'author': 'Ecosoft', + 'summary': '', + 'description': """ + + """, + 'category': 'Pawnshop Management', + 'website': 'http://www.ecosoft.co.th', + 'images': [], + 'depends': ['web_m2x_options', + ], + 'demo': [], + 'data': [ + 'custom_reports.xml', + 'wizard/production_status_report_wizard.xml', + 'wizard/production_daily_report_wizard.xml', + ], + 'test': [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_production_report/custom_reports.xml b/sqp_production_report/custom_reports.xml new file mode 100644 index 0000000..ef1be97 --- /dev/null +++ b/sqp_production_report/custom_reports.xml @@ -0,0 +1,47 @@ + + + + # Production Status + + Production Status Report + ir.actions.report.xml + mrp.production + sqp_report_production_status + sqp_production_report/sqp_report_production_status.jrxml + pdf + True + pdf + + + Production Status Report (Excel) + ir.actions.report.xml + pawn.order + sqp_report_production_status_excel + sqp_production_report/sqp_report_production_status.jrxml + pdf + True + xls + + # Production Daily + + Production Daily Report + ir.actions.report.xml + mrp.production + sqp_report_production_daily + sqp_production_report/sqp_report_production_daily.jrxml + pdf + True + pdf + + + Production Daily Report (Excel) + ir.actions.report.xml + mrp.production + sqp_report_production_daily_excel + sqp_production_report/sqp_report_production_daily.jrxml + pdf + True + xls + + + diff --git a/sqp_production_report/sqp_report_production_daily.jrxml b/sqp_production_report/sqp_report_production_daily.jrxml new file mode 100644 index 0000000..c4e9eb0 --- /dev/null +++ b/sqp_production_report/sqp_report_production_daily.jrxml @@ -0,0 +1,613 @@ + + + + + + + + + + + + + + + + + + + + + + = $P{date} and at.create_date - interval '17 hour' <= $P{date} + ) normal + group by dept, mo_id, line_number, product_id, date, order_qty +) normal +full outer join +( + select dept, mo_id, line_number, product_id, date, order_qty, max(new_value) - min(old_value) as ot_qty + from + (select atl.field_description dept, status.production_id mo_id, + case + when atl.field_description='S1' then status.s1_line + when atl.field_description='S2' then status.s2_line + when atl.field_description='S3' then status.s3_line + when atl.field_description='S4' then status.s4_line + when atl.field_description='S5' then status.s5_line + end as line_number, + status.product_id, status.product_qty as order_qty, date_trunc('day', at.create_date) date, + coalesce(new_value_text, '0')::float new_value, coalesce(old_value_text, '0')::float old_value + from mrp_production_status status + left outer join audittrail_log at on status.id = at.res_id + join audittrail_log_line atl on at.id = atl.log_id + where at.object_id = (select id from ir_model where model='mrp.production.status') + and atl.field_description in ('S1', 'S2', 'S3', 'S4', 'S5') + and at.create_date - interval '17 hour' > $P{date} and at.create_date - interval '24 hour' <= $P{date} + ) ot + group by dept, mo_id, line_number, product_id, date, order_qty +) ot +on normal.dept = ot.dept and normal.mo_id = ot.mo_id and normal.product_id = ot.product_id and normal.date = ot.date) history +-- join for more information on MO +join mrp_production mo on mo.id = history.mo_id +join product_product pp on pp.id = history.product_id +left outer join bom_choice_thick thick on thick.id = pp."T" +join sale_order so on so.id = mo.order_id +order by dept, date, history.line_number, so.name) a +where a.dept = $P{dept}]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <band height="42" splitType="Stretch"> + <staticText> + <reportElement x="-1" y="20" width="261" height="20"/> + <textElement verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="14" isBold="true" isUnderline="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ใบบันทึกการผลิตประจำวันที่]]></text> + </staticText> + <staticText> + <reportElement x="662" y="20" width="140" height="20"/> + <textElement textAlignment="Right" verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ วันที่บังคับใช้ 05/01/52]]></text> + </staticText> + <staticText> + <reportElement x="1" y="0" width="186" height="20"/> + <textElement verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="12" isBold="true" isUnderline="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[Square Panel Co., Ltd.]]></text> + </staticText> + <staticText> + <reportElement x="681" y="0" width="121" height="20"/> + <textElement textAlignment="Right" verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[PD - F - 70 Rev.0]]></text> + </staticText> + <textField isStretchWithOverflow="true" pattern="dd/MM/yyyy" isBlankWhenNull="true"> + <reportElement stretchType="RelativeToTallestObject" mode="Transparent" x="191" y="20" width="182" height="20" forecolor="#000000" backcolor="#FFFFFF"/> + <textElement verticalAlignment="Middle" rotation="None" lineSpacing="Single" markup="none"> + <font fontName="Monospaced" size="13" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <textFieldExpression class="java.util.Date"><![CDATA[$P{date}]]></textFieldExpression> + </textField> + </band> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sqp_production_report/sqp_report_production_daily_parser.py b/sqp_production_report/sqp_report_production_daily_parser.py new file mode 100644 index 0000000..37e7d01 --- /dev/null +++ b/sqp_production_report/sqp_report_production_daily_parser.py @@ -0,0 +1,26 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# +############################################################################## +import jasper_reports + +def sqp_report_production_daily_parser( cr, uid, ids, data, context ): + return { + 'parameters': { + 'report_date': data['form']['report_date'], + 'dept': data['form']['dept'], + }, + } + +jasper_reports.report_jasper( + 'report.sqp_report_production_daily', + 'mrp.production', + parser=sqp_report_production_daily_parser +) + +jasper_reports.report_jasper( + 'report.sqp_report_production_daily_excel', + 'mrp.production', + parser=sqp_report_production_daily_parser +) diff --git a/sqp_production_report/sqp_report_production_status.jrxml b/sqp_production_report/sqp_report_production_status.jrxml new file mode 100644 index 0000000..c9cec11 --- /dev/null +++ b/sqp_production_report/sqp_report_production_status.jrxml @@ -0,0 +1,616 @@ + + + + + + + + + + + + + + + + + + 0) delivered_qty + from ( + select mo_id, short_note, order_id, picking_id, order_type, mo_date, do_date, mo, so, cust, project, thick, + coalesce(sum(quantity),0) quantity, + coalesce(sum(inject),0) inject, + coalesce(sum(door),0) door, + coalesce(sum(steel),0) steel + from ( + select prd.id mo_id, prd.short_note, prd.order_id, prd.target_picking_id picking_id, + tag.name order_type, prd.date_planned mo_date, pick.min_date do_date, prd.name mo, cust.name cust, + so.ref_project_name project, + so.name so, (select t.name from mrp_production prd2 + join product_product pp on pp.id = prd2.product_id + join bom_choice_thick t on t.id = pp."T" + where prd2.parent_id = prd.id + and pp."T" is not null limit 1) as thick, + coalesce(status.product_qty, 0.0) quantity, + coalesce(status.s3, 0.0) inject, + coalesce(status.s4, 0.0) door, + coalesce(status.s1, 0.0) steel + from mrp_production prd + join mrp_production_status status on status.production_id = prd.id + left outer join sale_order so on so.id = prd.order_id + left outer join res_partner cust on cust.id = prd.partner_id + left outer join product_tag tag on tag.id = so.product_tag_id + left outer join stock_picking pick on pick.id = prd.target_picking_id + where prd.parent_id is null + and prd.state in ('confirmed', 'ready', 'in_production', 'done') + -- For performance, just make sure that we screen out all delivered MO + and prd.id in (select mo_id from + (select order_id, prd.id mo_id, prd.name mo_name, coalesce(sum(status.product_qty),0) qty + from mrp_production prd + join mrp_production_status status on status.production_id = prd.id + where prd.parent_id is null + and $P{partner_id} in (prd.partner_id, -1) -- for B.Grim test, and 1407 in (prd.partner_id, -1) + and prd.order_id is not null + group by prd.order_id, prd.id, prd.name) a + -- Only MO that DO's qty delivered not equal to that in MO + where a.qty > (select coalesce(sum(product_qty),0) from stock_picking p + join stock_move m on m.picking_id = p.id + where p.ref_order_id = a.order_id and position(a.mo_name in p.origin) > 0 and m.state = 'done') + -- Only MO that DO's qty with some unsent / uncancelled > 0 + and (select coalesce(sum(product_qty),0) from stock_picking p + join stock_move m on m.picking_id = p.id + where p.ref_order_id = a.order_id and position(a.mo_name in p.origin) > 0 + and p.state in ('draft', 'progress', 'auto', 'confirmed')) > 0) + ) a + group by mo_id, short_note, order_id, picking_id, order_type, mo_date, do_date, mo, so, cust, project, thick + ) b +) c +order by cust, order_type, mo_date]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <band height="42" splitType="Stretch"> + <staticText> + <reportElement x="-1" y="20" width="188" height="20"/> + <textElement verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="14" isBold="true" isUnderline="true" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[รายงานสถานะการผลิต]]></text> + </staticText> + <staticText> + <reportElement x="662" y="20" width="140" height="20"/> + <textElement textAlignment="Right" verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ วันที่บังคับใช้ 01/10/57]]></text> + </staticText> + <staticText> + <reportElement x="1" y="0" width="186" height="20"/> + <textElement verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="12" isBold="true" isUnderline="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[Square Panel Co., Ltd.]]></text> + </staticText> + <staticText> + <reportElement x="709" y="0" width="93" height="20"/> + <textElement textAlignment="Right" verticalAlignment="Middle" lineSpacing="Single"> + <font fontName="Monospaced" size="10" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[PD - F - 108]]></text> + </staticText> + </band> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sqp_production_report/sqp_report_production_status_parser.py b/sqp_production_report/sqp_report_production_status_parser.py new file mode 100644 index 0000000..f7f49cf --- /dev/null +++ b/sqp_production_report/sqp_report_production_status_parser.py @@ -0,0 +1,25 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# +############################################################################## +import jasper_reports + +def sqp_report_production_status_parser( cr, uid, ids, data, context ): + return { + 'parameters': { + 'partner_id': data['form']['partner_id'], + }, + } + +jasper_reports.report_jasper( + 'report.sqp_report_production_status', + 'mrp.production', + parser=sqp_report_production_status_parser +) + +jasper_reports.report_jasper( + 'report.sqp_report_production_status_excel', + 'mrp.production', + parser=sqp_report_production_status_parser +) diff --git a/sqp_production_report/wizard/__init__.py b/sqp_production_report/wizard/__init__.py new file mode 100755 index 0000000..75e34ae --- /dev/null +++ b/sqp_production_report/wizard/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +########################################################################### + +import production_status_report_wizard +import production_daily_report_wizard + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_production_report/wizard/production_daily_report_wizard.py b/sqp_production_report/wizard/production_daily_report_wizard.py new file mode 100755 index 0000000..9c58cd2 --- /dev/null +++ b/sqp_production_report/wizard/production_daily_report_wizard.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +import time +from openerp.osv import fields, osv +from datetime import datetime +from dateutil.relativedelta import relativedelta + +class sqp_report_production_daily(osv.osv_memory): + + _name = 'sqp.report.production.daily' + + _columns = { + 'date': fields.date('Date', required=True), + 'dept': fields.selection([('SF', 'Sheet Forming'), + ('AS', 'Assembly'), + ('IJ', 'Injection'), + ('DO', 'Door'), + ('FN', 'Finishing')], 'Department', required=True), + 'format': fields.selection([('pdf', 'PDF'), + ('xls', 'Excel')], 'Format', required=True) + } + _defaults = { + 'date': lambda *a: time.strftime('%Y-%m-%d'), + 'format': 'pdf', + } + + def start_report(self, cr, uid, ids, data, context=None): + for wiz_obj in self.read(cr, uid, ids): + if 'form' not in data: + data['form'] = {} + data['form']['report_date'] = wiz_obj['date'] + data['form']['dept'] = wiz_obj['dept'] + if wiz_obj['format'] == 'xls': + report_name = 'sqp_report_production_daily_excel' + else: + report_name = 'sqp_report_production_daily' + return { + 'type': 'ir.actions.report.xml', + 'report_name': report_name, + 'datas': data, + } + +sqp_report_production_daily() diff --git a/sqp_production_report/wizard/production_daily_report_wizard.xml b/sqp_production_report/wizard/production_daily_report_wizard.xml new file mode 100755 index 0000000..21995a2 --- /dev/null +++ b/sqp_production_report/wizard/production_daily_report_wizard.xml @@ -0,0 +1,44 @@ + + + + + Production Daily Report + sqp.report.production.daily + form + +
    + + + + + + + + + +
    +
    +
    +
    +
    + + + Production Daily Report + sqp.report.production.daily + form + tree,form + + new + Print Production Daily Report + + + + +
    +
    \ No newline at end of file diff --git a/sqp_production_report/wizard/production_status_report_wizard.py b/sqp_production_report/wizard/production_status_report_wizard.py new file mode 100755 index 0000000..a348770 --- /dev/null +++ b/sqp_production_report/wizard/production_status_report_wizard.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import fields, osv + +class sqp_report_production_status(osv.osv_memory): + + _name = 'sqp.report.production.status' + + _columns = { + 'partner_id': fields.many2one('res.partner', 'Customer', required=False), + 'format': fields.selection([('pdf', 'PDF'), + ('xls', 'Excel')], 'Format', required=True) + } + _defaults = { + 'format': 'pdf', + } + + def start_report(self, cr, uid, ids, data, context=None): + for wiz_obj in self.read(cr, uid, ids): + if 'form' not in data: + data['form'] = {} + data['form']['partner_id'] = wiz_obj['partner_id'] and wiz_obj['partner_id'][0] or -1 # -1 means all. + if wiz_obj['format'] == 'xls': + report_name = 'sqp_report_production_status_excel' + else: + report_name = 'sqp_report_production_status' + return { + 'type': 'ir.actions.report.xml', + 'report_name': report_name, + 'datas': data, + } + +sqp_report_production_status() diff --git a/sqp_production_report/wizard/production_status_report_wizard.xml b/sqp_production_report/wizard/production_status_report_wizard.xml new file mode 100755 index 0000000..324ab8c --- /dev/null +++ b/sqp_production_report/wizard/production_status_report_wizard.xml @@ -0,0 +1,43 @@ + + + + + Production Status Report + sqp.report.production.status + form + +
    + + + + + + + + +
    +
    +
    +
    +
    + + + Production Status Report + sqp.report.production.status + form + tree,form + + new + Print Production Status Report + + + + +
    +
    \ No newline at end of file diff --git a/sqp_report_thai_tax/__init__.py b/sqp_report_thai_tax/__init__.py new file mode 100755 index 0000000..c2d7ff3 --- /dev/null +++ b/sqp_report_thai_tax/__init__.py @@ -0,0 +1,3 @@ +# -*- encoding: utf-8 -*- +import report +import wizard \ No newline at end of file diff --git a/sqp_report_thai_tax/__openerp__.py b/sqp_report_thai_tax/__openerp__.py new file mode 100755 index 0000000..26a4802 --- /dev/null +++ b/sqp_report_thai_tax/__openerp__.py @@ -0,0 +1,40 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2011 Domsense s.r.l. (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'Input/Output Tax Report for SQP (Oct 14)', + 'version': '1.0', + 'category': 'Thai Localisation', + 'description': """ + + """, + 'author': 'Ecosoft', + 'website': 'http://www.ecosoft.co.th', + 'depends': ['account','jasper_reports','web_m2o_enhanced','advance_and_additional_discount'], + 'init_xml': [], + 'update_xml': [ + "reports.xml", + "wizard/sqp_report_thai_tax_wizard.xml", + ], + 'demo_xml': [], + 'installable': True, +} +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/sqp_report_thai_tax/report/__init__.py b/sqp_report_thai_tax/report/__init__.py new file mode 100755 index 0000000..a4bf5b6 --- /dev/null +++ b/sqp_report_thai_tax/report/__init__.py @@ -0,0 +1 @@ +import parser diff --git a/sqp_report_thai_tax/report/parser.py b/sqp_report_thai_tax/report/parser.py new file mode 100755 index 0000000..98e5c6e --- /dev/null +++ b/sqp_report_thai_tax/report/parser.py @@ -0,0 +1,27 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# +############################################################################## +import jasper_reports +from osv import osv,fields +import pooler +import datetime + +def sqp_report_thai_tax_parser( cr, uid, ids, data, context ): + return { + 'parameters': { + 'company_id': data['form']['company_id'], + 'period_id': data['form']['period_id'], + 'tax_id': data['form']['tax_id'], + 'base_code_id': data['form']['base_code_id'], + 'tax_code_id': data['form']['tax_code_id'], + 'type_tax_use': data['form']['type_tax_use'], + }, + } + +jasper_reports.report_jasper( + 'report.sqp_report_thai_tax', + 'account.move', + parser=sqp_report_thai_tax_parser +) diff --git a/sqp_report_thai_tax/report/sqp_report_thai_tax.jrxml b/sqp_report_thai_tax/report/sqp_report_thai_tax.jrxml new file mode 100755 index 0000000..d1607be --- /dev/null +++ b/sqp_report_thai_tax/report/sqp_report_thai_tax.jrxml @@ -0,0 +1,555 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + 0) + +---------------------------------------- +-- union Cancelled Invoice (Sales) ----- +---------------------------------------- +union +(select rc.name as company_name, rp.vat as tax, ap.name as period, af.name as fiscalyear, +'CANCELLED' as partner_name, '-' as vat, '-' as branch, +ai.date_invoice, ai.id as doc_id, ai.internal_number as doc_number, null as supplier_doc_number, 0.0 as tax_amount, 0.0 as base_amount +from account_invoice ai +join res_company rc on rc.id = ai.company_id +join res_partner rp on rp.id = rc.partner_id +join account_period ap on ap.id = ai.period_id +join account_fiscalyear af on af.id = ap.fiscalyear_id +join res_partner partner on partner.id = ai.partner_id +-- only invoice with lines that has the tax_id selected +and ai.id in (select distinct ai.id from account_invoice ai +join account_invoice_line ail on ail.invoice_id = ai.id +join account_invoice_line_tax ailt on ailt.invoice_line_id = ail.id +where ai.company_id = $P{company_id} and ai.period_id = $P{period_id} and ailt.tax_id = $P{tax_id} +and ai.state = 'cancel' and ai.type in ('out_invoice', 'out_refund') and ai.internal_number is not null)) + + +------------------------------------------ + +---------------------------------- +-- union VAT INFO (Purchase) ----- +---------------------------------- +union +(select rc.name as company_name, rp.vat as tax, ap.name as period, af.name as fiscalyear, +ail.vatinfo_supplier_name as partner_name, ail.vatinfo_tin as vat, ail.vatinfo_branch as branch, +ail.vatinfo_date as date_invoice, ai.id as doc_id, null as doc_number, ail.vatinfo_number as supplier_doc_number, -ail.vatinfo_tax_amount as tax_amount, -ail.vatinfo_base_amount as base_amount +from account_invoice_line ail +join account_invoice ai on ai.id = ail.invoice_id and ai.state in ('open','paid') -- For purhcase, we don't need cancel state +join account_move am on am.id = ai.vatinfo_move_id +join res_company rc on rc.id = am.company_id +join res_partner rp on rp.id = rc.partner_id +join account_period ap on ap.id = am.period_id +join account_fiscalyear af on af.id = ap.fiscalyear_id +where am.company_id = $P{company_id} and am.period_id = $P{period_id} and ail.vatinfo_tax_id = $P{tax_id} +and ail.vatinfo_tax_amount > 0) +------------------------------------------ + +---------------------------------- +-- union HR EXPENSE (Purchase) --- +---------------------------------- +union +(select rc.name as company_name, rp.vat as tax, ap.name as period, af.name as fiscalyear, +hel.supplier_name as partner_name, hel.vat as vat, hel.branch as branch, +hel.date_value as date_invoice, he.id as doc_id, null as doc_number, hel.ref as supplier_doc_number, -hel.tax_amount as tax_amount, -hel.unit_amount*hel.unit_quantity as base_amount +from hr_expense_line hel +join hr_expense_expense he on he.id = hel.expense_id and he.state in ('done','paid') +join account_move am on am.id = he.account_move_id +join res_company rc on rc.id = am.company_id +join res_partner rp on rp.id = rc.partner_id +join account_period ap on ap.id = am.period_id +join account_fiscalyear af on af.id = ap.fiscalyear_id +where am.company_id = $P{company_id} and am.period_id = $P{period_id} and hel.tax_id = $P{tax_id} +and hel.tax_amount > 0) +------------------------------------------ + +) b + +order by date_invoice, doc_number, supplier_doc_number]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <band height="107" splitType="Stretch"> + <staticText> + <reportElement x="0" y="0" width="555" height="20"> + <printWhenExpression><![CDATA[$P{type_tax_use} == "sale" ? true : false]]></printWhenExpression> + </reportElement> + <textElement textAlignment="Center" lineSpacing="Single" markup="none"> + <font fontName="Monospaced" size="14" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[รายงานภาษีขาย]]></text> + </staticText> + <staticText> + <reportElement x="16" y="28" width="115" height="15"/> + <textElement textAlignment="Right" lineSpacing="Single" markup="none"> + <font fontName="Monospaced" size="11" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[เดือนภาษี]]></text> + </staticText> + <staticText> + <reportElement x="297" y="28" width="115" height="15"/> + <textElement textAlignment="Right" lineSpacing="Single" markup="none"> + <font fontName="Monospaced" size="11" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ปี]]></text> + </staticText> + <textField> + <reportElement x="135" y="28" width="100" height="15"/> + <textElement> + <font fontName="Monospaced" size="11" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{period}]]></textFieldExpression> + </textField> + <textField> + <reportElement x="416" y="28" width="100" height="15"/> + <textElement> + <font fontName="Monospaced" size="11" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{fiscalyear}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="0" y="59" width="182" height="15"/> + <textElement lineSpacing="Single" markup="none"> + <font fontName="Monospaced" size="9" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ชื่อผู้ประกอบการ]]></text> + </staticText> + <staticText> + <reportElement x="286" y="59" width="170" height="15"/> + <textElement textAlignment="Right" lineSpacing="Single" markup="none"> + <font fontName="Monospaced" size="9" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[เลขประจำตัวผู้เสียภาษีอากร]]></text> + </staticText> + <textField isBlankWhenNull="true"> + <reportElement x="93" y="59" width="247" height="15"/> + <textElement> + <font fontName="Monospaced" size="9" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{company_name}]]></textFieldExpression> + </textField> + <staticText> + <reportElement x="0" y="83" width="182" height="15"/> + <textElement lineSpacing="Single" markup="none"> + <font fontName="Monospaced" size="9" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[ชื่อสถานประกอบการ]]></text> + </staticText> + <line> + <reportElement x="93" y="73" width="240" height="1"/> + </line> + <textField isBlankWhenNull="true"> + <reportElement x="390" y="58" width="165" height="15"/> + <textElement textAlignment="Right"> + <font fontName="Monospaced" size="9" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{tax}]]></textFieldExpression> + </textField> + <line> + <reportElement x="469" y="72" width="85" height="1"/> + </line> + <textField isBlankWhenNull="true"> + <reportElement x="93" y="83" width="247" height="15"/> + <textElement> + <font fontName="Monospaced" size="9" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H"/> + </textElement> + <textFieldExpression class="java.lang.String"><![CDATA[$F{company_name}]]></textFieldExpression> + </textField> + <line> + <reportElement x="93" y="97" width="240" height="1"/> + </line> + <staticText> + <reportElement x="324" y="84" width="92" height="15"/> + <textElement textAlignment="Right" lineSpacing="Single" markup="none"> + <font fontName="Monospaced" size="9" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[สำนักงานใหญ่]]></text> + </staticText> + <staticText> + <reportElement x="425" y="84" width="47" height="15"/> + <textElement textAlignment="Right" lineSpacing="Single" markup="none"> + <font fontName="Monospaced" size="9" isBold="false" pdfFontName="Garuda.ttf" pdfEncoding="Identity-H" isPdfEmbedded="false"/> + </textElement> + <text><![CDATA[สาขาที่]]></text> + </staticText> + <rectangle> + <reportElement x="340" y="84" width="10" height="10"/> + </rectangle> + <rectangle> + <reportElement x="427" y="84" width="10" height="10"/> + </rectangle> + <line> + <reportElement x="489" y="97" width="65" height="1"/> + </line> + </band> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sqp_report_thai_tax/reports.xml b/sqp_report_thai_tax/reports.xml new file mode 100755 index 0000000..cd9927e --- /dev/null +++ b/sqp_report_thai_tax/reports.xml @@ -0,0 +1,15 @@ + + + + + VAT Report + ir.actions.report.xml + account.move + sqp_report_thai_tax + sqp_report_thai_tax/report/sqp_report_thai_tax.jrxml + pdf + True + pdf + + + diff --git a/sqp_report_thai_tax/wizard/__init__.py b/sqp_report_thai_tax/wizard/__init__.py new file mode 100755 index 0000000..edc1b35 --- /dev/null +++ b/sqp_report_thai_tax/wizard/__init__.py @@ -0,0 +1,2 @@ +# -*- encoding: utf-8 -*- +import sqp_report_thai_tax \ No newline at end of file diff --git a/sqp_report_thai_tax/wizard/sqp_report_thai_tax.py b/sqp_report_thai_tax/wizard/sqp_report_thai_tax.py new file mode 100755 index 0000000..cc50c79 --- /dev/null +++ b/sqp_report_thai_tax/wizard/sqp_report_thai_tax.py @@ -0,0 +1,64 @@ +# -*- encoding: utf-8 -*- +from osv import fields,osv +import time + +class sqp_report_thai_tax_wizard(osv.osv_memory): + + _name = 'sqp.report.thai.tax.wizard' + + def onchange_tax_id(self, cr, uid, ids, tax_id, context=None): + if not tax_id: + return {'value':{}} + tax = self.pool.get('account.tax').browse(cr, uid, tax_id, context) + return {'value':{'base_code_id': tax.base_code_id.id, + 'tax_code_id': tax.tax_code_id.id, + 'type_tax_use': tax.type_tax_use, }} + + def _get_company(self, cr, uid, context=None): + user_pool = self.pool.get('res.users') + company_pool = self.pool.get('res.company') + user = user_pool.browse(cr, uid, uid, context=context) + company_id = user.company_id + if not company_id: + company_id = company_pool.search(cr, uid, []) + else: + company_id = company_id.id + return company_id or False + + def _get_period(self, cr, uid, context=None): + """Return default period value""" + ctx = dict(context or {}, account_period_prefer_normal=True) + period_ids = self.pool.get('account.period').find(cr, uid, context=ctx) + return period_ids and period_ids[0] or False + + _columns = { + 'company_id': fields.many2one('res.company', 'Company', required=True), + 'period_id': fields.many2one('account.period', 'Period', required=True), + 'tax_id': fields.many2one('account.tax', 'Tax', domain=[('type_tax_use','in',('sale','purchase')), ('is_wht','=',False)], required=True), + 'base_code_id': fields.many2one('account.tax.code', 'Base Code', domain=[('id','=', False)], required=True), + 'tax_code_id': fields.many2one('account.tax.code', 'Tax Code', required=True), + 'type_tax_use': fields.selection([('sale','Sale'),('purchase','Purchase'),('all','All')], 'Tax Application', required=True) + } + + _defaults = { + 'company_id': _get_company, + 'period_id': _get_period, + } + + def start_report(self, cr, uid, ids, data, context=None): + for wiz_obj in self.read(cr,uid,ids): + if 'form' not in data: + data['form'] = {} + data['form']['company_id'] = wiz_obj['company_id'][0] + data['form']['period_id'] = wiz_obj['period_id'][0] + data['form']['tax_id'] = wiz_obj['tax_id'][0] + data['form']['base_code_id'] = wiz_obj['base_code_id'][0] + data['form']['tax_code_id'] = wiz_obj['tax_code_id'][0] + data['form']['type_tax_use'] = wiz_obj['type_tax_use'] + return { + 'type': 'ir.actions.report.xml', + 'report_name': 'sqp_report_thai_tax', + 'datas': data, + } + +sqp_report_thai_tax_wizard() \ No newline at end of file diff --git a/sqp_report_thai_tax/wizard/sqp_report_thai_tax_wizard.xml b/sqp_report_thai_tax/wizard/sqp_report_thai_tax_wizard.xml new file mode 100755 index 0000000..1507a0c --- /dev/null +++ b/sqp_report_thai_tax/wizard/sqp_report_thai_tax_wizard.xml @@ -0,0 +1,42 @@ + + + + + Tax Report + sqp.report.thai.tax.wizard + form + +
    + + + + + + + + + + + + + + + + + + False + + +
    + + + stock.picking.out.form + stock.picking.out + + + + + + + + {'invisible':[('is_supply_list','=',True)]} + + + + + + + + + + + view.picking.out.tree.ext + + stock.picking.out + + + + + + + + + + + view.move.picking.tree.ext + + stock.move + + + + + + + + + + + stock.move.form.ext + stock.move + + + + + + + +
    +
    \ No newline at end of file diff --git a/stock_supply_list/stock_workflow.xml b/stock_supply_list/stock_workflow.xml new file mode 100755 index 0000000..87938e3 --- /dev/null +++ b/stock_supply_list/stock_workflow.xml @@ -0,0 +1,33 @@ + + + + + + + + progress + function + action_progress() + + + + + + button_progress + + + + + + button_confirm + + + + + + allow_cancel() + button_cancel + + + + diff --git a/tmp_case_no_order/__init__.py b/tmp_case_no_order/__init__.py new file mode 100755 index 0000000..155c4ef --- /dev/null +++ b/tmp_case_no_order/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import product_rapid_create +import mrp + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/tmp_case_no_order/__openerp__.py b/tmp_case_no_order/__openerp__.py new file mode 100755 index 0000000..05f40a4 --- /dev/null +++ b/tmp_case_no_order/__openerp__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name' : "Temp Fix for MO with no SO ref", + 'author' : 'Ecosoft', + 'summary': '', + 'description': """ + +* As MO will be created without SO ref, no SO will be required to create ont-time product. +* User will have to manually key in SO ref (temp) and Customer (temp) +* For DO created after confirm MO, use the temp values + + +""", + 'category': 'Manufacturing', + 'website' : 'http://www.ecosoft.co.th', + 'images' : [], + 'depends' : ['product_bom_template','mrp_sale_rel','ext_mrp'], + 'demo' : [], + 'data' : [ + 'product_rapid_create_view.xml', + 'mrp_view.xml' + ], + 'test' : [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/tmp_case_no_order/mrp.py b/tmp_case_no_order/mrp.py new file mode 100755 index 0000000..7f604b9 --- /dev/null +++ b/tmp_case_no_order/mrp.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from osv import osv, fields + +class mrp_production(osv.osv): + + _inherit = 'mrp.production' + + _columns = { + 'tmp_partner_id': fields.many2one('res.partner', 'Customer (temp)', required=False, help='Only used for old MO without SO in new system'), + 'tmp_ref_order': fields.char('Sales Order (temp)', size=64, required=False, help='Only used for old MO without SO in new system'), + } + + def action_confirm(self, cr, uid, ids, context=None): + # For case, no order_id and no target_picking_idbut user type in SO number manually + for production in self.browse(cr, uid, ids): + picking_id = False + if not production.order_id and not production.target_picking_id \ + and production.tmp_ref_order: + picking_id = self._create_picking(cr, uid, production, production.product_lines, None, context=context) + if picking_id: + self.write(cr, uid, [production.id], {'target_picking_id': picking_id}) + res = super(mrp_production, self).action_confirm(cr, uid, ids, context=context) + return res + + # Assign partner_id + def _prepare_production_picking(self, cr, uid, production, context=None): + res = super(mrp_production, self)._prepare_production_picking(cr, uid, production, context=context) + if not res.get('partner_id', False): + res['partner_id'] = production.tmp_partner_id and production.tmp_partner_id.id or False + return res + + # Assign partner_id and location + def _prepare_production_line_move(self, cr, uid, production, line, picking_id, date_planned, context=None): + res = super(mrp_production, self)._prepare_production_line_move(cr, uid, production, line, picking_id, date_planned, context=context) + default_shop = self.pool.get('sale.shop').browse(cr, uid, 1) # Default to Square Panel shop + if not res.get('location_id', False): + res['location_id'] = default_shop and default_shop.warehouse_id.lot_stock_id.id or False + if not res.get('location_dest_id', False): + res['location_dest_id'] = default_shop and default_shop.warehouse_id.lot_output_id.id or False + if not res.get('partner_id', False): + res['partner_id'] = production.tmp_partner_id and production.tmp_partner_id.id or False + return res + +mrp_production() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/tmp_case_no_order/mrp_view.xml b/tmp_case_no_order/mrp_view.xml new file mode 100755 index 0000000..d618171 --- /dev/null +++ b/tmp_case_no_order/mrp_view.xml @@ -0,0 +1,47 @@ + + + + + mrp.production.form.view.ext2 + mrp.production + + + + + + + + + + + + + + + + mrp.production.tree.view.ext + mrp.production + + + + + + + + + + view.mrp.production.filter.ext + mrp.production + + + + + + + + + + + + + \ No newline at end of file diff --git a/tmp_case_no_order/product_rapid_create.py b/tmp_case_no_order/product_rapid_create.py new file mode 100755 index 0000000..34dd77a --- /dev/null +++ b/tmp_case_no_order/product_rapid_create.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +import netsvc +from osv import osv, fields + +class product_rapid_create(osv.osv): + + _inherit = 'product.rapid.create' + _columns = { + 'temp_no_order_ref': fields.boolean('No Sales-Order Ref', required=False, help="Special case, only for old project with no Sales Order Reference"), + } + +product_rapid_create() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/tmp_case_no_order/product_rapid_create_view.xml b/tmp_case_no_order/product_rapid_create_view.xml new file mode 100755 index 0000000..9290904 --- /dev/null +++ b/tmp_case_no_order/product_rapid_create_view.xml @@ -0,0 +1,16 @@ + + + + + view.product.rapid.create.form.ext + product.rapid.create + + + + + + + + + + \ No newline at end of file diff --git a/tmp_product_bom_template/__init__.py b/tmp_product_bom_template/__init__.py new file mode 100755 index 0000000..0eabbc8 --- /dev/null +++ b/tmp_product_bom_template/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import mrp + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/tmp_product_bom_template/__openerp__.py b/tmp_product_bom_template/__openerp__.py new file mode 100755 index 0000000..b88013f --- /dev/null +++ b/tmp_product_bom_template/__openerp__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': " Temp extension for product_bom_template", + 'author': 'Kitti U.', + 'summary': '', + 'description': """ +This module will be used temporarilly. + +For the Product Line tab in MO, to have special of calculate injection. + +* Add new "Special" field. +* With special field, calculate with attitional formula + +""", + 'category': 'Manufacturing', + 'website': 'http://www.ecosoft.co.th', + 'images': [], + 'depends': ['product_bom_template'], + 'demo': [], + 'data': [ + 'mrp_view.xml', + ], + 'test': [ + ], + 'auto_install': False, + 'application': True, + 'installable': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/tmp_product_bom_template/mrp.py b/tmp_product_bom_template/mrp.py new file mode 100755 index 0000000..0c4bcef --- /dev/null +++ b/tmp_product_bom_template/mrp.py @@ -0,0 +1,207 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +import time + +from datetime import datetime, timedelta +from openerp.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_DATETIME_FORMAT, DATETIME_FORMATS_MAP, float_compare +from dateutil.relativedelta import relativedelta +import netsvc +from osv import osv, fields +from tools.translate import _ + + +class mrp_production_product_line(osv.osv): + + _inherit = 'mrp.production.product.line' + + # Method override + def _get_product_line(self, cr, uid, ids, context=None): + """ return all product_line for the same updated product """ + product_line_ids = [] + for product in self.browse(cr, uid, ids, context=context): + product_line_ids += self.pool.get('mrp.production.product.line').search(cr, uid, [('product_id','=',product.id)], context=context) + return product_line_ids + + # Method override + def _get_machine_setup_params(self, cr, uid, ids, field_name, arg, context=None): + setup_detail_obj = self.pool.get('mrp.machine.setup.master.line') + res = {} + for product_line in self.browse(cr, uid, ids, context=context): + res[product_line.id] = { + 'W': False, 'L': False, 'T': False, + 'line1_inject1': False, 'line1_inject2': False, 'line2_inject1': False, 'line2_inject2': False, + 'line3_inject1': False, 'line3_inject2': False, 'line4_inject1': False, 'line4_inject2': False, + 'line5_inject1': False, 'line5_inject2': False, + 'line1_settime': False, 'line2_settime': False, 'line3_settime': False, + 'line4_settime': False, 'line5_settime': False, + 'cut_area': False, 'remark': False, + } + product = product_line.product_id + # For all Machine Lines, these values are common. + res[product_line.id] = { + 'W': product.W, + 'L': product.L, + 'T': product.T.value, + 'cut_area': product.cut_area, + 'remark': product.remark, + } + # Loop through each machine (1-5) to calculate injection and set time. + master_ids = setup_detail_obj.search(cr, uid, [('thickness','=', product.T.id)]) + if master_ids: + W = product.W or 0.0 + L = product.L or 0.0 + T = product.T.value or 0.0 + sets = setup_detail_obj.browse(cr, uid, master_ids) + # For each machine (line1, line2, ..., line5), calculate values + if product_line.is_special: # kittiu: Additional Calculation + for set in sets: + factor = set.flowrate or (set.correction_factor and 1/set.correction_factor) or 0.0 + res[product_line.id].update({ + set.machine_id.name + '_inject1': factor and (W*L*T/1000000000-(product.cut_area*T/1000))*set.density*((set.overpack_1/100)+1)/factor - (50*L*T/1000000000)*set.density*((set.overpack_1/100)+1)/factor or 0.0, + set.machine_id.name + '_inject2': factor and (W*L*T/1000000000-(product.cut_area*T/1000))*set.density*((set.overpack_2/100)+1)/factor - (50*L*T/1000000000)*set.density*((set.overpack_1/100)+1)/factor or 0.0, + set.machine_id.name + '_settime': set.settime, + }) + else: # -- + for set in sets: + factor = set.flowrate or (set.correction_factor and 1/set.correction_factor) or 0.0 + res[product_line.id].update({ + set.machine_id.name + '_inject1': factor and (W*L*T/1000000000-(product.cut_area*T/1000))*set.density*((set.overpack_1/100)+1)/factor or 0.0, + set.machine_id.name + '_inject2': factor and (W*L*T/1000000000-(product.cut_area*T/1000))*set.density*((set.overpack_2/100)+1)/factor or 0.0, + set.machine_id.name + '_settime': set.settime, + }) + return res + + _columns = { + 'W':fields.function(_get_machine_setup_params, string="Width (W)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'L':fields.function(_get_machine_setup_params, string="Length (L)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'T':fields.function(_get_machine_setup_params, string="Thick (T)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line1_inject1':fields.function(_get_machine_setup_params, string="L1 (am)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line1_inject2':fields.function(_get_machine_setup_params, string="L1 (pm)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line2_inject1':fields.function(_get_machine_setup_params, string="L2 (am)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line2_inject2':fields.function(_get_machine_setup_params, string="L2 (pm)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line3_inject1':fields.function(_get_machine_setup_params, string="L3 (am)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line3_inject2':fields.function(_get_machine_setup_params, string="L3 (pm)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line4_inject1':fields.function(_get_machine_setup_params, string="L4 (am)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line4_inject2':fields.function(_get_machine_setup_params, string="L4 (pm)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line5_inject1':fields.function(_get_machine_setup_params, string="L5 (kg) (am)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line5_inject2':fields.function(_get_machine_setup_params, string="L5 (kg) (pm)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line1_settime':fields.function(_get_machine_setup_params, string="Set Time (L1)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line2_settime':fields.function(_get_machine_setup_params, string="Set Time (L2)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line3_settime':fields.function(_get_machine_setup_params, string="Set Time (L3)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line4_settime':fields.function(_get_machine_setup_params, string="Set Time (L4)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'line5_settime':fields.function(_get_machine_setup_params, string="Set Time (L5)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'cut_area':fields.function(_get_machine_setup_params, string="Cut Area (sqm)", type="float", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'remark':fields.function(_get_machine_setup_params, string="Remark", type="char", multi="all", + store={ + 'mrp.production.product.line': (lambda self, cr, uid, ids, c={}: ids, None, 10), + 'product.product': (_get_product_line, ['W','L','T','bom_product_type','cut_area','remark'], 10) + }), + 'is_special': fields.boolean('Special', readonly='False', help='Selection this option will re-calculate injection rate with formula = - (50*L*T/1000000000)*density*((overpack_1/100)+1)/factor') + } + + def toggle_special_product(self, cr, uid, ids, context=None): + results = self.read(cr, uid, ids, ['is_special'], context=context) + for result in results: + if result['is_special']: + self.write(cr, uid, [result['id']], {'is_special': False}, context=context) + else: + self.write(cr, uid, [result['id']], {'is_special': True}, context=context) + return True + +mrp_production_product_line() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/tmp_product_bom_template/mrp_view.xml b/tmp_product_bom_template/mrp_view.xml new file mode 100755 index 0000000..89163c3 --- /dev/null +++ b/tmp_product_bom_template/mrp_view.xml @@ -0,0 +1,36 @@ + + + + + + mrp.production.product.form.view + mrp.production.product.line + + + + + + + + + + + mrp.production.product.tree.view.ext + mrp.production.product.line + + + + +