|
|
@@ -606,7 +606,7 @@ function initSummarizingTable() {
|
|
|
groupCollapse: false,//是否收起
|
|
|
},
|
|
|
colNames: ['发药', '拒退', '单号', '批号', '住院号', '床号', '姓名', '货位号', '药品编码', '药品名称', '规格', '数量/剂数', '代煎剂数', '处方金额', '代煎单价',
|
|
|
- '每天剂数', '煎药说明', '加水量', '煮取量', '复煎次数', '几次服用', '服用说明', '医生', '每剂数量', '发药量', '原发药量', '库存量', '零售价', '金额', '生产厂家', '药单类型', '规格编号', '医保编码'],
|
|
|
+ '每天剂数', '煎药说明', '加水量', '煮取量', '复煎次数', '几次服用', '服用说明', '医生', '每剂数量', '发药量', '原发药量', '库存量', '零售价', '金额', '生产厂家', '药单类型', '规格编号', '医保编码','草药医嘱说明'],
|
|
|
colModel: [
|
|
|
{
|
|
|
name: 'fybz',
|
|
|
@@ -729,7 +729,8 @@ function initSummarizingTable() {
|
|
|
formatter: function (cellvalue, options, rowObject) {
|
|
|
return cellvalue == null ? "-" : cellvalue;
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
+ {name: 'instruction', index: 'instruction', align: 'center', width: 40, hidden: true}
|
|
|
],
|
|
|
jsonReader: {
|
|
|
root: "data", repeatitems: false
|
|
|
@@ -1158,12 +1159,12 @@ function printCyCount(flag) {
|
|
|
html += '<td class="xtd" style="text-align: center;">' + data.drugName + '</td>';
|
|
|
html += '<td class="xtd" style="text-align: center;">' + data.specification + '</td>';
|
|
|
html += '<td class="xtd" style="text-align: center;">' + data.minAmount + '</td>';
|
|
|
- html += '<td class="xtd" style="text-align: left;">' + '' + '</td>';
|
|
|
+ html += '<td class="xtd" style="text-align: left;">' + data.instruction + '</td>';
|
|
|
if (i !== datas.length - 1) {
|
|
|
html += '<td class="xtd" style="text-align: center;">' + datas[i + 1].drugName + '</td>';
|
|
|
html += '<td class="xtd" style="text-align: center;">' + datas[i + 1].specification + '</td>';
|
|
|
html += '<td class="xtd" style="text-align: center;">' + datas[i + 1].minAmount + '</td>';
|
|
|
- html += '<td class="xtd" style="text-align: left;">' + '' + '</td>';
|
|
|
+ html += '<td class="xtd" style="text-align: left;">' + datas[i + 1].instruction + '</td>';
|
|
|
html += '</tr>';
|
|
|
}
|
|
|
i += 2;
|