Last active
March 24, 2018 04:50
-
-
Save M4R14/c1007166b2f8144cb74e17236eceeb8a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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