update.component.html 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <nz-spin [nzSpinning]="saveLoading">
  2. <!-- 主数据 -->
  3. <nz-table nzSize="small" [nzNoResult]="' '" nzBordered #basicTable [nzShowPagination]="false"
  4. style="margin-bottom: 5px;">
  5. <thead>
  6. <tr>
  7. <!-- 异常工时信息统计单 -->
  8. <th colspan="13">
  9. <h2><strong>仓库报表</strong></h2>
  10. </th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. <tr>
  15. <td>时间</td>
  16. <td colSpan="12">
  17. <nz-date-picker [(ngModel)]="fbsWarehouse.date" nzPlaceHolder="请选择">
  18. </nz-date-picker>
  19. </td>
  20. </tr>
  21. <tr>
  22. <td>出勤工时</td>
  23. <td>应到人数</td>
  24. <td style="width: 8%;">
  25. <nz-input-number [(ngModel)]="fbsWarehouse.numberOfPeopleToArrive" [nzMin]="0" [nzStep]="1">
  26. </nz-input-number>
  27. </td>
  28. <td>实到人数</td>
  29. <td style="width: 8%;">
  30. <nz-input-number [(ngModel)]="fbsWarehouse.actualNumberOfPeople" [nzMin]="0" [nzStep]="1">
  31. </nz-input-number>
  32. </td>
  33. <td>请假</td>
  34. <td style="width: 8%;">
  35. <nz-input-number [(ngModel)]="fbsWarehouse.lleave" [nzMin]="0" [nzStep]="1">
  36. </nz-input-number>
  37. </td>
  38. <td>旷工</td>
  39. <td style="width: 8%;">
  40. <nz-input-number [(ngModel)]="fbsWarehouse.absenteeism" [nzMin]="0" [nzStep]="1">
  41. </nz-input-number>
  42. </td>
  43. <td>离职</td>
  44. <td style="width: 8%;">
  45. <nz-input-number [(ngModel)]="fbsWarehouse.quit" [nzMin]="0" [nzStep]="1">
  46. </nz-input-number>
  47. </td>
  48. <td>出勤工时</td>
  49. <td style="width: 8%;">
  50. <nz-input-number [(ngModel)]="fbsWarehouse.attendanceHours" [nzMin]="0" [nzStep]="1">
  51. </nz-input-number>
  52. </td>
  53. </tr>
  54. <tr>
  55. <td>加班记录</td>
  56. <td>加班人数</td>
  57. <td>
  58. <nz-input-number [(ngModel)]="fbsWarehouse.overtimePeople" [nzMin]="0" [nzStep]="1">
  59. </nz-input-number>
  60. </td>
  61. <td>加班工时</td>
  62. <td>
  63. <nz-input-number [(ngModel)]="fbsWarehouse.overtimeHours" [nzMin]="0" [nzStep]="1">
  64. </nz-input-number>
  65. </td>
  66. <td>加班原因</td>
  67. <td colSpan="7">
  68. <textarea rows="2" nz-input [(ngModel)]="fbsWarehouse.overtimeReason"></textarea>
  69. </td>
  70. </tr>
  71. <tr>
  72. <td rowspan="11">工时统计</td>
  73. <td>工单配料</td>
  74. <td>
  75. <nz-input-number [(ngModel)]="fbsWarehouse.workOrderBatching" [nzMin]="0" [nzStep]="1">
  76. </nz-input-number>
  77. </td>
  78. <td>生产订单号</td>
  79. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.batchingProductionOrderNumberCode" /></td>
  80. </tr>
  81. <tr>
  82. <td>成品收存</td>
  83. <td>
  84. <nz-input-number [(ngModel)]="fbsWarehouse.storageFinishedProducts" [nzMin]="0" [nzStep]="1">
  85. </nz-input-number>
  86. </td>
  87. <td>生产订单号</td>
  88. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.productsProductionOrderNumberCode" /></td>
  89. </tr>
  90. <tr>
  91. <td>原材料收存</td>
  92. <td>
  93. <nz-input-number [(ngModel)]="fbsWarehouse.storageRawMaterials" [nzMin]="0" [nzStep]="1">
  94. </nz-input-number>
  95. </td>
  96. <td>入库单号</td>
  97. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.stockInNumber" /></td>
  98. </tr>
  99. <tr>
  100. <td>研发领用</td>
  101. <td>
  102. <nz-input-number [(ngModel)]="fbsWarehouse.researchAndDevelopment" [nzMin]="0" [nzStep]="1">
  103. </nz-input-number>
  104. </td>
  105. <td>出库单号</td>
  106. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.developmentDeliveryOrderNo" /></td>
  107. </tr>
  108. <tr>
  109. <td>补发发货</td>
  110. <td><nz-input-number [(ngModel)]="fbsWarehouse.projectIngredients" [nzMin]="0" [nzStep]="1">
  111. </nz-input-number></td>
  112. <td>出库单号</td>
  113. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.projectDeliveryOrderNo"/></td>
  114. </tr>
  115. <tr>
  116. <td>售后发货</td>
  117. <td><nz-input-number [(ngModel)]="fbsWarehouse.projectDelivery" [nzMin]="0" [nzStep]="1">
  118. </nz-input-number></td>
  119. <td>出库单号</td>
  120. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.deliveryProjectName"/></td>
  121. </tr>
  122. <tr>
  123. <td>项目打包</td>
  124. <td><nz-input-number [(ngModel)]="fbsWarehouse.packProject" [nzMin]="0" [nzStep]="1">
  125. </nz-input-number></td>
  126. <td>项目名称</td>
  127. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.packProjectName"/></td>
  128. </tr>
  129. <tr>
  130. <td>配辅料</td>
  131. <td><nz-input-number [(ngModel)]="fbsWarehouse.accessories" [nzMin]="0" [nzStep]="1">
  132. </nz-input-number></td>
  133. <td>出库单号</td>
  134. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.accessoriesDeliveryOrderNo"/></td>
  135. </tr>
  136. <tr>
  137. <td>装车/卸载</td>
  138. <td><nz-input-number [(ngModel)]="fbsWarehouse.loading" [nzMin]="0" [nzStep]="1">
  139. </nz-input-number></td>
  140. <td>备注</td>
  141. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.loadingProjectName"/></td>
  142. </tr>
  143. <tr>
  144. <td>支给</td>
  145. <td><nz-input-number [(ngModel)]="fbsWarehouse.defray" [nzMin]="0" [nzStep]="1">
  146. </nz-input-number></td>
  147. <td>备注</td>
  148. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.defrayMemo"/></td>
  149. </tr>
  150. <tr>
  151. <td>盘点</td>
  152. <td>
  153. <nz-input-number [(ngModel)]="fbsWarehouse.inventory" [nzMin]="0" [nzStep]="1">
  154. </nz-input-number>
  155. </td>
  156. <td>物料编号</td>
  157. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.itemNumber" /></td>
  158. </tr>
  159. <tr>
  160. <td rowspan="4">其他工时统计</td>
  161. <td>培训</td>
  162. <td>
  163. <nz-input-number [(ngModel)]="fbsWarehouse.train" [nzMin]="0" [nzStep]="1">
  164. </nz-input-number>
  165. </td>
  166. <td>备注</td>
  167. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.trainMemo" /></td>
  168. </tr>
  169. <tr>
  170. <td>会议</td>
  171. <td>
  172. <nz-input-number [(ngModel)]="fbsWarehouse.meeting" [nzMin]="0" [nzStep]="1">
  173. </nz-input-number>
  174. </td>
  175. <td>备注</td>
  176. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.meetingMemo" /></td>
  177. </tr>
  178. <tr>
  179. <td>5S</td>
  180. <td>
  181. <nz-input-number [(ngModel)]="fbsWarehouse.fiveS" [nzMin]="0" [nzStep]="1">
  182. </nz-input-number>
  183. </td>
  184. <td>备注</td>
  185. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.fiveSMemo" /></td>
  186. </tr>
  187. <tr>
  188. <td>其他</td>
  189. <td>
  190. <nz-input-number [(ngModel)]="fbsWarehouse.other" [nzMin]="0" [nzStep]="1">
  191. </nz-input-number>
  192. </td>
  193. <td>备注</td>
  194. <td colSpan="9"><input nz-input [(ngModel)]="fbsWarehouse.otherMemo" /></td>
  195. </tr>
  196. </tbody>
  197. </nz-table>
  198. </nz-spin>
  199. <!-- 底部按钮 -->
  200. <div class="base">
  201. <!-- 底部关闭按钮 -->
  202. <a nz-popconfirm style="margin-right: 2%" nzTitle="确认关闭吗(关闭前请确认数据已保存)" (nzOnConfirm)="close()">
  203. <button nz-button class="ant-btn buttonDistance"><span>关闭
  204. </span></button>
  205. </a>
  206. <!-- 底部保存按钮 -->
  207. <button nzbutton (click)="save()" nz-button nzType="primary" [nzLoading]="saveLoading"><span>保存</span></button>
  208. </div>