/*! * clipboard.js v1.5.16 * https://zenorocha.github.io/clipboard.js * * Licensed MIT © Zeno Rocha */ !function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.Clipboard=e()}}(function(){var e,t,n;return function e(t,n,i){function o(a,c){if(!n[a]){if(!t[a]){var l="function"==typeof require&&require;if(!c&&l)return l(a,!0);if(r)return r(a,!0);var s=new Error("Cannot find module '"+a+"'");throw s.code="MODULE_NOT_FOUND",s}var u=n[a]={exports:{}};t[a][0].call(u.exports,function(e){var n=t[a][1][e];return o(n?n:e)},u,u.exports,e,t,n,i)}return n[a].exports}for(var r="function"==typeof require&&require,a=0;a0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function e(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function e(){var t=this,n="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return t.removeFake()},this.fakeHandler=document.body.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[n?"right":"left"]="-9999px";var i=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.addEventListener("focus",window.scrollTo(0,i)),this.fakeElem.style.top=i+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,document.body.appendChild(this.fakeElem),this.selectedText=(0,o.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function e(){this.fakeHandler&&(document.body.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(document.body.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function e(){this.selectedText=(0,o.default)(this.target),this.copyText()}},{key:"copyText",value:function e(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function e(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function e(){this.target&&this.target.blur(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function e(){this.removeFake()}},{key:"action",set:function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function e(){return this._action}},{key:"target",set:function e(t){if(void 0!==t){if(!t||"object"!==("undefined"==typeof t?"undefined":r(t))||1!==t.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function e(){return this._target}}]),e}();e.exports=c})},{select:5}],8:[function(t,n,i){!function(o,r){if("function"==typeof e&&e.amd)e(["module","./clipboard-action","tiny-emitter","good-listener"],r);else if("undefined"!=typeof i)r(n,t("./clipboard-action"),t("tiny-emitter"),t("good-listener"));else{var a={exports:{}};r(a,o.clipboardAction,o.tinyEmitter,o.goodListener),o.clipboard=a.exports}}(this,function(e,t,n,i){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function l(e,t){var n="data-clipboard-"+e;if(t.hasAttribute(n))return t.getAttribute(n)}var s=o(t),u=o(n),f=o(i),d=function(){function e(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText}},{key:"listenClick",value:function e(t){var n=this;this.listener=(0,f.default)(t,"click",function(e){return n.onClick(e)})}},{key:"onClick",value:function e(t){var n=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new s.default({action:this.action(n),target:this.target(n),text:this.text(n),trigger:n,emitter:this})}},{key:"defaultAction",value:function e(t){return l("action",t)}},{key:"defaultTarget",value:function e(t){var n=l("target",t);if(n)return document.querySelector(n)}},{key:"defaultText",value:function e(t){return l("text",t)}},{key:"destroy",value:function e(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}]),t}(u.default);e.exports=h})},{"./clipboard-action":7,"good-listener":4,"tiny-emitter":6}]},{},[8])(8)});/*! ./QueryClientProvider.js */ /*! ./QueryErrorResetBoundary.js */ /*! ./cjs/react-jsx-runtime.development.js */ /*! ./errorBoundaryUtils.js */ /*! ./focusManager.js */ /*! ./infiniteQueryBehavior.js */ /*! ./isRestoring.js */ /*! ./mutation.js */ /*! ./mutationCache.js */ /*! ./notifyManager.js */ /*! ./onlineManager.js */ /*! ./query.js */ /*! ./queryCache.js */ /*! ./queryObserver.js */ /*! ./removable.js */ /*! ./retryer.js */ /*! ./subscribable.js */ /*! ./suspense.js */ /*! ./useBaseQuery.js */ /*! ./utils.js */ /*! @tanstack/query-core */ /*! @tanstack/react-query */ /*! react */ /*! react/jsx-runtime */ /*!**************************!*\ !*** external ["React"] ***! \**************************/ /*!*******************************************!*\ !*** ./node_modules/react/jsx-runtime.js ***! \*******************************************/ /*!******************************************************!*\ !*** ./node_modules/@elementor/query/dist/index.mjs ***! \******************************************************/ /*!*****************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/query.js ***! \*****************************************************************/ /*!*****************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/utils.js ***! \*****************************************************************/ /*!*****************************************************************!*\ !*** ./node_modules/react/cjs/react-jsx-runtime.development.js ***! \*****************************************************************/ /*!******************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/utils.js ***! \******************************************************************/ /*!*******************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/retryer.js ***! \*******************************************************************/ /*!********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutation.js ***! \********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/removable.js ***! \*********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/suspense.js ***! \*********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useQuery.js ***! \*********************************************************************/ /*!**********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryCache.js ***! \**********************************************************************/ /*!***********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryClient.js ***! \***********************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/focusManager.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/subscribable.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/isRestoring.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useMutation.js ***! \************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutationCache.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/notifyManager.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/onlineManager.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryObserver.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useBaseQuery.js ***! \*************************************************************************/ /*!****************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutationObserver.js ***! \****************************************************************************/ /*!*****************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useInfiniteQuery.js ***! \*****************************************************************************/ /*!*******************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/errorBoundaryUtils.js ***! \*******************************************************************************/ /*!********************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/QueryClientProvider.js ***! \********************************************************************************/ /*!*********************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/infiniteQueryBehavior.js ***! \*********************************************************************************/ /*!*********************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/infiniteQueryObserver.js ***! \*********************************************************************************/ /*!************************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/QueryErrorResetBoundary.js ***! \************************************************************************************/ {"id":7586,"date":"2024-12-10T13:39:57","date_gmt":"2024-12-10T06:39:57","guid":{"rendered":"https:\/\/hongling.com.vn\/?p=7586---2f2f627e-ce0c-4adf-aab0-ab80dd0cb749"},"modified":"2024-12-10T14:29:47","modified_gmt":"2024-12-10T07:29:47","slug":"them-vu-viec-my-an-lien-bi-canh-bao-o-eu","status":"publish","type":"post","link":"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/","title":{"rendered":"Th\u00eam v\u1ee5 vi\u1ec7c m\u1ef3 \u0103n li\u1ec1n b\u1ecb c\u1ea3nh b\u00e1o \u1edf EU"},"content":{"rendered":"

V\u1ee5 Khoa h\u1ecdc v\u00e0 C\u00f4ng ngh\u1ec7 (B\u1ed9 C\u00f4ng Th\u01b0\u01a1ng) \u0111\u00e3 v\u00e0o cu\u1ed9c, x\u00e1c minh th\u00f4ng tin v\u1ec1 vi\u1ec7c \u0110\u1ee9c, Ba Lan, Malta g\u1eedi c\u1ea3nh b\u00e1o \u0111\u1ed1i v\u1edbi s\u1ea3n ph\u1ea9m m\u1ef3 \u0103n li\u1ec1n, b\u00e1nh ph\u1edf vi ph\u1ea1m c\u00e1c quy \u0111\u1ecbnh v\u1ec1 an to\u00e0n th\u1ef1c ph\u1ea9m.<\/p>\n

\n

V\u0103n ph\u00f2ng Th\u00f4ng b\u00e1o v\u00e0 \u0111i\u1ec3m h\u1ecfi \u0111\u00e1p qu\u1ed1c gia v\u1ec1 v\u1ec7 sinh d\u1ecbch t\u1ec5 v\u00e0 ki\u1ec3m d\u1ecbch \u0111\u1ed9ng th\u1ef1c v\u1eadt Vi\u1ec7t Nam (V\u0103n ph\u00f2ng SPS Vi\u1ec7t Nam), B\u1ed9 N\u00f4ng nghi\u1ec7p v\u00e0 Ph\u00e1t tri\u1ec3n n\u00f4ng th\u00f4n, v\u1eeba th\u00f4ng tin v\u1ec1 vi\u1ec7c \u0110\u1ee9c, Ba Lan, Malta g\u1eedi c\u1ea3nh b\u00e1o \u0111\u1ed1i v\u1edbi c\u00e1c s\u1ea3n ph\u1ea9m m\u1ef3 \u0103n li\u1ec1n, b\u00e1nh ph\u1edf vi ph\u1ea1m c\u00e1c quy \u0111\u1ecbnh v\u1ec1 an to\u00e0n th\u1ef1c ph\u1ea9m c\u1ee7a EU.<\/p>\n

Trao \u0111\u1ed5i v\u1edbi\u00a0D\u00e2n tr\u00ed,<\/em>\u00a0m\u1ed9t l\u00e3nh \u0111\u1ea1o V\u1ee5 Khoa h\u1ecdc v\u00e0 C\u00f4ng ngh\u1ec7 (B\u1ed9 C\u00f4ng Th\u01b0\u01a1ng) cho bi\u1ebft ngay sau khi nh\u1eadn \u0111\u01b0\u1ee3c th\u00f4ng tin li\u00ean quan \u0111\u1ebfn v\u1ee5 vi\u1ec7c, V\u1ee5 \u0111\u00e3 v\u00e0o cu\u1ed9c ki\u1ec3m tra, x\u00e1c minh th\u00f4ng tin. “C\u01a1 quan ch\u1ee9c n\u0103ng s\u1ebd th\u00f4ng b\u00e1o khi c\u00f3 th\u00f4ng tin c\u1ee5 th\u1ec3”, v\u1ecb n\u00e0y n\u00f3i v\u00e0 cho bi\u1ebft kho\u1ea3ng \u0111\u1ea7u tu\u1ea7n sau s\u1ebd c\u00f3 k\u1ebft qu\u1ea3 ki\u1ec3m tra, x\u00e1c minh.<\/p>\n

C\u00f2n theo th\u00f4ng tin r\u00e0 so\u00e1t s\u01a1 b\u1ed9 t\u1eeb V\u1ee5 n\u00e0y, t\u00ednh \u0111\u1ebfn cu\u1ed1i gi\u1edd chi\u1ec1u 22\/7, trong 3 tr\u01b0\u1eddng h\u1ee3p b\u1ecb c\u1ea3nh b\u00e1o ch\u1ec9 c\u00f3 1 tr\u01b0\u1eddng h\u1ee3p \u0111\u01b0\u1ee3c x\u00e1c \u0111\u1ecbnh c\u00f3 ch\u1ec9 ti\u00eau\u00a0ethylene oxide\u00a0(EO) v\u01b0\u1ee3t ng\u01b0\u1ee1ng quy \u0111\u1ecbnh c\u1ee7a EU.<\/p>\n

C\u1ee5 th\u1ec3, \u0111\u1ed1i v\u1edbi s\u1ea3n ph\u1ea9m b\u00e1nh ph\u1edf hi\u1ec7u Nguy\u1ec5n Gia \u0111\u01b0\u1ee3c Malta x\u00e1c \u0111\u1ecbnh m\u1ed1i nguy l\u00e0 s\u1ea3n xu\u1ea5t t\u1eeb g\u1ea1o bi\u1ebfn \u0111\u1ed5i gene,\u00a0doanh nghi\u1ec7p\u00a0c\u00f3 tr\u00e1ch nhi\u1ec7m \u0111\u00e1p \u1ee9ng c\u00e1c quy \u0111\u1ecbnh v\u1ec1 c\u00e1c s\u1ea3n ph\u1ea9m theo c\u00e1c ti\u00eau chu\u1ea9n m\u00e0 n\u01b0\u1edbc nh\u1eadp kh\u1ea9u \u0111\u01b0a ra.<\/p>\n

\u0110\u1ed1i v\u1edbi c\u1ea3nh b\u00e1o t\u1eeb Ba Lan v\u1ec1 s\u1ea3n ph\u1ea9m m\u1ef3 \u0103n li\u1ec1n v\u1ecb g\u00e0 c\u1ee7a C\u00f4ng ty c\u1ed5 ph\u1ea7n K\u1ef9 ngh\u1ec7 th\u1ef1c ph\u1ea9m Vi\u1ec7t Nam, th\u00f4ng tin ban \u0111\u1ea7u, h\u1ed3 s\u01a1 nh\u1eadp kh\u1ea9u c\u1ee7a doanh nghi\u1ec7p ch\u01b0a \u0111\u1ea7y \u0111\u1ee7 n\u00ean b\u1ecb tr\u1ea3 l\u1ea1i.<\/p>\n

C\u00f2n \u0111\u1ed1i v\u1edbi c\u1ea3nh b\u00e1o c\u1ee7a \u0110\u1ee9c v\u1ec1 s\u1ea3n ph\u1ea9m m\u1ef3 \u0103n li\u1ec1n h\u01b0\u01a1ng v\u1ecb g\u00e0, m\u1ef3 \u0103n li\u1ec1n h\u01b0\u01a1ng v\u1ecb c\u00e0 ri c\u1ee7a C\u00f4ng ty c\u1ed5 ph\u1ea7n Th\u1ef1c ph\u1ea9m \u00c1 Ch\u00e2u, v\u1ecb n\u00e0y cho bi\u1ebft hi\u1ec7n v\u1eabn \u0111\u01b0\u1ee3c x\u00e1c minh.<\/p>\n

L\u00e3nh \u0111\u1ea1o V\u1ee5 Khoa h\u1ecdc v\u00e0 c\u00f4ng ngh\u1ec7 cho bi\u1ebft th\u00eam, t\u1ea1i Vi\u1ec7t Nam, EO v\u00e0 ng\u01b0\u1ee1ng gi\u1edbi h\u1ea1n cho ph\u00e9p ch\u01b0a \u0111\u01b0\u1ee3c quy \u0111\u1ecbnh t\u1ea1i c\u00e1c v\u0103n b\u1ea3n quy ph\u1ea1m ph\u00e1p lu\u1eadt trong l\u0129nh v\u1ef1c an to\u00e0n th\u1ef1c ph\u1ea9m c\u1ee7a Vi\u1ec7t Nam t\u00ednh \u0111\u1ebfn th\u1eddi \u0111i\u1ec3m hi\u1ec7n t\u1ea1i.<\/p>\n

Tuy nhi\u00ean, k\u1ec3 t\u1eeb khi xu\u1ea5t hi\u1ec7n c\u1ea3nh b\u00e1o c\u00f3 li\u00ean quan \u0111\u1ebfn s\u1ea3n ph\u1ea9m c\u1ee7a Vi\u1ec7t Nam trong n\u0103m 2021, c\u00e1c c\u01a1 quan qu\u1ea3n l\u00fd Nh\u00e0 n\u01b0\u1edbc \u0111\u00e3 kh\u1ea9n tr\u01b0\u01a1ng v\u00e0o cu\u1ed9c \u0111\u1ec3 x\u00e1c minh th\u00f4ng tin v\u00e0 nguy\u00ean nh\u00e2n th\u00f4ng qua c\u00e1c ho\u1ea1t \u0111\u1ed9ng ki\u1ec3m tra d\u00e2y chuy\u1ec1n c\u00f4ng ngh\u1ec7 v\u00e0 l\u1ea5y m\u1eabu gi\u00e1m s\u00e1t ch\u1ee7 \u0111\u1ed9ng tr\u00ean di\u1ec7n r\u1ed9ng.<\/p>\n

\u0110\u1ed1i t\u01b0\u1ee3ng bao g\u1ed3m c\u00e1c s\u1ea3n ph\u1ea9m ch\u1ebf bi\u1ebfn b\u1ed9t n\u00f3i chung v\u00e0 c\u00e1c s\u1ea3n ph\u1ea9m m\u1ef3 \u0103n li\u1ec1n n\u00f3i ri\u00eang t\u1ea1i Vi\u1ec7t Nam v\u1edbi 3 nh\u00f3m ch\u00ednh l\u00e0 s\u1ea3n ph\u1ea9m \u0111\u01b0\u1ee3c s\u1ea3n xu\u1ea5t trong n\u01b0\u1edbc; s\u1ea3n ph\u1ea9m nh\u1eadp kh\u1ea9u; s\u1ea3n ph\u1ea9m xu\u1ea5t kh\u1ea9u \u0111\u1ec3 ki\u1ec3m nghi\u1ec7m, \u0111\u00e1nh gi\u00e1 t\u00ednh an to\u00e0n.<\/p>\n

Qua nhi\u1ec1u phi\u00ean l\u00e0m vi\u1ec7c v\u1edbi c\u00e1c c\u01a1 quan c\u1ee7a H\u1ed9i \u0111\u1ed3ng ch\u00e2u \u00c2u, c\u00e1c \u0111\u01a1n v\u1ecb thu\u1ed9c B\u1ed9 C\u00f4ng Th\u01b0\u01a1ng \u0111\u00e3 n\u00eau quan \u0111i\u1ec3m \u0111\u1ec1 ngh\u1ecb EU thu h\u1eb9p ph\u1ea1m vi ki\u1ec3m so\u00e1t EO \u0111\u1ed1i v\u1edbi c\u00e1c s\u1ea3n ph\u1ea9m ch\u1ebf bi\u1ebfn b\u1ed9t t\u1eeb Vi\u1ec7t Nam v\u00e0 h\u1ee3p t\u00e1c cung c\u1ea5p c\u00e1c s\u1ed1 li\u1ec7u ki\u1ec3m nghi\u1ec7m \u0111\u1ec3 x\u00e1c \u0111\u1ecbnh t\u1ea7n su\u1ea5t xu\u1ea5t hi\u1ec7n EO trong s\u1ea3n ph\u1ea9m m\u1ef3, t\u1eeb \u0111\u00f3 x\u00e2y d\u1ef1ng k\u1ebf ho\u1ea1ch gi\u1ea3m v\u00e0 lo\u1ea1i b\u1ecf c\u00e1c bi\u1ec7n ph\u00e1p ki\u1ec3m so\u00e1t \u0111\u1eb7c bi\u1ec7t \u0111\u1ed1i v\u1edbi s\u1ea3n ph\u1ea9m m\u1ef3 \u0103n li\u1ec1n c\u1ee7a Vi\u1ec7t Nam.<\/p>\n

Ng\u00e0y 13\/6, v\u1edbi c\u00f4ng b\u00e1o Quy \u0111\u1ecbnh (EU) 2022\/913, EU \u0111\u00e3 ch\u00ednh th\u1ee9c \u0111\u01b0a c\u00e1c lo\u1ea1i b\u00fan, mi\u1ebfn, ph\u1edf d\u1ea1ng kh\u00f4 kh\u00f4ng c\u00f3 gia v\u1ecb \u0111i k\u00e8m ra kh\u1ecfi danh m\u1ee5c s\u1ea3n ph\u1ea9m ch\u1ecbu ki\u1ec3m so\u00e1t \u0111\u1eb7c bi\u1ec7t v\u1ec1 EO.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"

V\u1ee5 Khoa h\u1ecdc v\u00e0 C\u00f4ng ngh\u1ec7 (B\u1ed9 C\u00f4ng Th\u01b0\u01a1ng) \u0111\u00e3 v\u00e0o cu\u1ed9c, x\u00e1c minh th\u00f4ng tin v\u1ec1 vi\u1ec7c \u0110\u1ee9c, Ba Lan, Malta g\u1eedi c\u1ea3nh b\u00e1o \u0111\u1ed1i v\u1edbi s\u1ea3n ph\u1ea9m m\u1ef3 \u0103n li\u1ec1n, b\u00e1nh ph\u1edf vi ph\u1ea1m c\u00e1c quy \u0111\u1ecbnh v\u1ec1 an to\u00e0n th\u1ef1c ph\u1ea9m. V\u0103n ph\u00f2ng Th\u00f4ng b\u00e1o v\u00e0 \u0111i\u1ec3m h\u1ecfi \u0111\u00e1p qu\u1ed1c gia v\u1ec1 […]<\/p>\n","protected":false},"author":5,"featured_media":7589,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"acf":[],"yoast_head":"\nTh\u00eam v\u1ee5 vi\u1ec7c m\u1ef3 \u0103n li\u1ec1n b\u1ecb c\u1ea3nh b\u00e1o \u1edf EU - Hongling Vietnam<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/\" \/>\n<meta property=\"og:locale\" content=\"vi_VN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Th\u00eam v\u1ee5 vi\u1ec7c m\u1ef3 \u0103n li\u1ec1n b\u1ecb c\u1ea3nh b\u00e1o \u1edf EU - Hongling Vietnam\" \/>\n<meta property=\"og:description\" content=\"V\u1ee5 Khoa h\u1ecdc v\u00e0 C\u00f4ng ngh\u1ec7 (B\u1ed9 C\u00f4ng Th\u01b0\u01a1ng) \u0111\u00e3 v\u00e0o cu\u1ed9c, x\u00e1c minh th\u00f4ng tin v\u1ec1 vi\u1ec7c \u0110\u1ee9c, Ba Lan, Malta g\u1eedi c\u1ea3nh b\u00e1o \u0111\u1ed1i v\u1edbi s\u1ea3n ph\u1ea9m m\u1ef3 \u0103n li\u1ec1n, b\u00e1nh ph\u1edf vi ph\u1ea1m c\u00e1c quy \u0111\u1ecbnh v\u1ec1 an to\u00e0n th\u1ef1c ph\u1ea9m. V\u0103n ph\u00f2ng Th\u00f4ng b\u00e1o v\u00e0 \u0111i\u1ec3m h\u1ecfi \u0111\u00e1p qu\u1ed1c gia v\u1ec1 […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongling Vietnam\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/honglingvietnam\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-10T06:39:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-10T07:29:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hongling.com.vn\/wp-content\/uploads\/2022\/07\/mi_tom_song2_2219.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"500\" \/>\n\t<meta property=\"og:image:height\" content=\"375\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Tr\u1ecdng T\u00e0i\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tr\u1ecdng T\u00e0i\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 ph\u00fat\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/hongling.com.vn\/#organization\",\"name\":\"Hongling Vietnam\",\"url\":\"https:\/\/hongling.com.vn\/\",\"sameAs\":[\"https:\/\/www.facebook.com\/honglingvietnam\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"vi\",\"@id\":\"https:\/\/hongling.com.vn\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hongling.com.vn\/wp-content\/uploads\/2022\/07\/hongling_vietnam.jpg\",\"contentUrl\":\"https:\/\/hongling.com.vn\/wp-content\/uploads\/2022\/07\/hongling_vietnam.jpg\",\"width\":329,\"height\":102,\"caption\":\"Hongling Vietnam\"},\"image\":{\"@id\":\"https:\/\/hongling.com.vn\/#\/schema\/logo\/image\/\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hongling.com.vn\/#website\",\"url\":\"https:\/\/hongling.com.vn\/\",\"name\":\"Hongling Vietnam\",\"description\":\"\u0110\u1ea1i l\u00fd ch\u00ednh th\u1ee9c Hongling t\u1ea1i Vi\u1ec7t Nam\",\"publisher\":{\"@id\":\"https:\/\/hongling.com.vn\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hongling.com.vn\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"vi\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/\",\"url\":\"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/\",\"name\":\"Th\u00eam v\u1ee5 vi\u1ec7c m\u1ef3 \u0103n li\u1ec1n b\u1ecb c\u1ea3nh b\u00e1o \u1edf EU - Hongling Vietnam\",\"isPartOf\":{\"@id\":\"https:\/\/hongling.com.vn\/#website\"},\"datePublished\":\"2024-12-10T06:39:57+00:00\",\"dateModified\":\"2024-12-10T07:29:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/#breadcrumb\"},\"inLanguage\":\"vi\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Trang ch\u1ee7\",\"item\":\"https:\/\/hongling.com.vn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Th\u00eam v\u1ee5 vi\u1ec7c m\u1ef3 \u0103n li\u1ec1n b\u1ecb c\u1ea3nh b\u00e1o \u1edf EU\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/\"},\"author\":{\"name\":\"Tr\u1ecdng T\u00e0i\",\"@id\":\"https:\/\/hongling.com.vn\/#\/schema\/person\/858f51af03df8a7c1eae20a3872f5f88\"},\"headline\":\"Th\u00eam v\u1ee5 vi\u1ec7c m\u1ef3 \u0103n li\u1ec1n b\u1ecb c\u1ea3nh b\u00e1o \u1edf EU\",\"datePublished\":\"2024-12-10T06:39:57+00:00\",\"dateModified\":\"2024-12-10T07:29:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/\"},\"wordCount\":1017,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/hongling.com.vn\/#organization\"},\"articleSection\":[\"Tin t\u1ee9c\"],\"inLanguage\":\"vi\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/hongling.com.vn\/#\/schema\/person\/858f51af03df8a7c1eae20a3872f5f88\",\"name\":\"Tr\u1ecdng T\u00e0i\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"vi\",\"@id\":\"https:\/\/hongling.com.vn\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/89ff90715445a19348de01a43283931c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/89ff90715445a19348de01a43283931c?s=96&d=mm&r=g\",\"caption\":\"Tr\u1ecdng T\u00e0i\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Th\u00eam v\u1ee5 vi\u1ec7c m\u1ef3 \u0103n li\u1ec1n b\u1ecb c\u1ea3nh b\u00e1o \u1edf EU - Hongling Vietnam","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/","og_locale":"vi_VN","og_type":"article","og_title":"Th\u00eam v\u1ee5 vi\u1ec7c m\u1ef3 \u0103n li\u1ec1n b\u1ecb c\u1ea3nh b\u00e1o \u1edf EU - Hongling Vietnam","og_description":"V\u1ee5 Khoa h\u1ecdc v\u00e0 C\u00f4ng ngh\u1ec7 (B\u1ed9 C\u00f4ng Th\u01b0\u01a1ng) \u0111\u00e3 v\u00e0o cu\u1ed9c, x\u00e1c minh th\u00f4ng tin v\u1ec1 vi\u1ec7c \u0110\u1ee9c, Ba Lan, Malta g\u1eedi c\u1ea3nh b\u00e1o \u0111\u1ed1i v\u1edbi s\u1ea3n ph\u1ea9m m\u1ef3 \u0103n li\u1ec1n, b\u00e1nh ph\u1edf vi ph\u1ea1m c\u00e1c quy \u0111\u1ecbnh v\u1ec1 an to\u00e0n th\u1ef1c ph\u1ea9m. V\u0103n ph\u00f2ng Th\u00f4ng b\u00e1o v\u00e0 \u0111i\u1ec3m h\u1ecfi \u0111\u00e1p qu\u1ed1c gia v\u1ec1 […]","og_url":"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/","og_site_name":"Hongling Vietnam","article_publisher":"https:\/\/www.facebook.com\/honglingvietnam","article_published_time":"2024-12-10T06:39:57+00:00","article_modified_time":"2024-12-10T07:29:47+00:00","og_image":[{"width":500,"height":375,"url":"https:\/\/hongling.com.vn\/wp-content\/uploads\/2022\/07\/mi_tom_song2_2219.webp","type":"image\/webp"}],"author":"Tr\u1ecdng T\u00e0i","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Tr\u1ecdng T\u00e0i","Est. reading time":"4 ph\u00fat"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/hongling.com.vn\/#organization","name":"Hongling Vietnam","url":"https:\/\/hongling.com.vn\/","sameAs":["https:\/\/www.facebook.com\/honglingvietnam"],"logo":{"@type":"ImageObject","inLanguage":"vi","@id":"https:\/\/hongling.com.vn\/#\/schema\/logo\/image\/","url":"https:\/\/hongling.com.vn\/wp-content\/uploads\/2022\/07\/hongling_vietnam.jpg","contentUrl":"https:\/\/hongling.com.vn\/wp-content\/uploads\/2022\/07\/hongling_vietnam.jpg","width":329,"height":102,"caption":"Hongling Vietnam"},"image":{"@id":"https:\/\/hongling.com.vn\/#\/schema\/logo\/image\/"}},{"@type":"WebSite","@id":"https:\/\/hongling.com.vn\/#website","url":"https:\/\/hongling.com.vn\/","name":"Hongling Vietnam","description":"\u0110\u1ea1i l\u00fd ch\u00ednh th\u1ee9c Hongling t\u1ea1i Vi\u1ec7t Nam","publisher":{"@id":"https:\/\/hongling.com.vn\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hongling.com.vn\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"vi"},{"@type":"WebPage","@id":"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/","url":"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/","name":"Th\u00eam v\u1ee5 vi\u1ec7c m\u1ef3 \u0103n li\u1ec1n b\u1ecb c\u1ea3nh b\u00e1o \u1edf EU - Hongling Vietnam","isPartOf":{"@id":"https:\/\/hongling.com.vn\/#website"},"datePublished":"2024-12-10T06:39:57+00:00","dateModified":"2024-12-10T07:29:47+00:00","breadcrumb":{"@id":"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/#breadcrumb"},"inLanguage":"vi","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Trang ch\u1ee7","item":"https:\/\/hongling.com.vn\/"},{"@type":"ListItem","position":2,"name":"Th\u00eam v\u1ee5 vi\u1ec7c m\u1ef3 \u0103n li\u1ec1n b\u1ecb c\u1ea3nh b\u00e1o \u1edf EU"}]},{"@type":"Article","@id":"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/#article","isPartOf":{"@id":"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/"},"author":{"name":"Tr\u1ecdng T\u00e0i","@id":"https:\/\/hongling.com.vn\/#\/schema\/person\/858f51af03df8a7c1eae20a3872f5f88"},"headline":"Th\u00eam v\u1ee5 vi\u1ec7c m\u1ef3 \u0103n li\u1ec1n b\u1ecb c\u1ea3nh b\u00e1o \u1edf EU","datePublished":"2024-12-10T06:39:57+00:00","dateModified":"2024-12-10T07:29:47+00:00","mainEntityOfPage":{"@id":"https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/"},"wordCount":1017,"commentCount":0,"publisher":{"@id":"https:\/\/hongling.com.vn\/#organization"},"articleSection":["Tin t\u1ee9c"],"inLanguage":"vi","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hongling.com.vn\/them-vu-viec-my-an-lien-bi-canh-bao-o-eu\/#respond"]}]},{"@type":"Person","@id":"https:\/\/hongling.com.vn\/#\/schema\/person\/858f51af03df8a7c1eae20a3872f5f88","name":"Tr\u1ecdng T\u00e0i","image":{"@type":"ImageObject","inLanguage":"vi","@id":"https:\/\/hongling.com.vn\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/89ff90715445a19348de01a43283931c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/89ff90715445a19348de01a43283931c?s=96&d=mm&r=g","caption":"Tr\u1ecdng T\u00e0i"}}]}},"_links":{"self":[{"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/posts\/7586"}],"collection":[{"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/comments?post=7586"}],"version-history":[{"count":1,"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/posts\/7586\/revisions"}],"predecessor-version":[{"id":7587,"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/posts\/7586\/revisions\/7587"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/media\/7589"}],"wp:attachment":[{"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/media?parent=7586"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/categories?post=7586"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/tags?post=7586"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}