我希望结果如下表所示。
余额前=2000
第 1 行 2000-100=1900
第 2 行 1900-150=1750
表格1
|-----Date------|----Product----|-----sales-----|----Balance------|
|--2013-08-01---|-------P1------|------100------|------1900-------|
|--2013-08-03---|-------p1------|------150------|------1750-------|
我努力了:
renderer: function(value, metaData, record, rowIdx, colIdx, store, view) {
return record.get('stock')-record.get('sales');
},
|-----Date------|----Product----|-----sales-----|----Balance------|
|--2013-08-01---|-------P1------|------100------|------1900-------|
|--2013-08-03---|-------p1------|------150------|------1850-------|
但它不起作用。
如何计算如上表 1 所示的余额?