Skip to content

Instantly share code, notes, and snippets.

@M4R14
Last active March 24, 2018 04:50
Show Gist options
  • Select an option

  • Save M4R14/c1007166b2f8144cb74e17236eceeb8a to your computer and use it in GitHub Desktop.

Select an option

Save M4R14/c1007166b2f8144cb74e17236eceeb8a to your computer and use it in GitHub Desktop.
product = [{ product_id: ‘001’, name: ‘C4’ }];
stock = [
{ stock_id: 1, product_id: ‘001’, cost: 1000, qty: 2 },
{ stock_id: 2, product_id: ‘001’, cost: 100, qty: 10 },
];
trantsection = [
{ trantsection_id: 1, stock_id: 1, qty: 5, datetime: '2019-03-24 12:00:00' },
{ trantsection_id: 2, stock_id: 2, qty: 10, datetime: '2019-03-24 13:00:0' },
{ trantsection_id: 3, stock_id: 1, qty: -3, datetime: '2019-03-24 14:00:0' },
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment