### [[2025]]年 - [[2025-06|06月]], [[2025-06-11|<]] [[第163天]] [[2025-06-13|>]] , 木曜日
---
## 記事
https://www.suruga-ya.jp/product/detail/984018592
[OPERATION:ONE - takonaguri - BOOTH](https://takonaguri.booth.pm/items/6217612)
[OPERATION:TWO - takonaguri - BOOTH](https://takonaguri.booth.pm/items/6553301)
[獣たちは暁を愛す - takonaguri - BOOTH](https://takonaguri.booth.pm/items/6416286)
[できるんです。 - takonaguri - BOOTH](https://takonaguri.booth.pm/items/6282688)
[New Divide - takonaguri - BOOTH](https://takonaguri.booth.pm/items/2474512)
[ベビーブルーと白レース - takonaguri - BOOTH](https://takonaguri.booth.pm/items/1895201)
https://takonaguri.booth.pm/items/1443946
33550 * 0.055+30
中国のいわゆる通販サイトで代行可能です
タオバオ、間魚 など
上海でのイベントや会場限定のものなどもお気軽訪ねてください
[世界を日本人バイヤーとお買い物 \| 個人輸入代行 LOCOKAU(ロコカウ)](https://locokau.com/host/services)
#### 出账
##### 货款
###### amex
Oamex:: 27635
1740+2255+23640
###### tongyi
Otongyi::
oTONGYIamex:: 16628
6431+3850+3127+3220
###### nashiga
Onashiga::
##### 消耗
###### tongyi
Utongyi:: 300
###### nashiga
Unashiga::
##### 工资
###### tongyi
Stongyi:: 1000
###### nashiga
Snashiga::
#### 入账
###### tongyi
Inashiga:: 100
Itongyi::
```dataviewjs
const d = dv.current()
// === 原始字段 ===
const amex = d.Oamex || 0
const tongyi = d.Otongyi || 0
const nashiga = d.Onashiga || 0
const use_tongyi = d.Utongyi || 0
const use_nashiga = d.Unashiga || 0
const sal_tongyi = d.Stongyi || 0
const sal_nashiga = d.Snashiga || 0
// === 汇总值 ===
const oOUTall = amex + tongyi + nashiga
const oUSEall = use_tongyi + use_nashiga
const oSALall = sal_tongyi + sal_nashiga
const oALL = oOUTall + oUSEall + oSALall
// === Chart 配置 ===
const chartData = {
type: 'doughnut',
data: {
labels: [
'总货款',
'总消耗',
'总工资'
],
datasets: [
{
label: '总支出分类',
data: [oOUTall, oUSEall, oSALall],
backgroundColor: [
'rgba(75, 192, 192, 0.6)', // OUT
'rgba(153, 102, 255, 0.6)', // USE
'rgba(255, 159, 64, 0.6)' // SAL
],
borderColor: [
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)',
'rgba(255, 159, 64, 1)'
],
borderWidth: 1
}
]
},
options: {
responsive: true,
cutout: '50%',
plugins: {
legend: {
position: 'bottom'
},
tooltip: {
enabled: true
},
centerText: {
display: true,
text: `总支出:¥${oALL.toLocaleString()}`
}
}
},
plugins: [
{
id: 'centerText',
beforeDraw: function (chart) {
const width = chart.width;
const height = chart.height;
const ctx = chart.ctx;
ctx.restore();
const fontSize = (height / 150).toFixed(2);
ctx.font = `${fontSize}em sans-serif`;
ctx.textBaseline = 'middle';
const text = chart.options.plugins.centerText.text;
const textX = Math.round((width - ctx.measureText(text).width) / 2);
const textY = height / 2;
ctx.fillText(text, textX, textY);
ctx.save();
}
}
]
}
window.renderChart(chartData, this.container)
```
---
# memos