San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch
San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4 San Martin Watch san martin watchSan Martin Watch

San Martin Vintage 6200 Diver Enamel Dial Watch SN004G4

15 sold
$239.00
$318.00
-$79.00
Color-Green-4 BH
Please select a color
Quantity
Fast & Free Delivery
Secure payments
100% Original Products
Easy Returns
Vendor by: san martin watch
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);

2023 New Upgraded Version, New Bezel, New Fly Adjustable Clasp.

Watch Specification:
Brand: San martin 
Model: SN0004-GA New Upgraded Version
Movement: NH35A [Automatic mechanical movement]
Is Support Custom Logo: No
Case: Material - 316L Stainless Steel
Glass: Sapphire Crystal Glass,AR Coating
Bezel: Upgraded 120 Clicks Unidirectional Chronograph Bezel, Ceramic Top Ring, 12 O'clock Luminous Markers
Dial Color: Enamel Green, Enamel Black, Enamel Blue + 3D Applied indices
Hands: Classic Hands & Pencil Hands, Luminous Coating
Luminous: Retro Luminous Effect SLN C3 Green Light, Hands and Markers
Crown: Screw-down Crown, With San Martin Hexagon Logo
Case Back: Screw-down Case Back, Brushed Process
Strap: 316L Solid Stainless Steel Bracelet,With Female end links Bracelet
Clasp:  New Fly Adjustable Clasp, Folding Clasp With Safety, With San Martin Hexagon Logo
Water Resistant: 20Bar=200 meters
Weight: about 140g
Watch Dimension:
Case diameter: 38mm( without crown)
Lug length: 46mm (upper lug to lower lug)
Case thickness:  13mm (including mirror)
Lug width:20mm
Our service
Warranty: 2 years 
Returns policy: Please check the website“Return / Exchange / Warranty Policy” 
Style: automatic watch, dive watch, luxury watch 
Package: watch, box, warranty card, user manual
Service: Support retail, wholesale. OEM/ODM. Please contact the seller if necessary.