tango-app-api-store-builder 1.0.0-beta-19 → 1.0.0-beta-20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -614,11 +614,17 @@ export async function storeFixturesv1( req, res ) {
|
|
|
614
614
|
|
|
615
615
|
const productCount = await planoMappingService.count( { floorId: floor._id } );
|
|
616
616
|
|
|
617
|
+
const otherElements = await storeFixtureService.find( {
|
|
618
|
+
floorId: floor._id,
|
|
619
|
+
fixtureType: 'other',
|
|
620
|
+
} );
|
|
621
|
+
|
|
617
622
|
return {
|
|
618
623
|
...floor.toObject(),
|
|
619
624
|
layoutPolygon: layoutPolygonWithFixtures,
|
|
620
625
|
centerFixture: centerFixturesWithStatus,
|
|
621
626
|
productCount: productCount,
|
|
627
|
+
otherElements: otherElements,
|
|
622
628
|
};
|
|
623
629
|
} ),
|
|
624
630
|
);
|
|
@@ -1577,3 +1583,4706 @@ export async function updateMissing( req, res ) {
|
|
|
1577
1583
|
return res.sendError( e, 500 );
|
|
1578
1584
|
}
|
|
1579
1585
|
}
|
|
1586
|
+
|
|
1587
|
+
export async function bulkFixtureUpload( req, res ) {
|
|
1588
|
+
try {
|
|
1589
|
+
const fixture = await storeFixtureService.findOne( { _id: new mongoose.Types.ObjectId( req.body.id ) } );
|
|
1590
|
+
|
|
1591
|
+
const fixtureDoc = fixture.toObject();
|
|
1592
|
+
|
|
1593
|
+
for ( let i = 0; i < req.body.data.length; i++ ) {
|
|
1594
|
+
const shelfData = {
|
|
1595
|
+
'clientId': fixtureDoc.clientId,
|
|
1596
|
+
'storeName': fixtureDoc.storeName,
|
|
1597
|
+
'storeId': fixtureDoc.storeId,
|
|
1598
|
+
'planoId': fixtureDoc.planoId,
|
|
1599
|
+
'floorId': fixtureDoc.floorId,
|
|
1600
|
+
'fixtureId': fixtureDoc._id,
|
|
1601
|
+
'shelfNumber': i+1,
|
|
1602
|
+
'shelfOrder': 'LTR',
|
|
1603
|
+
'shelfCapacity': 2,
|
|
1604
|
+
'shelfType': 'middle',
|
|
1605
|
+
'sectionName': req.body.data[i].sectionName,
|
|
1606
|
+
'rfId': req.body.data[i].rfId,
|
|
1607
|
+
};
|
|
1608
|
+
|
|
1609
|
+
const createdShelf = await fixtureShelfService.create( shelfData );
|
|
1610
|
+
|
|
1611
|
+
for ( let j = 0; j < req.body.data[i].products.length; j++ ) {
|
|
1612
|
+
const productMapping = {
|
|
1613
|
+
'clientId': fixtureDoc.clientId,
|
|
1614
|
+
'storeName': fixtureDoc.storeName,
|
|
1615
|
+
'storeId': fixtureDoc.storeId,
|
|
1616
|
+
'type': 'product',
|
|
1617
|
+
'planoId': fixtureDoc.planoId,
|
|
1618
|
+
'floorId': fixtureDoc.floorId,
|
|
1619
|
+
'fixtureId': fixtureDoc._id,
|
|
1620
|
+
'shelfId': createdShelf._id,
|
|
1621
|
+
'shelfPosition': j+1,
|
|
1622
|
+
'productId': new mongoose.Types.ObjectId( '6791cbbee08740593c281795' ),
|
|
1623
|
+
'rfId': req.body.data[i].products[j].rfId,
|
|
1624
|
+
'category': 'middle',
|
|
1625
|
+
};
|
|
1626
|
+
await planoMappingService.create( productMapping );
|
|
1627
|
+
console.log( j );
|
|
1628
|
+
}
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
res.sendSuccess( fixture );
|
|
1632
|
+
} catch ( e ) {
|
|
1633
|
+
logger.error( { functionName: 'bulkAdd', error: e, message: req.body } );
|
|
1634
|
+
return res.sendError( e, 500 );
|
|
1635
|
+
}
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
// const data = {
|
|
1639
|
+
// floors: [
|
|
1640
|
+
// { id: '9687687',
|
|
1641
|
+
// fixtures: [
|
|
1642
|
+
// {
|
|
1643
|
+
// id: '123456',
|
|
1644
|
+
// shelves: [
|
|
1645
|
+
// {
|
|
1646
|
+
// id: '789012',
|
|
1647
|
+
// sectionName: 'top',
|
|
1648
|
+
// products: [ 'p1', 'p2' ],
|
|
1649
|
+
// },
|
|
1650
|
+
// ],
|
|
1651
|
+
// },
|
|
1652
|
+
// ],
|
|
1653
|
+
// },
|
|
1654
|
+
// ],
|
|
1655
|
+
// };
|
|
1656
|
+
|
|
1657
|
+
// import * as fs from 'fs';
|
|
1658
|
+
|
|
1659
|
+
// const data = [
|
|
1660
|
+
// {
|
|
1661
|
+
// 'facility_code': 'LKST98',
|
|
1662
|
+
// 'product_id': 207042,
|
|
1663
|
+
// 'brand': 'John Jacobs',
|
|
1664
|
+
// 'category': 'sunglasses',
|
|
1665
|
+
// 'zone': 'South',
|
|
1666
|
+
// 'tlp_status': 'YES',
|
|
1667
|
+
// 'lf_nonlf': 'LF',
|
|
1668
|
+
// 'kpi': 'SOH',
|
|
1669
|
+
// 'qty': 1,
|
|
1670
|
+
// 'created_at': '1/31/2025',
|
|
1671
|
+
// 'store_type': 'COCO',
|
|
1672
|
+
// 'status': 'Active',
|
|
1673
|
+
// 'PLC': 'Singapore Ex',
|
|
1674
|
+
// 'itemcode': 'JJJ015799816',
|
|
1675
|
+
// },
|
|
1676
|
+
// {
|
|
1677
|
+
// 'facility_code': 'LKST98',
|
|
1678
|
+
// 'product_id': 136339,
|
|
1679
|
+
// 'brand': 'John Jacobs',
|
|
1680
|
+
// 'category': 'eyeframe',
|
|
1681
|
+
// 'zone': 'South',
|
|
1682
|
+
// 'tlp_status': 'N',
|
|
1683
|
+
// 'lf_nonlf': 'LF',
|
|
1684
|
+
// 'kpi': 'SOH',
|
|
1685
|
+
// 'qty': 1,
|
|
1686
|
+
// 'created_at': '1/31/2025',
|
|
1687
|
+
// 'store_type': 'COCO',
|
|
1688
|
+
// 'status': 'Active',
|
|
1689
|
+
// 'PLC': 'Continuity A',
|
|
1690
|
+
// 'itemcode': 'JJJ018441122',
|
|
1691
|
+
// },
|
|
1692
|
+
// {
|
|
1693
|
+
// 'facility_code': 'LKST98',
|
|
1694
|
+
// 'product_id': 215253,
|
|
1695
|
+
// 'brand': 'John Jacobs',
|
|
1696
|
+
// 'category': 'eyeframe',
|
|
1697
|
+
// 'zone': 'South',
|
|
1698
|
+
// 'tlp_status': 'N',
|
|
1699
|
+
// 'lf_nonlf': 'LF',
|
|
1700
|
+
// 'kpi': 'SOH',
|
|
1701
|
+
// 'qty': 1,
|
|
1702
|
+
// 'created_at': '1/31/2025',
|
|
1703
|
+
// 'store_type': 'COCO',
|
|
1704
|
+
// 'status': 'Active',
|
|
1705
|
+
// 'PLC': 'Continuity',
|
|
1706
|
+
// 'itemcode': 'JJJ016547409',
|
|
1707
|
+
// },
|
|
1708
|
+
// {
|
|
1709
|
+
// 'facility_code': 'LKST98',
|
|
1710
|
+
// 'product_id': 131443,
|
|
1711
|
+
// 'brand': 'John Jacobs',
|
|
1712
|
+
// 'category': 'eyeframe',
|
|
1713
|
+
// 'zone': 'South',
|
|
1714
|
+
// 'tlp_status': 'N',
|
|
1715
|
+
// 'lf_nonlf': 'LF',
|
|
1716
|
+
// 'kpi': 'SOH',
|
|
1717
|
+
// 'qty': 1,
|
|
1718
|
+
// 'created_at': '1/31/2025',
|
|
1719
|
+
// 'store_type': 'COCO',
|
|
1720
|
+
// 'status': 'Active',
|
|
1721
|
+
// 'PLC': 'Continuity',
|
|
1722
|
+
// 'itemcode': 'JJJ017249906',
|
|
1723
|
+
// },
|
|
1724
|
+
// {
|
|
1725
|
+
// 'facility_code': 'LKST98',
|
|
1726
|
+
// 'product_id': 218231,
|
|
1727
|
+
// 'brand': 'John Jacobs',
|
|
1728
|
+
// 'category': 'eyeframe',
|
|
1729
|
+
// 'zone': 'South',
|
|
1730
|
+
// 'tlp_status': 'N',
|
|
1731
|
+
// 'lf_nonlf': 'LF',
|
|
1732
|
+
// 'kpi': 'SOH',
|
|
1733
|
+
// 'qty': 1,
|
|
1734
|
+
// 'created_at': '1/31/2025',
|
|
1735
|
+
// 'store_type': 'COCO',
|
|
1736
|
+
// 'status': 'Active',
|
|
1737
|
+
// 'PLC': 'Continuity',
|
|
1738
|
+
// 'itemcode': 'JJJ017387138',
|
|
1739
|
+
// },
|
|
1740
|
+
// {
|
|
1741
|
+
// 'facility_code': 'LKST98',
|
|
1742
|
+
// 'product_id': 217759,
|
|
1743
|
+
// 'brand': 'John Jacobs',
|
|
1744
|
+
// 'category': 'eyeframe',
|
|
1745
|
+
// 'zone': 'South',
|
|
1746
|
+
// 'tlp_status': 'N',
|
|
1747
|
+
// 'lf_nonlf': 'LF',
|
|
1748
|
+
// 'kpi': 'SOH',
|
|
1749
|
+
// 'qty': 1,
|
|
1750
|
+
// 'created_at': '1/31/2025',
|
|
1751
|
+
// 'store_type': 'COCO',
|
|
1752
|
+
// 'status': 'Active',
|
|
1753
|
+
// 'PLC': 'Continuity',
|
|
1754
|
+
// 'itemcode': 'JJJ019164042',
|
|
1755
|
+
// },
|
|
1756
|
+
// {
|
|
1757
|
+
// 'facility_code': 'LKST98',
|
|
1758
|
+
// 'product_id': 222476,
|
|
1759
|
+
// 'brand': 'John Jacobs',
|
|
1760
|
+
// 'category': 'eyeframe',
|
|
1761
|
+
// 'zone': 'South',
|
|
1762
|
+
// 'tlp_status': 'N',
|
|
1763
|
+
// 'lf_nonlf': 'LF',
|
|
1764
|
+
// 'kpi': 'SOH',
|
|
1765
|
+
// 'qty': 1,
|
|
1766
|
+
// 'created_at': '1/31/2025',
|
|
1767
|
+
// 'store_type': 'COCO',
|
|
1768
|
+
// 'status': 'Active',
|
|
1769
|
+
// 'PLC': 'New Launches',
|
|
1770
|
+
// 'itemcode': 'JJJ019302739',
|
|
1771
|
+
// },
|
|
1772
|
+
// {
|
|
1773
|
+
// 'facility_code': 'LKST98',
|
|
1774
|
+
// 'product_id': 216735,
|
|
1775
|
+
// 'brand': 'John Jacobs',
|
|
1776
|
+
// 'category': 'eyeframe',
|
|
1777
|
+
// 'zone': 'South',
|
|
1778
|
+
// 'tlp_status': 'N',
|
|
1779
|
+
// 'lf_nonlf': 'LF',
|
|
1780
|
+
// 'kpi': 'SOH',
|
|
1781
|
+
// 'qty': 1,
|
|
1782
|
+
// 'created_at': '1/31/2025',
|
|
1783
|
+
// 'store_type': 'COCO',
|
|
1784
|
+
// 'status': 'Active',
|
|
1785
|
+
// 'PLC': 'Continuity',
|
|
1786
|
+
// 'itemcode': 'JJJ016874512',
|
|
1787
|
+
// },
|
|
1788
|
+
// {
|
|
1789
|
+
// 'facility_code': 'LKST98',
|
|
1790
|
+
// 'product_id': 152701,
|
|
1791
|
+
// 'brand': 'John Jacobs',
|
|
1792
|
+
// 'category': 'eyeframe',
|
|
1793
|
+
// 'zone': 'South',
|
|
1794
|
+
// 'tlp_status': 'N',
|
|
1795
|
+
// 'lf_nonlf': 'LF',
|
|
1796
|
+
// 'kpi': 'SOH',
|
|
1797
|
+
// 'qty': 1,
|
|
1798
|
+
// 'created_at': '1/31/2025',
|
|
1799
|
+
// 'store_type': 'COCO',
|
|
1800
|
+
// 'status': 'Active',
|
|
1801
|
+
// 'PLC': 'Continuity',
|
|
1802
|
+
// 'itemcode': 'JJJ010870317',
|
|
1803
|
+
// },
|
|
1804
|
+
// {
|
|
1805
|
+
// 'facility_code': 'LKST98',
|
|
1806
|
+
// 'product_id': 113125,
|
|
1807
|
+
// 'brand': 'John Jacobs',
|
|
1808
|
+
// 'category': 'eyeframe',
|
|
1809
|
+
// 'zone': 'South',
|
|
1810
|
+
// 'tlp_status': 'N',
|
|
1811
|
+
// 'lf_nonlf': 'LF',
|
|
1812
|
+
// 'kpi': 'SOH',
|
|
1813
|
+
// 'qty': 1,
|
|
1814
|
+
// 'created_at': '1/31/2025',
|
|
1815
|
+
// 'store_type': 'COCO',
|
|
1816
|
+
// 'status': 'Active',
|
|
1817
|
+
// 'PLC': 'Continuity',
|
|
1818
|
+
// 'itemcode': 'JJJ019698519',
|
|
1819
|
+
// },
|
|
1820
|
+
// {
|
|
1821
|
+
// 'facility_code': 'LKST98',
|
|
1822
|
+
// 'product_id': 215257,
|
|
1823
|
+
// 'brand': 'John Jacobs',
|
|
1824
|
+
// 'category': 'eyeframe',
|
|
1825
|
+
// 'zone': 'South',
|
|
1826
|
+
// 'tlp_status': 'N',
|
|
1827
|
+
// 'lf_nonlf': 'LF',
|
|
1828
|
+
// 'kpi': 'SOH',
|
|
1829
|
+
// 'qty': 1,
|
|
1830
|
+
// 'created_at': '1/31/2025',
|
|
1831
|
+
// 'store_type': 'COCO',
|
|
1832
|
+
// 'status': 'Active',
|
|
1833
|
+
// 'PLC': 'Continuity',
|
|
1834
|
+
// 'itemcode': 'JJJ016553360',
|
|
1835
|
+
// },
|
|
1836
|
+
// {
|
|
1837
|
+
// 'facility_code': 'LKST98',
|
|
1838
|
+
// 'product_id': 201411,
|
|
1839
|
+
// 'brand': 'John Jacobs',
|
|
1840
|
+
// 'category': 'eyeframe',
|
|
1841
|
+
// 'zone': 'South',
|
|
1842
|
+
// 'tlp_status': 'N',
|
|
1843
|
+
// 'lf_nonlf': 'LF',
|
|
1844
|
+
// 'kpi': 'SOH',
|
|
1845
|
+
// 'qty': 1,
|
|
1846
|
+
// 'created_at': '1/31/2025',
|
|
1847
|
+
// 'store_type': 'COCO',
|
|
1848
|
+
// 'status': 'Active',
|
|
1849
|
+
// 'PLC': 'Continuity',
|
|
1850
|
+
// 'itemcode': 'JJJ019614368',
|
|
1851
|
+
// },
|
|
1852
|
+
// {
|
|
1853
|
+
// 'facility_code': 'LKST98',
|
|
1854
|
+
// 'product_id': 217748,
|
|
1855
|
+
// 'brand': 'John Jacobs',
|
|
1856
|
+
// 'category': 'eyeframe',
|
|
1857
|
+
// 'zone': 'South',
|
|
1858
|
+
// 'tlp_status': 'N',
|
|
1859
|
+
// 'lf_nonlf': 'LF',
|
|
1860
|
+
// 'kpi': 'SOH',
|
|
1861
|
+
// 'qty': 1,
|
|
1862
|
+
// 'created_at': '1/31/2025',
|
|
1863
|
+
// 'store_type': 'COCO',
|
|
1864
|
+
// 'status': 'Active',
|
|
1865
|
+
// 'PLC': 'Continuity',
|
|
1866
|
+
// 'itemcode': 'JJJ017008428',
|
|
1867
|
+
// },
|
|
1868
|
+
// {
|
|
1869
|
+
// 'facility_code': 'LKST98',
|
|
1870
|
+
// 'product_id': 151243,
|
|
1871
|
+
// 'brand': 'John Jacobs',
|
|
1872
|
+
// 'category': 'eyeframe',
|
|
1873
|
+
// 'zone': 'South',
|
|
1874
|
+
// 'tlp_status': 'N',
|
|
1875
|
+
// 'lf_nonlf': 'LF',
|
|
1876
|
+
// 'kpi': 'SOH',
|
|
1877
|
+
// 'qty': 1,
|
|
1878
|
+
// 'created_at': '1/31/2025',
|
|
1879
|
+
// 'store_type': 'COCO',
|
|
1880
|
+
// 'status': 'Active',
|
|
1881
|
+
// 'PLC': 'Continuity A',
|
|
1882
|
+
// 'itemcode': 'JJJ018951414',
|
|
1883
|
+
// },
|
|
1884
|
+
// {
|
|
1885
|
+
// 'facility_code': 'LKST98',
|
|
1886
|
+
// 'product_id': 136632,
|
|
1887
|
+
// 'brand': 'John Jacobs',
|
|
1888
|
+
// 'category': 'sunglasses',
|
|
1889
|
+
// 'zone': 'South',
|
|
1890
|
+
// 'tlp_status': 'N',
|
|
1891
|
+
// 'lf_nonlf': 'LF',
|
|
1892
|
+
// 'kpi': 'SOH',
|
|
1893
|
+
// 'qty': 1,
|
|
1894
|
+
// 'created_at': '1/31/2025',
|
|
1895
|
+
// 'store_type': 'COCO',
|
|
1896
|
+
// 'status': 'Active',
|
|
1897
|
+
// 'PLC': 'MP Exclusive',
|
|
1898
|
+
// 'itemcode': 'JJJ016683258',
|
|
1899
|
+
// },
|
|
1900
|
+
// {
|
|
1901
|
+
// 'facility_code': 'LKST98',
|
|
1902
|
+
// 'product_id': 209678,
|
|
1903
|
+
// 'brand': 'John Jacobs',
|
|
1904
|
+
// 'category': 'eyeframe',
|
|
1905
|
+
// 'zone': 'South',
|
|
1906
|
+
// 'tlp_status': 'N',
|
|
1907
|
+
// 'lf_nonlf': 'LF',
|
|
1908
|
+
// 'kpi': 'SOH',
|
|
1909
|
+
// 'qty': 1,
|
|
1910
|
+
// 'created_at': '1/31/2025',
|
|
1911
|
+
// 'store_type': 'COCO',
|
|
1912
|
+
// 'status': 'Active',
|
|
1913
|
+
// 'PLC': 'Continuity',
|
|
1914
|
+
// 'itemcode': 'JJJ015403089',
|
|
1915
|
+
// },
|
|
1916
|
+
// {
|
|
1917
|
+
// 'facility_code': 'LKST98',
|
|
1918
|
+
// 'product_id': 142894,
|
|
1919
|
+
// 'brand': 'John Jacobs',
|
|
1920
|
+
// 'category': 'eyeframe',
|
|
1921
|
+
// 'zone': 'South',
|
|
1922
|
+
// 'tlp_status': 'YES',
|
|
1923
|
+
// 'lf_nonlf': 'LF',
|
|
1924
|
+
// 'kpi': 'SOH',
|
|
1925
|
+
// 'qty': 1,
|
|
1926
|
+
// 'created_at': '1/31/2025',
|
|
1927
|
+
// 'store_type': 'COCO',
|
|
1928
|
+
// 'status': 'Active',
|
|
1929
|
+
// 'PLC': 'Discontinued',
|
|
1930
|
+
// 'itemcode': 'JJJ017096206',
|
|
1931
|
+
// },
|
|
1932
|
+
// {
|
|
1933
|
+
// 'facility_code': 'LKST98',
|
|
1934
|
+
// 'product_id': 134224,
|
|
1935
|
+
// 'brand': 'John Jacobs',
|
|
1936
|
+
// 'category': 'eyeframe',
|
|
1937
|
+
// 'zone': 'South',
|
|
1938
|
+
// 'tlp_status': 'N',
|
|
1939
|
+
// 'lf_nonlf': 'LF',
|
|
1940
|
+
// 'kpi': 'SOH',
|
|
1941
|
+
// 'qty': 1,
|
|
1942
|
+
// 'created_at': '1/31/2025',
|
|
1943
|
+
// 'store_type': 'COCO',
|
|
1944
|
+
// 'status': 'Active',
|
|
1945
|
+
// 'PLC': 'Core',
|
|
1946
|
+
// 'itemcode': 'JJJ016758576',
|
|
1947
|
+
// },
|
|
1948
|
+
// {
|
|
1949
|
+
// 'facility_code': 'LKST98',
|
|
1950
|
+
// 'product_id': 217271,
|
|
1951
|
+
// 'brand': 'John Jacobs',
|
|
1952
|
+
// 'category': 'eyeframe',
|
|
1953
|
+
// 'zone': 'South',
|
|
1954
|
+
// 'tlp_status': 'N',
|
|
1955
|
+
// 'lf_nonlf': 'LF',
|
|
1956
|
+
// 'kpi': 'SOH',
|
|
1957
|
+
// 'qty': 1,
|
|
1958
|
+
// 'created_at': '1/31/2025',
|
|
1959
|
+
// 'store_type': 'COCO',
|
|
1960
|
+
// 'status': 'Active',
|
|
1961
|
+
// 'PLC': 'Continuity',
|
|
1962
|
+
// 'itemcode': 'JJJ018094774',
|
|
1963
|
+
// },
|
|
1964
|
+
// {
|
|
1965
|
+
// 'facility_code': 'LKST98',
|
|
1966
|
+
// 'product_id': 135216,
|
|
1967
|
+
// 'brand': 'John Jacobs Online',
|
|
1968
|
+
// 'category': 'sunglasses',
|
|
1969
|
+
// 'zone': 'South',
|
|
1970
|
+
// 'tlp_status': 'YES',
|
|
1971
|
+
// 'lf_nonlf': 'LF',
|
|
1972
|
+
// 'kpi': 'SOH',
|
|
1973
|
+
// 'qty': 1,
|
|
1974
|
+
// 'created_at': '1/31/2025',
|
|
1975
|
+
// 'store_type': 'COCO',
|
|
1976
|
+
// 'status': 'Active',
|
|
1977
|
+
// 'PLC': 'Singapore Ex',
|
|
1978
|
+
// 'itemcode': 'JJJ012422630',
|
|
1979
|
+
// },
|
|
1980
|
+
// {
|
|
1981
|
+
// 'facility_code': 'LKST98',
|
|
1982
|
+
// 'product_id': 137154,
|
|
1983
|
+
// 'brand': 'John Jacobs',
|
|
1984
|
+
// 'category': 'sunglasses',
|
|
1985
|
+
// 'zone': 'South',
|
|
1986
|
+
// 'tlp_status': 'N',
|
|
1987
|
+
// 'lf_nonlf': 'LF',
|
|
1988
|
+
// 'kpi': 'SOH',
|
|
1989
|
+
// 'qty': 1,
|
|
1990
|
+
// 'created_at': '1/31/2025',
|
|
1991
|
+
// 'store_type': 'COCO',
|
|
1992
|
+
// 'status': 'Active',
|
|
1993
|
+
// 'PLC': 'Continuity',
|
|
1994
|
+
// 'itemcode': 'IIM14584811334',
|
|
1995
|
+
// },
|
|
1996
|
+
// {
|
|
1997
|
+
// 'facility_code': 'LKST98',
|
|
1998
|
+
// 'product_id': 213687,
|
|
1999
|
+
// 'brand': 'John Jacobs',
|
|
2000
|
+
// 'category': 'eyeframe',
|
|
2001
|
+
// 'zone': 'South',
|
|
2002
|
+
// 'tlp_status': 'N',
|
|
2003
|
+
// 'lf_nonlf': 'LF',
|
|
2004
|
+
// 'kpi': 'SOH',
|
|
2005
|
+
// 'qty': 1,
|
|
2006
|
+
// 'created_at': '1/31/2025',
|
|
2007
|
+
// 'store_type': 'COCO',
|
|
2008
|
+
// 'status': 'Active',
|
|
2009
|
+
// 'PLC': 'Core',
|
|
2010
|
+
// 'itemcode': 'JJJ016570126',
|
|
2011
|
+
// },
|
|
2012
|
+
// {
|
|
2013
|
+
// 'facility_code': 'LKST98',
|
|
2014
|
+
// 'product_id': 216734,
|
|
2015
|
+
// 'brand': 'John Jacobs',
|
|
2016
|
+
// 'category': 'eyeframe',
|
|
2017
|
+
// 'zone': 'South',
|
|
2018
|
+
// 'tlp_status': 'N',
|
|
2019
|
+
// 'lf_nonlf': 'LF',
|
|
2020
|
+
// 'kpi': 'SOH',
|
|
2021
|
+
// 'qty': 1,
|
|
2022
|
+
// 'created_at': '1/31/2025',
|
|
2023
|
+
// 'store_type': 'COCO',
|
|
2024
|
+
// 'status': 'Active',
|
|
2025
|
+
// 'PLC': 'Continuity A',
|
|
2026
|
+
// 'itemcode': 'JJJ018987501',
|
|
2027
|
+
// },
|
|
2028
|
+
// {
|
|
2029
|
+
// 'facility_code': 'LKST98',
|
|
2030
|
+
// 'product_id': 215259,
|
|
2031
|
+
// 'brand': 'John Jacobs',
|
|
2032
|
+
// 'category': 'eyeframe',
|
|
2033
|
+
// 'zone': 'South',
|
|
2034
|
+
// 'tlp_status': 'N',
|
|
2035
|
+
// 'lf_nonlf': 'LF',
|
|
2036
|
+
// 'kpi': 'SOH',
|
|
2037
|
+
// 'qty': 1,
|
|
2038
|
+
// 'created_at': '1/31/2025',
|
|
2039
|
+
// 'store_type': 'COCO',
|
|
2040
|
+
// 'status': 'Active',
|
|
2041
|
+
// 'PLC': 'Continuity',
|
|
2042
|
+
// 'itemcode': 'JJJ016557719',
|
|
2043
|
+
// },
|
|
2044
|
+
// {
|
|
2045
|
+
// 'facility_code': 'LKST98',
|
|
2046
|
+
// 'product_id': 151008,
|
|
2047
|
+
// 'brand': 'John Jacobs',
|
|
2048
|
+
// 'category': 'sunglasses',
|
|
2049
|
+
// 'zone': 'South',
|
|
2050
|
+
// 'tlp_status': 'YES',
|
|
2051
|
+
// 'lf_nonlf': 'LF',
|
|
2052
|
+
// 'kpi': 'SOH',
|
|
2053
|
+
// 'qty': 1,
|
|
2054
|
+
// 'created_at': '1/31/2025',
|
|
2055
|
+
// 'store_type': 'COCO',
|
|
2056
|
+
// 'status': 'Active',
|
|
2057
|
+
// 'PLC': 'Discontinued',
|
|
2058
|
+
// 'itemcode': 'JJJ017510060',
|
|
2059
|
+
// },
|
|
2060
|
+
// {
|
|
2061
|
+
// 'facility_code': 'LKST98',
|
|
2062
|
+
// 'product_id': 135212,
|
|
2063
|
+
// 'brand': 'John Jacobs',
|
|
2064
|
+
// 'category': 'sunglasses',
|
|
2065
|
+
// 'zone': 'South',
|
|
2066
|
+
// 'tlp_status': 'N',
|
|
2067
|
+
// 'lf_nonlf': 'LF',
|
|
2068
|
+
// 'kpi': 'SOH',
|
|
2069
|
+
// 'qty': 1,
|
|
2070
|
+
// 'created_at': '1/31/2025',
|
|
2071
|
+
// 'store_type': 'COCO',
|
|
2072
|
+
// 'status': 'Active',
|
|
2073
|
+
// 'PLC': 'Core',
|
|
2074
|
+
// 'itemcode': '',
|
|
2075
|
+
// },
|
|
2076
|
+
// {
|
|
2077
|
+
// 'facility_code': 'LKST98',
|
|
2078
|
+
// 'product_id': 148301,
|
|
2079
|
+
// 'brand': 'John Jacobs',
|
|
2080
|
+
// 'category': 'eyeframe',
|
|
2081
|
+
// 'zone': 'South',
|
|
2082
|
+
// 'tlp_status': 'YES',
|
|
2083
|
+
// 'lf_nonlf': 'LF',
|
|
2084
|
+
// 'kpi': 'SOH',
|
|
2085
|
+
// 'qty': 1,
|
|
2086
|
+
// 'created_at': '1/31/2025',
|
|
2087
|
+
// 'store_type': 'COCO',
|
|
2088
|
+
// 'status': 'Active',
|
|
2089
|
+
// 'PLC': 'Discontinued',
|
|
2090
|
+
// 'itemcode': 'JJJ013282217',
|
|
2091
|
+
// },
|
|
2092
|
+
// {
|
|
2093
|
+
// 'facility_code': 'LKST98',
|
|
2094
|
+
// 'product_id': 209669,
|
|
2095
|
+
// 'brand': 'John Jacobs',
|
|
2096
|
+
// 'category': 'eyeframe',
|
|
2097
|
+
// 'zone': 'South',
|
|
2098
|
+
// 'tlp_status': 'N',
|
|
2099
|
+
// 'lf_nonlf': 'LF',
|
|
2100
|
+
// 'kpi': 'SOH',
|
|
2101
|
+
// 'qty': 1,
|
|
2102
|
+
// 'created_at': '1/31/2025',
|
|
2103
|
+
// 'store_type': 'COCO',
|
|
2104
|
+
// 'status': 'Active',
|
|
2105
|
+
// 'PLC': 'Continuity',
|
|
2106
|
+
// 'itemcode': 'JJJ020383111',
|
|
2107
|
+
// },
|
|
2108
|
+
// {
|
|
2109
|
+
// 'facility_code': 'LKST98',
|
|
2110
|
+
// 'product_id': 225403,
|
|
2111
|
+
// 'brand': 'John Jacobs',
|
|
2112
|
+
// 'category': 'eyeframe',
|
|
2113
|
+
// 'zone': 'South',
|
|
2114
|
+
// 'tlp_status': 'N',
|
|
2115
|
+
// 'lf_nonlf': 'LF',
|
|
2116
|
+
// 'kpi': 'SOH',
|
|
2117
|
+
// 'qty': 1,
|
|
2118
|
+
// 'created_at': '1/31/2025',
|
|
2119
|
+
// 'store_type': 'COCO',
|
|
2120
|
+
// 'status': 'Active',
|
|
2121
|
+
// 'PLC': 'New Launches',
|
|
2122
|
+
// 'itemcode': 'JJJ021450194',
|
|
2123
|
+
// },
|
|
2124
|
+
// {
|
|
2125
|
+
// 'facility_code': 'LKST98',
|
|
2126
|
+
// 'product_id': 222482,
|
|
2127
|
+
// 'brand': 'John Jacobs',
|
|
2128
|
+
// 'category': 'eyeframe',
|
|
2129
|
+
// 'zone': 'South',
|
|
2130
|
+
// 'tlp_status': 'N',
|
|
2131
|
+
// 'lf_nonlf': 'LF',
|
|
2132
|
+
// 'kpi': 'SOH',
|
|
2133
|
+
// 'qty': 1,
|
|
2134
|
+
// 'created_at': '1/31/2025',
|
|
2135
|
+
// 'store_type': 'COCO',
|
|
2136
|
+
// 'status': 'Active',
|
|
2137
|
+
// 'PLC': 'New Launches',
|
|
2138
|
+
// 'itemcode': 'JJJ019309235',
|
|
2139
|
+
// },
|
|
2140
|
+
// {
|
|
2141
|
+
// 'facility_code': 'LKST98',
|
|
2142
|
+
// 'product_id': 146882,
|
|
2143
|
+
// 'brand': 'John Jacobs Online',
|
|
2144
|
+
// 'category': 'sunglasses',
|
|
2145
|
+
// 'zone': 'South',
|
|
2146
|
+
// 'tlp_status': 'YES',
|
|
2147
|
+
// 'lf_nonlf': 'LF',
|
|
2148
|
+
// 'kpi': 'SOH',
|
|
2149
|
+
// 'qty': 1,
|
|
2150
|
+
// 'created_at': '1/31/2025',
|
|
2151
|
+
// 'store_type': 'COCO',
|
|
2152
|
+
// 'status': 'Active',
|
|
2153
|
+
// 'PLC': 'Discontinued',
|
|
2154
|
+
// 'itemcode': 'JJJ010563039',
|
|
2155
|
+
// },
|
|
2156
|
+
// {
|
|
2157
|
+
// 'facility_code': 'LKST98',
|
|
2158
|
+
// 'product_id': 136173,
|
|
2159
|
+
// 'brand': 'John Jacobs',
|
|
2160
|
+
// 'category': 'eyeframe',
|
|
2161
|
+
// 'zone': 'South',
|
|
2162
|
+
// 'tlp_status': 'N',
|
|
2163
|
+
// 'lf_nonlf': 'LF',
|
|
2164
|
+
// 'kpi': 'SOH',
|
|
2165
|
+
// 'qty': 1,
|
|
2166
|
+
// 'created_at': '1/31/2025',
|
|
2167
|
+
// 'store_type': 'COCO',
|
|
2168
|
+
// 'status': 'Active',
|
|
2169
|
+
// 'PLC': 'Continuity A',
|
|
2170
|
+
// 'itemcode': 'JJJ017964781',
|
|
2171
|
+
// },
|
|
2172
|
+
// {
|
|
2173
|
+
// 'facility_code': 'LKST98',
|
|
2174
|
+
// 'product_id': 215251,
|
|
2175
|
+
// 'brand': 'John Jacobs',
|
|
2176
|
+
// 'category': 'eyeframe',
|
|
2177
|
+
// 'zone': 'South',
|
|
2178
|
+
// 'tlp_status': 'N',
|
|
2179
|
+
// 'lf_nonlf': 'LF',
|
|
2180
|
+
// 'kpi': 'SOH',
|
|
2181
|
+
// 'qty': 1,
|
|
2182
|
+
// 'created_at': '1/31/2025',
|
|
2183
|
+
// 'store_type': 'COCO',
|
|
2184
|
+
// 'status': 'Active',
|
|
2185
|
+
// 'PLC': 'Continuity',
|
|
2186
|
+
// 'itemcode': 'JJJ016546005',
|
|
2187
|
+
// },
|
|
2188
|
+
// {
|
|
2189
|
+
// 'facility_code': 'LKST98',
|
|
2190
|
+
// 'product_id': 151229,
|
|
2191
|
+
// 'brand': 'John Jacobs',
|
|
2192
|
+
// 'category': 'eyeframe',
|
|
2193
|
+
// 'zone': 'South',
|
|
2194
|
+
// 'tlp_status': 'N',
|
|
2195
|
+
// 'lf_nonlf': 'LF',
|
|
2196
|
+
// 'kpi': 'SOH',
|
|
2197
|
+
// 'qty': 1,
|
|
2198
|
+
// 'created_at': '1/31/2025',
|
|
2199
|
+
// 'store_type': 'COCO',
|
|
2200
|
+
// 'status': 'Active',
|
|
2201
|
+
// 'PLC': 'Continuity A',
|
|
2202
|
+
// 'itemcode': 'JJJ016784634',
|
|
2203
|
+
// },
|
|
2204
|
+
// {
|
|
2205
|
+
// 'facility_code': 'LKST98',
|
|
2206
|
+
// 'product_id': 138262,
|
|
2207
|
+
// 'brand': 'John Jacobs',
|
|
2208
|
+
// 'category': 'sunglasses',
|
|
2209
|
+
// 'zone': 'South',
|
|
2210
|
+
// 'tlp_status': 'N',
|
|
2211
|
+
// 'lf_nonlf': 'LF',
|
|
2212
|
+
// 'kpi': 'SOH',
|
|
2213
|
+
// 'qty': 1,
|
|
2214
|
+
// 'created_at': '1/31/2025',
|
|
2215
|
+
// 'store_type': 'COCO',
|
|
2216
|
+
// 'status': 'Active',
|
|
2217
|
+
// 'PLC': 'Core',
|
|
2218
|
+
// 'itemcode': '',
|
|
2219
|
+
// },
|
|
2220
|
+
// {
|
|
2221
|
+
// 'facility_code': 'LKST98',
|
|
2222
|
+
// 'product_id': 223227,
|
|
2223
|
+
// 'brand': 'John Jacobs',
|
|
2224
|
+
// 'category': 'eyeframe',
|
|
2225
|
+
// 'zone': 'South',
|
|
2226
|
+
// 'tlp_status': 'N',
|
|
2227
|
+
// 'lf_nonlf': 'LF',
|
|
2228
|
+
// 'kpi': 'SOH',
|
|
2229
|
+
// 'qty': 1,
|
|
2230
|
+
// 'created_at': '1/31/2025',
|
|
2231
|
+
// 'store_type': 'COCO',
|
|
2232
|
+
// 'status': 'Active',
|
|
2233
|
+
// 'PLC': 'New Launches',
|
|
2234
|
+
// 'itemcode': 'JJJ019786945',
|
|
2235
|
+
// },
|
|
2236
|
+
// {
|
|
2237
|
+
// 'facility_code': 'LKST98',
|
|
2238
|
+
// 'product_id': 217742,
|
|
2239
|
+
// 'brand': 'John Jacobs',
|
|
2240
|
+
// 'category': 'eyeframe',
|
|
2241
|
+
// 'zone': 'South',
|
|
2242
|
+
// 'tlp_status': 'YES',
|
|
2243
|
+
// 'lf_nonlf': 'LF',
|
|
2244
|
+
// 'kpi': 'SOH',
|
|
2245
|
+
// 'qty': 1,
|
|
2246
|
+
// 'created_at': '1/31/2025',
|
|
2247
|
+
// 'store_type': 'COCO',
|
|
2248
|
+
// 'status': 'Active',
|
|
2249
|
+
// 'PLC': 'Continuity',
|
|
2250
|
+
// 'itemcode': 'JJJ017004117',
|
|
2251
|
+
// },
|
|
2252
|
+
// {
|
|
2253
|
+
// 'facility_code': 'LKST98',
|
|
2254
|
+
// 'product_id': 213682,
|
|
2255
|
+
// 'brand': 'John Jacobs',
|
|
2256
|
+
// 'category': 'eyeframe',
|
|
2257
|
+
// 'zone': 'South',
|
|
2258
|
+
// 'tlp_status': 'N',
|
|
2259
|
+
// 'lf_nonlf': 'LF',
|
|
2260
|
+
// 'kpi': 'SOH',
|
|
2261
|
+
// 'qty': 1,
|
|
2262
|
+
// 'created_at': '1/31/2025',
|
|
2263
|
+
// 'store_type': 'COCO',
|
|
2264
|
+
// 'status': 'Active',
|
|
2265
|
+
// 'PLC': 'Continuity',
|
|
2266
|
+
// 'itemcode': 'JJJ016761202',
|
|
2267
|
+
// },
|
|
2268
|
+
// {
|
|
2269
|
+
// 'facility_code': 'LKST98',
|
|
2270
|
+
// 'product_id': 136387,
|
|
2271
|
+
// 'brand': 'John Jacobs',
|
|
2272
|
+
// 'category': 'sunglasses',
|
|
2273
|
+
// 'zone': 'South',
|
|
2274
|
+
// 'tlp_status': 'N',
|
|
2275
|
+
// 'lf_nonlf': 'LF',
|
|
2276
|
+
// 'kpi': 'SOH',
|
|
2277
|
+
// 'qty': 1,
|
|
2278
|
+
// 'created_at': '1/31/2025',
|
|
2279
|
+
// 'store_type': 'COCO',
|
|
2280
|
+
// 'status': 'Active',
|
|
2281
|
+
// 'PLC': 'MP Exclusive',
|
|
2282
|
+
// 'itemcode': 'JJJ014036647',
|
|
2283
|
+
// },
|
|
2284
|
+
// {
|
|
2285
|
+
// 'facility_code': 'LKST98',
|
|
2286
|
+
// 'product_id': 216872,
|
|
2287
|
+
// 'brand': 'John Jacobs',
|
|
2288
|
+
// 'category': 'sunglasses',
|
|
2289
|
+
// 'zone': 'South',
|
|
2290
|
+
// 'tlp_status': 'N',
|
|
2291
|
+
// 'lf_nonlf': 'LF',
|
|
2292
|
+
// 'kpi': 'SOH',
|
|
2293
|
+
// 'qty': 1,
|
|
2294
|
+
// 'created_at': '1/31/2025',
|
|
2295
|
+
// 'store_type': 'COCO',
|
|
2296
|
+
// 'status': 'Active',
|
|
2297
|
+
// 'PLC': 'Continuity',
|
|
2298
|
+
// 'itemcode': 'JJJ016925728',
|
|
2299
|
+
// },
|
|
2300
|
+
// {
|
|
2301
|
+
// 'facility_code': 'LKST98',
|
|
2302
|
+
// 'product_id': 216732,
|
|
2303
|
+
// 'brand': 'John Jacobs',
|
|
2304
|
+
// 'category': 'eyeframe',
|
|
2305
|
+
// 'zone': 'South',
|
|
2306
|
+
// 'tlp_status': 'N',
|
|
2307
|
+
// 'lf_nonlf': 'LF',
|
|
2308
|
+
// 'kpi': 'SOH',
|
|
2309
|
+
// 'qty': 1,
|
|
2310
|
+
// 'created_at': '1/31/2025',
|
|
2311
|
+
// 'store_type': 'COCO',
|
|
2312
|
+
// 'status': 'Active',
|
|
2313
|
+
// 'PLC': 'Continuity',
|
|
2314
|
+
// 'itemcode': 'JJJ016868016',
|
|
2315
|
+
// },
|
|
2316
|
+
// {
|
|
2317
|
+
// 'facility_code': 'LKST98',
|
|
2318
|
+
// 'product_id': 211194,
|
|
2319
|
+
// 'brand': 'John Jacobs',
|
|
2320
|
+
// 'category': 'eyeframe',
|
|
2321
|
+
// 'zone': 'South',
|
|
2322
|
+
// 'tlp_status': 'N',
|
|
2323
|
+
// 'lf_nonlf': 'LF',
|
|
2324
|
+
// 'kpi': 'SOH',
|
|
2325
|
+
// 'qty': 1,
|
|
2326
|
+
// 'created_at': '1/31/2025',
|
|
2327
|
+
// 'store_type': 'COCO',
|
|
2328
|
+
// 'status': 'Active',
|
|
2329
|
+
// 'PLC': 'Continuity A',
|
|
2330
|
+
// 'itemcode': 'JJJ017111749',
|
|
2331
|
+
// },
|
|
2332
|
+
// {
|
|
2333
|
+
// 'facility_code': 'LKST98',
|
|
2334
|
+
// 'product_id': 213150,
|
|
2335
|
+
// 'brand': 'John Jacobs Online',
|
|
2336
|
+
// 'category': 'sunglasses',
|
|
2337
|
+
// 'zone': 'South',
|
|
2338
|
+
// 'tlp_status': 'N',
|
|
2339
|
+
// 'lf_nonlf': 'LF',
|
|
2340
|
+
// 'kpi': 'SOH',
|
|
2341
|
+
// 'qty': 1,
|
|
2342
|
+
// 'created_at': '1/31/2025',
|
|
2343
|
+
// 'store_type': 'COCO',
|
|
2344
|
+
// 'status': 'Active',
|
|
2345
|
+
// 'PLC': 'Discontinued',
|
|
2346
|
+
// 'itemcode': 'JJJ016200426',
|
|
2347
|
+
// },
|
|
2348
|
+
// {
|
|
2349
|
+
// 'facility_code': 'LKST98',
|
|
2350
|
+
// 'product_id': 140628,
|
|
2351
|
+
// 'brand': 'John Jacobs',
|
|
2352
|
+
// 'category': 'sunglasses',
|
|
2353
|
+
// 'zone': 'South',
|
|
2354
|
+
// 'tlp_status': 'N',
|
|
2355
|
+
// 'lf_nonlf': 'LF',
|
|
2356
|
+
// 'kpi': 'SOH',
|
|
2357
|
+
// 'qty': 1,
|
|
2358
|
+
// 'created_at': '1/31/2025',
|
|
2359
|
+
// 'store_type': 'COCO',
|
|
2360
|
+
// 'status': 'Active',
|
|
2361
|
+
// 'PLC': 'Continuity',
|
|
2362
|
+
// 'itemcode': '',
|
|
2363
|
+
// },
|
|
2364
|
+
// {
|
|
2365
|
+
// 'facility_code': 'LKST98',
|
|
2366
|
+
// 'product_id': 211283,
|
|
2367
|
+
// 'brand': 'John Jacobs',
|
|
2368
|
+
// 'category': 'eyeframe',
|
|
2369
|
+
// 'zone': 'South',
|
|
2370
|
+
// 'tlp_status': 'N',
|
|
2371
|
+
// 'lf_nonlf': 'LF',
|
|
2372
|
+
// 'kpi': 'SOH',
|
|
2373
|
+
// 'qty': 1,
|
|
2374
|
+
// 'created_at': '1/31/2025',
|
|
2375
|
+
// 'store_type': 'COCO',
|
|
2376
|
+
// 'status': 'Active',
|
|
2377
|
+
// 'PLC': 'Continuity',
|
|
2378
|
+
// 'itemcode': 'JJJ015878455',
|
|
2379
|
+
// },
|
|
2380
|
+
// {
|
|
2381
|
+
// 'facility_code': 'LKST98',
|
|
2382
|
+
// 'product_id': 215254,
|
|
2383
|
+
// 'brand': 'John Jacobs',
|
|
2384
|
+
// 'category': 'eyeframe',
|
|
2385
|
+
// 'zone': 'South',
|
|
2386
|
+
// 'tlp_status': 'N',
|
|
2387
|
+
// 'lf_nonlf': 'LF',
|
|
2388
|
+
// 'kpi': 'SOH',
|
|
2389
|
+
// 'qty': 1,
|
|
2390
|
+
// 'created_at': '1/31/2025',
|
|
2391
|
+
// 'store_type': 'COCO',
|
|
2392
|
+
// 'status': 'Active',
|
|
2393
|
+
// 'PLC': 'Continuity',
|
|
2394
|
+
// 'itemcode': '',
|
|
2395
|
+
// },
|
|
2396
|
+
// {
|
|
2397
|
+
// 'facility_code': 'LKST98',
|
|
2398
|
+
// 'product_id': 213096,
|
|
2399
|
+
// 'brand': 'John Jacobs Online',
|
|
2400
|
+
// 'category': 'sunglasses',
|
|
2401
|
+
// 'zone': 'South',
|
|
2402
|
+
// 'tlp_status': 'YES',
|
|
2403
|
+
// 'lf_nonlf': 'LF',
|
|
2404
|
+
// 'kpi': 'SOH',
|
|
2405
|
+
// 'qty': 1,
|
|
2406
|
+
// 'created_at': '1/31/2025',
|
|
2407
|
+
// 'store_type': 'COCO',
|
|
2408
|
+
// 'status': 'Active',
|
|
2409
|
+
// 'PLC': 'Singapore Ex',
|
|
2410
|
+
// 'itemcode': 'JJJ016179879',
|
|
2411
|
+
// },
|
|
2412
|
+
// {
|
|
2413
|
+
// 'facility_code': 'LKST98',
|
|
2414
|
+
// 'product_id': 201387,
|
|
2415
|
+
// 'brand': 'John Jacobs',
|
|
2416
|
+
// 'category': 'eyeframe',
|
|
2417
|
+
// 'zone': 'South',
|
|
2418
|
+
// 'tlp_status': 'N',
|
|
2419
|
+
// 'lf_nonlf': 'LF',
|
|
2420
|
+
// 'kpi': 'SOH',
|
|
2421
|
+
// 'qty': 1,
|
|
2422
|
+
// 'created_at': '1/31/2025',
|
|
2423
|
+
// 'store_type': 'COCO',
|
|
2424
|
+
// 'status': 'Active',
|
|
2425
|
+
// 'PLC': 'Discontinued',
|
|
2426
|
+
// 'itemcode': '',
|
|
2427
|
+
// },
|
|
2428
|
+
// {
|
|
2429
|
+
// 'facility_code': 'LKST98',
|
|
2430
|
+
// 'product_id': 135940,
|
|
2431
|
+
// 'brand': 'John Jacobs',
|
|
2432
|
+
// 'category': 'eyeframe',
|
|
2433
|
+
// 'zone': 'South',
|
|
2434
|
+
// 'tlp_status': 'N',
|
|
2435
|
+
// 'lf_nonlf': 'LF',
|
|
2436
|
+
// 'kpi': 'SOH',
|
|
2437
|
+
// 'qty': 1,
|
|
2438
|
+
// 'created_at': '1/31/2025',
|
|
2439
|
+
// 'store_type': 'COCO',
|
|
2440
|
+
// 'status': 'Active',
|
|
2441
|
+
// 'PLC': 'Continuity',
|
|
2442
|
+
// 'itemcode': 'JJJ018211017',
|
|
2443
|
+
// },
|
|
2444
|
+
// {
|
|
2445
|
+
// 'facility_code': 'LKST98',
|
|
2446
|
+
// 'product_id': 147672,
|
|
2447
|
+
// 'brand': 'John Jacobs',
|
|
2448
|
+
// 'category': 'sunglasses',
|
|
2449
|
+
// 'zone': 'South',
|
|
2450
|
+
// 'tlp_status': 'N',
|
|
2451
|
+
// 'lf_nonlf': 'LF',
|
|
2452
|
+
// 'kpi': 'SOH',
|
|
2453
|
+
// 'qty': 1,
|
|
2454
|
+
// 'created_at': '1/31/2025',
|
|
2455
|
+
// 'store_type': 'COCO',
|
|
2456
|
+
// 'status': 'Active',
|
|
2457
|
+
// 'PLC': 'Continuity',
|
|
2458
|
+
// 'itemcode': 'JJJ017353536',
|
|
2459
|
+
// },
|
|
2460
|
+
// {
|
|
2461
|
+
// 'facility_code': 'LKST98',
|
|
2462
|
+
// 'product_id': 222480,
|
|
2463
|
+
// 'brand': 'John Jacobs',
|
|
2464
|
+
// 'category': 'eyeframe',
|
|
2465
|
+
// 'zone': 'South',
|
|
2466
|
+
// 'tlp_status': 'N',
|
|
2467
|
+
// 'lf_nonlf': 'LF',
|
|
2468
|
+
// 'kpi': 'SOH',
|
|
2469
|
+
// 'qty': 1,
|
|
2470
|
+
// 'created_at': '1/31/2025',
|
|
2471
|
+
// 'store_type': 'COCO',
|
|
2472
|
+
// 'status': 'Active',
|
|
2473
|
+
// 'PLC': 'New Launches',
|
|
2474
|
+
// 'itemcode': 'JJJ019307365',
|
|
2475
|
+
// },
|
|
2476
|
+
// {
|
|
2477
|
+
// 'facility_code': 'LKST98',
|
|
2478
|
+
// 'product_id': 225419,
|
|
2479
|
+
// 'brand': 'John Jacobs',
|
|
2480
|
+
// 'category': 'sunglasses',
|
|
2481
|
+
// 'zone': 'South',
|
|
2482
|
+
// 'tlp_status': 'N',
|
|
2483
|
+
// 'lf_nonlf': 'LF',
|
|
2484
|
+
// 'kpi': 'SOH',
|
|
2485
|
+
// 'qty': 1,
|
|
2486
|
+
// 'created_at': '1/31/2025',
|
|
2487
|
+
// 'store_type': 'COCO',
|
|
2488
|
+
// 'status': 'Active',
|
|
2489
|
+
// 'PLC': 'New Launches',
|
|
2490
|
+
// 'itemcode': '',
|
|
2491
|
+
// },
|
|
2492
|
+
// {
|
|
2493
|
+
// 'facility_code': 'LKST98',
|
|
2494
|
+
// 'product_id': 131411,
|
|
2495
|
+
// 'brand': 'John Jacobs',
|
|
2496
|
+
// 'category': 'eyeframe',
|
|
2497
|
+
// 'zone': 'South',
|
|
2498
|
+
// 'tlp_status': 'N',
|
|
2499
|
+
// 'lf_nonlf': 'LF',
|
|
2500
|
+
// 'kpi': 'SOH',
|
|
2501
|
+
// 'qty': 1,
|
|
2502
|
+
// 'created_at': '1/31/2025',
|
|
2503
|
+
// 'store_type': 'COCO',
|
|
2504
|
+
// 'status': 'Active',
|
|
2505
|
+
// 'PLC': 'Core',
|
|
2506
|
+
// 'itemcode': 'JJJ018146683',
|
|
2507
|
+
// },
|
|
2508
|
+
// {
|
|
2509
|
+
// 'facility_code': 'LKST98',
|
|
2510
|
+
// 'product_id': 215582,
|
|
2511
|
+
// 'brand': 'John Jacobs',
|
|
2512
|
+
// 'category': 'sunglasses',
|
|
2513
|
+
// 'zone': 'South',
|
|
2514
|
+
// 'tlp_status': 'N',
|
|
2515
|
+
// 'lf_nonlf': 'LF',
|
|
2516
|
+
// 'kpi': 'SOH',
|
|
2517
|
+
// 'qty': 1,
|
|
2518
|
+
// 'created_at': '1/31/2025',
|
|
2519
|
+
// 'store_type': 'COCO',
|
|
2520
|
+
// 'status': 'Active',
|
|
2521
|
+
// 'PLC': 'Core',
|
|
2522
|
+
// 'itemcode': 'JJJ020557321',
|
|
2523
|
+
// },
|
|
2524
|
+
// {
|
|
2525
|
+
// 'facility_code': 'LKST98',
|
|
2526
|
+
// 'product_id': 148306,
|
|
2527
|
+
// 'brand': 'John Jacobs',
|
|
2528
|
+
// 'category': 'eyeframe',
|
|
2529
|
+
// 'zone': 'South',
|
|
2530
|
+
// 'tlp_status': 'N',
|
|
2531
|
+
// 'lf_nonlf': 'LF',
|
|
2532
|
+
// 'kpi': 'SOH',
|
|
2533
|
+
// 'qty': 1,
|
|
2534
|
+
// 'created_at': '1/31/2025',
|
|
2535
|
+
// 'store_type': 'COCO',
|
|
2536
|
+
// 'status': 'Active',
|
|
2537
|
+
// 'PLC': 'Continuity',
|
|
2538
|
+
// 'itemcode': 'JJJ019094230',
|
|
2539
|
+
// },
|
|
2540
|
+
// {
|
|
2541
|
+
// 'facility_code': 'LKST98',
|
|
2542
|
+
// 'product_id': 209442,
|
|
2543
|
+
// 'brand': 'John Jacobs',
|
|
2544
|
+
// 'category': 'sunglasses',
|
|
2545
|
+
// 'zone': 'South',
|
|
2546
|
+
// 'tlp_status': 'YES',
|
|
2547
|
+
// 'lf_nonlf': 'LF',
|
|
2548
|
+
// 'kpi': 'SOH',
|
|
2549
|
+
// 'qty': 1,
|
|
2550
|
+
// 'created_at': '1/31/2025',
|
|
2551
|
+
// 'store_type': 'COCO',
|
|
2552
|
+
// 'status': 'Active',
|
|
2553
|
+
// 'PLC': 'Singapore Ex',
|
|
2554
|
+
// 'itemcode': 'JJJ015280180',
|
|
2555
|
+
// },
|
|
2556
|
+
// {
|
|
2557
|
+
// 'facility_code': 'LKST98',
|
|
2558
|
+
// 'product_id': 137915,
|
|
2559
|
+
// 'brand': 'John Jacobs',
|
|
2560
|
+
// 'category': 'eyeframe',
|
|
2561
|
+
// 'zone': 'South',
|
|
2562
|
+
// 'tlp_status': 'N',
|
|
2563
|
+
// 'lf_nonlf': 'LF',
|
|
2564
|
+
// 'kpi': 'SOH',
|
|
2565
|
+
// 'qty': 1,
|
|
2566
|
+
// 'created_at': '1/31/2025',
|
|
2567
|
+
// 'store_type': 'COCO',
|
|
2568
|
+
// 'status': 'Active',
|
|
2569
|
+
// 'PLC': 'Core',
|
|
2570
|
+
// 'itemcode': 'JJJ019707664',
|
|
2571
|
+
// },
|
|
2572
|
+
// {
|
|
2573
|
+
// 'facility_code': 'LKST98',
|
|
2574
|
+
// 'product_id': 208092,
|
|
2575
|
+
// 'brand': 'John Jacobs Online',
|
|
2576
|
+
// 'category': 'sunglasses',
|
|
2577
|
+
// 'zone': 'South',
|
|
2578
|
+
// 'tlp_status': 'YES',
|
|
2579
|
+
// 'lf_nonlf': 'LF',
|
|
2580
|
+
// 'kpi': 'SOH',
|
|
2581
|
+
// 'qty': 1,
|
|
2582
|
+
// 'created_at': '1/31/2025',
|
|
2583
|
+
// 'store_type': 'COCO',
|
|
2584
|
+
// 'status': 'Active',
|
|
2585
|
+
// 'PLC': 'Discontinued',
|
|
2586
|
+
// 'itemcode': 'JJJ014754482',
|
|
2587
|
+
// },
|
|
2588
|
+
// {
|
|
2589
|
+
// 'facility_code': 'LKST98',
|
|
2590
|
+
// 'product_id': 201392,
|
|
2591
|
+
// 'brand': 'John Jacobs',
|
|
2592
|
+
// 'category': 'eyeframe',
|
|
2593
|
+
// 'zone': 'South',
|
|
2594
|
+
// 'tlp_status': 'N',
|
|
2595
|
+
// 'lf_nonlf': 'LF',
|
|
2596
|
+
// 'kpi': 'SOH',
|
|
2597
|
+
// 'qty': 1,
|
|
2598
|
+
// 'created_at': '1/31/2025',
|
|
2599
|
+
// 'store_type': 'COCO',
|
|
2600
|
+
// 'status': 'Active',
|
|
2601
|
+
// 'PLC': 'Continuity',
|
|
2602
|
+
// 'itemcode': 'JJJ016334204',
|
|
2603
|
+
// },
|
|
2604
|
+
// {
|
|
2605
|
+
// 'facility_code': 'LKST98',
|
|
2606
|
+
// 'product_id': 213683,
|
|
2607
|
+
// 'brand': 'John Jacobs',
|
|
2608
|
+
// 'category': 'eyeframe',
|
|
2609
|
+
// 'zone': 'South',
|
|
2610
|
+
// 'tlp_status': 'N',
|
|
2611
|
+
// 'lf_nonlf': 'LF',
|
|
2612
|
+
// 'kpi': 'SOH',
|
|
2613
|
+
// 'qty': 1,
|
|
2614
|
+
// 'created_at': '1/31/2025',
|
|
2615
|
+
// 'store_type': 'COCO',
|
|
2616
|
+
// 'status': 'Active',
|
|
2617
|
+
// 'PLC': 'Core',
|
|
2618
|
+
// 'itemcode': 'JJJ016565166',
|
|
2619
|
+
// },
|
|
2620
|
+
// {
|
|
2621
|
+
// 'facility_code': 'LKST98',
|
|
2622
|
+
// 'product_id': 217997,
|
|
2623
|
+
// 'brand': 'John Jacobs',
|
|
2624
|
+
// 'category': 'eyeframe',
|
|
2625
|
+
// 'zone': 'South',
|
|
2626
|
+
// 'tlp_status': 'N',
|
|
2627
|
+
// 'lf_nonlf': 'LF',
|
|
2628
|
+
// 'kpi': 'SOH',
|
|
2629
|
+
// 'qty': 1,
|
|
2630
|
+
// 'created_at': '1/31/2025',
|
|
2631
|
+
// 'store_type': 'COCO',
|
|
2632
|
+
// 'status': 'Active',
|
|
2633
|
+
// 'PLC': 'Continuity',
|
|
2634
|
+
// 'itemcode': 'JJJ017877328',
|
|
2635
|
+
// },
|
|
2636
|
+
// {
|
|
2637
|
+
// 'facility_code': 'LKST98',
|
|
2638
|
+
// 'product_id': 146203,
|
|
2639
|
+
// 'brand': 'John Jacobs',
|
|
2640
|
+
// 'category': 'eyeframe',
|
|
2641
|
+
// 'zone': 'South',
|
|
2642
|
+
// 'tlp_status': 'N',
|
|
2643
|
+
// 'lf_nonlf': 'LF',
|
|
2644
|
+
// 'kpi': 'SOH',
|
|
2645
|
+
// 'qty': 1,
|
|
2646
|
+
// 'created_at': '1/31/2025',
|
|
2647
|
+
// 'store_type': 'COCO',
|
|
2648
|
+
// 'status': 'Active',
|
|
2649
|
+
// 'PLC': 'Core',
|
|
2650
|
+
// 'itemcode': 'JJJ020363392',
|
|
2651
|
+
// },
|
|
2652
|
+
// {
|
|
2653
|
+
// 'facility_code': 'LKST98',
|
|
2654
|
+
// 'product_id': 131410,
|
|
2655
|
+
// 'brand': 'John Jacobs',
|
|
2656
|
+
// 'category': 'eyeframe',
|
|
2657
|
+
// 'zone': 'South',
|
|
2658
|
+
// 'tlp_status': 'N',
|
|
2659
|
+
// 'lf_nonlf': 'LF',
|
|
2660
|
+
// 'kpi': 'SOH',
|
|
2661
|
+
// 'qty': 1,
|
|
2662
|
+
// 'created_at': '1/31/2025',
|
|
2663
|
+
// 'store_type': 'COCO',
|
|
2664
|
+
// 'status': 'Active',
|
|
2665
|
+
// 'PLC': 'Continuity A',
|
|
2666
|
+
// 'itemcode': 'IIM14584771039',
|
|
2667
|
+
// },
|
|
2668
|
+
// {
|
|
2669
|
+
// 'facility_code': 'LKST98',
|
|
2670
|
+
// 'product_id': 217180,
|
|
2671
|
+
// 'brand': 'John Jacobs',
|
|
2672
|
+
// 'category': 'eyeframe',
|
|
2673
|
+
// 'zone': 'South',
|
|
2674
|
+
// 'tlp_status': 'N',
|
|
2675
|
+
// 'lf_nonlf': 'LF',
|
|
2676
|
+
// 'kpi': 'SOH',
|
|
2677
|
+
// 'qty': 1,
|
|
2678
|
+
// 'created_at': '1/31/2025',
|
|
2679
|
+
// 'store_type': 'COCO',
|
|
2680
|
+
// 'status': 'Active',
|
|
2681
|
+
// 'PLC': 'Continuity A',
|
|
2682
|
+
// 'itemcode': '',
|
|
2683
|
+
// },
|
|
2684
|
+
// {
|
|
2685
|
+
// 'facility_code': 'LKST98',
|
|
2686
|
+
// 'product_id': 127290,
|
|
2687
|
+
// 'brand': 'John Jacobs',
|
|
2688
|
+
// 'category': 'sunglasses',
|
|
2689
|
+
// 'zone': 'South',
|
|
2690
|
+
// 'tlp_status': 'N',
|
|
2691
|
+
// 'lf_nonlf': 'LF',
|
|
2692
|
+
// 'kpi': 'SOH',
|
|
2693
|
+
// 'qty': 2,
|
|
2694
|
+
// 'created_at': '1/31/2025',
|
|
2695
|
+
// 'store_type': 'COCO',
|
|
2696
|
+
// 'status': 'Active',
|
|
2697
|
+
// 'PLC': 'Core',
|
|
2698
|
+
// 'itemcode': 'JJJ017184241',
|
|
2699
|
+
// },
|
|
2700
|
+
// {
|
|
2701
|
+
// 'facility_code': 'LKST98',
|
|
2702
|
+
// 'product_id': 217998,
|
|
2703
|
+
// 'brand': 'John Jacobs',
|
|
2704
|
+
// 'category': 'eyeframe',
|
|
2705
|
+
// 'zone': 'South',
|
|
2706
|
+
// 'tlp_status': 'N',
|
|
2707
|
+
// 'lf_nonlf': 'LF',
|
|
2708
|
+
// 'kpi': 'SOH',
|
|
2709
|
+
// 'qty': 1,
|
|
2710
|
+
// 'created_at': '1/31/2025',
|
|
2711
|
+
// 'store_type': 'COCO',
|
|
2712
|
+
// 'status': 'Active',
|
|
2713
|
+
// 'PLC': 'Core',
|
|
2714
|
+
// 'itemcode': 'JJJ017853235',
|
|
2715
|
+
// },
|
|
2716
|
+
// {
|
|
2717
|
+
// 'facility_code': 'LKST98',
|
|
2718
|
+
// 'product_id': 209664,
|
|
2719
|
+
// 'brand': 'John Jacobs',
|
|
2720
|
+
// 'category': 'eyeframe',
|
|
2721
|
+
// 'zone': 'South',
|
|
2722
|
+
// 'tlp_status': 'N',
|
|
2723
|
+
// 'lf_nonlf': 'LF',
|
|
2724
|
+
// 'kpi': 'SOH',
|
|
2725
|
+
// 'qty': 1,
|
|
2726
|
+
// 'created_at': '1/31/2025',
|
|
2727
|
+
// 'store_type': 'COCO',
|
|
2728
|
+
// 'status': 'Active',
|
|
2729
|
+
// 'PLC': 'Continuity',
|
|
2730
|
+
// 'itemcode': '',
|
|
2731
|
+
// },
|
|
2732
|
+
// {
|
|
2733
|
+
// 'facility_code': 'LKST98',
|
|
2734
|
+
// 'product_id': 216854,
|
|
2735
|
+
// 'brand': 'John Jacobs',
|
|
2736
|
+
// 'category': 'eyeframe',
|
|
2737
|
+
// 'zone': 'South',
|
|
2738
|
+
// 'tlp_status': 'N',
|
|
2739
|
+
// 'lf_nonlf': 'LF',
|
|
2740
|
+
// 'kpi': 'SOH',
|
|
2741
|
+
// 'qty': 1,
|
|
2742
|
+
// 'created_at': '1/31/2025',
|
|
2743
|
+
// 'store_type': 'COCO',
|
|
2744
|
+
// 'status': 'Active',
|
|
2745
|
+
// 'PLC': 'Continuity',
|
|
2746
|
+
// 'itemcode': 'JJJ019143077',
|
|
2747
|
+
// },
|
|
2748
|
+
// {
|
|
2749
|
+
// 'facility_code': 'LKST98',
|
|
2750
|
+
// 'product_id': 225414,
|
|
2751
|
+
// 'brand': 'John Jacobs',
|
|
2752
|
+
// 'category': 'sunglasses',
|
|
2753
|
+
// 'zone': 'South',
|
|
2754
|
+
// 'tlp_status': 'N',
|
|
2755
|
+
// 'lf_nonlf': 'LF',
|
|
2756
|
+
// 'kpi': 'SOH',
|
|
2757
|
+
// 'qty': 1,
|
|
2758
|
+
// 'created_at': '1/31/2025',
|
|
2759
|
+
// 'store_type': 'COCO',
|
|
2760
|
+
// 'status': 'Active',
|
|
2761
|
+
// 'PLC': 'New Launches',
|
|
2762
|
+
// 'itemcode': '',
|
|
2763
|
+
// },
|
|
2764
|
+
// {
|
|
2765
|
+
// 'facility_code': 'LKST98',
|
|
2766
|
+
// 'product_id': 131447,
|
|
2767
|
+
// 'brand': 'John Jacobs',
|
|
2768
|
+
// 'category': 'eyeframe',
|
|
2769
|
+
// 'zone': 'South',
|
|
2770
|
+
// 'tlp_status': 'N',
|
|
2771
|
+
// 'lf_nonlf': 'LF',
|
|
2772
|
+
// 'kpi': 'SOH',
|
|
2773
|
+
// 'qty': 1,
|
|
2774
|
+
// 'created_at': '1/31/2025',
|
|
2775
|
+
// 'store_type': 'COCO',
|
|
2776
|
+
// 'status': 'Active',
|
|
2777
|
+
// 'PLC': 'Continuity',
|
|
2778
|
+
// 'itemcode': 'JJJ018154137',
|
|
2779
|
+
// },
|
|
2780
|
+
// {
|
|
2781
|
+
// 'facility_code': 'LKST98',
|
|
2782
|
+
// 'product_id': 216737,
|
|
2783
|
+
// 'brand': 'John Jacobs',
|
|
2784
|
+
// 'category': 'eyeframe',
|
|
2785
|
+
// 'zone': 'South',
|
|
2786
|
+
// 'tlp_status': 'N',
|
|
2787
|
+
// 'lf_nonlf': 'LF',
|
|
2788
|
+
// 'kpi': 'SOH',
|
|
2789
|
+
// 'qty': 1,
|
|
2790
|
+
// 'created_at': '1/31/2025',
|
|
2791
|
+
// 'store_type': 'COCO',
|
|
2792
|
+
// 'status': 'Active',
|
|
2793
|
+
// 'PLC': 'Core',
|
|
2794
|
+
// 'itemcode': 'JJJ016881423',
|
|
2795
|
+
// },
|
|
2796
|
+
// {
|
|
2797
|
+
// 'facility_code': 'LKST98',
|
|
2798
|
+
// 'product_id': 222473,
|
|
2799
|
+
// 'brand': 'John Jacobs',
|
|
2800
|
+
// 'category': 'eyeframe',
|
|
2801
|
+
// 'zone': 'South',
|
|
2802
|
+
// 'tlp_status': 'N',
|
|
2803
|
+
// 'lf_nonlf': 'LF',
|
|
2804
|
+
// 'kpi': 'SOH',
|
|
2805
|
+
// 'qty': 1,
|
|
2806
|
+
// 'created_at': '1/31/2025',
|
|
2807
|
+
// 'store_type': 'COCO',
|
|
2808
|
+
// 'status': 'Active',
|
|
2809
|
+
// 'PLC': 'New Launches',
|
|
2810
|
+
// 'itemcode': 'JJJ019299934',
|
|
2811
|
+
// },
|
|
2812
|
+
// {
|
|
2813
|
+
// 'facility_code': 'LKST98',
|
|
2814
|
+
// 'product_id': 144598,
|
|
2815
|
+
// 'brand': 'John Jacobs',
|
|
2816
|
+
// 'category': 'eyeframe',
|
|
2817
|
+
// 'zone': 'South',
|
|
2818
|
+
// 'tlp_status': 'N',
|
|
2819
|
+
// 'lf_nonlf': 'LF',
|
|
2820
|
+
// 'kpi': 'SOH',
|
|
2821
|
+
// 'qty': 1,
|
|
2822
|
+
// 'created_at': '1/31/2025',
|
|
2823
|
+
// 'store_type': 'COCO',
|
|
2824
|
+
// 'status': 'Active',
|
|
2825
|
+
// 'PLC': 'Continuity A',
|
|
2826
|
+
// 'itemcode': 'JJJ019719022',
|
|
2827
|
+
// },
|
|
2828
|
+
// {
|
|
2829
|
+
// 'facility_code': 'LKST98',
|
|
2830
|
+
// 'product_id': 150854,
|
|
2831
|
+
// 'brand': 'John Jacobs Online',
|
|
2832
|
+
// 'category': 'eyeframe',
|
|
2833
|
+
// 'zone': 'South',
|
|
2834
|
+
// 'tlp_status': 'YES',
|
|
2835
|
+
// 'lf_nonlf': 'LF',
|
|
2836
|
+
// 'kpi': 'SOH',
|
|
2837
|
+
// 'qty': 1,
|
|
2838
|
+
// 'created_at': '1/31/2025',
|
|
2839
|
+
// 'store_type': 'COCO',
|
|
2840
|
+
// 'status': 'Active',
|
|
2841
|
+
// 'PLC': 'Disabled',
|
|
2842
|
+
// 'itemcode': 'JJJ016444926',
|
|
2843
|
+
// },
|
|
2844
|
+
// {
|
|
2845
|
+
// 'facility_code': 'LKST98',
|
|
2846
|
+
// 'product_id': 216860,
|
|
2847
|
+
// 'brand': 'John Jacobs',
|
|
2848
|
+
// 'category': 'eyeframe',
|
|
2849
|
+
// 'zone': 'South',
|
|
2850
|
+
// 'tlp_status': 'YES',
|
|
2851
|
+
// 'lf_nonlf': 'LF',
|
|
2852
|
+
// 'kpi': 'SOH',
|
|
2853
|
+
// 'qty': 1,
|
|
2854
|
+
// 'created_at': '1/31/2025',
|
|
2855
|
+
// 'store_type': 'COCO',
|
|
2856
|
+
// 'status': 'Active',
|
|
2857
|
+
// 'PLC': 'Continuity',
|
|
2858
|
+
// 'itemcode': 'JJJ019134570',
|
|
2859
|
+
// },
|
|
2860
|
+
// {
|
|
2861
|
+
// 'facility_code': 'LKST98',
|
|
2862
|
+
// 'product_id': 206146,
|
|
2863
|
+
// 'brand': 'John Jacobs',
|
|
2864
|
+
// 'category': 'sunglasses',
|
|
2865
|
+
// 'zone': 'South',
|
|
2866
|
+
// 'tlp_status': 'N',
|
|
2867
|
+
// 'lf_nonlf': 'LF',
|
|
2868
|
+
// 'kpi': 'SOH',
|
|
2869
|
+
// 'qty': 1,
|
|
2870
|
+
// 'created_at': '1/31/2025',
|
|
2871
|
+
// 'store_type': 'COCO',
|
|
2872
|
+
// 'status': 'Active',
|
|
2873
|
+
// 'PLC': 'Continuity',
|
|
2874
|
+
// 'itemcode': 'JJJ013080792',
|
|
2875
|
+
// },
|
|
2876
|
+
// {
|
|
2877
|
+
// 'facility_code': 'LKST98',
|
|
2878
|
+
// 'product_id': 217754,
|
|
2879
|
+
// 'brand': 'John Jacobs',
|
|
2880
|
+
// 'category': 'eyeframe',
|
|
2881
|
+
// 'zone': 'South',
|
|
2882
|
+
// 'tlp_status': 'N',
|
|
2883
|
+
// 'lf_nonlf': 'LF',
|
|
2884
|
+
// 'kpi': 'SOH',
|
|
2885
|
+
// 'qty': 1,
|
|
2886
|
+
// 'created_at': '1/31/2025',
|
|
2887
|
+
// 'store_type': 'COCO',
|
|
2888
|
+
// 'status': 'Active',
|
|
2889
|
+
// 'PLC': 'Continuity',
|
|
2890
|
+
// 'itemcode': 'JJJ017012423',
|
|
2891
|
+
// },
|
|
2892
|
+
// {
|
|
2893
|
+
// 'facility_code': 'LKST98',
|
|
2894
|
+
// 'product_id': 211282,
|
|
2895
|
+
// 'brand': 'John Jacobs',
|
|
2896
|
+
// 'category': 'eyeframe',
|
|
2897
|
+
// 'zone': 'South',
|
|
2898
|
+
// 'tlp_status': 'N',
|
|
2899
|
+
// 'lf_nonlf': 'LF',
|
|
2900
|
+
// 'kpi': 'SOH',
|
|
2901
|
+
// 'qty': 1,
|
|
2902
|
+
// 'created_at': '1/31/2025',
|
|
2903
|
+
// 'store_type': 'COCO',
|
|
2904
|
+
// 'status': 'Active',
|
|
2905
|
+
// 'PLC': 'Core',
|
|
2906
|
+
// 'itemcode': 'JJJ018253452',
|
|
2907
|
+
// },
|
|
2908
|
+
// {
|
|
2909
|
+
// 'facility_code': 'LKST98',
|
|
2910
|
+
// 'product_id': 215250,
|
|
2911
|
+
// 'brand': 'John Jacobs',
|
|
2912
|
+
// 'category': 'eyeframe',
|
|
2913
|
+
// 'zone': 'South',
|
|
2914
|
+
// 'tlp_status': 'N',
|
|
2915
|
+
// 'lf_nonlf': 'LF',
|
|
2916
|
+
// 'kpi': 'SOH',
|
|
2917
|
+
// 'qty': 1,
|
|
2918
|
+
// 'created_at': '1/31/2025',
|
|
2919
|
+
// 'store_type': 'COCO',
|
|
2920
|
+
// 'status': 'Active',
|
|
2921
|
+
// 'PLC': 'Continuity',
|
|
2922
|
+
// 'itemcode': 'JJJ020917534',
|
|
2923
|
+
// },
|
|
2924
|
+
// {
|
|
2925
|
+
// 'facility_code': 'LKST98',
|
|
2926
|
+
// 'product_id': 201397,
|
|
2927
|
+
// 'brand': 'John Jacobs',
|
|
2928
|
+
// 'category': 'eyeframe',
|
|
2929
|
+
// 'zone': 'South',
|
|
2930
|
+
// 'tlp_status': 'N',
|
|
2931
|
+
// 'lf_nonlf': 'LF',
|
|
2932
|
+
// 'kpi': 'SOH',
|
|
2933
|
+
// 'qty': 1,
|
|
2934
|
+
// 'created_at': '1/31/2025',
|
|
2935
|
+
// 'store_type': 'COCO',
|
|
2936
|
+
// 'status': 'Active',
|
|
2937
|
+
// 'PLC': 'Continuity A',
|
|
2938
|
+
// 'itemcode': 'JJJ017424440',
|
|
2939
|
+
// },
|
|
2940
|
+
// {
|
|
2941
|
+
// 'facility_code': 'LKST98',
|
|
2942
|
+
// 'product_id': 209436,
|
|
2943
|
+
// 'brand': 'John Jacobs',
|
|
2944
|
+
// 'category': 'sunglasses',
|
|
2945
|
+
// 'zone': 'South',
|
|
2946
|
+
// 'tlp_status': 'YES',
|
|
2947
|
+
// 'lf_nonlf': 'LF',
|
|
2948
|
+
// 'kpi': 'SOH',
|
|
2949
|
+
// 'qty': 1,
|
|
2950
|
+
// 'created_at': '1/31/2025',
|
|
2951
|
+
// 'store_type': 'COCO',
|
|
2952
|
+
// 'status': 'Active',
|
|
2953
|
+
// 'PLC': 'Singapore Ex',
|
|
2954
|
+
// 'itemcode': 'JJJ015274209',
|
|
2955
|
+
// },
|
|
2956
|
+
// {
|
|
2957
|
+
// 'facility_code': 'LKST98',
|
|
2958
|
+
// 'product_id': 218001,
|
|
2959
|
+
// 'brand': 'John Jacobs',
|
|
2960
|
+
// 'category': 'eyeframe',
|
|
2961
|
+
// 'zone': 'South',
|
|
2962
|
+
// 'tlp_status': 'N',
|
|
2963
|
+
// 'lf_nonlf': 'LF',
|
|
2964
|
+
// 'kpi': 'SOH',
|
|
2965
|
+
// 'qty': 1,
|
|
2966
|
+
// 'created_at': '1/31/2025',
|
|
2967
|
+
// 'store_type': 'COCO',
|
|
2968
|
+
// 'status': 'Active',
|
|
2969
|
+
// 'PLC': 'Core',
|
|
2970
|
+
// 'itemcode': 'JJJ017857035',
|
|
2971
|
+
// },
|
|
2972
|
+
// {
|
|
2973
|
+
// 'facility_code': 'LKST98',
|
|
2974
|
+
// 'product_id': 136177,
|
|
2975
|
+
// 'brand': 'John Jacobs',
|
|
2976
|
+
// 'category': 'eyeframe',
|
|
2977
|
+
// 'zone': 'South',
|
|
2978
|
+
// 'tlp_status': 'N',
|
|
2979
|
+
// 'lf_nonlf': 'LF',
|
|
2980
|
+
// 'kpi': 'SOH',
|
|
2981
|
+
// 'qty': 1,
|
|
2982
|
+
// 'created_at': '1/31/2025',
|
|
2983
|
+
// 'store_type': 'COCO',
|
|
2984
|
+
// 'status': 'Active',
|
|
2985
|
+
// 'PLC': 'Core',
|
|
2986
|
+
// 'itemcode': 'JJJ018540109',
|
|
2987
|
+
// },
|
|
2988
|
+
// {
|
|
2989
|
+
// 'facility_code': 'LKST98',
|
|
2990
|
+
// 'product_id': 147919,
|
|
2991
|
+
// 'brand': 'John Jacobs',
|
|
2992
|
+
// 'category': 'sunglasses',
|
|
2993
|
+
// 'zone': 'South',
|
|
2994
|
+
// 'tlp_status': 'N',
|
|
2995
|
+
// 'lf_nonlf': 'LF',
|
|
2996
|
+
// 'kpi': 'SOH',
|
|
2997
|
+
// 'qty': 1,
|
|
2998
|
+
// 'created_at': '1/31/2025',
|
|
2999
|
+
// 'store_type': 'COCO',
|
|
3000
|
+
// 'status': 'Active',
|
|
3001
|
+
// 'PLC': 'Continuity',
|
|
3002
|
+
// 'itemcode': 'JJJ013943206',
|
|
3003
|
+
// },
|
|
3004
|
+
// {
|
|
3005
|
+
// 'facility_code': 'LKST98',
|
|
3006
|
+
// 'product_id': 201389,
|
|
3007
|
+
// 'brand': 'John Jacobs',
|
|
3008
|
+
// 'category': 'eyeframe',
|
|
3009
|
+
// 'zone': 'South',
|
|
3010
|
+
// 'tlp_status': 'N',
|
|
3011
|
+
// 'lf_nonlf': 'LF',
|
|
3012
|
+
// 'kpi': 'SOH',
|
|
3013
|
+
// 'qty': 1,
|
|
3014
|
+
// 'created_at': '1/31/2025',
|
|
3015
|
+
// 'store_type': 'COCO',
|
|
3016
|
+
// 'status': 'Active',
|
|
3017
|
+
// 'PLC': 'Continuity A',
|
|
3018
|
+
// 'itemcode': 'JJJ016318710',
|
|
3019
|
+
// },
|
|
3020
|
+
// {
|
|
3021
|
+
// 'facility_code': 'LKST98',
|
|
3022
|
+
// 'product_id': 222485,
|
|
3023
|
+
// 'brand': 'John Jacobs',
|
|
3024
|
+
// 'category': 'eyeframe',
|
|
3025
|
+
// 'zone': 'South',
|
|
3026
|
+
// 'tlp_status': 'N',
|
|
3027
|
+
// 'lf_nonlf': 'LF',
|
|
3028
|
+
// 'kpi': 'SOH',
|
|
3029
|
+
// 'qty': 1,
|
|
3030
|
+
// 'created_at': '1/31/2025',
|
|
3031
|
+
// 'store_type': 'COCO',
|
|
3032
|
+
// 'status': 'Active',
|
|
3033
|
+
// 'PLC': 'New Launches',
|
|
3034
|
+
// 'itemcode': 'JJJ019311423',
|
|
3035
|
+
// },
|
|
3036
|
+
// {
|
|
3037
|
+
// 'facility_code': 'LKST98',
|
|
3038
|
+
// 'product_id': 215252,
|
|
3039
|
+
// 'brand': 'John Jacobs',
|
|
3040
|
+
// 'category': 'eyeframe',
|
|
3041
|
+
// 'zone': 'South',
|
|
3042
|
+
// 'tlp_status': 'N',
|
|
3043
|
+
// 'lf_nonlf': 'LF',
|
|
3044
|
+
// 'kpi': 'SOH',
|
|
3045
|
+
// 'qty': 1,
|
|
3046
|
+
// 'created_at': '1/31/2025',
|
|
3047
|
+
// 'store_type': 'COCO',
|
|
3048
|
+
// 'status': 'Active',
|
|
3049
|
+
// 'PLC': 'Continuity',
|
|
3050
|
+
// 'itemcode': 'JJJ016546394',
|
|
3051
|
+
// },
|
|
3052
|
+
// {
|
|
3053
|
+
// 'facility_code': 'LKST98',
|
|
3054
|
+
// 'product_id': 127190,
|
|
3055
|
+
// 'brand': 'John Jacobs',
|
|
3056
|
+
// 'category': 'eyeframe',
|
|
3057
|
+
// 'zone': 'South',
|
|
3058
|
+
// 'tlp_status': 'N',
|
|
3059
|
+
// 'lf_nonlf': 'LF',
|
|
3060
|
+
// 'kpi': 'SOH',
|
|
3061
|
+
// 'qty': 1,
|
|
3062
|
+
// 'created_at': '1/31/2025',
|
|
3063
|
+
// 'store_type': 'COCO',
|
|
3064
|
+
// 'status': 'Active',
|
|
3065
|
+
// 'PLC': 'Continuity',
|
|
3066
|
+
// 'itemcode': 'JJJ019700619',
|
|
3067
|
+
// },
|
|
3068
|
+
// {
|
|
3069
|
+
// 'facility_code': 'LKST98',
|
|
3070
|
+
// 'product_id': 209662,
|
|
3071
|
+
// 'brand': 'John Jacobs',
|
|
3072
|
+
// 'category': 'eyeframe',
|
|
3073
|
+
// 'zone': 'South',
|
|
3074
|
+
// 'tlp_status': 'N',
|
|
3075
|
+
// 'lf_nonlf': 'LF',
|
|
3076
|
+
// 'kpi': 'SOH',
|
|
3077
|
+
// 'qty': 1,
|
|
3078
|
+
// 'created_at': '1/31/2025',
|
|
3079
|
+
// 'store_type': 'COCO',
|
|
3080
|
+
// 'status': 'Active',
|
|
3081
|
+
// 'PLC': 'Continuity',
|
|
3082
|
+
// 'itemcode': '',
|
|
3083
|
+
// },
|
|
3084
|
+
// {
|
|
3085
|
+
// 'facility_code': 'LKST98',
|
|
3086
|
+
// 'product_id': 117020,
|
|
3087
|
+
// 'brand': 'John Jacobs',
|
|
3088
|
+
// 'category': 'eyeframe',
|
|
3089
|
+
// 'zone': 'South',
|
|
3090
|
+
// 'tlp_status': 'N',
|
|
3091
|
+
// 'lf_nonlf': 'LF',
|
|
3092
|
+
// 'kpi': 'SOH',
|
|
3093
|
+
// 'qty': 1,
|
|
3094
|
+
// 'created_at': '1/31/2025',
|
|
3095
|
+
// 'store_type': 'COCO',
|
|
3096
|
+
// 'status': 'Active',
|
|
3097
|
+
// 'PLC': 'Continuity',
|
|
3098
|
+
// 'itemcode': 'JJJ016029216',
|
|
3099
|
+
// },
|
|
3100
|
+
// {
|
|
3101
|
+
// 'facility_code': 'LKST98',
|
|
3102
|
+
// 'product_id': 147911,
|
|
3103
|
+
// 'brand': 'John Jacobs Online',
|
|
3104
|
+
// 'category': 'sunglasses',
|
|
3105
|
+
// 'zone': 'South',
|
|
3106
|
+
// 'tlp_status': 'YES',
|
|
3107
|
+
// 'lf_nonlf': 'LF',
|
|
3108
|
+
// 'kpi': 'SOH',
|
|
3109
|
+
// 'qty': 1,
|
|
3110
|
+
// 'created_at': '1/31/2025',
|
|
3111
|
+
// 'store_type': 'COCO',
|
|
3112
|
+
// 'status': 'Active',
|
|
3113
|
+
// 'PLC': 'Singapore Ex',
|
|
3114
|
+
// 'itemcode': 'JJJ011324141',
|
|
3115
|
+
// },
|
|
3116
|
+
// {
|
|
3117
|
+
// 'facility_code': 'LKST98',
|
|
3118
|
+
// 'product_id': 140632,
|
|
3119
|
+
// 'brand': 'John Jacobs',
|
|
3120
|
+
// 'category': 'sunglasses',
|
|
3121
|
+
// 'zone': 'South',
|
|
3122
|
+
// 'tlp_status': 'N',
|
|
3123
|
+
// 'lf_nonlf': 'LF',
|
|
3124
|
+
// 'kpi': 'SOH',
|
|
3125
|
+
// 'qty': 2,
|
|
3126
|
+
// 'created_at': '1/31/2025',
|
|
3127
|
+
// 'store_type': 'COCO',
|
|
3128
|
+
// 'status': 'Active',
|
|
3129
|
+
// 'PLC': 'Continuity A',
|
|
3130
|
+
// 'itemcode': 'JJJ018585136',
|
|
3131
|
+
// },
|
|
3132
|
+
// {
|
|
3133
|
+
// 'facility_code': 'LKST98',
|
|
3134
|
+
// 'product_id': 140647,
|
|
3135
|
+
// 'brand': 'John Jacobs',
|
|
3136
|
+
// 'category': 'eyeframe',
|
|
3137
|
+
// 'zone': 'South',
|
|
3138
|
+
// 'tlp_status': 'N',
|
|
3139
|
+
// 'lf_nonlf': 'LF',
|
|
3140
|
+
// 'kpi': 'SOH',
|
|
3141
|
+
// 'qty': 1,
|
|
3142
|
+
// 'created_at': '1/31/2025',
|
|
3143
|
+
// 'store_type': 'COCO',
|
|
3144
|
+
// 'status': 'Active',
|
|
3145
|
+
// 'PLC': 'Continuity A',
|
|
3146
|
+
// 'itemcode': 'JJJ020341285',
|
|
3147
|
+
// },
|
|
3148
|
+
// {
|
|
3149
|
+
// 'facility_code': 'LKST98',
|
|
3150
|
+
// 'product_id': 215281,
|
|
3151
|
+
// 'brand': 'John Jacobs',
|
|
3152
|
+
// 'category': 'eyeframe',
|
|
3153
|
+
// 'zone': 'South',
|
|
3154
|
+
// 'tlp_status': 'N',
|
|
3155
|
+
// 'lf_nonlf': 'LF',
|
|
3156
|
+
// 'kpi': 'SOH',
|
|
3157
|
+
// 'qty': 1,
|
|
3158
|
+
// 'created_at': '1/31/2025',
|
|
3159
|
+
// 'store_type': 'COCO',
|
|
3160
|
+
// 'status': 'Active',
|
|
3161
|
+
// 'PLC': 'Continuity A',
|
|
3162
|
+
// 'itemcode': 'JJJ018519697',
|
|
3163
|
+
// },
|
|
3164
|
+
// {
|
|
3165
|
+
// 'facility_code': 'LKST98',
|
|
3166
|
+
// 'product_id': 134949,
|
|
3167
|
+
// 'brand': 'John Jacobs',
|
|
3168
|
+
// 'category': 'sunglasses',
|
|
3169
|
+
// 'zone': 'South',
|
|
3170
|
+
// 'tlp_status': 'N',
|
|
3171
|
+
// 'lf_nonlf': 'LF',
|
|
3172
|
+
// 'kpi': 'SOH',
|
|
3173
|
+
// 'qty': 2,
|
|
3174
|
+
// 'created_at': '1/31/2025',
|
|
3175
|
+
// 'store_type': 'COCO',
|
|
3176
|
+
// 'status': 'Active',
|
|
3177
|
+
// 'PLC': 'Continuity',
|
|
3178
|
+
// 'itemcode': 'JJJ018898893',
|
|
3179
|
+
// },
|
|
3180
|
+
// {
|
|
3181
|
+
// 'facility_code': 'LKST98',
|
|
3182
|
+
// 'product_id': 143308,
|
|
3183
|
+
// 'brand': 'John Jacobs',
|
|
3184
|
+
// 'category': 'eyeframe',
|
|
3185
|
+
// 'zone': 'South',
|
|
3186
|
+
// 'tlp_status': 'N',
|
|
3187
|
+
// 'lf_nonlf': 'LF',
|
|
3188
|
+
// 'kpi': 'SOH',
|
|
3189
|
+
// 'qty': 1,
|
|
3190
|
+
// 'created_at': '1/31/2025',
|
|
3191
|
+
// 'store_type': 'COCO',
|
|
3192
|
+
// 'status': 'Active',
|
|
3193
|
+
// 'PLC': 'Discontinued',
|
|
3194
|
+
// 'itemcode': 'JJJ016041078',
|
|
3195
|
+
// },
|
|
3196
|
+
// {
|
|
3197
|
+
// 'facility_code': 'LKST98',
|
|
3198
|
+
// 'product_id': 213684,
|
|
3199
|
+
// 'brand': 'John Jacobs',
|
|
3200
|
+
// 'category': 'eyeframe',
|
|
3201
|
+
// 'zone': 'South',
|
|
3202
|
+
// 'tlp_status': 'YES',
|
|
3203
|
+
// 'lf_nonlf': 'LF',
|
|
3204
|
+
// 'kpi': 'SOH',
|
|
3205
|
+
// 'qty': 1,
|
|
3206
|
+
// 'created_at': '1/31/2025',
|
|
3207
|
+
// 'store_type': 'COCO',
|
|
3208
|
+
// 'status': 'Active',
|
|
3209
|
+
// 'PLC': 'Continuity',
|
|
3210
|
+
// 'itemcode': 'JJJ017952554',
|
|
3211
|
+
// },
|
|
3212
|
+
// {
|
|
3213
|
+
// 'facility_code': 'LKST98',
|
|
3214
|
+
// 'product_id': 131240,
|
|
3215
|
+
// 'brand': 'John Jacobs',
|
|
3216
|
+
// 'category': 'eyeframe',
|
|
3217
|
+
// 'zone': 'South',
|
|
3218
|
+
// 'tlp_status': 'YES',
|
|
3219
|
+
// 'lf_nonlf': 'LF',
|
|
3220
|
+
// 'kpi': 'SOH',
|
|
3221
|
+
// 'qty': 1,
|
|
3222
|
+
// 'created_at': '1/31/2025',
|
|
3223
|
+
// 'store_type': 'COCO',
|
|
3224
|
+
// 'status': 'Active',
|
|
3225
|
+
// 'PLC': 'Disabled',
|
|
3226
|
+
// 'itemcode': 'JJJ019081418',
|
|
3227
|
+
// },
|
|
3228
|
+
// {
|
|
3229
|
+
// 'facility_code': 'LKST98',
|
|
3230
|
+
// 'product_id': 216744,
|
|
3231
|
+
// 'brand': 'John Jacobs',
|
|
3232
|
+
// 'category': 'eyeframe',
|
|
3233
|
+
// 'zone': 'South',
|
|
3234
|
+
// 'tlp_status': 'N',
|
|
3235
|
+
// 'lf_nonlf': 'LF',
|
|
3236
|
+
// 'kpi': 'SOH',
|
|
3237
|
+
// 'qty': 1,
|
|
3238
|
+
// 'created_at': '1/31/2025',
|
|
3239
|
+
// 'store_type': 'COCO',
|
|
3240
|
+
// 'status': 'Active',
|
|
3241
|
+
// 'PLC': 'Core',
|
|
3242
|
+
// 'itemcode': 'JJJ018994959',
|
|
3243
|
+
// },
|
|
3244
|
+
// {
|
|
3245
|
+
// 'facility_code': 'LKST98',
|
|
3246
|
+
// 'product_id': 131413,
|
|
3247
|
+
// 'brand': 'John Jacobs',
|
|
3248
|
+
// 'category': 'eyeframe',
|
|
3249
|
+
// 'zone': 'South',
|
|
3250
|
+
// 'tlp_status': 'N',
|
|
3251
|
+
// 'lf_nonlf': 'LF',
|
|
3252
|
+
// 'kpi': 'SOH',
|
|
3253
|
+
// 'qty': 1,
|
|
3254
|
+
// 'created_at': '1/31/2025',
|
|
3255
|
+
// 'store_type': 'COCO',
|
|
3256
|
+
// 'status': 'Active',
|
|
3257
|
+
// 'PLC': 'Continuity',
|
|
3258
|
+
// 'itemcode': '',
|
|
3259
|
+
// },
|
|
3260
|
+
// {
|
|
3261
|
+
// 'facility_code': 'LKST98',
|
|
3262
|
+
// 'product_id': 217175,
|
|
3263
|
+
// 'brand': 'John Jacobs',
|
|
3264
|
+
// 'category': 'eyeframe',
|
|
3265
|
+
// 'zone': 'South',
|
|
3266
|
+
// 'tlp_status': 'N',
|
|
3267
|
+
// 'lf_nonlf': 'LF',
|
|
3268
|
+
// 'kpi': 'SOH',
|
|
3269
|
+
// 'qty': 1,
|
|
3270
|
+
// 'created_at': '1/31/2025',
|
|
3271
|
+
// 'store_type': 'COCO',
|
|
3272
|
+
// 'status': 'Active',
|
|
3273
|
+
// 'PLC': 'Continuity',
|
|
3274
|
+
// 'itemcode': 'JJJ018257705',
|
|
3275
|
+
// },
|
|
3276
|
+
// {
|
|
3277
|
+
// 'facility_code': 'LKST98',
|
|
3278
|
+
// 'product_id': 210232,
|
|
3279
|
+
// 'brand': 'John Jacobs',
|
|
3280
|
+
// 'category': 'sunglasses',
|
|
3281
|
+
// 'zone': 'South',
|
|
3282
|
+
// 'tlp_status': 'N',
|
|
3283
|
+
// 'lf_nonlf': 'LF',
|
|
3284
|
+
// 'kpi': 'SOH',
|
|
3285
|
+
// 'qty': 1,
|
|
3286
|
+
// 'created_at': '1/31/2025',
|
|
3287
|
+
// 'store_type': 'COCO',
|
|
3288
|
+
// 'status': 'Active',
|
|
3289
|
+
// 'PLC': 'Continuity',
|
|
3290
|
+
// 'itemcode': 'JJJ015487317',
|
|
3291
|
+
// },
|
|
3292
|
+
// {
|
|
3293
|
+
// 'facility_code': 'LKST98',
|
|
3294
|
+
// 'product_id': 216856,
|
|
3295
|
+
// 'brand': 'John Jacobs',
|
|
3296
|
+
// 'category': 'eyeframe',
|
|
3297
|
+
// 'zone': 'South',
|
|
3298
|
+
// 'tlp_status': 'N',
|
|
3299
|
+
// 'lf_nonlf': 'LF',
|
|
3300
|
+
// 'kpi': 'SOH',
|
|
3301
|
+
// 'qty': 1,
|
|
3302
|
+
// 'created_at': '1/31/2025',
|
|
3303
|
+
// 'store_type': 'COCO',
|
|
3304
|
+
// 'status': 'Active',
|
|
3305
|
+
// 'PLC': 'Continuity',
|
|
3306
|
+
// 'itemcode': 'JJJ016961699',
|
|
3307
|
+
// },
|
|
3308
|
+
// {
|
|
3309
|
+
// 'facility_code': 'LKST98',
|
|
3310
|
+
// 'product_id': 148387,
|
|
3311
|
+
// 'brand': 'John Jacobs',
|
|
3312
|
+
// 'category': 'eyeframe',
|
|
3313
|
+
// 'zone': 'South',
|
|
3314
|
+
// 'tlp_status': 'N',
|
|
3315
|
+
// 'lf_nonlf': 'LF',
|
|
3316
|
+
// 'kpi': 'SOH',
|
|
3317
|
+
// 'qty': 1,
|
|
3318
|
+
// 'created_at': '1/31/2025',
|
|
3319
|
+
// 'store_type': 'COCO',
|
|
3320
|
+
// 'status': 'Active',
|
|
3321
|
+
// 'PLC': 'Discontinued',
|
|
3322
|
+
// 'itemcode': 'JJJ011481213',
|
|
3323
|
+
// },
|
|
3324
|
+
// {
|
|
3325
|
+
// 'facility_code': 'LKST98',
|
|
3326
|
+
// 'product_id': 218233,
|
|
3327
|
+
// 'brand': 'John Jacobs',
|
|
3328
|
+
// 'category': 'eyeframe',
|
|
3329
|
+
// 'zone': 'South',
|
|
3330
|
+
// 'tlp_status': 'N',
|
|
3331
|
+
// 'lf_nonlf': 'LF',
|
|
3332
|
+
// 'kpi': 'SOH',
|
|
3333
|
+
// 'qty': 1,
|
|
3334
|
+
// 'created_at': '1/31/2025',
|
|
3335
|
+
// 'store_type': 'COCO',
|
|
3336
|
+
// 'status': 'Active',
|
|
3337
|
+
// 'PLC': 'Continuity',
|
|
3338
|
+
// 'itemcode': 'JJJ017390447',
|
|
3339
|
+
// },
|
|
3340
|
+
// {
|
|
3341
|
+
// 'facility_code': 'LKST98',
|
|
3342
|
+
// 'product_id': 135938,
|
|
3343
|
+
// 'brand': 'John Jacobs',
|
|
3344
|
+
// 'category': 'eyeframe',
|
|
3345
|
+
// 'zone': 'South',
|
|
3346
|
+
// 'tlp_status': 'N',
|
|
3347
|
+
// 'lf_nonlf': 'LF',
|
|
3348
|
+
// 'kpi': 'SOH',
|
|
3349
|
+
// 'qty': 1,
|
|
3350
|
+
// 'created_at': '1/31/2025',
|
|
3351
|
+
// 'store_type': 'COCO',
|
|
3352
|
+
// 'status': 'Active',
|
|
3353
|
+
// 'PLC': 'Continuity',
|
|
3354
|
+
// 'itemcode': 'JJJ013823969',
|
|
3355
|
+
// },
|
|
3356
|
+
// {
|
|
3357
|
+
// 'facility_code': 'LKST98',
|
|
3358
|
+
// 'product_id': 201388,
|
|
3359
|
+
// 'brand': 'John Jacobs',
|
|
3360
|
+
// 'category': 'eyeframe',
|
|
3361
|
+
// 'zone': 'South',
|
|
3362
|
+
// 'tlp_status': 'N',
|
|
3363
|
+
// 'lf_nonlf': 'LF',
|
|
3364
|
+
// 'kpi': 'SOH',
|
|
3365
|
+
// 'qty': 1,
|
|
3366
|
+
// 'created_at': '1/31/2025',
|
|
3367
|
+
// 'store_type': 'COCO',
|
|
3368
|
+
// 'status': 'Active',
|
|
3369
|
+
// 'PLC': 'Core',
|
|
3370
|
+
// 'itemcode': 'JJJ017122291',
|
|
3371
|
+
// },
|
|
3372
|
+
// {
|
|
3373
|
+
// 'facility_code': 'LKST98',
|
|
3374
|
+
// 'product_id': 212733,
|
|
3375
|
+
// 'brand': 'John Jacobs',
|
|
3376
|
+
// 'category': 'eyeframe',
|
|
3377
|
+
// 'zone': 'South',
|
|
3378
|
+
// 'tlp_status': 'N',
|
|
3379
|
+
// 'lf_nonlf': 'LF',
|
|
3380
|
+
// 'kpi': 'SOH',
|
|
3381
|
+
// 'qty': 1,
|
|
3382
|
+
// 'created_at': '1/31/2025',
|
|
3383
|
+
// 'store_type': 'COCO',
|
|
3384
|
+
// 'status': 'Active',
|
|
3385
|
+
// 'PLC': 'Continuity',
|
|
3386
|
+
// 'itemcode': 'JJJ020167970',
|
|
3387
|
+
// },
|
|
3388
|
+
// {
|
|
3389
|
+
// 'facility_code': 'LKST98',
|
|
3390
|
+
// 'product_id': 225421,
|
|
3391
|
+
// 'brand': 'John Jacobs',
|
|
3392
|
+
// 'category': 'sunglasses',
|
|
3393
|
+
// 'zone': 'South',
|
|
3394
|
+
// 'tlp_status': 'N',
|
|
3395
|
+
// 'lf_nonlf': 'LF',
|
|
3396
|
+
// 'kpi': 'SOH',
|
|
3397
|
+
// 'qty': 1,
|
|
3398
|
+
// 'created_at': '1/31/2025',
|
|
3399
|
+
// 'store_type': 'COCO',
|
|
3400
|
+
// 'status': 'Active',
|
|
3401
|
+
// 'PLC': 'New Launches',
|
|
3402
|
+
// 'itemcode': '',
|
|
3403
|
+
// },
|
|
3404
|
+
// {
|
|
3405
|
+
// 'facility_code': 'LKST98',
|
|
3406
|
+
// 'product_id': 148379,
|
|
3407
|
+
// 'brand': 'John Jacobs',
|
|
3408
|
+
// 'category': 'eyeframe',
|
|
3409
|
+
// 'zone': 'South',
|
|
3410
|
+
// 'tlp_status': 'N',
|
|
3411
|
+
// 'lf_nonlf': 'LF',
|
|
3412
|
+
// 'kpi': 'SOH',
|
|
3413
|
+
// 'qty': 1,
|
|
3414
|
+
// 'created_at': '1/31/2025',
|
|
3415
|
+
// 'store_type': 'COCO',
|
|
3416
|
+
// 'status': 'Active',
|
|
3417
|
+
// 'PLC': 'Discontinued',
|
|
3418
|
+
// 'itemcode': 'JJJ012319639',
|
|
3419
|
+
// },
|
|
3420
|
+
// {
|
|
3421
|
+
// 'facility_code': 'LKST98',
|
|
3422
|
+
// 'product_id': 147903,
|
|
3423
|
+
// 'brand': 'John Jacobs Online',
|
|
3424
|
+
// 'category': 'sunglasses',
|
|
3425
|
+
// 'zone': 'South',
|
|
3426
|
+
// 'tlp_status': 'N',
|
|
3427
|
+
// 'lf_nonlf': 'LF',
|
|
3428
|
+
// 'kpi': 'SOH',
|
|
3429
|
+
// 'qty': 1,
|
|
3430
|
+
// 'created_at': '1/31/2025',
|
|
3431
|
+
// 'store_type': 'COCO',
|
|
3432
|
+
// 'status': 'Active',
|
|
3433
|
+
// 'PLC': 'Discontinued',
|
|
3434
|
+
// 'itemcode': 'JJJ012956307',
|
|
3435
|
+
// },
|
|
3436
|
+
// {
|
|
3437
|
+
// 'facility_code': 'LKST98',
|
|
3438
|
+
// 'product_id': 134940,
|
|
3439
|
+
// 'brand': 'John Jacobs',
|
|
3440
|
+
// 'category': 'sunglasses',
|
|
3441
|
+
// 'zone': 'South',
|
|
3442
|
+
// 'tlp_status': 'N',
|
|
3443
|
+
// 'lf_nonlf': 'LF',
|
|
3444
|
+
// 'kpi': 'SOH',
|
|
3445
|
+
// 'qty': 1,
|
|
3446
|
+
// 'created_at': '1/31/2025',
|
|
3447
|
+
// 'store_type': 'COCO',
|
|
3448
|
+
// 'status': 'Active',
|
|
3449
|
+
// 'PLC': 'Continuity',
|
|
3450
|
+
// 'itemcode': 'JJJ017489735',
|
|
3451
|
+
// },
|
|
3452
|
+
// {
|
|
3453
|
+
// 'facility_code': 'LKST98',
|
|
3454
|
+
// 'product_id': 213692,
|
|
3455
|
+
// 'brand': 'John Jacobs',
|
|
3456
|
+
// 'category': 'sunglasses',
|
|
3457
|
+
// 'zone': 'South',
|
|
3458
|
+
// 'tlp_status': 'N',
|
|
3459
|
+
// 'lf_nonlf': 'LF',
|
|
3460
|
+
// 'kpi': 'SOH',
|
|
3461
|
+
// 'qty': 1,
|
|
3462
|
+
// 'created_at': '1/31/2025',
|
|
3463
|
+
// 'store_type': 'COCO',
|
|
3464
|
+
// 'status': 'Active',
|
|
3465
|
+
// 'PLC': 'Core',
|
|
3466
|
+
// 'itemcode': '',
|
|
3467
|
+
// },
|
|
3468
|
+
// {
|
|
3469
|
+
// 'facility_code': 'LKST98',
|
|
3470
|
+
// 'product_id': 136188,
|
|
3471
|
+
// 'brand': 'John Jacobs',
|
|
3472
|
+
// 'category': 'eyeframe',
|
|
3473
|
+
// 'zone': 'South',
|
|
3474
|
+
// 'tlp_status': 'YES',
|
|
3475
|
+
// 'lf_nonlf': 'LF',
|
|
3476
|
+
// 'kpi': 'SOH',
|
|
3477
|
+
// 'qty': 1,
|
|
3478
|
+
// 'created_at': '1/31/2025',
|
|
3479
|
+
// 'store_type': 'COCO',
|
|
3480
|
+
// 'status': 'Active',
|
|
3481
|
+
// 'PLC': 'Discontinued',
|
|
3482
|
+
// 'itemcode': 'JJJ013161586',
|
|
3483
|
+
// },
|
|
3484
|
+
// {
|
|
3485
|
+
// 'facility_code': 'LKST98',
|
|
3486
|
+
// 'product_id': 209663,
|
|
3487
|
+
// 'brand': 'John Jacobs',
|
|
3488
|
+
// 'category': 'eyeframe',
|
|
3489
|
+
// 'zone': 'South',
|
|
3490
|
+
// 'tlp_status': 'N',
|
|
3491
|
+
// 'lf_nonlf': 'LF',
|
|
3492
|
+
// 'kpi': 'SOH',
|
|
3493
|
+
// 'qty': 1,
|
|
3494
|
+
// 'created_at': '1/31/2025',
|
|
3495
|
+
// 'store_type': 'COCO',
|
|
3496
|
+
// 'status': 'Active',
|
|
3497
|
+
// 'PLC': 'Continuity A',
|
|
3498
|
+
// 'itemcode': 'JJJ017532600',
|
|
3499
|
+
// },
|
|
3500
|
+
// {
|
|
3501
|
+
// 'facility_code': 'LKST98',
|
|
3502
|
+
// 'product_id': 209667,
|
|
3503
|
+
// 'brand': 'John Jacobs',
|
|
3504
|
+
// 'category': 'eyeframe',
|
|
3505
|
+
// 'zone': 'South',
|
|
3506
|
+
// 'tlp_status': 'N',
|
|
3507
|
+
// 'lf_nonlf': 'LF',
|
|
3508
|
+
// 'kpi': 'SOH',
|
|
3509
|
+
// 'qty': 1,
|
|
3510
|
+
// 'created_at': '1/31/2025',
|
|
3511
|
+
// 'store_type': 'COCO',
|
|
3512
|
+
// 'status': 'Active',
|
|
3513
|
+
// 'PLC': 'Continuity',
|
|
3514
|
+
// 'itemcode': 'JJJ017306472',
|
|
3515
|
+
// },
|
|
3516
|
+
// {
|
|
3517
|
+
// 'facility_code': 'LKST98',
|
|
3518
|
+
// 'product_id': 146598,
|
|
3519
|
+
// 'brand': 'John Jacobs',
|
|
3520
|
+
// 'category': 'eyeframe',
|
|
3521
|
+
// 'zone': 'South',
|
|
3522
|
+
// 'tlp_status': 'N',
|
|
3523
|
+
// 'lf_nonlf': 'LF',
|
|
3524
|
+
// 'kpi': 'SOH',
|
|
3525
|
+
// 'qty': 1,
|
|
3526
|
+
// 'created_at': '1/31/2025',
|
|
3527
|
+
// 'store_type': 'COCO',
|
|
3528
|
+
// 'status': 'Active',
|
|
3529
|
+
// 'PLC': 'Continuity',
|
|
3530
|
+
// 'itemcode': '',
|
|
3531
|
+
// },
|
|
3532
|
+
// {
|
|
3533
|
+
// 'facility_code': 'LKST98',
|
|
3534
|
+
// 'product_id': 205898,
|
|
3535
|
+
// 'brand': 'John Jacobs',
|
|
3536
|
+
// 'category': 'eyeframe',
|
|
3537
|
+
// 'zone': 'South',
|
|
3538
|
+
// 'tlp_status': 'N',
|
|
3539
|
+
// 'lf_nonlf': 'LF',
|
|
3540
|
+
// 'kpi': 'SOH',
|
|
3541
|
+
// 'qty': 1,
|
|
3542
|
+
// 'created_at': '1/31/2025',
|
|
3543
|
+
// 'store_type': 'COCO',
|
|
3544
|
+
// 'status': 'Active',
|
|
3545
|
+
// 'PLC': 'Continuity',
|
|
3546
|
+
// 'itemcode': 'JJJ016810198',
|
|
3547
|
+
// },
|
|
3548
|
+
// {
|
|
3549
|
+
// 'facility_code': 'LKST98',
|
|
3550
|
+
// 'product_id': 211281,
|
|
3551
|
+
// 'brand': 'John Jacobs',
|
|
3552
|
+
// 'category': 'eyeframe',
|
|
3553
|
+
// 'zone': 'South',
|
|
3554
|
+
// 'tlp_status': 'N',
|
|
3555
|
+
// 'lf_nonlf': 'LF',
|
|
3556
|
+
// 'kpi': 'SOH',
|
|
3557
|
+
// 'qty': 1,
|
|
3558
|
+
// 'created_at': '1/31/2025',
|
|
3559
|
+
// 'store_type': 'COCO',
|
|
3560
|
+
// 'status': 'Active',
|
|
3561
|
+
// 'PLC': 'Continuity',
|
|
3562
|
+
// 'itemcode': 'JJJ015865419',
|
|
3563
|
+
// },
|
|
3564
|
+
// {
|
|
3565
|
+
// 'facility_code': 'LKST98',
|
|
3566
|
+
// 'product_id': 211192,
|
|
3567
|
+
// 'brand': 'John Jacobs',
|
|
3568
|
+
// 'category': 'eyeframe',
|
|
3569
|
+
// 'zone': 'South',
|
|
3570
|
+
// 'tlp_status': 'N',
|
|
3571
|
+
// 'lf_nonlf': 'LF',
|
|
3572
|
+
// 'kpi': 'SOH',
|
|
3573
|
+
// 'qty': 1,
|
|
3574
|
+
// 'created_at': '1/31/2025',
|
|
3575
|
+
// 'store_type': 'COCO',
|
|
3576
|
+
// 'status': 'Active',
|
|
3577
|
+
// 'PLC': 'Continuity',
|
|
3578
|
+
// 'itemcode': 'JJJ016853383',
|
|
3579
|
+
// },
|
|
3580
|
+
// {
|
|
3581
|
+
// 'facility_code': 'LKST98',
|
|
3582
|
+
// 'product_id': 216745,
|
|
3583
|
+
// 'brand': 'John Jacobs',
|
|
3584
|
+
// 'category': 'eyeframe',
|
|
3585
|
+
// 'zone': 'South',
|
|
3586
|
+
// 'tlp_status': 'N',
|
|
3587
|
+
// 'lf_nonlf': 'LF',
|
|
3588
|
+
// 'kpi': 'SOH',
|
|
3589
|
+
// 'qty': 1,
|
|
3590
|
+
// 'created_at': '1/31/2025',
|
|
3591
|
+
// 'store_type': 'COCO',
|
|
3592
|
+
// 'status': 'Active',
|
|
3593
|
+
// 'PLC': 'Continuity',
|
|
3594
|
+
// 'itemcode': 'JJJ018996755',
|
|
3595
|
+
// },
|
|
3596
|
+
// {
|
|
3597
|
+
// 'facility_code': 'LKST98',
|
|
3598
|
+
// 'product_id': 137505,
|
|
3599
|
+
// 'brand': 'John Jacobs Online',
|
|
3600
|
+
// 'category': 'sunglasses',
|
|
3601
|
+
// 'zone': 'South',
|
|
3602
|
+
// 'tlp_status': 'YES',
|
|
3603
|
+
// 'lf_nonlf': 'LF',
|
|
3604
|
+
// 'kpi': 'SOH',
|
|
3605
|
+
// 'qty': 1,
|
|
3606
|
+
// 'created_at': '1/31/2025',
|
|
3607
|
+
// 'store_type': 'COCO',
|
|
3608
|
+
// 'status': 'Active',
|
|
3609
|
+
// 'PLC': 'Singapore Ex',
|
|
3610
|
+
// 'itemcode': 'JJJ015530319',
|
|
3611
|
+
// },
|
|
3612
|
+
// {
|
|
3613
|
+
// 'facility_code': 'LKST98',
|
|
3614
|
+
// 'product_id': 217758,
|
|
3615
|
+
// 'brand': 'John Jacobs',
|
|
3616
|
+
// 'category': 'eyeframe',
|
|
3617
|
+
// 'zone': 'South',
|
|
3618
|
+
// 'tlp_status': 'N',
|
|
3619
|
+
// 'lf_nonlf': 'LF',
|
|
3620
|
+
// 'kpi': 'SOH',
|
|
3621
|
+
// 'qty': 1,
|
|
3622
|
+
// 'created_at': '1/31/2025',
|
|
3623
|
+
// 'store_type': 'COCO',
|
|
3624
|
+
// 'status': 'Active',
|
|
3625
|
+
// 'PLC': 'Continuity',
|
|
3626
|
+
// 'itemcode': 'JJJ017014555',
|
|
3627
|
+
// },
|
|
3628
|
+
// {
|
|
3629
|
+
// 'facility_code': 'LKST98',
|
|
3630
|
+
// 'product_id': 137919,
|
|
3631
|
+
// 'brand': 'John Jacobs',
|
|
3632
|
+
// 'category': 'eyeframe',
|
|
3633
|
+
// 'zone': 'South',
|
|
3634
|
+
// 'tlp_status': 'N',
|
|
3635
|
+
// 'lf_nonlf': 'LF',
|
|
3636
|
+
// 'kpi': 'SOH',
|
|
3637
|
+
// 'qty': 1,
|
|
3638
|
+
// 'created_at': '1/31/2025',
|
|
3639
|
+
// 'store_type': 'COCO',
|
|
3640
|
+
// 'status': 'Active',
|
|
3641
|
+
// 'PLC': 'Continuity',
|
|
3642
|
+
// 'itemcode': 'JJJ019021119',
|
|
3643
|
+
// },
|
|
3644
|
+
// {
|
|
3645
|
+
// 'facility_code': 'LKST98',
|
|
3646
|
+
// 'product_id': 137918,
|
|
3647
|
+
// 'brand': 'John Jacobs',
|
|
3648
|
+
// 'category': 'eyeframe',
|
|
3649
|
+
// 'zone': 'South',
|
|
3650
|
+
// 'tlp_status': 'N',
|
|
3651
|
+
// 'lf_nonlf': 'LF',
|
|
3652
|
+
// 'kpi': 'SOH',
|
|
3653
|
+
// 'qty': 1,
|
|
3654
|
+
// 'created_at': '1/31/2025',
|
|
3655
|
+
// 'store_type': 'COCO',
|
|
3656
|
+
// 'status': 'Active',
|
|
3657
|
+
// 'PLC': 'Continuity A',
|
|
3658
|
+
// 'itemcode': 'JJJ018018624',
|
|
3659
|
+
// },
|
|
3660
|
+
// {
|
|
3661
|
+
// 'facility_code': 'LKST98',
|
|
3662
|
+
// 'product_id': 225408,
|
|
3663
|
+
// 'brand': 'John Jacobs',
|
|
3664
|
+
// 'category': 'eyeframe',
|
|
3665
|
+
// 'zone': 'South',
|
|
3666
|
+
// 'tlp_status': 'N',
|
|
3667
|
+
// 'lf_nonlf': 'LF',
|
|
3668
|
+
// 'kpi': 'SOH',
|
|
3669
|
+
// 'qty': 1,
|
|
3670
|
+
// 'created_at': '1/31/2025',
|
|
3671
|
+
// 'store_type': 'COCO',
|
|
3672
|
+
// 'status': 'Active',
|
|
3673
|
+
// 'PLC': 'New Launches',
|
|
3674
|
+
// 'itemcode': 'JJJ021455464',
|
|
3675
|
+
// },
|
|
3676
|
+
// {
|
|
3677
|
+
// 'facility_code': 'LKST98',
|
|
3678
|
+
// 'product_id': 217992,
|
|
3679
|
+
// 'brand': 'John Jacobs',
|
|
3680
|
+
// 'category': 'eyeframe',
|
|
3681
|
+
// 'zone': 'South',
|
|
3682
|
+
// 'tlp_status': 'N',
|
|
3683
|
+
// 'lf_nonlf': 'LF',
|
|
3684
|
+
// 'kpi': 'SOH',
|
|
3685
|
+
// 'qty': 1,
|
|
3686
|
+
// 'created_at': '1/31/2025',
|
|
3687
|
+
// 'store_type': 'COCO',
|
|
3688
|
+
// 'status': 'Active',
|
|
3689
|
+
// 'PLC': 'Continuity A',
|
|
3690
|
+
// 'itemcode': 'JJJ018284622',
|
|
3691
|
+
// },
|
|
3692
|
+
// {
|
|
3693
|
+
// 'facility_code': 'LKST98',
|
|
3694
|
+
// 'product_id': 113114,
|
|
3695
|
+
// 'brand': 'John Jacobs',
|
|
3696
|
+
// 'category': 'eyeframe',
|
|
3697
|
+
// 'zone': 'South',
|
|
3698
|
+
// 'tlp_status': 'YES',
|
|
3699
|
+
// 'lf_nonlf': 'LF',
|
|
3700
|
+
// 'kpi': 'SOH',
|
|
3701
|
+
// 'qty': 1,
|
|
3702
|
+
// 'created_at': '1/31/2025',
|
|
3703
|
+
// 'store_type': 'COCO',
|
|
3704
|
+
// 'status': 'Active',
|
|
3705
|
+
// 'PLC': 'Discontinued',
|
|
3706
|
+
// 'itemcode': 'JJJ016025627',
|
|
3707
|
+
// },
|
|
3708
|
+
// {
|
|
3709
|
+
// 'facility_code': 'LKST98',
|
|
3710
|
+
// 'product_id': 201436,
|
|
3711
|
+
// 'brand': 'John Jacobs',
|
|
3712
|
+
// 'category': 'eyeframe',
|
|
3713
|
+
// 'zone': 'South',
|
|
3714
|
+
// 'tlp_status': 'YES',
|
|
3715
|
+
// 'lf_nonlf': 'LF',
|
|
3716
|
+
// 'kpi': 'SOH',
|
|
3717
|
+
// 'qty': 1,
|
|
3718
|
+
// 'created_at': '1/31/2025',
|
|
3719
|
+
// 'store_type': 'COCO',
|
|
3720
|
+
// 'status': 'Active',
|
|
3721
|
+
// 'PLC': 'Discontinued',
|
|
3722
|
+
// 'itemcode': 'JJJ017123666',
|
|
3723
|
+
// },
|
|
3724
|
+
// {
|
|
3725
|
+
// 'facility_code': 'LKST98',
|
|
3726
|
+
// 'product_id': 148208,
|
|
3727
|
+
// 'brand': 'John Jacobs Online',
|
|
3728
|
+
// 'category': 'sunglasses',
|
|
3729
|
+
// 'zone': 'South',
|
|
3730
|
+
// 'tlp_status': 'YES',
|
|
3731
|
+
// 'lf_nonlf': 'LF',
|
|
3732
|
+
// 'kpi': 'SOH',
|
|
3733
|
+
// 'qty': 1,
|
|
3734
|
+
// 'created_at': '1/31/2025',
|
|
3735
|
+
// 'store_type': 'COCO',
|
|
3736
|
+
// 'status': 'Active',
|
|
3737
|
+
// 'PLC': 'Discontinued',
|
|
3738
|
+
// 'itemcode': 'JJJ012941914',
|
|
3739
|
+
// },
|
|
3740
|
+
// {
|
|
3741
|
+
// 'facility_code': 'LKST98',
|
|
3742
|
+
// 'product_id': 217177,
|
|
3743
|
+
// 'brand': 'John Jacobs',
|
|
3744
|
+
// 'category': 'eyeframe',
|
|
3745
|
+
// 'zone': 'South',
|
|
3746
|
+
// 'tlp_status': 'N',
|
|
3747
|
+
// 'lf_nonlf': 'LF',
|
|
3748
|
+
// 'kpi': 'SOH',
|
|
3749
|
+
// 'qty': 1,
|
|
3750
|
+
// 'created_at': '1/31/2025',
|
|
3751
|
+
// 'store_type': 'COCO',
|
|
3752
|
+
// 'status': 'Active',
|
|
3753
|
+
// 'PLC': 'Continuity',
|
|
3754
|
+
// 'itemcode': 'JJJ016990809',
|
|
3755
|
+
// },
|
|
3756
|
+
// {
|
|
3757
|
+
// 'facility_code': 'LKST98',
|
|
3758
|
+
// 'product_id': 145910,
|
|
3759
|
+
// 'brand': 'John Jacobs',
|
|
3760
|
+
// 'category': 'eyeframe',
|
|
3761
|
+
// 'zone': 'South',
|
|
3762
|
+
// 'tlp_status': 'N',
|
|
3763
|
+
// 'lf_nonlf': 'LF',
|
|
3764
|
+
// 'kpi': 'SOH',
|
|
3765
|
+
// 'qty': 1,
|
|
3766
|
+
// 'created_at': '1/31/2025',
|
|
3767
|
+
// 'store_type': 'COCO',
|
|
3768
|
+
// 'status': 'Active',
|
|
3769
|
+
// 'PLC': 'Core',
|
|
3770
|
+
// 'itemcode': 'JJJ017222581',
|
|
3771
|
+
// },
|
|
3772
|
+
// {
|
|
3773
|
+
// 'facility_code': 'LKST98',
|
|
3774
|
+
// 'product_id': 146204,
|
|
3775
|
+
// 'brand': 'John Jacobs',
|
|
3776
|
+
// 'category': 'eyeframe',
|
|
3777
|
+
// 'zone': 'South',
|
|
3778
|
+
// 'tlp_status': 'N',
|
|
3779
|
+
// 'lf_nonlf': 'LF',
|
|
3780
|
+
// 'kpi': 'SOH',
|
|
3781
|
+
// 'qty': 1,
|
|
3782
|
+
// 'created_at': '1/31/2025',
|
|
3783
|
+
// 'store_type': 'COCO',
|
|
3784
|
+
// 'status': 'Active',
|
|
3785
|
+
// 'PLC': 'Continuity',
|
|
3786
|
+
// 'itemcode': '',
|
|
3787
|
+
// },
|
|
3788
|
+
// {
|
|
3789
|
+
// 'facility_code': 'LKST98',
|
|
3790
|
+
// 'product_id': 146465,
|
|
3791
|
+
// 'brand': 'John Jacobs',
|
|
3792
|
+
// 'category': 'eyeframe',
|
|
3793
|
+
// 'zone': 'South',
|
|
3794
|
+
// 'tlp_status': 'N',
|
|
3795
|
+
// 'lf_nonlf': 'LF',
|
|
3796
|
+
// 'kpi': 'SOH',
|
|
3797
|
+
// 'qty': 1,
|
|
3798
|
+
// 'created_at': '1/31/2025',
|
|
3799
|
+
// 'store_type': 'COCO',
|
|
3800
|
+
// 'status': 'Active',
|
|
3801
|
+
// 'PLC': 'Continuity',
|
|
3802
|
+
// 'itemcode': 'CCC032100087',
|
|
3803
|
+
// },
|
|
3804
|
+
// {
|
|
3805
|
+
// 'facility_code': 'LKST98',
|
|
3806
|
+
// 'product_id': 215750,
|
|
3807
|
+
// 'brand': 'John Jacobs',
|
|
3808
|
+
// 'category': 'eyeframe',
|
|
3809
|
+
// 'zone': 'South',
|
|
3810
|
+
// 'tlp_status': 'YES',
|
|
3811
|
+
// 'lf_nonlf': 'LF',
|
|
3812
|
+
// 'kpi': 'SOH',
|
|
3813
|
+
// 'qty': 1,
|
|
3814
|
+
// 'created_at': '1/31/2025',
|
|
3815
|
+
// 'store_type': 'COCO',
|
|
3816
|
+
// 'status': 'Active',
|
|
3817
|
+
// 'PLC': 'Continuity',
|
|
3818
|
+
// 'itemcode': 'JJJ016599813',
|
|
3819
|
+
// },
|
|
3820
|
+
// {
|
|
3821
|
+
// 'facility_code': 'LKST98',
|
|
3822
|
+
// 'product_id': 217991,
|
|
3823
|
+
// 'brand': 'John Jacobs',
|
|
3824
|
+
// 'category': 'eyeframe',
|
|
3825
|
+
// 'zone': 'South',
|
|
3826
|
+
// 'tlp_status': 'N',
|
|
3827
|
+
// 'lf_nonlf': 'LF',
|
|
3828
|
+
// 'kpi': 'SOH',
|
|
3829
|
+
// 'qty': 1,
|
|
3830
|
+
// 'created_at': '1/31/2025',
|
|
3831
|
+
// 'store_type': 'COCO',
|
|
3832
|
+
// 'status': 'Active',
|
|
3833
|
+
// 'PLC': 'Continuity A',
|
|
3834
|
+
// 'itemcode': 'JJJ018294187',
|
|
3835
|
+
// },
|
|
3836
|
+
// {
|
|
3837
|
+
// 'facility_code': 'LKST98',
|
|
3838
|
+
// 'product_id': 147906,
|
|
3839
|
+
// 'brand': 'John Jacobs Online',
|
|
3840
|
+
// 'category': 'sunglasses',
|
|
3841
|
+
// 'zone': 'South',
|
|
3842
|
+
// 'tlp_status': 'YES',
|
|
3843
|
+
// 'lf_nonlf': 'LF',
|
|
3844
|
+
// 'kpi': 'SOH',
|
|
3845
|
+
// 'qty': 1,
|
|
3846
|
+
// 'created_at': '1/31/2025',
|
|
3847
|
+
// 'store_type': 'COCO',
|
|
3848
|
+
// 'status': 'Active',
|
|
3849
|
+
// 'PLC': 'Singapore Ex',
|
|
3850
|
+
// 'itemcode': 'JJJ014062305',
|
|
3851
|
+
// },
|
|
3852
|
+
// {
|
|
3853
|
+
// 'facility_code': 'LKST98',
|
|
3854
|
+
// 'product_id': 131266,
|
|
3855
|
+
// 'brand': 'John Jacobs Online',
|
|
3856
|
+
// 'category': 'eyeframe',
|
|
3857
|
+
// 'zone': 'South',
|
|
3858
|
+
// 'tlp_status': 'N',
|
|
3859
|
+
// 'lf_nonlf': 'LF',
|
|
3860
|
+
// 'kpi': 'SOH',
|
|
3861
|
+
// 'qty': 1,
|
|
3862
|
+
// 'created_at': '1/31/2025',
|
|
3863
|
+
// 'store_type': 'COCO',
|
|
3864
|
+
// 'status': 'Active',
|
|
3865
|
+
// 'PLC': 'Discontinued',
|
|
3866
|
+
// 'itemcode': 'CCC013785393',
|
|
3867
|
+
// },
|
|
3868
|
+
// {
|
|
3869
|
+
// 'facility_code': 'LKST98',
|
|
3870
|
+
// 'product_id': 218003,
|
|
3871
|
+
// 'brand': 'John Jacobs',
|
|
3872
|
+
// 'category': 'eyeframe',
|
|
3873
|
+
// 'zone': 'South',
|
|
3874
|
+
// 'tlp_status': 'YES',
|
|
3875
|
+
// 'lf_nonlf': 'LF',
|
|
3876
|
+
// 'kpi': 'SOH',
|
|
3877
|
+
// 'qty': 1,
|
|
3878
|
+
// 'created_at': '1/31/2025',
|
|
3879
|
+
// 'store_type': 'COCO',
|
|
3880
|
+
// 'status': 'Active',
|
|
3881
|
+
// 'PLC': 'Discontinued',
|
|
3882
|
+
// 'itemcode': 'JJJ017887016',
|
|
3883
|
+
// },
|
|
3884
|
+
// {
|
|
3885
|
+
// 'facility_code': 'LKST98',
|
|
3886
|
+
// 'product_id': 215572,
|
|
3887
|
+
// 'brand': 'John Jacobs',
|
|
3888
|
+
// 'category': 'eyeframe',
|
|
3889
|
+
// 'zone': 'South',
|
|
3890
|
+
// 'tlp_status': 'N',
|
|
3891
|
+
// 'lf_nonlf': 'LF',
|
|
3892
|
+
// 'kpi': 'SOH',
|
|
3893
|
+
// 'qty': 1,
|
|
3894
|
+
// 'created_at': '1/31/2025',
|
|
3895
|
+
// 'store_type': 'COCO',
|
|
3896
|
+
// 'status': 'Active',
|
|
3897
|
+
// 'PLC': 'Continuity',
|
|
3898
|
+
// 'itemcode': 'JJJ017252560',
|
|
3899
|
+
// },
|
|
3900
|
+
// {
|
|
3901
|
+
// 'facility_code': 'LKST98',
|
|
3902
|
+
// 'product_id': 150666,
|
|
3903
|
+
// 'brand': 'John Jacobs',
|
|
3904
|
+
// 'category': 'eyeframe',
|
|
3905
|
+
// 'zone': 'South',
|
|
3906
|
+
// 'tlp_status': 'N',
|
|
3907
|
+
// 'lf_nonlf': 'LF',
|
|
3908
|
+
// 'kpi': 'SOH',
|
|
3909
|
+
// 'qty': 1,
|
|
3910
|
+
// 'created_at': '1/31/2025',
|
|
3911
|
+
// 'store_type': 'COCO',
|
|
3912
|
+
// 'status': 'Active',
|
|
3913
|
+
// 'PLC': 'Continuity',
|
|
3914
|
+
// 'itemcode': 'CCC032789581',
|
|
3915
|
+
// },
|
|
3916
|
+
// {
|
|
3917
|
+
// 'facility_code': 'LKST98',
|
|
3918
|
+
// 'product_id': 217774,
|
|
3919
|
+
// 'brand': 'John Jacobs',
|
|
3920
|
+
// 'category': 'sunglasses',
|
|
3921
|
+
// 'zone': 'South',
|
|
3922
|
+
// 'tlp_status': 'N',
|
|
3923
|
+
// 'lf_nonlf': 'LF',
|
|
3924
|
+
// 'kpi': 'SOH',
|
|
3925
|
+
// 'qty': 1,
|
|
3926
|
+
// 'created_at': '1/31/2025',
|
|
3927
|
+
// 'store_type': 'COCO',
|
|
3928
|
+
// 'status': 'Active',
|
|
3929
|
+
// 'PLC': 'Continuity',
|
|
3930
|
+
// 'itemcode': 'JJJ017026293',
|
|
3931
|
+
// },
|
|
3932
|
+
// {
|
|
3933
|
+
// 'facility_code': 'LKST98',
|
|
3934
|
+
// 'product_id': 216865,
|
|
3935
|
+
// 'brand': 'John Jacobs',
|
|
3936
|
+
// 'category': 'eyeframe',
|
|
3937
|
+
// 'zone': 'South',
|
|
3938
|
+
// 'tlp_status': 'N',
|
|
3939
|
+
// 'lf_nonlf': 'LF',
|
|
3940
|
+
// 'kpi': 'SOH',
|
|
3941
|
+
// 'qty': 1,
|
|
3942
|
+
// 'created_at': '1/31/2025',
|
|
3943
|
+
// 'store_type': 'COCO',
|
|
3944
|
+
// 'status': 'Active',
|
|
3945
|
+
// 'PLC': 'Continuity',
|
|
3946
|
+
// 'itemcode': 'JJJ016970449',
|
|
3947
|
+
// },
|
|
3948
|
+
// {
|
|
3949
|
+
// 'facility_code': 'LKST98',
|
|
3950
|
+
// 'product_id': 205899,
|
|
3951
|
+
// 'brand': 'John Jacobs',
|
|
3952
|
+
// 'category': 'eyeframe',
|
|
3953
|
+
// 'zone': 'South',
|
|
3954
|
+
// 'tlp_status': 'N',
|
|
3955
|
+
// 'lf_nonlf': 'LF',
|
|
3956
|
+
// 'kpi': 'SOH',
|
|
3957
|
+
// 'qty': 1,
|
|
3958
|
+
// 'created_at': '1/31/2025',
|
|
3959
|
+
// 'store_type': 'COCO',
|
|
3960
|
+
// 'status': 'Active',
|
|
3961
|
+
// 'PLC': 'Continuity',
|
|
3962
|
+
// 'itemcode': 'JJJ017586754',
|
|
3963
|
+
// },
|
|
3964
|
+
// {
|
|
3965
|
+
// 'facility_code': 'LKST98',
|
|
3966
|
+
// 'product_id': 210124,
|
|
3967
|
+
// 'brand': 'John Jacobs',
|
|
3968
|
+
// 'category': 'eyeframe',
|
|
3969
|
+
// 'zone': 'South',
|
|
3970
|
+
// 'tlp_status': 'N',
|
|
3971
|
+
// 'lf_nonlf': 'LF',
|
|
3972
|
+
// 'kpi': 'SOH',
|
|
3973
|
+
// 'qty': 1,
|
|
3974
|
+
// 'created_at': '1/31/2025',
|
|
3975
|
+
// 'store_type': 'COCO',
|
|
3976
|
+
// 'status': 'Active',
|
|
3977
|
+
// 'PLC': 'Continuity',
|
|
3978
|
+
// 'itemcode': 'JJJ017682162',
|
|
3979
|
+
// },
|
|
3980
|
+
// {
|
|
3981
|
+
// 'facility_code': 'LKST98',
|
|
3982
|
+
// 'product_id': 145911,
|
|
3983
|
+
// 'brand': 'John Jacobs',
|
|
3984
|
+
// 'category': 'eyeframe',
|
|
3985
|
+
// 'zone': 'South',
|
|
3986
|
+
// 'tlp_status': 'N',
|
|
3987
|
+
// 'lf_nonlf': 'LF',
|
|
3988
|
+
// 'kpi': 'SOH',
|
|
3989
|
+
// 'qty': 1,
|
|
3990
|
+
// 'created_at': '1/31/2025',
|
|
3991
|
+
// 'store_type': 'COCO',
|
|
3992
|
+
// 'status': 'Active',
|
|
3993
|
+
// 'PLC': 'Continuity',
|
|
3994
|
+
// 'itemcode': 'JJJ017321568',
|
|
3995
|
+
// },
|
|
3996
|
+
// {
|
|
3997
|
+
// 'facility_code': 'LKST98',
|
|
3998
|
+
// 'product_id': 217182,
|
|
3999
|
+
// 'brand': 'John Jacobs',
|
|
4000
|
+
// 'category': 'eyeframe',
|
|
4001
|
+
// 'zone': 'South',
|
|
4002
|
+
// 'tlp_status': 'N',
|
|
4003
|
+
// 'lf_nonlf': 'LF',
|
|
4004
|
+
// 'kpi': 'SOH',
|
|
4005
|
+
// 'qty': 1,
|
|
4006
|
+
// 'created_at': '1/31/2025',
|
|
4007
|
+
// 'store_type': 'COCO',
|
|
4008
|
+
// 'status': 'Active',
|
|
4009
|
+
// 'PLC': 'Continuity A',
|
|
4010
|
+
// 'itemcode': 'JJJ017000169',
|
|
4011
|
+
// },
|
|
4012
|
+
// {
|
|
4013
|
+
// 'facility_code': 'LKST98',
|
|
4014
|
+
// 'product_id': 216731,
|
|
4015
|
+
// 'brand': 'John Jacobs',
|
|
4016
|
+
// 'category': 'eyeframe',
|
|
4017
|
+
// 'zone': 'South',
|
|
4018
|
+
// 'tlp_status': 'N',
|
|
4019
|
+
// 'lf_nonlf': 'LF',
|
|
4020
|
+
// 'kpi': 'SOH',
|
|
4021
|
+
// 'qty': 1,
|
|
4022
|
+
// 'created_at': '1/31/2025',
|
|
4023
|
+
// 'store_type': 'COCO',
|
|
4024
|
+
// 'status': 'Active',
|
|
4025
|
+
// 'PLC': 'Continuity A',
|
|
4026
|
+
// 'itemcode': 'JJJ016864020',
|
|
4027
|
+
// },
|
|
4028
|
+
// {
|
|
4029
|
+
// 'facility_code': 'LKST98',
|
|
4030
|
+
// 'product_id': 218235,
|
|
4031
|
+
// 'brand': 'John Jacobs',
|
|
4032
|
+
// 'category': 'eyeframe',
|
|
4033
|
+
// 'zone': 'South',
|
|
4034
|
+
// 'tlp_status': 'N',
|
|
4035
|
+
// 'lf_nonlf': 'LF',
|
|
4036
|
+
// 'kpi': 'SOH',
|
|
4037
|
+
// 'qty': 1,
|
|
4038
|
+
// 'created_at': '1/31/2025',
|
|
4039
|
+
// 'store_type': 'COCO',
|
|
4040
|
+
// 'status': 'Active',
|
|
4041
|
+
// 'PLC': 'Continuity',
|
|
4042
|
+
// 'itemcode': 'JJJ017393785',
|
|
4043
|
+
// },
|
|
4044
|
+
// {
|
|
4045
|
+
// 'facility_code': 'LKST98',
|
|
4046
|
+
// 'product_id': 216850,
|
|
4047
|
+
// 'brand': 'John Jacobs',
|
|
4048
|
+
// 'category': 'eyeframe',
|
|
4049
|
+
// 'zone': 'South',
|
|
4050
|
+
// 'tlp_status': 'N',
|
|
4051
|
+
// 'lf_nonlf': 'LF',
|
|
4052
|
+
// 'kpi': 'SOH',
|
|
4053
|
+
// 'qty': 1,
|
|
4054
|
+
// 'created_at': '1/31/2025',
|
|
4055
|
+
// 'store_type': 'COCO',
|
|
4056
|
+
// 'status': 'Active',
|
|
4057
|
+
// 'PLC': 'Continuity',
|
|
4058
|
+
// 'itemcode': 'JJJ018073365',
|
|
4059
|
+
// },
|
|
4060
|
+
// {
|
|
4061
|
+
// 'facility_code': 'LKST98',
|
|
4062
|
+
// 'product_id': 216741,
|
|
4063
|
+
// 'brand': 'John Jacobs',
|
|
4064
|
+
// 'category': 'eyeframe',
|
|
4065
|
+
// 'zone': 'South',
|
|
4066
|
+
// 'tlp_status': 'N',
|
|
4067
|
+
// 'lf_nonlf': 'LF',
|
|
4068
|
+
// 'kpi': 'SOH',
|
|
4069
|
+
// 'qty': 1,
|
|
4070
|
+
// 'created_at': '1/31/2025',
|
|
4071
|
+
// 'store_type': 'COCO',
|
|
4072
|
+
// 'status': 'Active',
|
|
4073
|
+
// 'PLC': 'Continuity',
|
|
4074
|
+
// 'itemcode': 'JJJ019513725',
|
|
4075
|
+
// },
|
|
4076
|
+
// {
|
|
4077
|
+
// 'facility_code': 'LKST98',
|
|
4078
|
+
// 'product_id': 217768,
|
|
4079
|
+
// 'brand': 'John Jacobs',
|
|
4080
|
+
// 'category': 'sunglasses',
|
|
4081
|
+
// 'zone': 'South',
|
|
4082
|
+
// 'tlp_status': 'YES',
|
|
4083
|
+
// 'lf_nonlf': 'LF',
|
|
4084
|
+
// 'kpi': 'SOH',
|
|
4085
|
+
// 'qty': 1,
|
|
4086
|
+
// 'created_at': '1/31/2025',
|
|
4087
|
+
// 'store_type': 'COCO',
|
|
4088
|
+
// 'status': 'Active',
|
|
4089
|
+
// 'PLC': 'Continuity',
|
|
4090
|
+
// 'itemcode': 'JJJ017021755',
|
|
4091
|
+
// },
|
|
4092
|
+
// {
|
|
4093
|
+
// 'facility_code': 'LKST98',
|
|
4094
|
+
// 'product_id': 147676,
|
|
4095
|
+
// 'brand': 'John Jacobs',
|
|
4096
|
+
// 'category': 'sunglasses',
|
|
4097
|
+
// 'zone': 'South',
|
|
4098
|
+
// 'tlp_status': 'YES',
|
|
4099
|
+
// 'lf_nonlf': 'LF',
|
|
4100
|
+
// 'kpi': 'SOH',
|
|
4101
|
+
// 'qty': 1,
|
|
4102
|
+
// 'created_at': '1/31/2025',
|
|
4103
|
+
// 'store_type': 'COCO',
|
|
4104
|
+
// 'status': 'Active',
|
|
4105
|
+
// 'PLC': 'Discontinued',
|
|
4106
|
+
// 'itemcode': 'JJJ017087745',
|
|
4107
|
+
// },
|
|
4108
|
+
// {
|
|
4109
|
+
// 'facility_code': 'LKST98',
|
|
4110
|
+
// 'product_id': 211190,
|
|
4111
|
+
// 'brand': 'John Jacobs',
|
|
4112
|
+
// 'category': 'eyeframe',
|
|
4113
|
+
// 'zone': 'South',
|
|
4114
|
+
// 'tlp_status': 'N',
|
|
4115
|
+
// 'lf_nonlf': 'LF',
|
|
4116
|
+
// 'kpi': 'SOH',
|
|
4117
|
+
// 'qty': 1,
|
|
4118
|
+
// 'created_at': '1/31/2025',
|
|
4119
|
+
// 'store_type': 'COCO',
|
|
4120
|
+
// 'status': 'Active',
|
|
4121
|
+
// 'PLC': 'Continuity',
|
|
4122
|
+
// 'itemcode': 'JJJ015840767',
|
|
4123
|
+
// },
|
|
4124
|
+
// {
|
|
4125
|
+
// 'facility_code': 'LKST98',
|
|
4126
|
+
// 'product_id': 218238,
|
|
4127
|
+
// 'brand': 'John Jacobs',
|
|
4128
|
+
// 'category': 'eyeframe',
|
|
4129
|
+
// 'zone': 'South',
|
|
4130
|
+
// 'tlp_status': 'N',
|
|
4131
|
+
// 'lf_nonlf': 'LF',
|
|
4132
|
+
// 'kpi': 'SOH',
|
|
4133
|
+
// 'qty': 1,
|
|
4134
|
+
// 'created_at': '1/31/2025',
|
|
4135
|
+
// 'store_type': 'COCO',
|
|
4136
|
+
// 'status': 'Active',
|
|
4137
|
+
// 'PLC': 'Continuity',
|
|
4138
|
+
// 'itemcode': 'JJJ018413830',
|
|
4139
|
+
// },
|
|
4140
|
+
// {
|
|
4141
|
+
// 'facility_code': 'LKST98',
|
|
4142
|
+
// 'product_id': 217173,
|
|
4143
|
+
// 'brand': 'John Jacobs',
|
|
4144
|
+
// 'category': 'eyeframe',
|
|
4145
|
+
// 'zone': 'South',
|
|
4146
|
+
// 'tlp_status': 'N',
|
|
4147
|
+
// 'lf_nonlf': 'LF',
|
|
4148
|
+
// 'kpi': 'SOH',
|
|
4149
|
+
// 'qty': 1,
|
|
4150
|
+
// 'created_at': '1/31/2025',
|
|
4151
|
+
// 'store_type': 'COCO',
|
|
4152
|
+
// 'status': 'Active',
|
|
4153
|
+
// 'PLC': 'Continuity A',
|
|
4154
|
+
// 'itemcode': 'JJJ016983134',
|
|
4155
|
+
// },
|
|
4156
|
+
// {
|
|
4157
|
+
// 'facility_code': 'LKST98',
|
|
4158
|
+
// 'product_id': 211284,
|
|
4159
|
+
// 'brand': 'John Jacobs',
|
|
4160
|
+
// 'category': 'eyeframe',
|
|
4161
|
+
// 'zone': 'South',
|
|
4162
|
+
// 'tlp_status': 'N',
|
|
4163
|
+
// 'lf_nonlf': 'LF',
|
|
4164
|
+
// 'kpi': 'SOH',
|
|
4165
|
+
// 'qty': 1,
|
|
4166
|
+
// 'created_at': '1/31/2025',
|
|
4167
|
+
// 'store_type': 'COCO',
|
|
4168
|
+
// 'status': 'Active',
|
|
4169
|
+
// 'PLC': 'Continuity',
|
|
4170
|
+
// 'itemcode': 'JJJ019497437',
|
|
4171
|
+
// },
|
|
4172
|
+
// {
|
|
4173
|
+
// 'facility_code': 'LKST98',
|
|
4174
|
+
// 'product_id': 215748,
|
|
4175
|
+
// 'brand': 'John Jacobs',
|
|
4176
|
+
// 'category': 'eyeframe',
|
|
4177
|
+
// 'zone': 'South',
|
|
4178
|
+
// 'tlp_status': 'N',
|
|
4179
|
+
// 'lf_nonlf': 'LF',
|
|
4180
|
+
// 'kpi': 'SOH',
|
|
4181
|
+
// 'qty': 1,
|
|
4182
|
+
// 'created_at': '1/31/2025',
|
|
4183
|
+
// 'store_type': 'COCO',
|
|
4184
|
+
// 'status': 'Active',
|
|
4185
|
+
// 'PLC': 'Continuity',
|
|
4186
|
+
// 'itemcode': 'JJJ016596615',
|
|
4187
|
+
// },
|
|
4188
|
+
// {
|
|
4189
|
+
// 'facility_code': 'LKST98',
|
|
4190
|
+
// 'product_id': 147910,
|
|
4191
|
+
// 'brand': 'John Jacobs Online',
|
|
4192
|
+
// 'category': 'sunglasses',
|
|
4193
|
+
// 'zone': 'South',
|
|
4194
|
+
// 'tlp_status': 'YES',
|
|
4195
|
+
// 'lf_nonlf': 'LF',
|
|
4196
|
+
// 'kpi': 'SOH',
|
|
4197
|
+
// 'qty': 1,
|
|
4198
|
+
// 'created_at': '1/31/2025',
|
|
4199
|
+
// 'store_type': 'COCO',
|
|
4200
|
+
// 'status': 'Active',
|
|
4201
|
+
// 'PLC': 'Singapore Ex',
|
|
4202
|
+
// 'itemcode': 'JJJ014063429',
|
|
4203
|
+
// },
|
|
4204
|
+
// {
|
|
4205
|
+
// 'facility_code': 'LKST98',
|
|
4206
|
+
// 'product_id': 216747,
|
|
4207
|
+
// 'brand': 'John Jacobs',
|
|
4208
|
+
// 'category': 'eyeframe',
|
|
4209
|
+
// 'zone': 'South',
|
|
4210
|
+
// 'tlp_status': 'N',
|
|
4211
|
+
// 'lf_nonlf': 'LF',
|
|
4212
|
+
// 'kpi': 'SOH',
|
|
4213
|
+
// 'qty': 1,
|
|
4214
|
+
// 'created_at': '1/31/2025',
|
|
4215
|
+
// 'store_type': 'COCO',
|
|
4216
|
+
// 'status': 'Active',
|
|
4217
|
+
// 'PLC': 'Continuity A',
|
|
4218
|
+
// 'itemcode': 'JJJ016908062',
|
|
4219
|
+
// },
|
|
4220
|
+
// {
|
|
4221
|
+
// 'facility_code': 'LKST98',
|
|
4222
|
+
// 'product_id': 201374,
|
|
4223
|
+
// 'brand': 'John Jacobs',
|
|
4224
|
+
// 'category': 'eyeframe',
|
|
4225
|
+
// 'zone': 'South',
|
|
4226
|
+
// 'tlp_status': 'N',
|
|
4227
|
+
// 'lf_nonlf': 'LF',
|
|
4228
|
+
// 'kpi': 'SOH',
|
|
4229
|
+
// 'qty': 1,
|
|
4230
|
+
// 'created_at': '1/31/2025',
|
|
4231
|
+
// 'store_type': 'COCO',
|
|
4232
|
+
// 'status': 'Active',
|
|
4233
|
+
// 'PLC': 'Continuity',
|
|
4234
|
+
// 'itemcode': 'JJJ017037252',
|
|
4235
|
+
// },
|
|
4236
|
+
// {
|
|
4237
|
+
// 'facility_code': 'LKST98',
|
|
4238
|
+
// 'product_id': 147909,
|
|
4239
|
+
// 'brand': 'John Jacobs Online',
|
|
4240
|
+
// 'category': 'sunglasses',
|
|
4241
|
+
// 'zone': 'South',
|
|
4242
|
+
// 'tlp_status': 'YES',
|
|
4243
|
+
// 'lf_nonlf': 'LF',
|
|
4244
|
+
// 'kpi': 'SOH',
|
|
4245
|
+
// 'qty': 1,
|
|
4246
|
+
// 'created_at': '1/31/2025',
|
|
4247
|
+
// 'store_type': 'COCO',
|
|
4248
|
+
// 'status': 'Active',
|
|
4249
|
+
// 'PLC': 'Singapore Ex',
|
|
4250
|
+
// 'itemcode': 'JJJ012960727',
|
|
4251
|
+
// },
|
|
4252
|
+
// {
|
|
4253
|
+
// 'facility_code': 'LKST98',
|
|
4254
|
+
// 'product_id': 135865,
|
|
4255
|
+
// 'brand': 'John Jacobs',
|
|
4256
|
+
// 'category': 'sunglasses',
|
|
4257
|
+
// 'zone': 'South',
|
|
4258
|
+
// 'tlp_status': 'N',
|
|
4259
|
+
// 'lf_nonlf': 'LF',
|
|
4260
|
+
// 'kpi': 'SOH',
|
|
4261
|
+
// 'qty': 4,
|
|
4262
|
+
// 'created_at': '1/31/2025',
|
|
4263
|
+
// 'store_type': 'COCO',
|
|
4264
|
+
// 'status': 'Active',
|
|
4265
|
+
// 'PLC': 'Core',
|
|
4266
|
+
// 'itemcode': 'JJJ018475675',
|
|
4267
|
+
// },
|
|
4268
|
+
// {
|
|
4269
|
+
// 'facility_code': 'LKST98',
|
|
4270
|
+
// 'product_id': 212735,
|
|
4271
|
+
// 'brand': 'John Jacobs',
|
|
4272
|
+
// 'category': 'eyeframe',
|
|
4273
|
+
// 'zone': 'South',
|
|
4274
|
+
// 'tlp_status': 'N',
|
|
4275
|
+
// 'lf_nonlf': 'LF',
|
|
4276
|
+
// 'kpi': 'SOH',
|
|
4277
|
+
// 'qty': 1,
|
|
4278
|
+
// 'created_at': '1/31/2025',
|
|
4279
|
+
// 'store_type': 'COCO',
|
|
4280
|
+
// 'status': 'Active',
|
|
4281
|
+
// 'PLC': 'Continuity',
|
|
4282
|
+
// 'itemcode': 'JJJ016140174',
|
|
4283
|
+
// },
|
|
4284
|
+
// {
|
|
4285
|
+
// 'facility_code': 'LKST98',
|
|
4286
|
+
// 'product_id': 146464,
|
|
4287
|
+
// 'brand': 'John Jacobs',
|
|
4288
|
+
// 'category': 'eyeframe',
|
|
4289
|
+
// 'zone': 'South',
|
|
4290
|
+
// 'tlp_status': 'N',
|
|
4291
|
+
// 'lf_nonlf': 'LF',
|
|
4292
|
+
// 'kpi': 'SOH',
|
|
4293
|
+
// 'qty': 1,
|
|
4294
|
+
// 'created_at': '1/31/2025',
|
|
4295
|
+
// 'store_type': 'COCO',
|
|
4296
|
+
// 'status': 'Active',
|
|
4297
|
+
// 'PLC': 'Continuity',
|
|
4298
|
+
// 'itemcode': 'JJJ012137295',
|
|
4299
|
+
// },
|
|
4300
|
+
// {
|
|
4301
|
+
// 'facility_code': 'LKST98',
|
|
4302
|
+
// 'product_id': 215256,
|
|
4303
|
+
// 'brand': 'John Jacobs',
|
|
4304
|
+
// 'category': 'eyeframe',
|
|
4305
|
+
// 'zone': 'South',
|
|
4306
|
+
// 'tlp_status': 'N',
|
|
4307
|
+
// 'lf_nonlf': 'LF',
|
|
4308
|
+
// 'kpi': 'SOH',
|
|
4309
|
+
// 'qty': 1,
|
|
4310
|
+
// 'created_at': '1/31/2025',
|
|
4311
|
+
// 'store_type': 'COCO',
|
|
4312
|
+
// 'status': 'Active',
|
|
4313
|
+
// 'PLC': 'Continuity',
|
|
4314
|
+
// 'itemcode': 'JJJ018967151',
|
|
4315
|
+
// },
|
|
4316
|
+
// {
|
|
4317
|
+
// 'facility_code': 'LKST98',
|
|
4318
|
+
// 'product_id': 218932,
|
|
4319
|
+
// 'brand': 'John Jacobs',
|
|
4320
|
+
// 'category': 'eyeframe',
|
|
4321
|
+
// 'zone': 'South',
|
|
4322
|
+
// 'tlp_status': 'N',
|
|
4323
|
+
// 'lf_nonlf': 'LF',
|
|
4324
|
+
// 'kpi': 'SOH',
|
|
4325
|
+
// 'qty': 1,
|
|
4326
|
+
// 'created_at': '1/31/2025',
|
|
4327
|
+
// 'store_type': 'COCO',
|
|
4328
|
+
// 'status': 'Active',
|
|
4329
|
+
// 'PLC': 'Continuity',
|
|
4330
|
+
// 'itemcode': 'JJJ019315551',
|
|
4331
|
+
// },
|
|
4332
|
+
// {
|
|
4333
|
+
// 'facility_code': 'LKST98',
|
|
4334
|
+
// 'product_id': 138248,
|
|
4335
|
+
// 'brand': 'John Jacobs',
|
|
4336
|
+
// 'category': 'sunglasses',
|
|
4337
|
+
// 'zone': 'South',
|
|
4338
|
+
// 'tlp_status': 'N',
|
|
4339
|
+
// 'lf_nonlf': 'LF',
|
|
4340
|
+
// 'kpi': 'SOH',
|
|
4341
|
+
// 'qty': 1,
|
|
4342
|
+
// 'created_at': '1/31/2025',
|
|
4343
|
+
// 'store_type': 'COCO',
|
|
4344
|
+
// 'status': 'Active',
|
|
4345
|
+
// 'PLC': 'Continuity',
|
|
4346
|
+
// 'itemcode': 'JJJ019627055',
|
|
4347
|
+
// },
|
|
4348
|
+
// {
|
|
4349
|
+
// 'facility_code': 'LKST98',
|
|
4350
|
+
// 'product_id': 135440,
|
|
4351
|
+
// 'brand': 'John Jacobs',
|
|
4352
|
+
// 'category': 'eyeframe',
|
|
4353
|
+
// 'zone': 'South',
|
|
4354
|
+
// 'tlp_status': 'N',
|
|
4355
|
+
// 'lf_nonlf': 'LF',
|
|
4356
|
+
// 'kpi': 'SOH',
|
|
4357
|
+
// 'qty': 1,
|
|
4358
|
+
// 'created_at': '1/31/2025',
|
|
4359
|
+
// 'store_type': 'COCO',
|
|
4360
|
+
// 'status': 'Active',
|
|
4361
|
+
// 'PLC': 'Core',
|
|
4362
|
+
// 'itemcode': 'JJJ019057004',
|
|
4363
|
+
// },
|
|
4364
|
+
// {
|
|
4365
|
+
// 'facility_code': 'LKST98',
|
|
4366
|
+
// 'product_id': 217760,
|
|
4367
|
+
// 'brand': 'John Jacobs',
|
|
4368
|
+
// 'category': 'eyeframe',
|
|
4369
|
+
// 'zone': 'South',
|
|
4370
|
+
// 'tlp_status': 'N',
|
|
4371
|
+
// 'lf_nonlf': 'LF',
|
|
4372
|
+
// 'kpi': 'SOH',
|
|
4373
|
+
// 'qty': 1,
|
|
4374
|
+
// 'created_at': '1/31/2025',
|
|
4375
|
+
// 'store_type': 'COCO',
|
|
4376
|
+
// 'status': 'Active',
|
|
4377
|
+
// 'PLC': 'Continuity',
|
|
4378
|
+
// 'itemcode': 'JJJ017015715',
|
|
4379
|
+
// },
|
|
4380
|
+
// {
|
|
4381
|
+
// 'facility_code': 'LKST98',
|
|
4382
|
+
// 'product_id': 217752,
|
|
4383
|
+
// 'brand': 'John Jacobs',
|
|
4384
|
+
// 'category': 'eyeframe',
|
|
4385
|
+
// 'zone': 'South',
|
|
4386
|
+
// 'tlp_status': 'N',
|
|
4387
|
+
// 'lf_nonlf': 'LF',
|
|
4388
|
+
// 'kpi': 'SOH',
|
|
4389
|
+
// 'qty': 1,
|
|
4390
|
+
// 'created_at': '1/31/2025',
|
|
4391
|
+
// 'store_type': 'COCO',
|
|
4392
|
+
// 'status': 'Active',
|
|
4393
|
+
// 'PLC': 'Continuity',
|
|
4394
|
+
// 'itemcode': 'JJJ017010921',
|
|
4395
|
+
// },
|
|
4396
|
+
// {
|
|
4397
|
+
// 'facility_code': 'LKST98',
|
|
4398
|
+
// 'product_id': 223233,
|
|
4399
|
+
// 'brand': 'John Jacobs',
|
|
4400
|
+
// 'category': 'eyeframe',
|
|
4401
|
+
// 'zone': 'South',
|
|
4402
|
+
// 'tlp_status': 'N',
|
|
4403
|
+
// 'lf_nonlf': 'LF',
|
|
4404
|
+
// 'kpi': 'SOH',
|
|
4405
|
+
// 'qty': 1,
|
|
4406
|
+
// 'created_at': '1/31/2025',
|
|
4407
|
+
// 'store_type': 'COCO',
|
|
4408
|
+
// 'status': 'Active',
|
|
4409
|
+
// 'PLC': 'New Launches',
|
|
4410
|
+
// 'itemcode': 'JJJ019806882',
|
|
4411
|
+
// },
|
|
4412
|
+
// {
|
|
4413
|
+
// 'facility_code': 'LKST98',
|
|
4414
|
+
// 'product_id': 131415,
|
|
4415
|
+
// 'brand': 'John Jacobs',
|
|
4416
|
+
// 'category': 'eyeframe',
|
|
4417
|
+
// 'zone': 'South',
|
|
4418
|
+
// 'tlp_status': 'N',
|
|
4419
|
+
// 'lf_nonlf': 'LF',
|
|
4420
|
+
// 'kpi': 'SOH',
|
|
4421
|
+
// 'qty': 1,
|
|
4422
|
+
// 'created_at': '1/31/2025',
|
|
4423
|
+
// 'store_type': 'COCO',
|
|
4424
|
+
// 'status': 'Active',
|
|
4425
|
+
// 'PLC': 'Discontinued',
|
|
4426
|
+
// 'itemcode': 'JJJ018148576',
|
|
4427
|
+
// },
|
|
4428
|
+
// {
|
|
4429
|
+
// 'facility_code': 'LKST98',
|
|
4430
|
+
// 'product_id': 216740,
|
|
4431
|
+
// 'brand': 'John Jacobs',
|
|
4432
|
+
// 'category': 'eyeframe',
|
|
4433
|
+
// 'zone': 'South',
|
|
4434
|
+
// 'tlp_status': 'N',
|
|
4435
|
+
// 'lf_nonlf': 'LF',
|
|
4436
|
+
// 'kpi': 'SOH',
|
|
4437
|
+
// 'qty': 1,
|
|
4438
|
+
// 'created_at': '1/31/2025',
|
|
4439
|
+
// 'store_type': 'COCO',
|
|
4440
|
+
// 'status': 'Active',
|
|
4441
|
+
// 'PLC': 'Continuity',
|
|
4442
|
+
// 'itemcode': 'JJJ019510919',
|
|
4443
|
+
// },
|
|
4444
|
+
// {
|
|
4445
|
+
// 'facility_code': 'LKST98',
|
|
4446
|
+
// 'product_id': 225406,
|
|
4447
|
+
// 'brand': 'John Jacobs',
|
|
4448
|
+
// 'category': 'eyeframe',
|
|
4449
|
+
// 'zone': 'South',
|
|
4450
|
+
// 'tlp_status': 'N',
|
|
4451
|
+
// 'lf_nonlf': 'LF',
|
|
4452
|
+
// 'kpi': 'SOH',
|
|
4453
|
+
// 'qty': 1,
|
|
4454
|
+
// 'created_at': '1/31/2025',
|
|
4455
|
+
// 'store_type': 'COCO',
|
|
4456
|
+
// 'status': 'Active',
|
|
4457
|
+
// 'PLC': 'New Launches',
|
|
4458
|
+
// 'itemcode': 'JJJ021454381',
|
|
4459
|
+
// },
|
|
4460
|
+
// {
|
|
4461
|
+
// 'facility_code': 'LKST98',
|
|
4462
|
+
// 'product_id': 216746,
|
|
4463
|
+
// 'brand': 'John Jacobs',
|
|
4464
|
+
// 'category': 'eyeframe',
|
|
4465
|
+
// 'zone': 'South',
|
|
4466
|
+
// 'tlp_status': 'N',
|
|
4467
|
+
// 'lf_nonlf': 'LF',
|
|
4468
|
+
// 'kpi': 'SOH',
|
|
4469
|
+
// 'qty': 1,
|
|
4470
|
+
// 'created_at': '1/31/2025',
|
|
4471
|
+
// 'store_type': 'COCO',
|
|
4472
|
+
// 'status': 'Active',
|
|
4473
|
+
// 'PLC': 'Continuity',
|
|
4474
|
+
// 'itemcode': 'JJJ019521308',
|
|
4475
|
+
// },
|
|
4476
|
+
// {
|
|
4477
|
+
// 'facility_code': 'LKST98',
|
|
4478
|
+
// 'product_id': 148398,
|
|
4479
|
+
// 'brand': 'John Jacobs',
|
|
4480
|
+
// 'category': 'sunglasses',
|
|
4481
|
+
// 'zone': 'South',
|
|
4482
|
+
// 'tlp_status': 'YES',
|
|
4483
|
+
// 'lf_nonlf': 'LF',
|
|
4484
|
+
// 'kpi': 'SOH',
|
|
4485
|
+
// 'qty': 1,
|
|
4486
|
+
// 'created_at': '1/31/2025',
|
|
4487
|
+
// 'store_type': 'COCO',
|
|
4488
|
+
// 'status': 'Active',
|
|
4489
|
+
// 'PLC': 'Continuity',
|
|
4490
|
+
// 'itemcode': 'JJJ014083655',
|
|
4491
|
+
// },
|
|
4492
|
+
// {
|
|
4493
|
+
// 'facility_code': 'LKST98',
|
|
4494
|
+
// 'product_id': 137156,
|
|
4495
|
+
// 'brand': 'John Jacobs',
|
|
4496
|
+
// 'category': 'sunglasses',
|
|
4497
|
+
// 'zone': 'South',
|
|
4498
|
+
// 'tlp_status': 'N',
|
|
4499
|
+
// 'lf_nonlf': 'LF',
|
|
4500
|
+
// 'kpi': 'SOH',
|
|
4501
|
+
// 'qty': 1,
|
|
4502
|
+
// 'created_at': '1/31/2025',
|
|
4503
|
+
// 'store_type': 'COCO',
|
|
4504
|
+
// 'status': 'Active',
|
|
4505
|
+
// 'PLC': 'Continuity',
|
|
4506
|
+
// 'itemcode': 'JJJ016011023',
|
|
4507
|
+
// },
|
|
4508
|
+
// {
|
|
4509
|
+
// 'facility_code': 'LKST98',
|
|
4510
|
+
// 'product_id': 212737,
|
|
4511
|
+
// 'brand': 'John Jacobs',
|
|
4512
|
+
// 'category': 'eyeframe',
|
|
4513
|
+
// 'zone': 'South',
|
|
4514
|
+
// 'tlp_status': 'N',
|
|
4515
|
+
// 'lf_nonlf': 'LF',
|
|
4516
|
+
// 'kpi': 'SOH',
|
|
4517
|
+
// 'qty': 1,
|
|
4518
|
+
// 'created_at': '1/31/2025',
|
|
4519
|
+
// 'store_type': 'COCO',
|
|
4520
|
+
// 'status': 'Active',
|
|
4521
|
+
// 'PLC': 'Continuity A',
|
|
4522
|
+
// 'itemcode': '',
|
|
4523
|
+
// },
|
|
4524
|
+
// {
|
|
4525
|
+
// 'facility_code': 'LKST98',
|
|
4526
|
+
// 'product_id': 134947,
|
|
4527
|
+
// 'brand': 'John Jacobs',
|
|
4528
|
+
// 'category': 'sunglasses',
|
|
4529
|
+
// 'zone': 'South',
|
|
4530
|
+
// 'tlp_status': 'N',
|
|
4531
|
+
// 'lf_nonlf': 'LF',
|
|
4532
|
+
// 'kpi': 'SOH',
|
|
4533
|
+
// 'qty': 1,
|
|
4534
|
+
// 'created_at': '1/31/2025',
|
|
4535
|
+
// 'store_type': 'COCO',
|
|
4536
|
+
// 'status': 'Active',
|
|
4537
|
+
// 'PLC': 'Core',
|
|
4538
|
+
// 'itemcode': 'JJJ020585008',
|
|
4539
|
+
// },
|
|
4540
|
+
// {
|
|
4541
|
+
// 'facility_code': 'LKST98',
|
|
4542
|
+
// 'product_id': 225390,
|
|
4543
|
+
// 'brand': 'John Jacobs',
|
|
4544
|
+
// 'category': 'eyeframe',
|
|
4545
|
+
// 'zone': 'South',
|
|
4546
|
+
// 'tlp_status': 'N',
|
|
4547
|
+
// 'lf_nonlf': 'LF',
|
|
4548
|
+
// 'kpi': 'SOH',
|
|
4549
|
+
// 'qty': 1,
|
|
4550
|
+
// 'created_at': '1/31/2025',
|
|
4551
|
+
// 'store_type': 'COCO',
|
|
4552
|
+
// 'status': 'Active',
|
|
4553
|
+
// 'PLC': 'New Launches',
|
|
4554
|
+
// 'itemcode': 'JJJ021438591',
|
|
4555
|
+
// },
|
|
4556
|
+
// {
|
|
4557
|
+
// 'facility_code': 'LKST98',
|
|
4558
|
+
// 'product_id': 216739,
|
|
4559
|
+
// 'brand': 'John Jacobs',
|
|
4560
|
+
// 'category': 'eyeframe',
|
|
4561
|
+
// 'zone': 'South',
|
|
4562
|
+
// 'tlp_status': 'N',
|
|
4563
|
+
// 'lf_nonlf': 'LF',
|
|
4564
|
+
// 'kpi': 'SOH',
|
|
4565
|
+
// 'qty': 1,
|
|
4566
|
+
// 'created_at': '1/31/2025',
|
|
4567
|
+
// 'store_type': 'COCO',
|
|
4568
|
+
// 'status': 'Active',
|
|
4569
|
+
// 'PLC': 'Continuity A',
|
|
4570
|
+
// 'itemcode': 'JJJ019508157',
|
|
4571
|
+
// },
|
|
4572
|
+
// {
|
|
4573
|
+
// 'facility_code': 'LKST98',
|
|
4574
|
+
// 'product_id': 146474,
|
|
4575
|
+
// 'brand': 'John Jacobs',
|
|
4576
|
+
// 'category': 'eyeframe',
|
|
4577
|
+
// 'zone': 'South',
|
|
4578
|
+
// 'tlp_status': 'N',
|
|
4579
|
+
// 'lf_nonlf': 'LF',
|
|
4580
|
+
// 'kpi': 'SOH',
|
|
4581
|
+
// 'qty': 1,
|
|
4582
|
+
// 'created_at': '1/31/2025',
|
|
4583
|
+
// 'store_type': 'COCO',
|
|
4584
|
+
// 'status': 'Active',
|
|
4585
|
+
// 'PLC': 'Continuity A',
|
|
4586
|
+
// 'itemcode': 'JJJ016462048',
|
|
4587
|
+
// },
|
|
4588
|
+
// {
|
|
4589
|
+
// 'facility_code': 'LKST98',
|
|
4590
|
+
// 'product_id': 215742,
|
|
4591
|
+
// 'brand': 'John Jacobs',
|
|
4592
|
+
// 'category': 'eyeframe',
|
|
4593
|
+
// 'zone': 'South',
|
|
4594
|
+
// 'tlp_status': 'N',
|
|
4595
|
+
// 'lf_nonlf': 'LF',
|
|
4596
|
+
// 'kpi': 'SOH',
|
|
4597
|
+
// 'qty': 1,
|
|
4598
|
+
// 'created_at': '1/31/2025',
|
|
4599
|
+
// 'store_type': 'COCO',
|
|
4600
|
+
// 'status': 'Active',
|
|
4601
|
+
// 'PLC': 'Continuity A',
|
|
4602
|
+
// 'itemcode': '',
|
|
4603
|
+
// },
|
|
4604
|
+
// {
|
|
4605
|
+
// 'facility_code': 'LKST98',
|
|
4606
|
+
// 'product_id': 142893,
|
|
4607
|
+
// 'brand': 'John Jacobs',
|
|
4608
|
+
// 'category': 'eyeframe',
|
|
4609
|
+
// 'zone': 'South',
|
|
4610
|
+
// 'tlp_status': 'YES',
|
|
4611
|
+
// 'lf_nonlf': 'LF',
|
|
4612
|
+
// 'kpi': 'SOH',
|
|
4613
|
+
// 'qty': 1,
|
|
4614
|
+
// 'created_at': '1/31/2025',
|
|
4615
|
+
// 'store_type': 'COCO',
|
|
4616
|
+
// 'status': 'Active',
|
|
4617
|
+
// 'PLC': 'Discontinued',
|
|
4618
|
+
// 'itemcode': 'JJJ017095776',
|
|
4619
|
+
// },
|
|
4620
|
+
// {
|
|
4621
|
+
// 'facility_code': 'LKST98',
|
|
4622
|
+
// 'product_id': 209438,
|
|
4623
|
+
// 'brand': 'John Jacobs',
|
|
4624
|
+
// 'category': 'sunglasses',
|
|
4625
|
+
// 'zone': 'South',
|
|
4626
|
+
// 'tlp_status': 'YES',
|
|
4627
|
+
// 'lf_nonlf': 'LF',
|
|
4628
|
+
// 'kpi': 'SOH',
|
|
4629
|
+
// 'qty': 1,
|
|
4630
|
+
// 'created_at': '1/31/2025',
|
|
4631
|
+
// 'store_type': 'COCO',
|
|
4632
|
+
// 'status': 'Active',
|
|
4633
|
+
// 'PLC': 'Singapore Ex',
|
|
4634
|
+
// 'itemcode': 'JJJ015276828',
|
|
4635
|
+
// },
|
|
4636
|
+
// {
|
|
4637
|
+
// 'facility_code': 'LKST98',
|
|
4638
|
+
// 'product_id': 135438,
|
|
4639
|
+
// 'brand': 'John Jacobs',
|
|
4640
|
+
// 'category': 'eyeframe',
|
|
4641
|
+
// 'zone': 'South',
|
|
4642
|
+
// 'tlp_status': 'N',
|
|
4643
|
+
// 'lf_nonlf': 'LF',
|
|
4644
|
+
// 'kpi': 'SOH',
|
|
4645
|
+
// 'qty': 1,
|
|
4646
|
+
// 'created_at': '1/31/2025',
|
|
4647
|
+
// 'store_type': 'COCO',
|
|
4648
|
+
// 'status': 'Active',
|
|
4649
|
+
// 'PLC': 'Continuity A',
|
|
4650
|
+
// 'itemcode': 'JJJ019641251',
|
|
4651
|
+
// },
|
|
4652
|
+
// {
|
|
4653
|
+
// 'facility_code': 'LKST98',
|
|
4654
|
+
// 'product_id': 216863,
|
|
4655
|
+
// 'brand': 'John Jacobs',
|
|
4656
|
+
// 'category': 'eyeframe',
|
|
4657
|
+
// 'zone': 'South',
|
|
4658
|
+
// 'tlp_status': 'N',
|
|
4659
|
+
// 'lf_nonlf': 'LF',
|
|
4660
|
+
// 'kpi': 'SOH',
|
|
4661
|
+
// 'qty': 1,
|
|
4662
|
+
// 'created_at': '1/31/2025',
|
|
4663
|
+
// 'store_type': 'COCO',
|
|
4664
|
+
// 'status': 'Active',
|
|
4665
|
+
// 'PLC': 'Continuity',
|
|
4666
|
+
// 'itemcode': 'JJJ019584166',
|
|
4667
|
+
// },
|
|
4668
|
+
// {
|
|
4669
|
+
// 'facility_code': 'LKST98',
|
|
4670
|
+
// 'product_id': 205964,
|
|
4671
|
+
// 'brand': 'John Jacobs',
|
|
4672
|
+
// 'category': 'eyeframe',
|
|
4673
|
+
// 'zone': 'South',
|
|
4674
|
+
// 'tlp_status': 'YES',
|
|
4675
|
+
// 'lf_nonlf': 'LF',
|
|
4676
|
+
// 'kpi': 'SOH',
|
|
4677
|
+
// 'qty': 1,
|
|
4678
|
+
// 'created_at': '1/31/2025',
|
|
4679
|
+
// 'store_type': 'COCO',
|
|
4680
|
+
// 'status': 'Active',
|
|
4681
|
+
// 'PLC': 'Discontinued',
|
|
4682
|
+
// 'itemcode': 'JJJ017053864',
|
|
4683
|
+
// },
|
|
4684
|
+
// {
|
|
4685
|
+
// 'facility_code': 'LKST98',
|
|
4686
|
+
// 'product_id': 135067,
|
|
4687
|
+
// 'brand': 'John Jacobs',
|
|
4688
|
+
// 'category': 'sunglasses',
|
|
4689
|
+
// 'zone': 'South',
|
|
4690
|
+
// 'tlp_status': 'N',
|
|
4691
|
+
// 'lf_nonlf': 'LF',
|
|
4692
|
+
// 'kpi': 'SOH',
|
|
4693
|
+
// 'qty': 1,
|
|
4694
|
+
// 'created_at': '1/31/2025',
|
|
4695
|
+
// 'store_type': 'COCO',
|
|
4696
|
+
// 'status': 'Active',
|
|
4697
|
+
// 'PLC': 'Core',
|
|
4698
|
+
// 'itemcode': 'JJJ020135950',
|
|
4699
|
+
// },
|
|
4700
|
+
// {
|
|
4701
|
+
// 'facility_code': 'LKST98',
|
|
4702
|
+
// 'product_id': 216743,
|
|
4703
|
+
// 'brand': 'John Jacobs',
|
|
4704
|
+
// 'category': 'eyeframe',
|
|
4705
|
+
// 'zone': 'South',
|
|
4706
|
+
// 'tlp_status': 'N',
|
|
4707
|
+
// 'lf_nonlf': 'LF',
|
|
4708
|
+
// 'kpi': 'SOH',
|
|
4709
|
+
// 'qty': 1,
|
|
4710
|
+
// 'created_at': '1/31/2025',
|
|
4711
|
+
// 'store_type': 'COCO',
|
|
4712
|
+
// 'status': 'Active',
|
|
4713
|
+
// 'PLC': 'Continuity A',
|
|
4714
|
+
// 'itemcode': 'JJJ018993861',
|
|
4715
|
+
// },
|
|
4716
|
+
// {
|
|
4717
|
+
// 'facility_code': 'LKST98',
|
|
4718
|
+
// 'product_id': 225401,
|
|
4719
|
+
// 'brand': 'John Jacobs',
|
|
4720
|
+
// 'category': 'eyeframe',
|
|
4721
|
+
// 'zone': 'South',
|
|
4722
|
+
// 'tlp_status': 'N',
|
|
4723
|
+
// 'lf_nonlf': 'LF',
|
|
4724
|
+
// 'kpi': 'SOH',
|
|
4725
|
+
// 'qty': 1,
|
|
4726
|
+
// 'created_at': '1/31/2025',
|
|
4727
|
+
// 'store_type': 'COCO',
|
|
4728
|
+
// 'status': 'Active',
|
|
4729
|
+
// 'PLC': 'New Launches',
|
|
4730
|
+
// 'itemcode': 'JJJ021448381',
|
|
4731
|
+
// },
|
|
4732
|
+
// {
|
|
4733
|
+
// 'facility_code': 'LKST98',
|
|
4734
|
+
// 'product_id': 212736,
|
|
4735
|
+
// 'brand': 'John Jacobs',
|
|
4736
|
+
// 'category': 'eyeframe',
|
|
4737
|
+
// 'zone': 'South',
|
|
4738
|
+
// 'tlp_status': 'N',
|
|
4739
|
+
// 'lf_nonlf': 'LF',
|
|
4740
|
+
// 'kpi': 'SOH',
|
|
4741
|
+
// 'qty': 1,
|
|
4742
|
+
// 'created_at': '1/31/2025',
|
|
4743
|
+
// 'store_type': 'COCO',
|
|
4744
|
+
// 'status': 'Active',
|
|
4745
|
+
// 'PLC': 'Continuity',
|
|
4746
|
+
// 'itemcode': 'JJJ016143514',
|
|
4747
|
+
// },
|
|
4748
|
+
// {
|
|
4749
|
+
// 'facility_code': 'LKST98',
|
|
4750
|
+
// 'product_id': 136068,
|
|
4751
|
+
// 'brand': 'John Jacobs',
|
|
4752
|
+
// 'category': 'sunglasses',
|
|
4753
|
+
// 'zone': 'South',
|
|
4754
|
+
// 'tlp_status': 'N',
|
|
4755
|
+
// 'lf_nonlf': 'LF',
|
|
4756
|
+
// 'kpi': 'SOH',
|
|
4757
|
+
// 'qty': 1,
|
|
4758
|
+
// 'created_at': '1/31/2025',
|
|
4759
|
+
// 'store_type': 'COCO',
|
|
4760
|
+
// 'status': 'Active',
|
|
4761
|
+
// 'PLC': 'Core',
|
|
4762
|
+
// 'itemcode': 'JJJ017474101',
|
|
4763
|
+
// },
|
|
4764
|
+
// {
|
|
4765
|
+
// 'facility_code': 'LKST98',
|
|
4766
|
+
// 'product_id': 206788,
|
|
4767
|
+
// 'brand': 'John Jacobs',
|
|
4768
|
+
// 'category': 'eyeframe',
|
|
4769
|
+
// 'zone': 'South',
|
|
4770
|
+
// 'tlp_status': 'N',
|
|
4771
|
+
// 'lf_nonlf': 'LF',
|
|
4772
|
+
// 'kpi': 'SOH',
|
|
4773
|
+
// 'qty': 1,
|
|
4774
|
+
// 'created_at': '1/31/2025',
|
|
4775
|
+
// 'store_type': 'COCO',
|
|
4776
|
+
// 'status': 'Active',
|
|
4777
|
+
// 'PLC': 'Continuity',
|
|
4778
|
+
// 'itemcode': 'JJJ017610679',
|
|
4779
|
+
// },
|
|
4780
|
+
// {
|
|
4781
|
+
// 'facility_code': 'LKST98',
|
|
4782
|
+
// 'product_id': 211193,
|
|
4783
|
+
// 'brand': 'John Jacobs',
|
|
4784
|
+
// 'category': 'eyeframe',
|
|
4785
|
+
// 'zone': 'South',
|
|
4786
|
+
// 'tlp_status': 'N',
|
|
4787
|
+
// 'lf_nonlf': 'LF',
|
|
4788
|
+
// 'kpi': 'SOH',
|
|
4789
|
+
// 'qty': 1,
|
|
4790
|
+
// 'created_at': '1/31/2025',
|
|
4791
|
+
// 'store_type': 'COCO',
|
|
4792
|
+
// 'status': 'Active',
|
|
4793
|
+
// 'PLC': 'Core',
|
|
4794
|
+
// 'itemcode': '',
|
|
4795
|
+
// },
|
|
4796
|
+
// {
|
|
4797
|
+
// 'facility_code': 'LKST98',
|
|
4798
|
+
// 'product_id': 210123,
|
|
4799
|
+
// 'brand': 'John Jacobs',
|
|
4800
|
+
// 'category': 'eyeframe',
|
|
4801
|
+
// 'zone': 'South',
|
|
4802
|
+
// 'tlp_status': 'N',
|
|
4803
|
+
// 'lf_nonlf': 'LF',
|
|
4804
|
+
// 'kpi': 'SOH',
|
|
4805
|
+
// 'qty': 1,
|
|
4806
|
+
// 'created_at': '1/31/2025',
|
|
4807
|
+
// 'store_type': 'COCO',
|
|
4808
|
+
// 'status': 'Active',
|
|
4809
|
+
// 'PLC': 'Continuity',
|
|
4810
|
+
// 'itemcode': 'JJJ017345247',
|
|
4811
|
+
// },
|
|
4812
|
+
// {
|
|
4813
|
+
// 'facility_code': 'LKST98',
|
|
4814
|
+
// 'product_id': 134951,
|
|
4815
|
+
// 'brand': 'John Jacobs',
|
|
4816
|
+
// 'category': 'sunglasses',
|
|
4817
|
+
// 'zone': 'South',
|
|
4818
|
+
// 'tlp_status': 'N',
|
|
4819
|
+
// 'lf_nonlf': 'LF',
|
|
4820
|
+
// 'kpi': 'SOH',
|
|
4821
|
+
// 'qty': 2,
|
|
4822
|
+
// 'created_at': '1/31/2025',
|
|
4823
|
+
// 'store_type': 'COCO',
|
|
4824
|
+
// 'status': 'Active',
|
|
4825
|
+
// 'PLC': 'Core',
|
|
4826
|
+
// 'itemcode': 'JJJ018900309',
|
|
4827
|
+
// },
|
|
4828
|
+
// {
|
|
4829
|
+
// 'facility_code': 'LKST98',
|
|
4830
|
+
// 'product_id': 211189,
|
|
4831
|
+
// 'brand': 'John Jacobs',
|
|
4832
|
+
// 'category': 'eyeframe',
|
|
4833
|
+
// 'zone': 'South',
|
|
4834
|
+
// 'tlp_status': 'N',
|
|
4835
|
+
// 'lf_nonlf': 'LF',
|
|
4836
|
+
// 'kpi': 'SOH',
|
|
4837
|
+
// 'qty': 1,
|
|
4838
|
+
// 'created_at': '1/31/2025',
|
|
4839
|
+
// 'store_type': 'COCO',
|
|
4840
|
+
// 'status': 'Active',
|
|
4841
|
+
// 'PLC': 'Continuity',
|
|
4842
|
+
// 'itemcode': 'JJJ020502002',
|
|
4843
|
+
// },
|
|
4844
|
+
// {
|
|
4845
|
+
// 'facility_code': 'LKST98',
|
|
4846
|
+
// 'product_id': 116965,
|
|
4847
|
+
// 'brand': 'John Jacobs',
|
|
4848
|
+
// 'category': 'eyeframe',
|
|
4849
|
+
// 'zone': 'South',
|
|
4850
|
+
// 'tlp_status': 'N',
|
|
4851
|
+
// 'lf_nonlf': 'LF',
|
|
4852
|
+
// 'kpi': 'SOH',
|
|
4853
|
+
// 'qty': 1,
|
|
4854
|
+
// 'created_at': '1/31/2025',
|
|
4855
|
+
// 'store_type': 'COCO',
|
|
4856
|
+
// 'status': 'Active',
|
|
4857
|
+
// 'PLC': 'Continuity',
|
|
4858
|
+
// 'itemcode': 'JJJ011726693',
|
|
4859
|
+
// },
|
|
4860
|
+
// {
|
|
4861
|
+
// 'facility_code': 'LKST98',
|
|
4862
|
+
// 'product_id': 223230,
|
|
4863
|
+
// 'brand': 'John Jacobs',
|
|
4864
|
+
// 'category': 'eyeframe',
|
|
4865
|
+
// 'zone': 'South',
|
|
4866
|
+
// 'tlp_status': 'N',
|
|
4867
|
+
// 'lf_nonlf': 'LF',
|
|
4868
|
+
// 'kpi': 'SOH',
|
|
4869
|
+
// 'qty': 1,
|
|
4870
|
+
// 'created_at': '1/31/2025',
|
|
4871
|
+
// 'store_type': 'COCO',
|
|
4872
|
+
// 'status': 'Active',
|
|
4873
|
+
// 'PLC': 'New Launches',
|
|
4874
|
+
// 'itemcode': 'JJJ019798998',
|
|
4875
|
+
// },
|
|
4876
|
+
// {
|
|
4877
|
+
// 'facility_code': 'LKST98',
|
|
4878
|
+
// 'product_id': 209666,
|
|
4879
|
+
// 'brand': 'John Jacobs',
|
|
4880
|
+
// 'category': 'eyeframe',
|
|
4881
|
+
// 'zone': 'South',
|
|
4882
|
+
// 'tlp_status': 'N',
|
|
4883
|
+
// 'lf_nonlf': 'LF',
|
|
4884
|
+
// 'kpi': 'SOH',
|
|
4885
|
+
// 'qty': 1,
|
|
4886
|
+
// 'created_at': '1/31/2025',
|
|
4887
|
+
// 'store_type': 'COCO',
|
|
4888
|
+
// 'status': 'Active',
|
|
4889
|
+
// 'PLC': 'Continuity A',
|
|
4890
|
+
// 'itemcode': 'JJJ020379922',
|
|
4891
|
+
// },
|
|
4892
|
+
// {
|
|
4893
|
+
// 'facility_code': 'LKST98',
|
|
4894
|
+
// 'product_id': 215544,
|
|
4895
|
+
// 'brand': 'John Jacobs',
|
|
4896
|
+
// 'category': 'eyeframe',
|
|
4897
|
+
// 'zone': 'South',
|
|
4898
|
+
// 'tlp_status': 'N',
|
|
4899
|
+
// 'lf_nonlf': 'LF',
|
|
4900
|
+
// 'kpi': 'SOH',
|
|
4901
|
+
// 'qty': 1,
|
|
4902
|
+
// 'created_at': '1/31/2025',
|
|
4903
|
+
// 'store_type': 'COCO',
|
|
4904
|
+
// 'status': 'Active',
|
|
4905
|
+
// 'PLC': 'Continuity',
|
|
4906
|
+
// 'itemcode': 'JJJ018509363',
|
|
4907
|
+
// },
|
|
4908
|
+
// {
|
|
4909
|
+
// 'facility_code': 'LKST98',
|
|
4910
|
+
// 'product_id': 211195,
|
|
4911
|
+
// 'brand': 'John Jacobs',
|
|
4912
|
+
// 'category': 'eyeframe',
|
|
4913
|
+
// 'zone': 'South',
|
|
4914
|
+
// 'tlp_status': 'N',
|
|
4915
|
+
// 'lf_nonlf': 'LF',
|
|
4916
|
+
// 'kpi': 'SOH',
|
|
4917
|
+
// 'qty': 1,
|
|
4918
|
+
// 'created_at': '1/31/2025',
|
|
4919
|
+
// 'store_type': 'COCO',
|
|
4920
|
+
// 'status': 'Active',
|
|
4921
|
+
// 'PLC': 'Continuity',
|
|
4922
|
+
// 'itemcode': 'JJJ015864092',
|
|
4923
|
+
// },
|
|
4924
|
+
// {
|
|
4925
|
+
// 'facility_code': 'LKST98',
|
|
4926
|
+
// 'product_id': 222479,
|
|
4927
|
+
// 'brand': 'John Jacobs',
|
|
4928
|
+
// 'category': 'eyeframe',
|
|
4929
|
+
// 'zone': 'South',
|
|
4930
|
+
// 'tlp_status': 'N',
|
|
4931
|
+
// 'lf_nonlf': 'LF',
|
|
4932
|
+
// 'kpi': 'SOH',
|
|
4933
|
+
// 'qty': 1,
|
|
4934
|
+
// 'created_at': '1/31/2025',
|
|
4935
|
+
// 'store_type': 'COCO',
|
|
4936
|
+
// 'status': 'Active',
|
|
4937
|
+
// 'PLC': 'New Launches',
|
|
4938
|
+
// 'itemcode': 'JJJ019305541',
|
|
4939
|
+
// },
|
|
4940
|
+
// {
|
|
4941
|
+
// 'facility_code': 'LKST98',
|
|
4942
|
+
// 'product_id': 216847,
|
|
4943
|
+
// 'brand': 'John Jacobs',
|
|
4944
|
+
// 'category': 'eyeframe',
|
|
4945
|
+
// 'zone': 'South',
|
|
4946
|
+
// 'tlp_status': 'N',
|
|
4947
|
+
// 'lf_nonlf': 'LF',
|
|
4948
|
+
// 'kpi': 'SOH',
|
|
4949
|
+
// 'qty': 1,
|
|
4950
|
+
// 'created_at': '1/31/2025',
|
|
4951
|
+
// 'store_type': 'COCO',
|
|
4952
|
+
// 'status': 'Active',
|
|
4953
|
+
// 'PLC': 'Continuity',
|
|
4954
|
+
// 'itemcode': 'JJJ018069792',
|
|
4955
|
+
// },
|
|
4956
|
+
// {
|
|
4957
|
+
// 'facility_code': 'LKST98',
|
|
4958
|
+
// 'product_id': 147661,
|
|
4959
|
+
// 'brand': 'John Jacobs Online',
|
|
4960
|
+
// 'category': 'sunglasses',
|
|
4961
|
+
// 'zone': 'South',
|
|
4962
|
+
// 'tlp_status': 'YES',
|
|
4963
|
+
// 'lf_nonlf': 'LF',
|
|
4964
|
+
// 'kpi': 'SOH',
|
|
4965
|
+
// 'qty': 1,
|
|
4966
|
+
// 'created_at': '1/31/2025',
|
|
4967
|
+
// 'store_type': 'COCO',
|
|
4968
|
+
// 'status': 'Active',
|
|
4969
|
+
// 'PLC': 'Singapore Ex',
|
|
4970
|
+
// 'itemcode': 'JJJ012968503',
|
|
4971
|
+
// },
|
|
4972
|
+
// {
|
|
4973
|
+
// 'facility_code': 'LKST98',
|
|
4974
|
+
// 'product_id': 149143,
|
|
4975
|
+
// 'brand': 'John Jacobs Online',
|
|
4976
|
+
// 'category': 'eyeframe',
|
|
4977
|
+
// 'zone': 'South',
|
|
4978
|
+
// 'tlp_status': 'N',
|
|
4979
|
+
// 'lf_nonlf': 'LF',
|
|
4980
|
+
// 'kpi': 'SOH',
|
|
4981
|
+
// 'qty': 1,
|
|
4982
|
+
// 'created_at': '1/31/2025',
|
|
4983
|
+
// 'store_type': 'COCO',
|
|
4984
|
+
// 'status': 'Active',
|
|
4985
|
+
// 'PLC': 'Discontinued',
|
|
4986
|
+
// 'itemcode': 'JJJ010364902',
|
|
4987
|
+
// },
|
|
4988
|
+
// {
|
|
4989
|
+
// 'facility_code': 'LKST98',
|
|
4990
|
+
// 'product_id': 225405,
|
|
4991
|
+
// 'brand': 'John Jacobs',
|
|
4992
|
+
// 'category': 'eyeframe',
|
|
4993
|
+
// 'zone': 'South',
|
|
4994
|
+
// 'tlp_status': 'N',
|
|
4995
|
+
// 'lf_nonlf': 'LF',
|
|
4996
|
+
// 'kpi': 'SOH',
|
|
4997
|
+
// 'qty': 1,
|
|
4998
|
+
// 'created_at': '1/31/2025',
|
|
4999
|
+
// 'store_type': 'COCO',
|
|
5000
|
+
// 'status': 'Active',
|
|
5001
|
+
// 'PLC': 'New Launches',
|
|
5002
|
+
// 'itemcode': 'JJJ021452417',
|
|
5003
|
+
// },
|
|
5004
|
+
// {
|
|
5005
|
+
// 'facility_code': 'LKST98',
|
|
5006
|
+
// 'product_id': 211191,
|
|
5007
|
+
// 'brand': 'John Jacobs',
|
|
5008
|
+
// 'category': 'eyeframe',
|
|
5009
|
+
// 'zone': 'South',
|
|
5010
|
+
// 'tlp_status': 'N',
|
|
5011
|
+
// 'lf_nonlf': 'LF',
|
|
5012
|
+
// 'kpi': 'SOH',
|
|
5013
|
+
// 'qty': 1,
|
|
5014
|
+
// 'created_at': '1/31/2025',
|
|
5015
|
+
// 'store_type': 'COCO',
|
|
5016
|
+
// 'status': 'Active',
|
|
5017
|
+
// 'PLC': 'Continuity',
|
|
5018
|
+
// 'itemcode': 'JJJ015847613',
|
|
5019
|
+
// },
|
|
5020
|
+
// {
|
|
5021
|
+
// 'facility_code': 'LKST98',
|
|
5022
|
+
// 'product_id': 137916,
|
|
5023
|
+
// 'brand': 'John Jacobs',
|
|
5024
|
+
// 'category': 'eyeframe',
|
|
5025
|
+
// 'zone': 'South',
|
|
5026
|
+
// 'tlp_status': 'N',
|
|
5027
|
+
// 'lf_nonlf': 'LF',
|
|
5028
|
+
// 'kpi': 'SOH',
|
|
5029
|
+
// 'qty': 1,
|
|
5030
|
+
// 'created_at': '1/31/2025',
|
|
5031
|
+
// 'store_type': 'COCO',
|
|
5032
|
+
// 'status': 'Active',
|
|
5033
|
+
// 'PLC': 'Continuity',
|
|
5034
|
+
// 'itemcode': 'JJJ020334889',
|
|
5035
|
+
// },
|
|
5036
|
+
// {
|
|
5037
|
+
// 'facility_code': 'LKST98',
|
|
5038
|
+
// 'product_id': 138844,
|
|
5039
|
+
// 'brand': 'John Jacobs',
|
|
5040
|
+
// 'category': 'eyeframe',
|
|
5041
|
+
// 'zone': 'South',
|
|
5042
|
+
// 'tlp_status': 'N',
|
|
5043
|
+
// 'lf_nonlf': 'LF',
|
|
5044
|
+
// 'kpi': 'SOH',
|
|
5045
|
+
// 'qty': 1,
|
|
5046
|
+
// 'created_at': '1/31/2025',
|
|
5047
|
+
// 'store_type': 'COCO',
|
|
5048
|
+
// 'status': 'Active',
|
|
5049
|
+
// 'PLC': 'Continuity',
|
|
5050
|
+
// 'itemcode': 'JJJ011812635',
|
|
5051
|
+
// },
|
|
5052
|
+
// {
|
|
5053
|
+
// 'facility_code': 'LKST98',
|
|
5054
|
+
// 'product_id': 201373,
|
|
5055
|
+
// 'brand': 'John Jacobs',
|
|
5056
|
+
// 'category': 'eyeframe',
|
|
5057
|
+
// 'zone': 'South',
|
|
5058
|
+
// 'tlp_status': 'N',
|
|
5059
|
+
// 'lf_nonlf': 'LF',
|
|
5060
|
+
// 'kpi': 'SOH',
|
|
5061
|
+
// 'qty': 1,
|
|
5062
|
+
// 'created_at': '1/31/2025',
|
|
5063
|
+
// 'store_type': 'COCO',
|
|
5064
|
+
// 'status': 'Active',
|
|
5065
|
+
// 'PLC': 'Core',
|
|
5066
|
+
// 'itemcode': 'JJJ017584137',
|
|
5067
|
+
// },
|
|
5068
|
+
// {
|
|
5069
|
+
// 'facility_code': 'LKST98',
|
|
5070
|
+
// 'product_id': 209440,
|
|
5071
|
+
// 'brand': 'John Jacobs',
|
|
5072
|
+
// 'category': 'sunglasses',
|
|
5073
|
+
// 'zone': 'South',
|
|
5074
|
+
// 'tlp_status': 'YES',
|
|
5075
|
+
// 'lf_nonlf': 'LF',
|
|
5076
|
+
// 'kpi': 'SOH',
|
|
5077
|
+
// 'qty': 1,
|
|
5078
|
+
// 'created_at': '1/31/2025',
|
|
5079
|
+
// 'store_type': 'COCO',
|
|
5080
|
+
// 'status': 'Active',
|
|
5081
|
+
// 'PLC': 'Singapore Ex',
|
|
5082
|
+
// 'itemcode': 'JJJ015279043',
|
|
5083
|
+
// },
|
|
5084
|
+
// {
|
|
5085
|
+
// 'facility_code': 'LKST98',
|
|
5086
|
+
// 'product_id': 137153,
|
|
5087
|
+
// 'brand': 'John Jacobs',
|
|
5088
|
+
// 'category': 'sunglasses',
|
|
5089
|
+
// 'zone': 'South',
|
|
5090
|
+
// 'tlp_status': 'N',
|
|
5091
|
+
// 'lf_nonlf': 'LF',
|
|
5092
|
+
// 'kpi': 'SOH',
|
|
5093
|
+
// 'qty': 1,
|
|
5094
|
+
// 'created_at': '1/31/2025',
|
|
5095
|
+
// 'store_type': 'COCO',
|
|
5096
|
+
// 'status': 'Active',
|
|
5097
|
+
// 'PLC': 'Core',
|
|
5098
|
+
// 'itemcode': '',
|
|
5099
|
+
// },
|
|
5100
|
+
// {
|
|
5101
|
+
// 'facility_code': 'LKST98',
|
|
5102
|
+
// 'product_id': 213690,
|
|
5103
|
+
// 'brand': 'John Jacobs',
|
|
5104
|
+
// 'category': 'eyeframe',
|
|
5105
|
+
// 'zone': 'South',
|
|
5106
|
+
// 'tlp_status': 'YES',
|
|
5107
|
+
// 'lf_nonlf': 'LF',
|
|
5108
|
+
// 'kpi': 'SOH',
|
|
5109
|
+
// 'qty': 1,
|
|
5110
|
+
// 'created_at': '1/31/2025',
|
|
5111
|
+
// 'store_type': 'COCO',
|
|
5112
|
+
// 'status': 'Active',
|
|
5113
|
+
// 'PLC': 'Continuity A',
|
|
5114
|
+
// 'itemcode': 'JJJ016575211',
|
|
5115
|
+
// },
|
|
5116
|
+
// {
|
|
5117
|
+
// 'facility_code': 'LKST98',
|
|
5118
|
+
// 'product_id': 225424,
|
|
5119
|
+
// 'brand': 'John Jacobs',
|
|
5120
|
+
// 'category': 'sunglasses',
|
|
5121
|
+
// 'zone': 'South',
|
|
5122
|
+
// 'tlp_status': 'N',
|
|
5123
|
+
// 'lf_nonlf': 'LF',
|
|
5124
|
+
// 'kpi': 'SOH',
|
|
5125
|
+
// 'qty': 1,
|
|
5126
|
+
// 'created_at': '1/31/2025',
|
|
5127
|
+
// 'store_type': 'COCO',
|
|
5128
|
+
// 'status': 'Active',
|
|
5129
|
+
// 'PLC': 'New Launches',
|
|
5130
|
+
// 'itemcode': 'JJJ021466233',
|
|
5131
|
+
// },
|
|
5132
|
+
// {
|
|
5133
|
+
// 'facility_code': 'LKST98',
|
|
5134
|
+
// 'product_id': 217761,
|
|
5135
|
+
// 'brand': 'John Jacobs',
|
|
5136
|
+
// 'category': 'eyeframe',
|
|
5137
|
+
// 'zone': 'South',
|
|
5138
|
+
// 'tlp_status': 'N',
|
|
5139
|
+
// 'lf_nonlf': 'LF',
|
|
5140
|
+
// 'kpi': 'SOH',
|
|
5141
|
+
// 'qty': 1,
|
|
5142
|
+
// 'created_at': '1/31/2025',
|
|
5143
|
+
// 'store_type': 'COCO',
|
|
5144
|
+
// 'status': 'Active',
|
|
5145
|
+
// 'PLC': 'Continuity',
|
|
5146
|
+
// 'itemcode': 'JJJ017016755',
|
|
5147
|
+
// },
|
|
5148
|
+
// {
|
|
5149
|
+
// 'facility_code': 'LKST98',
|
|
5150
|
+
// 'product_id': 207044,
|
|
5151
|
+
// 'brand': 'John Jacobs',
|
|
5152
|
+
// 'category': 'sunglasses',
|
|
5153
|
+
// 'zone': 'South',
|
|
5154
|
+
// 'tlp_status': 'N',
|
|
5155
|
+
// 'lf_nonlf': 'LF',
|
|
5156
|
+
// 'kpi': 'SOH',
|
|
5157
|
+
// 'qty': 1,
|
|
5158
|
+
// 'created_at': '1/31/2025',
|
|
5159
|
+
// 'store_type': 'COCO',
|
|
5160
|
+
// 'status': 'Active',
|
|
5161
|
+
// 'PLC': 'Continuity',
|
|
5162
|
+
// 'itemcode': 'JJJ015805244',
|
|
5163
|
+
// },
|
|
5164
|
+
// {
|
|
5165
|
+
// 'facility_code': 'LKST98',
|
|
5166
|
+
// 'product_id': 149200,
|
|
5167
|
+
// 'brand': 'John Jacobs',
|
|
5168
|
+
// 'category': 'eyeframe',
|
|
5169
|
+
// 'zone': 'South',
|
|
5170
|
+
// 'tlp_status': 'N',
|
|
5171
|
+
// 'lf_nonlf': 'LF',
|
|
5172
|
+
// 'kpi': 'SOH',
|
|
5173
|
+
// 'qty': 1,
|
|
5174
|
+
// 'created_at': '1/31/2025',
|
|
5175
|
+
// 'store_type': 'COCO',
|
|
5176
|
+
// 'status': 'Active',
|
|
5177
|
+
// 'PLC': 'Core',
|
|
5178
|
+
// 'itemcode': 'JJJ017035776',
|
|
5179
|
+
// },
|
|
5180
|
+
// {
|
|
5181
|
+
// 'facility_code': 'LKST98',
|
|
5182
|
+
// 'product_id': 217769,
|
|
5183
|
+
// 'brand': 'John Jacobs',
|
|
5184
|
+
// 'category': 'sunglasses',
|
|
5185
|
+
// 'zone': 'South',
|
|
5186
|
+
// 'tlp_status': 'N',
|
|
5187
|
+
// 'lf_nonlf': 'LF',
|
|
5188
|
+
// 'kpi': 'SOH',
|
|
5189
|
+
// 'qty': 1,
|
|
5190
|
+
// 'created_at': '1/31/2025',
|
|
5191
|
+
// 'store_type': 'COCO',
|
|
5192
|
+
// 'status': 'Active',
|
|
5193
|
+
// 'PLC': 'Continuity',
|
|
5194
|
+
// 'itemcode': 'JJJ017022860',
|
|
5195
|
+
// },
|
|
5196
|
+
// {
|
|
5197
|
+
// 'facility_code': 'LKST98',
|
|
5198
|
+
// 'product_id': 216738,
|
|
5199
|
+
// 'brand': 'John Jacobs',
|
|
5200
|
+
// 'category': 'eyeframe',
|
|
5201
|
+
// 'zone': 'South',
|
|
5202
|
+
// 'tlp_status': 'N',
|
|
5203
|
+
// 'lf_nonlf': 'LF',
|
|
5204
|
+
// 'kpi': 'SOH',
|
|
5205
|
+
// 'qty': 1,
|
|
5206
|
+
// 'created_at': '1/31/2025',
|
|
5207
|
+
// 'store_type': 'COCO',
|
|
5208
|
+
// 'status': 'Active',
|
|
5209
|
+
// 'PLC': 'Continuity',
|
|
5210
|
+
// 'itemcode': 'JJJ018992049',
|
|
5211
|
+
// },
|
|
5212
|
+
// {
|
|
5213
|
+
// 'facility_code': 'LKST98',
|
|
5214
|
+
// 'product_id': 136190,
|
|
5215
|
+
// 'brand': 'John Jacobs',
|
|
5216
|
+
// 'category': 'eyeframe',
|
|
5217
|
+
// 'zone': 'South',
|
|
5218
|
+
// 'tlp_status': 'YES',
|
|
5219
|
+
// 'lf_nonlf': 'LF',
|
|
5220
|
+
// 'kpi': 'SOH',
|
|
5221
|
+
// 'qty': 1,
|
|
5222
|
+
// 'created_at': '1/31/2025',
|
|
5223
|
+
// 'store_type': 'COCO',
|
|
5224
|
+
// 'status': 'Active',
|
|
5225
|
+
// 'PLC': 'Discontinued',
|
|
5226
|
+
// 'itemcode': 'JJJ019085200',
|
|
5227
|
+
// },
|
|
5228
|
+
// {
|
|
5229
|
+
// 'facility_code': 'LKST98',
|
|
5230
|
+
// 'product_id': 134578,
|
|
5231
|
+
// 'brand': 'John Jacobs',
|
|
5232
|
+
// 'category': 'eyeframe',
|
|
5233
|
+
// 'zone': 'South',
|
|
5234
|
+
// 'tlp_status': 'N',
|
|
5235
|
+
// 'lf_nonlf': 'LF',
|
|
5236
|
+
// 'kpi': 'SOH',
|
|
5237
|
+
// 'qty': 1,
|
|
5238
|
+
// 'created_at': '1/31/2025',
|
|
5239
|
+
// 'store_type': 'COCO',
|
|
5240
|
+
// 'status': 'Active',
|
|
5241
|
+
// 'PLC': 'Continuity A',
|
|
5242
|
+
// 'itemcode': 'JJJ016257466',
|
|
5243
|
+
// },
|
|
5244
|
+
// {
|
|
5245
|
+
// 'facility_code': 'LKST98',
|
|
5246
|
+
// 'product_id': 131241,
|
|
5247
|
+
// 'brand': 'John Jacobs',
|
|
5248
|
+
// 'category': 'eyeframe',
|
|
5249
|
+
// 'zone': 'South',
|
|
5250
|
+
// 'tlp_status': 'N',
|
|
5251
|
+
// 'lf_nonlf': 'LF',
|
|
5252
|
+
// 'kpi': 'SOH',
|
|
5253
|
+
// 'qty': 1,
|
|
5254
|
+
// 'created_at': '1/31/2025',
|
|
5255
|
+
// 'store_type': 'COCO',
|
|
5256
|
+
// 'status': 'Active',
|
|
5257
|
+
// 'PLC': 'Continuity',
|
|
5258
|
+
// 'itemcode': 'JJJ012211170',
|
|
5259
|
+
// },
|
|
5260
|
+
// {
|
|
5261
|
+
// 'facility_code': 'LKST98',
|
|
5262
|
+
// 'product_id': 149419,
|
|
5263
|
+
// 'brand': 'John Jacobs',
|
|
5264
|
+
// 'category': 'eyeframe',
|
|
5265
|
+
// 'zone': 'South',
|
|
5266
|
+
// 'tlp_status': 'N',
|
|
5267
|
+
// 'lf_nonlf': 'LF',
|
|
5268
|
+
// 'kpi': 'SOH',
|
|
5269
|
+
// 'qty': 1,
|
|
5270
|
+
// 'created_at': '1/31/2025',
|
|
5271
|
+
// 'store_type': 'COCO',
|
|
5272
|
+
// 'status': 'Active',
|
|
5273
|
+
// 'PLC': 'Continuity A',
|
|
5274
|
+
// 'itemcode': 'JJJ018942890',
|
|
5275
|
+
// },
|
|
5276
|
+
// {
|
|
5277
|
+
// 'facility_code': 'LKST98',
|
|
5278
|
+
// 'product_id': 218931,
|
|
5279
|
+
// 'brand': 'John Jacobs',
|
|
5280
|
+
// 'category': 'eyeframe',
|
|
5281
|
+
// 'zone': 'South',
|
|
5282
|
+
// 'tlp_status': 'N',
|
|
5283
|
+
// 'lf_nonlf': 'LF',
|
|
5284
|
+
// 'kpi': 'SOH',
|
|
5285
|
+
// 'qty': 1,
|
|
5286
|
+
// 'created_at': '1/31/2025',
|
|
5287
|
+
// 'store_type': 'COCO',
|
|
5288
|
+
// 'status': 'Active',
|
|
5289
|
+
// 'PLC': 'Continuity',
|
|
5290
|
+
// 'itemcode': 'JJJ018611990',
|
|
5291
|
+
// },
|
|
5292
|
+
// {
|
|
5293
|
+
// 'facility_code': 'LKST98',
|
|
5294
|
+
// 'product_id': 209665,
|
|
5295
|
+
// 'brand': 'John Jacobs',
|
|
5296
|
+
// 'category': 'eyeframe',
|
|
5297
|
+
// 'zone': 'South',
|
|
5298
|
+
// 'tlp_status': 'N',
|
|
5299
|
+
// 'lf_nonlf': 'LF',
|
|
5300
|
+
// 'kpi': 'SOH',
|
|
5301
|
+
// 'qty': 1,
|
|
5302
|
+
// 'created_at': '1/31/2025',
|
|
5303
|
+
// 'store_type': 'COCO',
|
|
5304
|
+
// 'status': 'Active',
|
|
5305
|
+
// 'PLC': 'Continuity',
|
|
5306
|
+
// 'itemcode': '',
|
|
5307
|
+
// },
|
|
5308
|
+
// {
|
|
5309
|
+
// 'facility_code': 'LKST98',
|
|
5310
|
+
// 'product_id': 152881,
|
|
5311
|
+
// 'brand': 'John Jacobs',
|
|
5312
|
+
// 'category': 'eyeframe',
|
|
5313
|
+
// 'zone': 'South',
|
|
5314
|
+
// 'tlp_status': 'N',
|
|
5315
|
+
// 'lf_nonlf': 'LF',
|
|
5316
|
+
// 'kpi': 'SOH',
|
|
5317
|
+
// 'qty': 1,
|
|
5318
|
+
// 'created_at': '1/31/2025',
|
|
5319
|
+
// 'store_type': 'COCO',
|
|
5320
|
+
// 'status': 'Active',
|
|
5321
|
+
// 'PLC': 'Continuity A',
|
|
5322
|
+
// 'itemcode': 'JJJ017200258',
|
|
5323
|
+
// },
|
|
5324
|
+
// {
|
|
5325
|
+
// 'facility_code': 'LKST98',
|
|
5326
|
+
// 'product_id': 147921,
|
|
5327
|
+
// 'brand': 'John Jacobs',
|
|
5328
|
+
// 'category': 'sunglasses',
|
|
5329
|
+
// 'zone': 'South',
|
|
5330
|
+
// 'tlp_status': 'N',
|
|
5331
|
+
// 'lf_nonlf': 'LF',
|
|
5332
|
+
// 'kpi': 'SOH',
|
|
5333
|
+
// 'qty': 2,
|
|
5334
|
+
// 'created_at': '1/31/2025',
|
|
5335
|
+
// 'store_type': 'COCO',
|
|
5336
|
+
// 'status': 'Active',
|
|
5337
|
+
// 'PLC': 'Continuity',
|
|
5338
|
+
// 'itemcode': 'JJJ017577402',
|
|
5339
|
+
// },
|
|
5340
|
+
// {
|
|
5341
|
+
// 'facility_code': 'LKST98',
|
|
5342
|
+
// 'product_id': 134953,
|
|
5343
|
+
// 'brand': 'John Jacobs',
|
|
5344
|
+
// 'category': 'sunglasses',
|
|
5345
|
+
// 'zone': 'South',
|
|
5346
|
+
// 'tlp_status': 'N',
|
|
5347
|
+
// 'lf_nonlf': 'LF',
|
|
5348
|
+
// 'kpi': 'SOH',
|
|
5349
|
+
// 'qty': 3,
|
|
5350
|
+
// 'created_at': '1/31/2025',
|
|
5351
|
+
// 'store_type': 'COCO',
|
|
5352
|
+
// 'status': 'Active',
|
|
5353
|
+
// 'PLC': 'Continuity',
|
|
5354
|
+
// 'itemcode': 'JJJ017467547',
|
|
5355
|
+
// },
|
|
5356
|
+
// {
|
|
5357
|
+
// 'facility_code': 'LKST98',
|
|
5358
|
+
// 'product_id': 215282,
|
|
5359
|
+
// 'brand': 'John Jacobs',
|
|
5360
|
+
// 'category': 'eyeframe',
|
|
5361
|
+
// 'zone': 'South',
|
|
5362
|
+
// 'tlp_status': 'N',
|
|
5363
|
+
// 'lf_nonlf': 'LF',
|
|
5364
|
+
// 'kpi': 'SOH',
|
|
5365
|
+
// 'qty': 1,
|
|
5366
|
+
// 'created_at': '1/31/2025',
|
|
5367
|
+
// 'store_type': 'COCO',
|
|
5368
|
+
// 'status': 'Active',
|
|
5369
|
+
// 'PLC': 'Continuity A',
|
|
5370
|
+
// 'itemcode': 'JJJ020305719',
|
|
5371
|
+
// },
|
|
5372
|
+
// {
|
|
5373
|
+
// 'facility_code': 'LKST98',
|
|
5374
|
+
// 'product_id': 142523,
|
|
5375
|
+
// 'brand': 'John Jacobs',
|
|
5376
|
+
// 'category': 'eyeframe',
|
|
5377
|
+
// 'zone': 'South',
|
|
5378
|
+
// 'tlp_status': 'N',
|
|
5379
|
+
// 'lf_nonlf': 'LF',
|
|
5380
|
+
// 'kpi': 'SOH',
|
|
5381
|
+
// 'qty': 1,
|
|
5382
|
+
// 'created_at': '1/31/2025',
|
|
5383
|
+
// 'store_type': 'COCO',
|
|
5384
|
+
// 'status': 'Active',
|
|
5385
|
+
// 'PLC': 'Continuity A',
|
|
5386
|
+
// 'itemcode': 'JJJ018530383',
|
|
5387
|
+
// },
|
|
5388
|
+
// {
|
|
5389
|
+
// 'facility_code': 'LKST98',
|
|
5390
|
+
// 'product_id': 223235,
|
|
5391
|
+
// 'brand': 'John Jacobs',
|
|
5392
|
+
// 'category': 'eyeframe',
|
|
5393
|
+
// 'zone': 'South',
|
|
5394
|
+
// 'tlp_status': 'N',
|
|
5395
|
+
// 'lf_nonlf': 'LF',
|
|
5396
|
+
// 'kpi': 'SOH',
|
|
5397
|
+
// 'qty': 1,
|
|
5398
|
+
// 'created_at': '1/31/2025',
|
|
5399
|
+
// 'store_type': 'COCO',
|
|
5400
|
+
// 'status': 'Active',
|
|
5401
|
+
// 'PLC': 'New Launches',
|
|
5402
|
+
// 'itemcode': 'JJJ019812621',
|
|
5403
|
+
// },
|
|
5404
|
+
// {
|
|
5405
|
+
// 'facility_code': 'LKST98',
|
|
5406
|
+
// 'product_id': 132041,
|
|
5407
|
+
// 'brand': 'John Jacobs',
|
|
5408
|
+
// 'category': 'eyeframe',
|
|
5409
|
+
// 'zone': 'South',
|
|
5410
|
+
// 'tlp_status': 'N',
|
|
5411
|
+
// 'lf_nonlf': 'LF',
|
|
5412
|
+
// 'kpi': 'SOH',
|
|
5413
|
+
// 'qty': 1,
|
|
5414
|
+
// 'created_at': '1/31/2025',
|
|
5415
|
+
// 'store_type': 'COCO',
|
|
5416
|
+
// 'status': 'Active',
|
|
5417
|
+
// 'PLC': 'Continuity A',
|
|
5418
|
+
// 'itemcode': 'JJJ021072697',
|
|
5419
|
+
// },
|
|
5420
|
+
// {
|
|
5421
|
+
// 'facility_code': 'LKST98',
|
|
5422
|
+
// 'product_id': 225411,
|
|
5423
|
+
// 'brand': 'John Jacobs',
|
|
5424
|
+
// 'category': 'eyeframe',
|
|
5425
|
+
// 'zone': 'South',
|
|
5426
|
+
// 'tlp_status': 'N',
|
|
5427
|
+
// 'lf_nonlf': 'LF',
|
|
5428
|
+
// 'kpi': 'SOH',
|
|
5429
|
+
// 'qty': 1,
|
|
5430
|
+
// 'created_at': '1/31/2025',
|
|
5431
|
+
// 'store_type': 'COCO',
|
|
5432
|
+
// 'status': 'Active',
|
|
5433
|
+
// 'PLC': 'New Launches',
|
|
5434
|
+
// 'itemcode': 'JJJ021459060',
|
|
5435
|
+
// },
|
|
5436
|
+
// {
|
|
5437
|
+
// 'facility_code': 'LKST98',
|
|
5438
|
+
// 'product_id': 211713,
|
|
5439
|
+
// 'brand': 'John Jacobs',
|
|
5440
|
+
// 'category': 'sunglasses',
|
|
5441
|
+
// 'zone': 'South',
|
|
5442
|
+
// 'tlp_status': 'N',
|
|
5443
|
+
// 'lf_nonlf': 'LF',
|
|
5444
|
+
// 'kpi': 'SOH',
|
|
5445
|
+
// 'qty': 1,
|
|
5446
|
+
// 'created_at': '1/31/2025',
|
|
5447
|
+
// 'store_type': 'COCO',
|
|
5448
|
+
// 'status': 'Active',
|
|
5449
|
+
// 'PLC': 'Continuity',
|
|
5450
|
+
// 'itemcode': '',
|
|
5451
|
+
// },
|
|
5452
|
+
// {
|
|
5453
|
+
// 'facility_code': 'LKST98',
|
|
5454
|
+
// 'product_id': 215553,
|
|
5455
|
+
// 'brand': 'John Jacobs',
|
|
5456
|
+
// 'category': 'eyeframe',
|
|
5457
|
+
// 'zone': 'South',
|
|
5458
|
+
// 'tlp_status': 'N',
|
|
5459
|
+
// 'lf_nonlf': 'LF',
|
|
5460
|
+
// 'kpi': 'SOH',
|
|
5461
|
+
// 'qty': 1,
|
|
5462
|
+
// 'created_at': '1/31/2025',
|
|
5463
|
+
// 'store_type': 'COCO',
|
|
5464
|
+
// 'status': 'Active',
|
|
5465
|
+
// 'PLC': 'Continuity',
|
|
5466
|
+
// 'itemcode': 'JJJ017923721',
|
|
5467
|
+
// },
|
|
5468
|
+
// {
|
|
5469
|
+
// 'facility_code': 'LKST98',
|
|
5470
|
+
// 'product_id': 142515,
|
|
5471
|
+
// 'brand': 'John Jacobs',
|
|
5472
|
+
// 'category': 'eyeframe',
|
|
5473
|
+
// 'zone': 'South',
|
|
5474
|
+
// 'tlp_status': 'N',
|
|
5475
|
+
// 'lf_nonlf': 'LF',
|
|
5476
|
+
// 'kpi': 'SOH',
|
|
5477
|
+
// 'qty': 1,
|
|
5478
|
+
// 'created_at': '1/31/2025',
|
|
5479
|
+
// 'store_type': 'COCO',
|
|
5480
|
+
// 'status': 'Active',
|
|
5481
|
+
// 'PLC': 'Core',
|
|
5482
|
+
// 'itemcode': 'JJJ018522473',
|
|
5483
|
+
// },
|
|
5484
|
+
// {
|
|
5485
|
+
// 'facility_code': 'LKST98',
|
|
5486
|
+
// 'product_id': 216733,
|
|
5487
|
+
// 'brand': 'John Jacobs',
|
|
5488
|
+
// 'category': 'eyeframe',
|
|
5489
|
+
// 'zone': 'South',
|
|
5490
|
+
// 'tlp_status': 'N',
|
|
5491
|
+
// 'lf_nonlf': 'LF',
|
|
5492
|
+
// 'kpi': 'SOH',
|
|
5493
|
+
// 'qty': 1,
|
|
5494
|
+
// 'created_at': '1/31/2025',
|
|
5495
|
+
// 'store_type': 'COCO',
|
|
5496
|
+
// 'status': 'Active',
|
|
5497
|
+
// 'PLC': 'Continuity',
|
|
5498
|
+
// 'itemcode': 'JJJ016870551',
|
|
5499
|
+
// },
|
|
5500
|
+
// {
|
|
5501
|
+
// 'facility_code': 'LKST98',
|
|
5502
|
+
// 'product_id': 152704,
|
|
5503
|
+
// 'brand': 'John Jacobs',
|
|
5504
|
+
// 'category': 'eyeframe',
|
|
5505
|
+
// 'zone': 'South',
|
|
5506
|
+
// 'tlp_status': 'N',
|
|
5507
|
+
// 'lf_nonlf': 'LF',
|
|
5508
|
+
// 'kpi': 'SOH',
|
|
5509
|
+
// 'qty': 1,
|
|
5510
|
+
// 'created_at': '1/31/2025',
|
|
5511
|
+
// 'store_type': 'COCO',
|
|
5512
|
+
// 'status': 'Active',
|
|
5513
|
+
// 'PLC': 'Continuity',
|
|
5514
|
+
// 'itemcode': 'JJJ010874375',
|
|
5515
|
+
// },
|
|
5516
|
+
// {
|
|
5517
|
+
// 'facility_code': 'LKST98',
|
|
5518
|
+
// 'product_id': 209661,
|
|
5519
|
+
// 'brand': 'John Jacobs',
|
|
5520
|
+
// 'category': 'eyeframe',
|
|
5521
|
+
// 'zone': 'South',
|
|
5522
|
+
// 'tlp_status': 'N',
|
|
5523
|
+
// 'lf_nonlf': 'LF',
|
|
5524
|
+
// 'kpi': 'SOH',
|
|
5525
|
+
// 'qty': 1,
|
|
5526
|
+
// 'created_at': '1/31/2025',
|
|
5527
|
+
// 'store_type': 'COCO',
|
|
5528
|
+
// 'status': 'Active',
|
|
5529
|
+
// 'PLC': 'Continuity A',
|
|
5530
|
+
// 'itemcode': 'JJJ016785709',
|
|
5531
|
+
// },
|
|
5532
|
+
// {
|
|
5533
|
+
// 'facility_code': 'LKST98',
|
|
5534
|
+
// 'product_id': 213143,
|
|
5535
|
+
// 'brand': 'John Jacobs',
|
|
5536
|
+
// 'category': 'sunglasses',
|
|
5537
|
+
// 'zone': 'South',
|
|
5538
|
+
// 'tlp_status': 'N',
|
|
5539
|
+
// 'lf_nonlf': 'LF',
|
|
5540
|
+
// 'kpi': 'SOH',
|
|
5541
|
+
// 'qty': 1,
|
|
5542
|
+
// 'created_at': '1/31/2025',
|
|
5543
|
+
// 'store_type': 'COCO',
|
|
5544
|
+
// 'status': 'Active',
|
|
5545
|
+
// 'PLC': 'Continuity',
|
|
5546
|
+
// 'itemcode': 'JJJ016193384',
|
|
5547
|
+
// },
|
|
5548
|
+
// {
|
|
5549
|
+
// 'facility_code': 'LKST98',
|
|
5550
|
+
// 'product_id': 222471,
|
|
5551
|
+
// 'brand': 'John Jacobs',
|
|
5552
|
+
// 'category': 'eyeframe',
|
|
5553
|
+
// 'zone': 'South',
|
|
5554
|
+
// 'tlp_status': 'N',
|
|
5555
|
+
// 'lf_nonlf': 'LF',
|
|
5556
|
+
// 'kpi': 'SOH',
|
|
5557
|
+
// 'qty': 1,
|
|
5558
|
+
// 'created_at': '1/31/2025',
|
|
5559
|
+
// 'store_type': 'COCO',
|
|
5560
|
+
// 'status': 'Active',
|
|
5561
|
+
// 'PLC': 'New Launches',
|
|
5562
|
+
// 'itemcode': 'JJJ019298598',
|
|
5563
|
+
// },
|
|
5564
|
+
// {
|
|
5565
|
+
// 'facility_code': 'LKST98',
|
|
5566
|
+
// 'product_id': 217181,
|
|
5567
|
+
// 'brand': 'John Jacobs',
|
|
5568
|
+
// 'category': 'eyeframe',
|
|
5569
|
+
// 'zone': 'South',
|
|
5570
|
+
// 'tlp_status': 'N',
|
|
5571
|
+
// 'lf_nonlf': 'LF',
|
|
5572
|
+
// 'kpi': 'SOH',
|
|
5573
|
+
// 'qty': 1,
|
|
5574
|
+
// 'created_at': '1/31/2025',
|
|
5575
|
+
// 'store_type': 'COCO',
|
|
5576
|
+
// 'status': 'Active',
|
|
5577
|
+
// 'PLC': 'Continuity',
|
|
5578
|
+
// 'itemcode': 'JJJ019539001',
|
|
5579
|
+
// },
|
|
5580
|
+
// {
|
|
5581
|
+
// 'facility_code': 'LKST98',
|
|
5582
|
+
// 'product_id': 216742,
|
|
5583
|
+
// 'brand': 'John Jacobs',
|
|
5584
|
+
// 'category': 'eyeframe',
|
|
5585
|
+
// 'zone': 'South',
|
|
5586
|
+
// 'tlp_status': 'N',
|
|
5587
|
+
// 'lf_nonlf': 'LF',
|
|
5588
|
+
// 'kpi': 'SOH',
|
|
5589
|
+
// 'qty': 1,
|
|
5590
|
+
// 'created_at': '1/31/2025',
|
|
5591
|
+
// 'store_type': 'COCO',
|
|
5592
|
+
// 'status': 'Active',
|
|
5593
|
+
// 'PLC': 'Continuity A',
|
|
5594
|
+
// 'itemcode': 'JJJ018992953',
|
|
5595
|
+
// },
|
|
5596
|
+
// {
|
|
5597
|
+
// 'facility_code': 'LKST98',
|
|
5598
|
+
// 'product_id': 225388,
|
|
5599
|
+
// 'brand': 'John Jacobs',
|
|
5600
|
+
// 'category': 'eyeframe',
|
|
5601
|
+
// 'zone': 'South',
|
|
5602
|
+
// 'tlp_status': 'N',
|
|
5603
|
+
// 'lf_nonlf': 'LF',
|
|
5604
|
+
// 'kpi': 'SOH',
|
|
5605
|
+
// 'qty': 1,
|
|
5606
|
+
// 'created_at': '1/31/2025',
|
|
5607
|
+
// 'store_type': 'COCO',
|
|
5608
|
+
// 'status': 'Active',
|
|
5609
|
+
// 'PLC': 'New Launches',
|
|
5610
|
+
// 'itemcode': 'JJJ021434818',
|
|
5611
|
+
// },
|
|
5612
|
+
// {
|
|
5613
|
+
// 'facility_code': 'LKST98',
|
|
5614
|
+
// 'product_id': 216851,
|
|
5615
|
+
// 'brand': 'John Jacobs',
|
|
5616
|
+
// 'category': 'eyeframe',
|
|
5617
|
+
// 'zone': 'South',
|
|
5618
|
+
// 'tlp_status': 'N',
|
|
5619
|
+
// 'lf_nonlf': 'LF',
|
|
5620
|
+
// 'kpi': 'SOH',
|
|
5621
|
+
// 'qty': 1,
|
|
5622
|
+
// 'created_at': '1/31/2025',
|
|
5623
|
+
// 'store_type': 'COCO',
|
|
5624
|
+
// 'status': 'Active',
|
|
5625
|
+
// 'PLC': 'Continuity',
|
|
5626
|
+
// 'itemcode': 'JJJ019121818',
|
|
5627
|
+
// },
|
|
5628
|
+
// {
|
|
5629
|
+
// 'facility_code': 'LKST98',
|
|
5630
|
+
// 'product_id': 149152,
|
|
5631
|
+
// 'brand': 'John Jacobs',
|
|
5632
|
+
// 'category': 'eyeframe',
|
|
5633
|
+
// 'zone': 'South',
|
|
5634
|
+
// 'tlp_status': 'N',
|
|
5635
|
+
// 'lf_nonlf': 'LF',
|
|
5636
|
+
// 'kpi': 'SOH',
|
|
5637
|
+
// 'qty': 1,
|
|
5638
|
+
// 'created_at': '1/31/2025',
|
|
5639
|
+
// 'store_type': 'COCO',
|
|
5640
|
+
// 'status': 'Active',
|
|
5641
|
+
// 'PLC': 'Continuity',
|
|
5642
|
+
// 'itemcode': 'JJJ018159564',
|
|
5643
|
+
// },
|
|
5644
|
+
// {
|
|
5645
|
+
// 'facility_code': 'LKST98',
|
|
5646
|
+
// 'product_id': 138326,
|
|
5647
|
+
// 'brand': 'John Jacobs',
|
|
5648
|
+
// 'category': 'eyeframe',
|
|
5649
|
+
// 'zone': 'South',
|
|
5650
|
+
// 'tlp_status': 'YES',
|
|
5651
|
+
// 'lf_nonlf': 'LF',
|
|
5652
|
+
// 'kpi': 'SOH',
|
|
5653
|
+
// 'qty': 1,
|
|
5654
|
+
// 'created_at': '1/31/2025',
|
|
5655
|
+
// 'store_type': 'COCO',
|
|
5656
|
+
// 'status': 'Active',
|
|
5657
|
+
// 'PLC': 'Discontinued',
|
|
5658
|
+
// 'itemcode': 'JJJ011488504',
|
|
5659
|
+
// },
|
|
5660
|
+
// {
|
|
5661
|
+
// 'facility_code': 'LKST98',
|
|
5662
|
+
// 'product_id': 213144,
|
|
5663
|
+
// 'brand': 'John Jacobs',
|
|
5664
|
+
// 'category': 'sunglasses',
|
|
5665
|
+
// 'zone': 'South',
|
|
5666
|
+
// 'tlp_status': 'N',
|
|
5667
|
+
// 'lf_nonlf': 'LF',
|
|
5668
|
+
// 'kpi': 'SOH',
|
|
5669
|
+
// 'qty': 1,
|
|
5670
|
+
// 'created_at': '1/31/2025',
|
|
5671
|
+
// 'store_type': 'COCO',
|
|
5672
|
+
// 'status': 'Active',
|
|
5673
|
+
// 'PLC': 'Continuity',
|
|
5674
|
+
// 'itemcode': 'JJJ019106064',
|
|
5675
|
+
// },
|
|
5676
|
+
// {
|
|
5677
|
+
// 'facility_code': 'LKST98',
|
|
5678
|
+
// 'product_id': 215271,
|
|
5679
|
+
// 'brand': 'John Jacobs',
|
|
5680
|
+
// 'category': 'eyeframe',
|
|
5681
|
+
// 'zone': 'South',
|
|
5682
|
+
// 'tlp_status': 'N',
|
|
5683
|
+
// 'lf_nonlf': 'LF',
|
|
5684
|
+
// 'kpi': 'SOH',
|
|
5685
|
+
// 'qty': 1,
|
|
5686
|
+
// 'created_at': '1/31/2025',
|
|
5687
|
+
// 'store_type': 'COCO',
|
|
5688
|
+
// 'status': 'Active',
|
|
5689
|
+
// 'PLC': 'Continuity A',
|
|
5690
|
+
// 'itemcode': 'JJJ017914848',
|
|
5691
|
+
// },
|
|
5692
|
+
// {
|
|
5693
|
+
// 'facility_code': 'LKST98',
|
|
5694
|
+
// 'product_id': 216885,
|
|
5695
|
+
// 'brand': 'John Jacobs',
|
|
5696
|
+
// 'category': 'sunglasses',
|
|
5697
|
+
// 'zone': 'South',
|
|
5698
|
+
// 'tlp_status': 'N',
|
|
5699
|
+
// 'lf_nonlf': 'LF',
|
|
5700
|
+
// 'kpi': 'SOH',
|
|
5701
|
+
// 'qty': 1,
|
|
5702
|
+
// 'created_at': '1/31/2025',
|
|
5703
|
+
// 'store_type': 'COCO',
|
|
5704
|
+
// 'status': 'Active',
|
|
5705
|
+
// 'PLC': 'Continuity',
|
|
5706
|
+
// 'itemcode': 'JJJ016943118',
|
|
5707
|
+
// },
|
|
5708
|
+
// {
|
|
5709
|
+
// 'facility_code': 'LKST98',
|
|
5710
|
+
// 'product_id': 142524,
|
|
5711
|
+
// 'brand': 'John Jacobs',
|
|
5712
|
+
// 'category': 'eyeframe',
|
|
5713
|
+
// 'zone': 'South',
|
|
5714
|
+
// 'tlp_status': 'N',
|
|
5715
|
+
// 'lf_nonlf': 'LF',
|
|
5716
|
+
// 'kpi': 'SOH',
|
|
5717
|
+
// 'qty': 1,
|
|
5718
|
+
// 'created_at': '1/31/2025',
|
|
5719
|
+
// 'store_type': 'COCO',
|
|
5720
|
+
// 'status': 'Active',
|
|
5721
|
+
// 'PLC': 'Core',
|
|
5722
|
+
// 'itemcode': 'JJJ018021701',
|
|
5723
|
+
// },
|
|
5724
|
+
// {
|
|
5725
|
+
// 'facility_code': 'LKST98',
|
|
5726
|
+
// 'product_id': 223224,
|
|
5727
|
+
// 'brand': 'John Jacobs',
|
|
5728
|
+
// 'category': 'eyeframe',
|
|
5729
|
+
// 'zone': 'South',
|
|
5730
|
+
// 'tlp_status': 'N',
|
|
5731
|
+
// 'lf_nonlf': 'LF',
|
|
5732
|
+
// 'kpi': 'SOH',
|
|
5733
|
+
// 'qty': 1,
|
|
5734
|
+
// 'created_at': '1/31/2025',
|
|
5735
|
+
// 'store_type': 'COCO',
|
|
5736
|
+
// 'status': 'Active',
|
|
5737
|
+
// 'PLC': 'New Launches',
|
|
5738
|
+
// 'itemcode': 'JJJ019777778',
|
|
5739
|
+
// },
|
|
5740
|
+
// {
|
|
5741
|
+
// 'facility_code': 'LKST98',
|
|
5742
|
+
// 'product_id': 140648,
|
|
5743
|
+
// 'brand': 'John Jacobs',
|
|
5744
|
+
// 'category': 'eyeframe',
|
|
5745
|
+
// 'zone': 'South',
|
|
5746
|
+
// 'tlp_status': 'N',
|
|
5747
|
+
// 'lf_nonlf': 'LF',
|
|
5748
|
+
// 'kpi': 'SOH',
|
|
5749
|
+
// 'qty': 1,
|
|
5750
|
+
// 'created_at': '1/31/2025',
|
|
5751
|
+
// 'store_type': 'COCO',
|
|
5752
|
+
// 'status': 'Active',
|
|
5753
|
+
// 'PLC': 'Continuity',
|
|
5754
|
+
// 'itemcode': 'JJJ017996649',
|
|
5755
|
+
// },
|
|
5756
|
+
// {
|
|
5757
|
+
// 'facility_code': 'LKST98',
|
|
5758
|
+
// 'product_id': 116967,
|
|
5759
|
+
// 'brand': 'John Jacobs',
|
|
5760
|
+
// 'category': 'eyeframe',
|
|
5761
|
+
// 'zone': 'South',
|
|
5762
|
+
// 'tlp_status': 'N',
|
|
5763
|
+
// 'lf_nonlf': 'LF',
|
|
5764
|
+
// 'kpi': 'SOH',
|
|
5765
|
+
// 'qty': 1,
|
|
5766
|
+
// 'created_at': '1/31/2025',
|
|
5767
|
+
// 'store_type': 'COCO',
|
|
5768
|
+
// 'status': 'Active',
|
|
5769
|
+
// 'PLC': 'Core',
|
|
5770
|
+
// 'itemcode': 'JJJ013594600',
|
|
5771
|
+
// },
|
|
5772
|
+
// {
|
|
5773
|
+
// 'facility_code': 'LKST98',
|
|
5774
|
+
// 'product_id': 201391,
|
|
5775
|
+
// 'brand': 'John Jacobs',
|
|
5776
|
+
// 'category': 'eyeframe',
|
|
5777
|
+
// 'zone': 'South',
|
|
5778
|
+
// 'tlp_status': 'N',
|
|
5779
|
+
// 'lf_nonlf': 'LF',
|
|
5780
|
+
// 'kpi': 'SOH',
|
|
5781
|
+
// 'qty': 1,
|
|
5782
|
+
// 'created_at': '1/31/2025',
|
|
5783
|
+
// 'store_type': 'COCO',
|
|
5784
|
+
// 'status': 'Active',
|
|
5785
|
+
// 'PLC': 'Continuity A',
|
|
5786
|
+
// 'itemcode': 'JJJ018956593',
|
|
5787
|
+
// },
|
|
5788
|
+
// {
|
|
5789
|
+
// 'facility_code': 'LKST98',
|
|
5790
|
+
// 'product_id': 223231,
|
|
5791
|
+
// 'brand': 'John Jacobs',
|
|
5792
|
+
// 'category': 'eyeframe',
|
|
5793
|
+
// 'zone': 'South',
|
|
5794
|
+
// 'tlp_status': 'N',
|
|
5795
|
+
// 'lf_nonlf': 'LF',
|
|
5796
|
+
// 'kpi': 'SOH',
|
|
5797
|
+
// 'qty': 1,
|
|
5798
|
+
// 'created_at': '1/31/2025',
|
|
5799
|
+
// 'store_type': 'COCO',
|
|
5800
|
+
// 'status': 'Active',
|
|
5801
|
+
// 'PLC': 'New Launches',
|
|
5802
|
+
// 'itemcode': 'JJJ019800174',
|
|
5803
|
+
// },
|
|
5804
|
+
// {
|
|
5805
|
+
// 'facility_code': 'LKST98',
|
|
5806
|
+
// 'product_id': 215746,
|
|
5807
|
+
// 'brand': 'John Jacobs',
|
|
5808
|
+
// 'category': 'eyeframe',
|
|
5809
|
+
// 'zone': 'South',
|
|
5810
|
+
// 'tlp_status': 'YES',
|
|
5811
|
+
// 'lf_nonlf': 'LF',
|
|
5812
|
+
// 'kpi': 'SOH',
|
|
5813
|
+
// 'qty': 1,
|
|
5814
|
+
// 'created_at': '1/31/2025',
|
|
5815
|
+
// 'store_type': 'COCO',
|
|
5816
|
+
// 'status': 'Active',
|
|
5817
|
+
// 'PLC': 'Continuity',
|
|
5818
|
+
// 'itemcode': 'JJJ016592888',
|
|
5819
|
+
// },
|
|
5820
|
+
// {
|
|
5821
|
+
// 'facility_code': 'LKST98',
|
|
5822
|
+
// 'product_id': 137917,
|
|
5823
|
+
// 'brand': 'John Jacobs',
|
|
5824
|
+
// 'category': 'eyeframe',
|
|
5825
|
+
// 'zone': 'South',
|
|
5826
|
+
// 'tlp_status': 'N',
|
|
5827
|
+
// 'lf_nonlf': 'LF',
|
|
5828
|
+
// 'kpi': 'SOH',
|
|
5829
|
+
// 'qty': 1,
|
|
5830
|
+
// 'created_at': '1/31/2025',
|
|
5831
|
+
// 'store_type': 'COCO',
|
|
5832
|
+
// 'status': 'Active',
|
|
5833
|
+
// 'PLC': 'Core',
|
|
5834
|
+
// 'itemcode': '',
|
|
5835
|
+
// },
|
|
5836
|
+
// {
|
|
5837
|
+
// 'facility_code': 'LKST98',
|
|
5838
|
+
// 'product_id': 116979,
|
|
5839
|
+
// 'brand': 'John Jacobs',
|
|
5840
|
+
// 'category': 'eyeframe',
|
|
5841
|
+
// 'zone': 'South',
|
|
5842
|
+
// 'tlp_status': 'YES',
|
|
5843
|
+
// 'lf_nonlf': 'LF',
|
|
5844
|
+
// 'kpi': 'SOH',
|
|
5845
|
+
// 'qty': 1,
|
|
5846
|
+
// 'created_at': '1/31/2025',
|
|
5847
|
+
// 'store_type': 'COCO',
|
|
5848
|
+
// 'status': 'Active',
|
|
5849
|
+
// 'PLC': 'Discontinued',
|
|
5850
|
+
// 'itemcode': 'JJJ017941244',
|
|
5851
|
+
// },
|
|
5852
|
+
// {
|
|
5853
|
+
// 'facility_code': 'LKST98',
|
|
5854
|
+
// 'product_id': 217772,
|
|
5855
|
+
// 'brand': 'John Jacobs',
|
|
5856
|
+
// 'category': 'sunglasses',
|
|
5857
|
+
// 'zone': 'South',
|
|
5858
|
+
// 'tlp_status': 'N',
|
|
5859
|
+
// 'lf_nonlf': 'LF',
|
|
5860
|
+
// 'kpi': 'SOH',
|
|
5861
|
+
// 'qty': 1,
|
|
5862
|
+
// 'created_at': '1/31/2025',
|
|
5863
|
+
// 'store_type': 'COCO',
|
|
5864
|
+
// 'status': 'Active',
|
|
5865
|
+
// 'PLC': 'Continuity',
|
|
5866
|
+
// 'itemcode': 'JJJ017025081',
|
|
5867
|
+
// },
|
|
5868
|
+
// {
|
|
5869
|
+
// 'facility_code': 'LKST98',
|
|
5870
|
+
// 'product_id': 215272,
|
|
5871
|
+
// 'brand': 'John Jacobs',
|
|
5872
|
+
// 'category': 'eyeframe',
|
|
5873
|
+
// 'zone': 'South',
|
|
5874
|
+
// 'tlp_status': 'N',
|
|
5875
|
+
// 'lf_nonlf': 'LF',
|
|
5876
|
+
// 'kpi': 'SOH',
|
|
5877
|
+
// 'qty': 1,
|
|
5878
|
+
// 'created_at': '1/31/2025',
|
|
5879
|
+
// 'store_type': 'COCO',
|
|
5880
|
+
// 'status': 'Active',
|
|
5881
|
+
// 'PLC': 'Continuity A',
|
|
5882
|
+
// 'itemcode': '',
|
|
5883
|
+
// },
|
|
5884
|
+
// {
|
|
5885
|
+
// 'facility_code': 'LKST98',
|
|
5886
|
+
// 'product_id': 217171,
|
|
5887
|
+
// 'brand': 'John Jacobs',
|
|
5888
|
+
// 'category': 'eyeframe',
|
|
5889
|
+
// 'zone': 'South',
|
|
5890
|
+
// 'tlp_status': 'N',
|
|
5891
|
+
// 'lf_nonlf': 'LF',
|
|
5892
|
+
// 'kpi': 'SOH',
|
|
5893
|
+
// 'qty': 1,
|
|
5894
|
+
// 'created_at': '1/31/2025',
|
|
5895
|
+
// 'store_type': 'COCO',
|
|
5896
|
+
// 'status': 'Active',
|
|
5897
|
+
// 'PLC': 'Continuity',
|
|
5898
|
+
// 'itemcode': 'JJJ019523823',
|
|
5899
|
+
// },
|
|
5900
|
+
// {
|
|
5901
|
+
// 'facility_code': 'LKST98',
|
|
5902
|
+
// 'product_id': 217176,
|
|
5903
|
+
// 'brand': 'John Jacobs',
|
|
5904
|
+
// 'category': 'eyeframe',
|
|
5905
|
+
// 'zone': 'South',
|
|
5906
|
+
// 'tlp_status': 'N',
|
|
5907
|
+
// 'lf_nonlf': 'LF',
|
|
5908
|
+
// 'kpi': 'SOH',
|
|
5909
|
+
// 'qty': 1,
|
|
5910
|
+
// 'created_at': '1/31/2025',
|
|
5911
|
+
// 'store_type': 'COCO',
|
|
5912
|
+
// 'status': 'Active',
|
|
5913
|
+
// 'PLC': 'Continuity',
|
|
5914
|
+
// 'itemcode': 'JJJ018252576',
|
|
5915
|
+
// },
|
|
5916
|
+
// {
|
|
5917
|
+
// 'facility_code': 'LKST98',
|
|
5918
|
+
// 'product_id': 146596,
|
|
5919
|
+
// 'brand': 'John Jacobs',
|
|
5920
|
+
// 'category': 'eyeframe',
|
|
5921
|
+
// 'zone': 'South',
|
|
5922
|
+
// 'tlp_status': 'N',
|
|
5923
|
+
// 'lf_nonlf': 'LF',
|
|
5924
|
+
// 'kpi': 'SOH',
|
|
5925
|
+
// 'qty': 1,
|
|
5926
|
+
// 'created_at': '1/31/2025',
|
|
5927
|
+
// 'store_type': 'COCO',
|
|
5928
|
+
// 'status': 'Active',
|
|
5929
|
+
// 'PLC': 'Continuity A',
|
|
5930
|
+
// 'itemcode': 'JJJ018550620',
|
|
5931
|
+
// },
|
|
5932
|
+
// {
|
|
5933
|
+
// 'facility_code': 'LKST98',
|
|
5934
|
+
// 'product_id': 136174,
|
|
5935
|
+
// 'brand': 'John Jacobs',
|
|
5936
|
+
// 'category': 'eyeframe',
|
|
5937
|
+
// 'zone': 'South',
|
|
5938
|
+
// 'tlp_status': 'N',
|
|
5939
|
+
// 'lf_nonlf': 'LF',
|
|
5940
|
+
// 'kpi': 'SOH',
|
|
5941
|
+
// 'qty': 1,
|
|
5942
|
+
// 'created_at': '1/31/2025',
|
|
5943
|
+
// 'store_type': 'COCO',
|
|
5944
|
+
// 'status': 'Active',
|
|
5945
|
+
// 'PLC': 'Core',
|
|
5946
|
+
// 'itemcode': 'JJJ013640284',
|
|
5947
|
+
// },
|
|
5948
|
+
// {
|
|
5949
|
+
// 'facility_code': 'LKST98',
|
|
5950
|
+
// 'product_id': 225417,
|
|
5951
|
+
// 'brand': 'John Jacobs',
|
|
5952
|
+
// 'category': 'sunglasses',
|
|
5953
|
+
// 'zone': 'South',
|
|
5954
|
+
// 'tlp_status': 'N',
|
|
5955
|
+
// 'lf_nonlf': 'LF',
|
|
5956
|
+
// 'kpi': 'SOH',
|
|
5957
|
+
// 'qty': 1,
|
|
5958
|
+
// 'created_at': '1/31/2025',
|
|
5959
|
+
// 'store_type': 'COCO',
|
|
5960
|
+
// 'status': 'Active',
|
|
5961
|
+
// 'PLC': 'New Launches',
|
|
5962
|
+
// 'itemcode': 'JJJ021461820',
|
|
5963
|
+
// },
|
|
5964
|
+
// {
|
|
5965
|
+
// 'facility_code': 'LKST98',
|
|
5966
|
+
// 'product_id': 224844,
|
|
5967
|
+
// 'brand': 'John Jacobs',
|
|
5968
|
+
// 'category': 'eyeframe',
|
|
5969
|
+
// 'zone': 'South',
|
|
5970
|
+
// 'tlp_status': 'N',
|
|
5971
|
+
// 'lf_nonlf': 'LF',
|
|
5972
|
+
// 'kpi': 'SOH',
|
|
5973
|
+
// 'qty': 1,
|
|
5974
|
+
// 'created_at': '1/31/2025',
|
|
5975
|
+
// 'store_type': 'COCO',
|
|
5976
|
+
// 'status': 'Active',
|
|
5977
|
+
// 'PLC': 'Continuity A',
|
|
5978
|
+
// 'itemcode': 'JJJ020732970',
|
|
5979
|
+
// },
|
|
5980
|
+
// {
|
|
5981
|
+
// 'facility_code': 'LKST98',
|
|
5982
|
+
// 'product_id': 146600,
|
|
5983
|
+
// 'brand': 'John Jacobs',
|
|
5984
|
+
// 'category': 'eyeframe',
|
|
5985
|
+
// 'zone': 'South',
|
|
5986
|
+
// 'tlp_status': 'N',
|
|
5987
|
+
// 'lf_nonlf': 'LF',
|
|
5988
|
+
// 'kpi': 'SOH',
|
|
5989
|
+
// 'qty': 1,
|
|
5990
|
+
// 'created_at': '1/31/2025',
|
|
5991
|
+
// 'store_type': 'COCO',
|
|
5992
|
+
// 'status': 'Active',
|
|
5993
|
+
// 'PLC': 'Continuity',
|
|
5994
|
+
// 'itemcode': 'JJJ013733282',
|
|
5995
|
+
// },
|
|
5996
|
+
// {
|
|
5997
|
+
// 'facility_code': 'LKST98',
|
|
5998
|
+
// 'product_id': 211181,
|
|
5999
|
+
// 'brand': 'John Jacobs',
|
|
6000
|
+
// 'category': 'eyeframe',
|
|
6001
|
+
// 'zone': 'South',
|
|
6002
|
+
// 'tlp_status': 'N',
|
|
6003
|
+
// 'lf_nonlf': 'LF',
|
|
6004
|
+
// 'kpi': 'SOH',
|
|
6005
|
+
// 'qty': 1,
|
|
6006
|
+
// 'created_at': '1/31/2025',
|
|
6007
|
+
// 'store_type': 'COCO',
|
|
6008
|
+
// 'status': 'Active',
|
|
6009
|
+
// 'PLC': 'Discontinued',
|
|
6010
|
+
// 'itemcode': 'JJJ015813335',
|
|
6011
|
+
// },
|
|
6012
|
+
// {
|
|
6013
|
+
// 'facility_code': 'LKST98',
|
|
6014
|
+
// 'product_id': 201371,
|
|
6015
|
+
// 'brand': 'John Jacobs',
|
|
6016
|
+
// 'category': 'eyeframe',
|
|
6017
|
+
// 'zone': 'South',
|
|
6018
|
+
// 'tlp_status': 'N',
|
|
6019
|
+
// 'lf_nonlf': 'LF',
|
|
6020
|
+
// 'kpi': 'SOH',
|
|
6021
|
+
// 'qty': 1,
|
|
6022
|
+
// 'created_at': '1/31/2025',
|
|
6023
|
+
// 'store_type': 'COCO',
|
|
6024
|
+
// 'status': 'Active',
|
|
6025
|
+
// 'PLC': 'Continuity',
|
|
6026
|
+
// 'itemcode': 'JJJ012879732',
|
|
6027
|
+
// },
|
|
6028
|
+
// {
|
|
6029
|
+
// 'facility_code': 'LKST98',
|
|
6030
|
+
// 'product_id': 218234,
|
|
6031
|
+
// 'brand': 'John Jacobs',
|
|
6032
|
+
// 'category': 'eyeframe',
|
|
6033
|
+
// 'zone': 'South',
|
|
6034
|
+
// 'tlp_status': 'N',
|
|
6035
|
+
// 'lf_nonlf': 'LF',
|
|
6036
|
+
// 'kpi': 'SOH',
|
|
6037
|
+
// 'qty': 1,
|
|
6038
|
+
// 'created_at': '1/31/2025',
|
|
6039
|
+
// 'store_type': 'COCO',
|
|
6040
|
+
// 'status': 'Active',
|
|
6041
|
+
// 'PLC': 'Continuity',
|
|
6042
|
+
// 'itemcode': 'JJJ017392132',
|
|
6043
|
+
// },
|
|
6044
|
+
// {
|
|
6045
|
+
// 'facility_code': 'LKST98',
|
|
6046
|
+
// 'product_id': 134220,
|
|
6047
|
+
// 'brand': 'John Jacobs',
|
|
6048
|
+
// 'category': 'eyeframe',
|
|
6049
|
+
// 'zone': 'South',
|
|
6050
|
+
// 'tlp_status': 'N',
|
|
6051
|
+
// 'lf_nonlf': 'LF',
|
|
6052
|
+
// 'kpi': 'SOH',
|
|
6053
|
+
// 'qty': 1,
|
|
6054
|
+
// 'created_at': '1/31/2025',
|
|
6055
|
+
// 'store_type': 'COCO',
|
|
6056
|
+
// 'status': 'Active',
|
|
6057
|
+
// 'PLC': 'Core',
|
|
6058
|
+
// 'itemcode': 'JJJ019702022',
|
|
6059
|
+
// },
|
|
6060
|
+
// {
|
|
6061
|
+
// 'facility_code': 'LKST98',
|
|
6062
|
+
// 'product_id': 223226,
|
|
6063
|
+
// 'brand': 'John Jacobs',
|
|
6064
|
+
// 'category': 'eyeframe',
|
|
6065
|
+
// 'zone': 'South',
|
|
6066
|
+
// 'tlp_status': 'N',
|
|
6067
|
+
// 'lf_nonlf': 'LF',
|
|
6068
|
+
// 'kpi': 'SOH',
|
|
6069
|
+
// 'qty': 1,
|
|
6070
|
+
// 'created_at': '1/31/2025',
|
|
6071
|
+
// 'store_type': 'COCO',
|
|
6072
|
+
// 'status': 'Active',
|
|
6073
|
+
// 'PLC': 'New Launches',
|
|
6074
|
+
// 'itemcode': 'JJJ019783710',
|
|
6075
|
+
// },
|
|
6076
|
+
// {
|
|
6077
|
+
// 'facility_code': 'LKST98',
|
|
6078
|
+
// 'product_id': 208090,
|
|
6079
|
+
// 'brand': 'John Jacobs',
|
|
6080
|
+
// 'category': 'sunglasses',
|
|
6081
|
+
// 'zone': 'South',
|
|
6082
|
+
// 'tlp_status': 'N',
|
|
6083
|
+
// 'lf_nonlf': 'LF',
|
|
6084
|
+
// 'kpi': 'SOH',
|
|
6085
|
+
// 'qty': 1,
|
|
6086
|
+
// 'created_at': '1/31/2025',
|
|
6087
|
+
// 'store_type': 'COCO',
|
|
6088
|
+
// 'status': 'Active',
|
|
6089
|
+
// 'PLC': 'Continuity',
|
|
6090
|
+
// 'itemcode': 'JJJ014753455',
|
|
6091
|
+
// },
|
|
6092
|
+
// {
|
|
6093
|
+
// 'facility_code': 'LKST98',
|
|
6094
|
+
// 'product_id': 223222,
|
|
6095
|
+
// 'brand': 'John Jacobs',
|
|
6096
|
+
// 'category': 'eyeframe',
|
|
6097
|
+
// 'zone': 'South',
|
|
6098
|
+
// 'tlp_status': 'N',
|
|
6099
|
+
// 'lf_nonlf': 'LF',
|
|
6100
|
+
// 'kpi': 'SOH',
|
|
6101
|
+
// 'qty': 1,
|
|
6102
|
+
// 'created_at': '1/31/2025',
|
|
6103
|
+
// 'store_type': 'COCO',
|
|
6104
|
+
// 'status': 'Active',
|
|
6105
|
+
// 'PLC': 'New Launches',
|
|
6106
|
+
// 'itemcode': 'JJJ019770887',
|
|
6107
|
+
// },
|
|
6108
|
+
// {
|
|
6109
|
+
// 'facility_code': 'LKST98',
|
|
6110
|
+
// 'product_id': 209443,
|
|
6111
|
+
// 'brand': 'John Jacobs',
|
|
6112
|
+
// 'category': 'sunglasses',
|
|
6113
|
+
// 'zone': 'South',
|
|
6114
|
+
// 'tlp_status': 'YES',
|
|
6115
|
+
// 'lf_nonlf': 'LF',
|
|
6116
|
+
// 'kpi': 'SOH',
|
|
6117
|
+
// 'qty': 1,
|
|
6118
|
+
// 'created_at': '1/31/2025',
|
|
6119
|
+
// 'store_type': 'COCO',
|
|
6120
|
+
// 'status': 'Active',
|
|
6121
|
+
// 'PLC': 'Singapore Ex',
|
|
6122
|
+
// 'itemcode': 'JJJ015281008',
|
|
6123
|
+
// },
|
|
6124
|
+
// {
|
|
6125
|
+
// 'facility_code': 'LKST98',
|
|
6126
|
+
// 'product_id': 133686,
|
|
6127
|
+
// 'brand': 'John Jacobs',
|
|
6128
|
+
// 'category': 'eyeframe',
|
|
6129
|
+
// 'zone': 'South',
|
|
6130
|
+
// 'tlp_status': 'N',
|
|
6131
|
+
// 'lf_nonlf': 'LF',
|
|
6132
|
+
// 'kpi': 'SOH',
|
|
6133
|
+
// 'qty': 1,
|
|
6134
|
+
// 'created_at': '1/31/2025',
|
|
6135
|
+
// 'store_type': 'COCO',
|
|
6136
|
+
// 'status': 'Active',
|
|
6137
|
+
// 'PLC': 'Continuity',
|
|
6138
|
+
// 'itemcode': 'JJJ018108124',
|
|
6139
|
+
// },
|
|
6140
|
+
// {
|
|
6141
|
+
// 'facility_code': 'LKST98',
|
|
6142
|
+
// 'product_id': 136408,
|
|
6143
|
+
// 'brand': 'John Jacobs',
|
|
6144
|
+
// 'category': 'sunglasses',
|
|
6145
|
+
// 'zone': 'South',
|
|
6146
|
+
// 'tlp_status': 'N',
|
|
6147
|
+
// 'lf_nonlf': 'LF',
|
|
6148
|
+
// 'kpi': 'SOH',
|
|
6149
|
+
// 'qty': 1,
|
|
6150
|
+
// 'created_at': '1/31/2025',
|
|
6151
|
+
// 'store_type': 'COCO',
|
|
6152
|
+
// 'status': 'Active',
|
|
6153
|
+
// 'PLC': 'Core',
|
|
6154
|
+
// 'itemcode': 'JJJ020604228',
|
|
6155
|
+
// },
|
|
6156
|
+
// {
|
|
6157
|
+
// 'facility_code': 'LKST98',
|
|
6158
|
+
// 'product_id': 209434,
|
|
6159
|
+
// 'brand': 'John Jacobs',
|
|
6160
|
+
// 'category': 'sunglasses',
|
|
6161
|
+
// 'zone': 'South',
|
|
6162
|
+
// 'tlp_status': 'YES',
|
|
6163
|
+
// 'lf_nonlf': 'LF',
|
|
6164
|
+
// 'kpi': 'SOH',
|
|
6165
|
+
// 'qty': 1,
|
|
6166
|
+
// 'created_at': '1/31/2025',
|
|
6167
|
+
// 'store_type': 'COCO',
|
|
6168
|
+
// 'status': 'Active',
|
|
6169
|
+
// 'PLC': 'Singapore Ex',
|
|
6170
|
+
// 'itemcode': 'JJJ015272160',
|
|
6171
|
+
// },
|
|
6172
|
+
// {
|
|
6173
|
+
// 'facility_code': 'LKST98',
|
|
6174
|
+
// 'product_id': 225416,
|
|
6175
|
+
// 'brand': 'John Jacobs',
|
|
6176
|
+
// 'category': 'sunglasses',
|
|
6177
|
+
// 'zone': 'South',
|
|
6178
|
+
// 'tlp_status': 'N',
|
|
6179
|
+
// 'lf_nonlf': 'LF',
|
|
6180
|
+
// 'kpi': 'SOH',
|
|
6181
|
+
// 'qty': 1,
|
|
6182
|
+
// 'created_at': '1/31/2025',
|
|
6183
|
+
// 'store_type': 'COCO',
|
|
6184
|
+
// 'status': 'Active',
|
|
6185
|
+
// 'PLC': 'New Launches',
|
|
6186
|
+
// 'itemcode': '',
|
|
6187
|
+
// },
|
|
6188
|
+
// {
|
|
6189
|
+
// 'facility_code': 'LKST98',
|
|
6190
|
+
// 'product_id': 138845,
|
|
6191
|
+
// 'brand': 'John Jacobs',
|
|
6192
|
+
// 'category': 'eyeframe',
|
|
6193
|
+
// 'zone': 'South',
|
|
6194
|
+
// 'tlp_status': 'N',
|
|
6195
|
+
// 'lf_nonlf': 'LF',
|
|
6196
|
+
// 'kpi': 'SOH',
|
|
6197
|
+
// 'qty': 1,
|
|
6198
|
+
// 'created_at': '1/31/2025',
|
|
6199
|
+
// 'store_type': 'COCO',
|
|
6200
|
+
// 'status': 'Active',
|
|
6201
|
+
// 'PLC': 'Discontinued',
|
|
6202
|
+
// 'itemcode': 'JJJ014740833',
|
|
6203
|
+
// },
|
|
6204
|
+
// {
|
|
6205
|
+
// 'facility_code': 'LKST98',
|
|
6206
|
+
// 'product_id': 212828,
|
|
6207
|
+
// 'brand': 'John Jacobs Online',
|
|
6208
|
+
// 'category': 'sunglasses',
|
|
6209
|
+
// 'zone': 'South',
|
|
6210
|
+
// 'tlp_status': 'N',
|
|
6211
|
+
// 'lf_nonlf': 'LF',
|
|
6212
|
+
// 'kpi': 'SOH',
|
|
6213
|
+
// 'qty': 1,
|
|
6214
|
+
// 'created_at': '1/31/2025',
|
|
6215
|
+
// 'store_type': 'COCO',
|
|
6216
|
+
// 'status': 'Active',
|
|
6217
|
+
// 'PLC': 'Discontinued',
|
|
6218
|
+
// 'itemcode': 'JJJ016162031',
|
|
6219
|
+
// },
|
|
6220
|
+
// {
|
|
6221
|
+
// 'facility_code': 'LKST98',
|
|
6222
|
+
// 'product_id': 209679,
|
|
6223
|
+
// 'brand': 'John Jacobs',
|
|
6224
|
+
// 'category': 'eyeframe',
|
|
6225
|
+
// 'zone': 'South',
|
|
6226
|
+
// 'tlp_status': 'N',
|
|
6227
|
+
// 'lf_nonlf': 'LF',
|
|
6228
|
+
// 'kpi': 'SOH',
|
|
6229
|
+
// 'qty': 1,
|
|
6230
|
+
// 'created_at': '1/31/2025',
|
|
6231
|
+
// 'store_type': 'COCO',
|
|
6232
|
+
// 'status': 'Active',
|
|
6233
|
+
// 'PLC': 'Continuity A',
|
|
6234
|
+
// 'itemcode': '',
|
|
6235
|
+
// },
|
|
6236
|
+
// {
|
|
6237
|
+
// 'facility_code': 'LKST98',
|
|
6238
|
+
// 'product_id': 135439,
|
|
6239
|
+
// 'brand': 'John Jacobs',
|
|
6240
|
+
// 'category': 'eyeframe',
|
|
6241
|
+
// 'zone': 'South',
|
|
6242
|
+
// 'tlp_status': 'N',
|
|
6243
|
+
// 'lf_nonlf': 'LF',
|
|
6244
|
+
// 'kpi': 'SOH',
|
|
6245
|
+
// 'qty': 1,
|
|
6246
|
+
// 'created_at': '1/31/2025',
|
|
6247
|
+
// 'store_type': 'COCO',
|
|
6248
|
+
// 'status': 'Active',
|
|
6249
|
+
// 'PLC': 'Continuity',
|
|
6250
|
+
// 'itemcode': 'JJJ017669333',
|
|
6251
|
+
// },
|
|
6252
|
+
// {
|
|
6253
|
+
// 'facility_code': 'LKST98',
|
|
6254
|
+
// 'product_id': 134576,
|
|
6255
|
+
// 'brand': 'John Jacobs',
|
|
6256
|
+
// 'category': 'eyeframe',
|
|
6257
|
+
// 'zone': 'South',
|
|
6258
|
+
// 'tlp_status': 'N',
|
|
6259
|
+
// 'lf_nonlf': 'LF',
|
|
6260
|
+
// 'kpi': 'SOH',
|
|
6261
|
+
// 'qty': 1,
|
|
6262
|
+
// 'created_at': '1/31/2025',
|
|
6263
|
+
// 'store_type': 'COCO',
|
|
6264
|
+
// 'status': 'Active',
|
|
6265
|
+
// 'PLC': 'Continuity',
|
|
6266
|
+
// 'itemcode': '',
|
|
6267
|
+
// },
|
|
6268
|
+
// ];
|
|
6269
|
+
|
|
6270
|
+
// const cleanData = ( data ) => {
|
|
6271
|
+
// return data.map( ( { product_id, brand, category, itemcode } ) => ( {
|
|
6272
|
+
// productId: String( product_id ),
|
|
6273
|
+
// productBrand: brand,
|
|
6274
|
+
// productType: category,
|
|
6275
|
+
// clientId: '11',
|
|
6276
|
+
// type: 'new',
|
|
6277
|
+
// itemcode,
|
|
6278
|
+
// } ) );
|
|
6279
|
+
// };
|
|
6280
|
+
|
|
6281
|
+
// const saveToFile = ( filename, content ) => {
|
|
6282
|
+
// const textContent = JSON.stringify( content, null, 2 );
|
|
6283
|
+
// fs.writeFileSync( filename, textContent, 'utf-8' );
|
|
6284
|
+
// console.log( `File saved as ${filename}` );
|
|
6285
|
+
// };
|
|
6286
|
+
|
|
6287
|
+
// const cleanedData = cleanData( data );
|
|
6288
|
+
// saveToFile( 'output.txt', cleanedData );
|