Files
F9Web/server/scripts/print-template-outstock.json
T
fanhongcai 1bec470647 feat: 新增IM即时通讯(浮窗)、工作流、打印模块及工作台增强
- IM: 新增浮窗聊天(ImFloatWindow)、管理页(monitor/config/service/message)、SSE推送
- 工作流: 新增待办/我的流程页面及后端服务
- 打印: 新增打印模板、出库单打印(PrintPage)、模板种子脚本
- 工作台: 增强快捷入口与工作台数据
- 修复: TagsView页签关闭、CrudPage通用表格增强
- 移除导航菜单中的即时通讯入口,改为右下角浮窗
2026-08-16 00:19:24 +08:00

169 lines
5.4 KiB
JSON

{
"name": "三等分原料出库单",
"content": {
"version": "1.0",
"document": {
"type": "report",
"page": {
"width": 210,
"height": 99,
"unit": "mm",
"orientation": "portrait",
"margin": { "top": 8, "bottom": 8, "left": 8, "right": 8 }
},
"sections": [
{
"type": "body",
"components": [
{
"id": "txt-title",
"type": "text",
"left": 0, "top": 0, "width": 194, "height": 10,
"value": "原料出库单",
"style": { "fontSize": 15, "fontWeight": "bold", "textAlign": "center" }
},
{
"id": "line-top",
"type": "line",
"left": 0, "top": 12, "width": 194, "height": 0.5,
"stroke": "#333333"
},
{
"id": "lbl-billno",
"type": "text",
"left": 4, "top": 17, "width": 26, "height": 6,
"value": "单号:",
"style": { "fontSize": 10 }
},
{
"id": "val-billno",
"type": "text",
"left": 34, "top": 17, "width": 60, "height": 6,
"binding": "RawMaterial_OutStock.BillNo",
"style": { "fontSize": 10 }
},
{
"id": "lbl-org",
"type": "text",
"left": 100, "top": 17, "width": 42, "height": 6,
"value": "领料车间:",
"style": { "fontSize": 10 }
},
{
"id": "val-org",
"type": "text",
"left": 144, "top": 17, "width": 50, "height": 6,
"binding": "RawMaterial_OutStock.OutOrgName",
"style": { "fontSize": 10 }
},
{
"id": "lbl-zk",
"type": "text",
"left": 4, "top": 26, "width": 26, "height": 6,
"value": "庄口:",
"style": { "fontSize": 10 }
},
{
"id": "val-zk",
"type": "text",
"left": 34, "top": 26, "width": 60, "height": 6,
"binding": "RawMaterial_OutStock.ZhuangkouCode",
"style": { "fontSize": 10 }
},
{
"id": "lbl-weight",
"type": "text",
"left": 100, "top": 26, "width": 42, "height": 6,
"value": "出库重量:",
"style": { "fontSize": 10 }
},
{
"id": "val-weight",
"type": "text",
"left": 144, "top": 26, "width": 34, "height": 6,
"binding": "RawMaterial_OutStock.OutWeight",
"format": { "kind": "decimal", "digits": 2 },
"style": { "fontSize": 10 }
},
{
"id": "unit-weight",
"type": "text",
"left": 180, "top": 26, "width": 14, "height": 6,
"value": "kg",
"style": { "fontSize": 10 }
},
{
"id": "lbl-date",
"type": "text",
"left": 4, "top": 35, "width": 26, "height": 6,
"value": "出库日期:",
"style": { "fontSize": 10 }
},
{
"id": "val-date",
"type": "text",
"left": 34, "top": 35, "width": 60, "height": 6,
"binding": "RawMaterial_OutStock.OutDate",
"format": { "kind": "date", "pattern": "YYYY-MM-DD" },
"style": { "fontSize": 10 }
},
{
"id": "lbl-type",
"type": "text",
"left": 100, "top": 35, "width": 42, "height": 6,
"value": "出库类型:",
"style": { "fontSize": 10 }
},
{
"id": "val-type",
"type": "text",
"left": 144, "top": 35, "width": 50, "height": 6,
"binding": "RawMaterial_OutStock.OutTypeText",
"style": { "fontSize": 10 }
},
{
"id": "line-mid",
"type": "line",
"left": 0, "top": 44, "width": 194, "height": 0.5,
"stroke": "#333333"
},
{
"id": "lbl-receiver",
"type": "text",
"left": 4, "top": 50, "width": 60, "height": 6,
"value": "领用人签字:",
"style": { "fontSize": 10 }
},
{
"id": "line-receiver",
"type": "line",
"left": 4, "top": 60, "width": 80, "height": 0.5,
"stroke": "#333333"
},
{
"id": "lbl-keeper",
"type": "text",
"left": 104, "top": 50, "width": 60, "height": 6,
"value": "仓管员签字:",
"style": { "fontSize": 10 }
},
{
"id": "line-keeper",
"type": "line",
"left": 104, "top": 60, "width": 80, "height": 0.5,
"stroke": "#333333"
},
{
"id": "lbl-note",
"type": "text",
"left": 4, "top": 70, "width": 186, "height": 6,
"value": "备注:",
"style": { "fontSize": 10 }
}
]
}
]
}
}
}